blob: f04dda527a2b51a9e3b8c2a0c28753071a624b99 [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
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +020062#include "ui/qemu-spice.h"
ths6a5bd302007-12-03 17:05:38 +000063
bellard9dc39cb2004-03-14 21:38:27 +000064//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000065//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000066
bellard9307c4c2004-04-04 12:57:25 +000067/*
68 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000069 *
bellard9307c4c2004-04-04 12:57:25 +000070 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000071 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000072 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010073 * 'O' option string of the form NAME=VALUE,...
74 * parsed according to QemuOptsList given by its name
75 * Example: 'device:O' uses qemu_device_opts.
76 * Restriction: only lists with empty desc are supported
77 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000078 * 'i' 32 bit integer
79 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010080 * 'M' just like 'l', except in user mode the value is
81 * multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +020082 * 'o' octets (aka bytes)
83 * user mode accepts an optional T, t, G, g, M, m, K, k
84 * suffix, which multiplies the value by 2^40 for
85 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
86 * M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010087 * 'T' double
88 * user mode accepts an optional ms, us, ns suffix,
89 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000090 * '/' optional gdb-like print format (like "/10x")
91 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030092 * '?' optional type (for all types, except '/')
93 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010094 * 'b' boolean
95 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030096 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000097 *
98 */
99
Adam Litke940cc302010-01-25 12:18:44 -0600100typedef struct MonitorCompletionData MonitorCompletionData;
101struct MonitorCompletionData {
102 Monitor *mon;
103 void (*user_print)(Monitor *mon, const QObject *data);
104};
105
Anthony Liguoric227f092009-10-01 16:12:16 -0500106typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000107 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000108 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000109 const char *params;
110 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300111 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300112 union {
113 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300114 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600115 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300116 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200117 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600118 int (*cmd_async)(Monitor *mon, const QDict *params,
119 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300120 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200121 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500122} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000123
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100124/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500125typedef struct mon_fd_t mon_fd_t;
126struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100127 char *name;
128 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500129 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100130};
131
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200132typedef struct MonitorControl {
133 QObject *id;
134 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200135 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200136} MonitorControl;
137
aliguori87127162009-03-05 23:01:29 +0000138struct Monitor {
139 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200140 int mux_out;
141 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000142 int flags;
143 int suspend_cnt;
144 uint8_t outbuf[1024];
145 int outbuf_index;
146 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200147 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000148 CPUState *mon_cpu;
149 BlockDriverCompletionFunc *password_completion_cb;
150 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200151#ifdef CONFIG_DEBUG_MONITOR
152 int print_calls_nr;
153#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200154 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500155 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000156 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000157};
158
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200159#ifdef CONFIG_DEBUG_MONITOR
160#define MON_DEBUG(fmt, ...) do { \
161 fprintf(stderr, "Monitor: "); \
162 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200163
164static inline void mon_print_count_inc(Monitor *mon)
165{
166 mon->print_calls_nr++;
167}
168
169static inline void mon_print_count_init(Monitor *mon)
170{
171 mon->print_calls_nr = 0;
172}
173
174static inline int mon_print_count_get(const Monitor *mon)
175{
176 return mon->print_calls_nr;
177}
178
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200179#else /* !CONFIG_DEBUG_MONITOR */
180#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200181static inline void mon_print_count_inc(Monitor *mon) { }
182static inline void mon_print_count_init(Monitor *mon) { }
183static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200184#endif /* CONFIG_DEBUG_MONITOR */
185
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300186/* QMP checker flags */
187#define QMP_ACCEPT_UNKNOWNS 1
188
Blue Swirl72cf2d42009-09-12 07:36:22 +0000189static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000190
Anthony Liguoric227f092009-10-01 16:12:16 -0500191static const mon_cmd_t mon_cmds[];
192static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000193
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300194static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300195static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300196
Markus Armbruster8631b602010-02-18 11:41:55 +0100197Monitor *cur_mon;
198Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000199
aliguori731b0362009-03-05 23:01:42 +0000200static void monitor_command_cb(Monitor *mon, const char *cmdline,
201 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000202
Luiz Capitulino09069b12010-02-04 18:10:06 -0200203static inline int qmp_cmd_mode(const Monitor *mon)
204{
205 return (mon->mc ? mon->mc->command_mode : 0);
206}
207
Luiz Capitulino418173c2009-11-26 22:58:51 -0200208/* Return true if in control mode, false otherwise */
209static inline int monitor_ctrl_mode(const Monitor *mon)
210{
211 return (mon->flags & MONITOR_USE_CONTROL);
212}
213
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100214/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
215int monitor_cur_is_qmp(void)
216{
217 return cur_mon && monitor_ctrl_mode(cur_mon);
218}
219
aliguori731b0362009-03-05 23:01:42 +0000220static void monitor_read_command(Monitor *mon, int show_prompt)
221{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200222 if (!mon->rs)
223 return;
224
aliguori731b0362009-03-05 23:01:42 +0000225 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
226 if (show_prompt)
227 readline_show_prompt(mon->rs);
228}
bellard6a00d602005-11-21 23:25:50 +0000229
aliguoricde76ee2009-03-05 23:01:51 +0000230static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
231 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000232{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100233 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100234 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100235 return -EINVAL;
236 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000237 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
238 /* prompt is printed on return from the command handler */
239 return 0;
240 } else {
241 monitor_printf(mon, "terminal does not support password prompting\n");
242 return -ENOTTY;
243 }
aliguoribb5fc202009-03-05 23:01:15 +0000244}
245
aliguori376253e2009-03-05 23:01:23 +0000246void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000247{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200248 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000249 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
250 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000251 }
252}
253
254/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000255static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000256{
ths60fe76f2007-12-16 03:02:09 +0000257 char c;
aliguori731b0362009-03-05 23:01:42 +0000258
bellard7e2515e2004-08-01 21:52:19 +0000259 for(;;) {
260 c = *str++;
261 if (c == '\0')
262 break;
bellard7ba12602006-07-14 20:26:42 +0000263 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000264 mon->outbuf[mon->outbuf_index++] = '\r';
265 mon->outbuf[mon->outbuf_index++] = c;
266 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
267 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000268 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000269 }
270}
271
aliguori376253e2009-03-05 23:01:23 +0000272void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000273{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200274 char buf[4096];
275
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200276 if (!mon)
277 return;
278
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200279 mon_print_count_inc(mon);
280
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200281 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200282 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200283 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200284
285 vsnprintf(buf, sizeof(buf), fmt, ap);
286 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000287}
288
aliguori376253e2009-03-05 23:01:23 +0000289void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000290{
291 va_list ap;
292 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000293 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000294 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000295}
296
aliguori376253e2009-03-05 23:01:23 +0000297void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000298{
299 int i;
300
301 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000302 switch (filename[i]) {
303 case ' ':
304 case '"':
305 case '\\':
306 monitor_printf(mon, "\\%c", filename[i]);
307 break;
308 case '\t':
309 monitor_printf(mon, "\\t");
310 break;
311 case '\r':
312 monitor_printf(mon, "\\r");
313 break;
314 case '\n':
315 monitor_printf(mon, "\\n");
316 break;
317 default:
318 monitor_printf(mon, "%c", filename[i]);
319 break;
320 }
thsfef30742006-12-22 14:11:32 +0000321 }
322}
323
Stefan Weil8b7968f2010-09-23 21:28:05 +0200324static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
325 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000326{
327 va_list ap;
328 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000329 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000330 va_end(ap);
331 return 0;
332}
333
Luiz Capitulino13c74252009-10-07 13:41:55 -0300334static void monitor_user_noop(Monitor *mon, const QObject *data) { }
335
Luiz Capitulino9e807212010-09-16 10:58:59 -0300336static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300337{
338 return cmd->user_print != NULL;
339}
340
Luiz Capitulino4903de02010-09-16 11:01:32 -0300341static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600342{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200343 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600344}
345
Luiz Capitulino8204a912009-11-18 23:05:31 -0200346static inline int monitor_has_error(const Monitor *mon)
347{
348 return mon->error != NULL;
349}
350
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200351static void monitor_json_emitter(Monitor *mon, const QObject *data)
352{
353 QString *json;
354
Daniel P. Berrange39eaab92010-06-07 15:42:31 +0100355 if (mon->flags & MONITOR_USE_PRETTY)
356 json = qobject_to_json_pretty(data);
357 else
358 json = qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200359 assert(json != NULL);
360
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200361 qstring_append_chr(json, '\n');
362 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200363
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200364 QDECREF(json);
365}
366
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200367static void monitor_protocol_emitter(Monitor *mon, QObject *data)
368{
369 QDict *qmp;
370
371 qmp = qdict_new();
372
373 if (!monitor_has_error(mon)) {
374 /* success response */
375 if (data) {
376 qobject_incref(data);
377 qdict_put_obj(qmp, "return", data);
378 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200379 /* return an empty QDict by default */
380 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200381 }
382 } else {
383 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100384 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200385 qdict_put(qmp, "error", mon->error->error);
386 QINCREF(mon->error->error);
387 QDECREF(mon->error);
388 mon->error = NULL;
389 }
390
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200391 if (mon->mc->id) {
392 qdict_put_obj(qmp, "id", mon->mc->id);
393 mon->mc->id = NULL;
394 }
395
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200396 monitor_json_emitter(mon, QOBJECT(qmp));
397 QDECREF(qmp);
398}
399
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200400static void timestamp_put(QDict *qdict)
401{
402 int err;
403 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000404 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200405
Blue Swirld08d6f02009-12-04 18:06:39 +0000406 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200407 if (err < 0)
408 return;
409
410 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
411 "'microseconds': %" PRId64 " }",
412 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200413 qdict_put_obj(qdict, "timestamp", obj);
414}
415
416/**
417 * monitor_protocol_event(): Generate a Monitor event
418 *
419 * Event-specific data can be emitted through the (optional) 'data' parameter.
420 */
421void monitor_protocol_event(MonitorEvent event, QObject *data)
422{
423 QDict *qmp;
424 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600425 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200426
Blue Swirl242cd002009-12-04 18:05:45 +0000427 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200428
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200429 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000430 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200431 event_name = "SHUTDOWN";
432 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000433 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200434 event_name = "RESET";
435 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000436 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200437 event_name = "POWERDOWN";
438 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000439 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200440 event_name = "STOP";
441 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300442 case QEVENT_RESUME:
443 event_name = "RESUME";
444 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200445 case QEVENT_VNC_CONNECTED:
446 event_name = "VNC_CONNECTED";
447 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200448 case QEVENT_VNC_INITIALIZED:
449 event_name = "VNC_INITIALIZED";
450 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200451 case QEVENT_VNC_DISCONNECTED:
452 event_name = "VNC_DISCONNECTED";
453 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200454 case QEVENT_BLOCK_IO_ERROR:
455 event_name = "BLOCK_IO_ERROR";
456 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300457 case QEVENT_RTC_CHANGE:
458 event_name = "RTC_CHANGE";
459 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300460 case QEVENT_WATCHDOG:
461 event_name = "WATCHDOG";
462 break;
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +0200463 case QEVENT_SPICE_CONNECTED:
464 event_name = "SPICE_CONNECTED";
465 break;
466 case QEVENT_SPICE_INITIALIZED:
467 event_name = "SPICE_INITIALIZED";
468 break;
469 case QEVENT_SPICE_DISCONNECTED:
470 event_name = "SPICE_DISCONNECTED";
471 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200472 default:
473 abort();
474 break;
475 }
476
477 qmp = qdict_new();
478 timestamp_put(qmp);
479 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200480 if (data) {
481 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200482 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200483 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200484
Adam Litkef039a562010-01-15 08:34:02 -0600485 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200486 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200487 monitor_json_emitter(mon, QOBJECT(qmp));
488 }
Adam Litkef039a562010-01-15 08:34:02 -0600489 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200490 QDECREF(qmp);
491}
492
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200493static int do_qmp_capabilities(Monitor *mon, const QDict *params,
494 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200495{
496 /* Will setup QMP capabilities in the future */
497 if (monitor_ctrl_mode(mon)) {
498 mon->mc->command_mode = 1;
499 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200500
501 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200502}
503
Luiz Capitulino0268d972010-10-22 10:08:02 -0200504static int mon_set_cpu(int cpu_index);
505static void handle_user_command(Monitor *mon, const char *cmdline);
506
507static int do_hmp_passthrough(Monitor *mon, const QDict *params,
508 QObject **ret_data)
509{
510 int ret = 0;
511 Monitor *old_mon, hmp;
512 CharDriverState mchar;
513
514 memset(&hmp, 0, sizeof(hmp));
515 qemu_chr_init_mem(&mchar);
516 hmp.chr = &mchar;
517
518 old_mon = cur_mon;
519 cur_mon = &hmp;
520
521 if (qdict_haskey(params, "cpu-index")) {
522 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
523 if (ret < 0) {
524 cur_mon = old_mon;
525 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
526 goto out;
527 }
528 }
529
530 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
531 cur_mon = old_mon;
532
533 if (qemu_chr_mem_osize(hmp.chr) > 0) {
534 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
535 }
536
537out:
538 qemu_chr_close_mem(hmp.chr);
539 return ret;
540}
541
bellard9dc39cb2004-03-14 21:38:27 +0000542static int compare_cmd(const char *name, const char *list)
543{
544 const char *p, *pstart;
545 int len;
546 len = strlen(name);
547 p = list;
548 for(;;) {
549 pstart = p;
550 p = strchr(p, '|');
551 if (!p)
552 p = pstart + strlen(pstart);
553 if ((p - pstart) == len && !memcmp(pstart, name, len))
554 return 1;
555 if (*p == '\0')
556 break;
557 p++;
558 }
559 return 0;
560}
561
Anthony Liguoric227f092009-10-01 16:12:16 -0500562static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000563 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000564{
Anthony Liguoric227f092009-10-01 16:12:16 -0500565 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000566
567 for(cmd = cmds; cmd->name != NULL; cmd++) {
568 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000569 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
570 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000571 }
572}
573
aliguori376253e2009-03-05 23:01:23 +0000574static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000575{
576 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000577 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000578 } else {
aliguori376253e2009-03-05 23:01:23 +0000579 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000580 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000581 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000582 monitor_printf(mon, "Log items (comma separated):\n");
583 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000584 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000585 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000586 }
587 }
bellard9dc39cb2004-03-14 21:38:27 +0000588 }
589}
590
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300591static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300592{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300593 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300594}
595
Prerna Saxena22890ab2010-06-24 17:04:53 +0530596#ifdef CONFIG_SIMPLE_TRACE
597static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
598{
599 const char *tp_name = qdict_get_str(qdict, "name");
600 bool new_state = qdict_get_bool(qdict, "option");
Blue Swirlf871d682010-10-13 19:14:29 +0000601 int ret = st_change_trace_event_state(tp_name, new_state);
602
603 if (!ret) {
604 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
605 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530606}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100607
608static void do_trace_file(Monitor *mon, const QDict *qdict)
609{
610 const char *op = qdict_get_try_str(qdict, "op");
611 const char *arg = qdict_get_try_str(qdict, "arg");
612
613 if (!op) {
614 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
615 } else if (!strcmp(op, "on")) {
616 st_set_trace_file_enabled(true);
617 } else if (!strcmp(op, "off")) {
618 st_set_trace_file_enabled(false);
619 } else if (!strcmp(op, "flush")) {
620 st_flush_trace_buffer();
621 } else if (!strcmp(op, "set")) {
622 if (arg) {
623 st_set_trace_file(arg);
624 }
625 } else {
626 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
627 help_cmd(mon, "trace-file");
628 }
629}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530630#endif
631
Adam Litke940cc302010-01-25 12:18:44 -0600632static void user_monitor_complete(void *opaque, QObject *ret_data)
633{
634 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
635
636 if (ret_data) {
637 data->user_print(data->mon, ret_data);
638 }
639 monitor_resume(data->mon);
640 qemu_free(data);
641}
642
643static void qmp_monitor_complete(void *opaque, QObject *ret_data)
644{
645 monitor_protocol_emitter(opaque, ret_data);
646}
647
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300648static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
649 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600650{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300651 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600652}
653
654static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
655{
656 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
657}
658
659static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
660 const QDict *params)
661{
662 int ret;
663
664 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
665 cb_data->mon = mon;
666 cb_data->user_print = cmd->user_print;
667 monitor_suspend(mon);
668 ret = cmd->mhandler.cmd_async(mon, params,
669 user_monitor_complete, cb_data);
670 if (ret < 0) {
671 monitor_resume(mon);
672 qemu_free(cb_data);
673 }
674}
675
676static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
677{
678 int ret;
679
680 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
681 cb_data->mon = mon;
682 cb_data->user_print = cmd->user_print;
683 monitor_suspend(mon);
684 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
685 if (ret < 0) {
686 monitor_resume(mon);
687 qemu_free(cb_data);
688 }
689}
690
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300691static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000692{
Anthony Liguoric227f092009-10-01 16:12:16 -0500693 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300694 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000695
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200696 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000697 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200698 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300699
700 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000701 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300702 break;
bellard9dc39cb2004-03-14 21:38:27 +0000703 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300704
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200705 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300706 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200707 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300708
Luiz Capitulino4903de02010-09-16 11:01:32 -0300709 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300710 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300711 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300712 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200713
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300714 cmd->mhandler.info_new(mon, &info_data);
715 if (info_data) {
716 cmd->user_print(mon, info_data);
717 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200718 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300719 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300720 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300721 }
722
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300723 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300724
725help:
726 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000727}
728
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200729static void do_info_version_print(Monitor *mon, const QObject *data)
730{
731 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300732 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200733
734 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300735 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200736
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300737 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
738 qdict_get_int(qemu, "major"),
739 qdict_get_int(qemu, "minor"),
740 qdict_get_int(qemu, "micro"),
741 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200742}
743
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300744static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000745{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300746 const char *version = QEMU_VERSION;
747 int major = 0, minor = 0, micro = 0;
748 char *tmp;
749
750 major = strtol(version, &tmp, 10);
751 tmp++;
752 minor = strtol(tmp, &tmp, 10);
753 tmp++;
754 micro = strtol(tmp, &tmp, 10);
755
756 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
757 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000758}
759
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200760static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000761{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200762 QDict *qdict;
763
764 qdict = qobject_to_qdict(data);
765 if (qdict_size(qdict) == 0) {
766 return;
767 }
768
769 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
770}
771
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200772static void do_info_name(Monitor *mon, QObject **ret_data)
773{
774 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
775 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000776}
777
Luiz Capitulino1a728672009-12-10 17:15:56 -0200778static QObject *get_cmd_dict(const char *name)
779{
780 const char *p;
781
782 /* Remove '|' from some commands */
783 p = strchr(name, '|');
784 if (p) {
785 p++;
786 } else {
787 p = name;
788 }
789
790 return qobject_from_jsonf("{ 'name': %s }", p);
791}
792
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200793static void do_info_commands(Monitor *mon, QObject **ret_data)
794{
795 QList *cmd_list;
796 const mon_cmd_t *cmd;
797
798 cmd_list = qlist_new();
799
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300800 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300801 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200802 }
803
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300804 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300805 char buf[128];
806 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
807 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200808 }
809
810 *ret_data = QOBJECT(cmd_list);
811}
812
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200813static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000814{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200815 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
816}
817
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200818static void do_info_uuid(Monitor *mon, QObject **ret_data)
819{
820 char uuid[64];
821
822 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000823 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
824 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
825 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
826 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200827 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000828}
829
bellard6a00d602005-11-21 23:25:50 +0000830/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000831static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000832{
833 CPUState *env;
834
835 for(env = first_cpu; env != NULL; env = env->next_cpu) {
836 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000837 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000838 return 0;
839 }
840 }
841 return -1;
842}
843
pbrook9596ebb2007-11-18 01:44:38 +0000844static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000845{
aliguori731b0362009-03-05 23:01:42 +0000846 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000847 mon_set_cpu(0);
848 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300849 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000850 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000851}
852
aliguori376253e2009-03-05 23:01:23 +0000853static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000854{
bellard6a00d602005-11-21 23:25:50 +0000855 CPUState *env;
856 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000857#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000858 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000859 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000860#else
aliguori376253e2009-03-05 23:01:23 +0000861 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000862 0);
bellard9307c4c2004-04-04 12:57:25 +0000863#endif
864}
865
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300866static void print_cpu_iter(QObject *obj, void *opaque)
867{
868 QDict *cpu;
869 int active = ' ';
870 Monitor *mon = opaque;
871
872 assert(qobject_type(obj) == QTYPE_QDICT);
873 cpu = qobject_to_qdict(obj);
874
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200875 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300876 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200877 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300878
879 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
880
881#if defined(TARGET_I386)
882 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
883 (target_ulong) qdict_get_int(cpu, "pc"));
884#elif defined(TARGET_PPC)
885 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
886 (target_long) qdict_get_int(cpu, "nip"));
887#elif defined(TARGET_SPARC)
888 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
889 (target_long) qdict_get_int(cpu, "pc"));
890 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
891 (target_long) qdict_get_int(cpu, "npc"));
892#elif defined(TARGET_MIPS)
893 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
894 (target_long) qdict_get_int(cpu, "PC"));
895#endif
896
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200897 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300898 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200899 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300900
901 monitor_printf(mon, "\n");
902}
903
904static void monitor_print_cpus(Monitor *mon, const QObject *data)
905{
906 QList *cpu_list;
907
908 assert(qobject_type(data) == QTYPE_QLIST);
909 cpu_list = qobject_to_qlist(data);
910 qlist_iter(cpu_list, print_cpu_iter, mon);
911}
912
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300913static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000914{
915 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300916 QList *cpu_list;
917
918 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000919
920 /* just to set the default cpu if not already done */
921 mon_get_cpu();
922
923 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200924 QDict *cpu;
925 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300926
Avi Kivity4c0960c2009-08-17 23:19:53 +0300927 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300928
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200929 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
930 env->cpu_index, env == mon->mon_cpu,
931 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200932
933 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300934
bellard6a00d602005-11-21 23:25:50 +0000935#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300936 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000937#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300938 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000939#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300940 qdict_put(cpu, "pc", qint_from_int(env->pc));
941 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000942#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300943 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000944#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300945
946 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000947 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300948
949 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000950}
951
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200952static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000953{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300954 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200955 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100956 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
957 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200958 return -1;
959 }
960 return 0;
bellard6a00d602005-11-21 23:25:50 +0000961}
962
aliguori376253e2009-03-05 23:01:23 +0000963static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000964{
aliguori376253e2009-03-05 23:01:23 +0000965 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000966}
967
aliguori376253e2009-03-05 23:01:23 +0000968static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000969{
970 int i;
bellard7e2515e2004-08-01 21:52:19 +0000971 const char *str;
ths3b46e622007-09-17 08:09:54 +0000972
aliguoricde76ee2009-03-05 23:01:51 +0000973 if (!mon->rs)
974 return;
bellard7e2515e2004-08-01 21:52:19 +0000975 i = 0;
976 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000977 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000978 if (!str)
979 break;
aliguori376253e2009-03-05 23:01:23 +0000980 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000981 i++;
bellardaa455482004-04-04 13:07:25 +0000982 }
983}
984
j_mayer76a66252007-03-07 08:32:30 +0000985#if defined(TARGET_PPC)
986/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000987static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000988{
989 CPUState *env;
990
991 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000992 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000993}
994#endif
995
Prerna Saxena22890ab2010-06-24 17:04:53 +0530996#if defined(CONFIG_SIMPLE_TRACE)
997static void do_info_trace(Monitor *mon)
998{
999 st_print_trace((FILE *)mon, &monitor_fprintf);
1000}
1001
1002static void do_info_trace_events(Monitor *mon)
1003{
1004 st_print_trace_events((FILE *)mon, &monitor_fprintf);
1005}
1006#endif
1007
Luiz Capitulinob223f352009-10-07 13:41:56 -03001008/**
1009 * do_quit(): Quit QEMU execution
1010 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001011static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +00001012{
Luiz Capitulino39b59d22010-05-11 18:08:20 -03001013 monitor_suspend(mon);
1014 no_shutdown = 0;
1015 qemu_system_shutdown_request();
1016
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001017 return 0;
bellard9dc39cb2004-03-14 21:38:27 +00001018}
1019
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001020static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001021{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001022 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001023 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001024 return -1;
1025 }
aliguoribb5fc202009-03-05 23:01:15 +00001026
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001027 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +01001028}
1029
1030static void change_vnc_password_cb(Monitor *mon, const char *password,
1031 void *opaque)
1032{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001033 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001034 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001035}
1036
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001037static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001038{
ths70848512007-08-25 01:37:05 +00001039 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001040 strcmp(target, "password") == 0) {
1041 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001042 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001043 strncpy(password, arg, sizeof(password));
1044 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001045 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001046 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001047 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001048 }
ths70848512007-08-25 01:37:05 +00001049 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001050 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001051 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001052 return -1;
1053 }
ths70848512007-08-25 01:37:05 +00001054 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001055
1056 return 0;
thse25a5822007-08-25 01:36:20 +00001057}
1058
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001059/**
1060 * do_change(): Change a removable medium, or VNC configuration
1061 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001062static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001063{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001064 const char *device = qdict_get_str(qdict, "device");
1065 const char *target = qdict_get_str(qdict, "target");
1066 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001067 int ret;
1068
thse25a5822007-08-25 01:36:20 +00001069 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001070 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001071 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001072 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001073 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001074
1075 return ret;
thse25a5822007-08-25 01:36:20 +00001076}
1077
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001078static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001079{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001080 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001081 return 0;
bellard59a983b2004-03-17 23:17:16 +00001082}
1083
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001084static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001085{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001086 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001087}
1088
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001089static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001090{
1091 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001092 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001093
bellard9307c4c2004-04-04 12:57:25 +00001094 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001095 mask = 0;
1096 } else {
bellard9307c4c2004-04-04 12:57:25 +00001097 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001098 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001099 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001100 return;
1101 }
1102 }
1103 cpu_set_log(mask);
1104}
1105
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001106static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001107{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001108 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001109 if (!option || !strcmp(option, "on")) {
1110 singlestep = 1;
1111 } else if (!strcmp(option, "off")) {
1112 singlestep = 0;
1113 } else {
1114 monitor_printf(mon, "unexpected option %s\n", option);
1115 }
1116}
1117
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001118/**
1119 * do_stop(): Stop VM execution
1120 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001121static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001122{
1123 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001124 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001125}
1126
aliguoribb5fc202009-03-05 23:01:15 +00001127static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001128
aliguori376253e2009-03-05 23:01:23 +00001129struct bdrv_iterate_context {
1130 Monitor *mon;
1131 int err;
1132};
aliguoric0f4ce72009-03-05 23:01:01 +00001133
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001134/**
1135 * do_cont(): Resume emulation.
1136 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001137static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001138{
1139 struct bdrv_iterate_context context = { mon, 0 };
1140
Amit Shah8e848652010-07-27 15:49:19 +05301141 if (incoming_expected) {
1142 qerror_report(QERR_MIGRATION_EXPECTED);
1143 return -1;
1144 }
aliguori376253e2009-03-05 23:01:23 +00001145 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001146 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001147 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001148 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001149 return 0;
1150 } else {
1151 return -1;
1152 }
bellard8a7ddc32004-03-31 19:00:16 +00001153}
1154
aliguoribb5fc202009-03-05 23:01:15 +00001155static void bdrv_key_cb(void *opaque, int err)
1156{
aliguori376253e2009-03-05 23:01:23 +00001157 Monitor *mon = opaque;
1158
aliguoribb5fc202009-03-05 23:01:15 +00001159 /* another key was set successfully, retry to continue */
1160 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001161 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001162}
1163
1164static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1165{
aliguori376253e2009-03-05 23:01:23 +00001166 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001167
aliguori376253e2009-03-05 23:01:23 +00001168 if (!context->err && bdrv_key_required(bs)) {
1169 context->err = -EBUSY;
1170 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1171 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001172 }
1173}
1174
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001175static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001176{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001177 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001178 if (!device)
1179 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1180 if (gdbserver_start(device) < 0) {
1181 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1182 device);
1183 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001184 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001185 } else {
aliguori59030a82009-04-05 18:43:41 +00001186 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1187 device);
bellard8a7ddc32004-03-31 19:00:16 +00001188 }
1189}
1190
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001191static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001192{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001193 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001194 if (select_watchdog_action(action) == -1) {
1195 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1196 }
1197}
1198
aliguori376253e2009-03-05 23:01:23 +00001199static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001200{
aliguori376253e2009-03-05 23:01:23 +00001201 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001202 switch(c) {
1203 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001204 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001205 break;
1206 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001207 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001208 break;
1209 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001210 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001211 break;
1212 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001213 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001214 break;
1215 default:
1216 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001217 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001218 } else {
aliguori376253e2009-03-05 23:01:23 +00001219 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001220 }
1221 break;
1222 }
aliguori376253e2009-03-05 23:01:23 +00001223 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001224}
1225
aliguori376253e2009-03-05 23:01:23 +00001226static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001227 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001228{
bellard6a00d602005-11-21 23:25:50 +00001229 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001230 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001231 uint8_t buf[16];
1232 uint64_t v;
1233
1234 if (format == 'i') {
1235 int flags;
1236 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001237 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001238#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001239 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001240 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001241 } else if (wsize == 4) {
1242 flags = 0;
1243 } else {
bellard6a15fd12006-04-12 21:07:07 +00001244 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001245 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001246 if (env) {
1247#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001248 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001249 (env->segs[R_CS].flags & DESC_L_MASK))
1250 flags = 2;
1251 else
1252#endif
1253 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1254 flags = 1;
1255 }
bellard4c27ba22004-04-25 18:05:08 +00001256 }
1257#endif
aliguori376253e2009-03-05 23:01:23 +00001258 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001259 return;
1260 }
1261
1262 len = wsize * count;
1263 if (wsize == 1)
1264 line_size = 8;
1265 else
1266 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001267 max_digits = 0;
1268
1269 switch(format) {
1270 case 'o':
1271 max_digits = (wsize * 8 + 2) / 3;
1272 break;
1273 default:
1274 case 'x':
1275 max_digits = (wsize * 8) / 4;
1276 break;
1277 case 'u':
1278 case 'd':
1279 max_digits = (wsize * 8 * 10 + 32) / 33;
1280 break;
1281 case 'c':
1282 wsize = 1;
1283 break;
1284 }
1285
1286 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001287 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001288 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001289 else
aliguori376253e2009-03-05 23:01:23 +00001290 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001291 l = len;
1292 if (l > line_size)
1293 l = line_size;
1294 if (is_physical) {
1295 cpu_physical_memory_rw(addr, buf, l, 0);
1296 } else {
bellard6a00d602005-11-21 23:25:50 +00001297 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001298 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001299 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001300 break;
1301 }
bellard9307c4c2004-04-04 12:57:25 +00001302 }
ths5fafdf22007-09-16 21:08:06 +00001303 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001304 while (i < l) {
1305 switch(wsize) {
1306 default:
1307 case 1:
1308 v = ldub_raw(buf + i);
1309 break;
1310 case 2:
1311 v = lduw_raw(buf + i);
1312 break;
1313 case 4:
bellard92a31b12005-02-10 22:00:52 +00001314 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001315 break;
1316 case 8:
1317 v = ldq_raw(buf + i);
1318 break;
1319 }
aliguori376253e2009-03-05 23:01:23 +00001320 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001321 switch(format) {
1322 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001323 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001324 break;
1325 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001326 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001327 break;
1328 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001329 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001330 break;
1331 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001332 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001333 break;
1334 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001335 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001336 break;
1337 }
1338 i += wsize;
1339 }
aliguori376253e2009-03-05 23:01:23 +00001340 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001341 addr += l;
1342 len -= l;
1343 }
1344}
1345
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001346static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001347{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001348 int count = qdict_get_int(qdict, "count");
1349 int format = qdict_get_int(qdict, "format");
1350 int size = qdict_get_int(qdict, "size");
1351 target_long addr = qdict_get_int(qdict, "addr");
1352
aliguori376253e2009-03-05 23:01:23 +00001353 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001354}
1355
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001356static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001357{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001358 int count = qdict_get_int(qdict, "count");
1359 int format = qdict_get_int(qdict, "format");
1360 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001361 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001362
aliguori376253e2009-03-05 23:01:23 +00001363 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001364}
1365
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001366static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001367{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001368 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001369 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001370
blueswir17743e582007-09-24 18:39:04 +00001371#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001372 switch(format) {
1373 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001375 break;
1376 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001377 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001378 break;
1379 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001380 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001381 break;
1382 default:
1383 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001384 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001385 break;
1386 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001387 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001388 break;
1389 }
bellard92a31b12005-02-10 22:00:52 +00001390#else
1391 switch(format) {
1392 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001393 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001394 break;
1395 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001396 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001397 break;
1398 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001399 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001400 break;
1401 default:
1402 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001403 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001404 break;
1405 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001406 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001407 break;
1408 }
1409#endif
aliguori376253e2009-03-05 23:01:23 +00001410 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001411}
1412
Luiz Capitulino98696222010-02-10 23:49:58 -02001413static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001414{
1415 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001416 uint32_t size = qdict_get_int(qdict, "size");
1417 const char *filename = qdict_get_str(qdict, "filename");
1418 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001419 uint32_t l;
1420 CPUState *env;
1421 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001422 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001423
1424 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001425
1426 f = fopen(filename, "wb");
1427 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001428 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001429 return -1;
bellardb371dc52007-01-03 15:20:39 +00001430 }
1431 while (size != 0) {
1432 l = sizeof(buf);
1433 if (l > size)
1434 l = size;
1435 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001436 if (fwrite(buf, 1, l, f) != l) {
1437 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1438 goto exit;
1439 }
bellardb371dc52007-01-03 15:20:39 +00001440 addr += l;
1441 size -= l;
1442 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001443
1444 ret = 0;
1445
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001446exit:
bellardb371dc52007-01-03 15:20:39 +00001447 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001448 return ret;
bellardb371dc52007-01-03 15:20:39 +00001449}
1450
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001451static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001452 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001453{
1454 FILE *f;
1455 uint32_t l;
1456 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001457 uint32_t size = qdict_get_int(qdict, "size");
1458 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001459 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001460 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001461
1462 f = fopen(filename, "wb");
1463 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001464 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001465 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001466 }
1467 while (size != 0) {
1468 l = sizeof(buf);
1469 if (l > size)
1470 l = size;
1471 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001472 if (fwrite(buf, 1, l, f) != l) {
1473 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1474 goto exit;
1475 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001476 fflush(f);
1477 addr += l;
1478 size -= l;
1479 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001480
1481 ret = 0;
1482
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001483exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001484 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001485 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001486}
1487
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001488static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001489{
1490 uint32_t addr;
1491 uint8_t buf[1];
1492 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001493 uint32_t start = qdict_get_int(qdict, "start");
1494 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001495
1496 sum = 0;
1497 for(addr = start; addr < (start + size); addr++) {
1498 cpu_physical_memory_rw(addr, buf, 1, 0);
1499 /* BSD sum algorithm ('sum' Unix command) */
1500 sum = (sum >> 1) | (sum << 15);
1501 sum += buf[0];
1502 }
aliguori376253e2009-03-05 23:01:23 +00001503 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001504}
1505
bellarda3a91a32004-06-04 11:06:21 +00001506typedef struct {
1507 int keycode;
1508 const char *name;
1509} KeyDef;
1510
1511static const KeyDef key_defs[] = {
1512 { 0x2a, "shift" },
1513 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001514
bellarda3a91a32004-06-04 11:06:21 +00001515 { 0x38, "alt" },
1516 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001517 { 0x64, "altgr" },
1518 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001519 { 0x1d, "ctrl" },
1520 { 0x9d, "ctrl_r" },
1521
1522 { 0xdd, "menu" },
1523
1524 { 0x01, "esc" },
1525
1526 { 0x02, "1" },
1527 { 0x03, "2" },
1528 { 0x04, "3" },
1529 { 0x05, "4" },
1530 { 0x06, "5" },
1531 { 0x07, "6" },
1532 { 0x08, "7" },
1533 { 0x09, "8" },
1534 { 0x0a, "9" },
1535 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001536 { 0x0c, "minus" },
1537 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001538 { 0x0e, "backspace" },
1539
1540 { 0x0f, "tab" },
1541 { 0x10, "q" },
1542 { 0x11, "w" },
1543 { 0x12, "e" },
1544 { 0x13, "r" },
1545 { 0x14, "t" },
1546 { 0x15, "y" },
1547 { 0x16, "u" },
1548 { 0x17, "i" },
1549 { 0x18, "o" },
1550 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001551 { 0x1a, "bracket_left" },
1552 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001553 { 0x1c, "ret" },
1554
1555 { 0x1e, "a" },
1556 { 0x1f, "s" },
1557 { 0x20, "d" },
1558 { 0x21, "f" },
1559 { 0x22, "g" },
1560 { 0x23, "h" },
1561 { 0x24, "j" },
1562 { 0x25, "k" },
1563 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001564 { 0x27, "semicolon" },
1565 { 0x28, "apostrophe" },
1566 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001567
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001568 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001569 { 0x2c, "z" },
1570 { 0x2d, "x" },
1571 { 0x2e, "c" },
1572 { 0x2f, "v" },
1573 { 0x30, "b" },
1574 { 0x31, "n" },
1575 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001576 { 0x33, "comma" },
1577 { 0x34, "dot" },
1578 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001579
balrog4d3b6f62008-02-10 16:33:14 +00001580 { 0x37, "asterisk" },
1581
bellarda3a91a32004-06-04 11:06:21 +00001582 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001583 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001584 { 0x3b, "f1" },
1585 { 0x3c, "f2" },
1586 { 0x3d, "f3" },
1587 { 0x3e, "f4" },
1588 { 0x3f, "f5" },
1589 { 0x40, "f6" },
1590 { 0x41, "f7" },
1591 { 0x42, "f8" },
1592 { 0x43, "f9" },
1593 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001594 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001595 { 0x46, "scroll_lock" },
1596
bellard64866c32006-05-07 18:03:31 +00001597 { 0xb5, "kp_divide" },
1598 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001599 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001600 { 0x4e, "kp_add" },
1601 { 0x9c, "kp_enter" },
1602 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001603 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001604
1605 { 0x52, "kp_0" },
1606 { 0x4f, "kp_1" },
1607 { 0x50, "kp_2" },
1608 { 0x51, "kp_3" },
1609 { 0x4b, "kp_4" },
1610 { 0x4c, "kp_5" },
1611 { 0x4d, "kp_6" },
1612 { 0x47, "kp_7" },
1613 { 0x48, "kp_8" },
1614 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001615
bellarda3a91a32004-06-04 11:06:21 +00001616 { 0x56, "<" },
1617
1618 { 0x57, "f11" },
1619 { 0x58, "f12" },
1620
1621 { 0xb7, "print" },
1622
1623 { 0xc7, "home" },
1624 { 0xc9, "pgup" },
1625 { 0xd1, "pgdn" },
1626 { 0xcf, "end" },
1627
1628 { 0xcb, "left" },
1629 { 0xc8, "up" },
1630 { 0xd0, "down" },
1631 { 0xcd, "right" },
1632
1633 { 0xd2, "insert" },
1634 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001635#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1636 { 0xf0, "stop" },
1637 { 0xf1, "again" },
1638 { 0xf2, "props" },
1639 { 0xf3, "undo" },
1640 { 0xf4, "front" },
1641 { 0xf5, "copy" },
1642 { 0xf6, "open" },
1643 { 0xf7, "paste" },
1644 { 0xf8, "find" },
1645 { 0xf9, "cut" },
1646 { 0xfa, "lf" },
1647 { 0xfb, "help" },
1648 { 0xfc, "meta_l" },
1649 { 0xfd, "meta_r" },
1650 { 0xfe, "compose" },
1651#endif
bellarda3a91a32004-06-04 11:06:21 +00001652 { 0, NULL },
1653};
1654
1655static int get_keycode(const char *key)
1656{
1657 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001658 char *endp;
1659 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001660
1661 for(p = key_defs; p->name != NULL; p++) {
1662 if (!strcmp(key, p->name))
1663 return p->keycode;
1664 }
bellard64866c32006-05-07 18:03:31 +00001665 if (strstart(key, "0x", NULL)) {
1666 ret = strtoul(key, &endp, 0);
1667 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1668 return ret;
1669 }
bellarda3a91a32004-06-04 11:06:21 +00001670 return -1;
1671}
1672
balrogc8256f92008-06-08 22:45:01 +00001673#define MAX_KEYCODES 16
1674static uint8_t keycodes[MAX_KEYCODES];
1675static int nb_pending_keycodes;
1676static QEMUTimer *key_timer;
1677
1678static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001679{
balrogc8256f92008-06-08 22:45:01 +00001680 int keycode;
1681
1682 while (nb_pending_keycodes > 0) {
1683 nb_pending_keycodes--;
1684 keycode = keycodes[nb_pending_keycodes];
1685 if (keycode & 0x80)
1686 kbd_put_keycode(0xe0);
1687 kbd_put_keycode(keycode | 0x80);
1688 }
1689}
1690
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001691static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001692{
balrog3401c0d2008-06-04 10:05:59 +00001693 char keyname_buf[16];
1694 char *separator;
1695 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001696 const char *string = qdict_get_str(qdict, "string");
1697 int has_hold_time = qdict_haskey(qdict, "hold_time");
1698 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001699
balrogc8256f92008-06-08 22:45:01 +00001700 if (nb_pending_keycodes > 0) {
1701 qemu_del_timer(key_timer);
1702 release_keys(NULL);
1703 }
1704 if (!has_hold_time)
1705 hold_time = 100;
1706 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001707 while (1) {
1708 separator = strchr(string, '-');
1709 keyname_len = separator ? separator - string : strlen(string);
1710 if (keyname_len > 0) {
1711 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1712 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001713 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001714 return;
bellarda3a91a32004-06-04 11:06:21 +00001715 }
balrogc8256f92008-06-08 22:45:01 +00001716 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001717 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001718 return;
1719 }
1720 keyname_buf[keyname_len] = 0;
1721 keycode = get_keycode(keyname_buf);
1722 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001723 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001724 return;
1725 }
balrogc8256f92008-06-08 22:45:01 +00001726 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001727 }
balrog3401c0d2008-06-04 10:05:59 +00001728 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001729 break;
balrog3401c0d2008-06-04 10:05:59 +00001730 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001731 }
balrogc8256f92008-06-08 22:45:01 +00001732 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001733 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001734 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001735 keycode = keycodes[i];
1736 if (keycode & 0x80)
1737 kbd_put_keycode(0xe0);
1738 kbd_put_keycode(keycode & 0x7f);
1739 }
balrogc8256f92008-06-08 22:45:01 +00001740 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001741 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001742 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001743}
1744
bellard13224a82006-07-14 22:03:35 +00001745static int mouse_button_state;
1746
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001747static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001748{
1749 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001750 const char *dx_str = qdict_get_str(qdict, "dx_str");
1751 const char *dy_str = qdict_get_str(qdict, "dy_str");
1752 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001753 dx = strtol(dx_str, NULL, 0);
1754 dy = strtol(dy_str, NULL, 0);
1755 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001756 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001757 dz = strtol(dz_str, NULL, 0);
1758 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1759}
1760
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001761static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001762{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001763 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001764 mouse_button_state = button_state;
1765 kbd_mouse_event(0, 0, 0, mouse_button_state);
1766}
1767
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001768static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001769{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001770 int size = qdict_get_int(qdict, "size");
1771 int addr = qdict_get_int(qdict, "addr");
1772 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001773 uint32_t val;
1774 int suffix;
1775
1776 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001777 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001778 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001779 addr++;
1780 }
1781 addr &= 0xffff;
1782
1783 switch(size) {
1784 default:
1785 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001786 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001787 suffix = 'b';
1788 break;
1789 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001790 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001791 suffix = 'w';
1792 break;
1793 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001794 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001795 suffix = 'l';
1796 break;
1797 }
aliguori376253e2009-03-05 23:01:23 +00001798 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1799 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001800}
bellarda3a91a32004-06-04 11:06:21 +00001801
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001802static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001803{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001804 int size = qdict_get_int(qdict, "size");
1805 int addr = qdict_get_int(qdict, "addr");
1806 int val = qdict_get_int(qdict, "val");
1807
Jan Kiszkaf1147842009-07-14 10:20:11 +02001808 addr &= IOPORTS_MASK;
1809
1810 switch (size) {
1811 default:
1812 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001813 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001814 break;
1815 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001816 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001817 break;
1818 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001819 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001820 break;
1821 }
1822}
1823
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001824static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001825{
1826 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001827 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001828
Jan Kiszka76e30d02009-07-02 00:19:02 +02001829 res = qemu_boot_set(bootdevice);
1830 if (res == 0) {
1831 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1832 } else if (res > 0) {
1833 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001834 } else {
aliguori376253e2009-03-05 23:01:23 +00001835 monitor_printf(mon, "no function defined to set boot device list for "
1836 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001837 }
1838}
1839
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001840/**
1841 * do_system_reset(): Issue a machine reset
1842 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001843static int do_system_reset(Monitor *mon, const QDict *qdict,
1844 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001845{
1846 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001847 return 0;
bellarde4f90822004-06-20 12:35:44 +00001848}
1849
Luiz Capitulino43076662009-10-07 13:41:59 -03001850/**
1851 * do_system_powerdown(): Issue a machine powerdown
1852 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001853static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1854 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001855{
1856 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001857 return 0;
bellard34751872005-07-02 14:31:34 +00001858}
1859
bellardb86bda52004-09-18 19:32:46 +00001860#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001861static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001862{
aliguori376253e2009-03-05 23:01:23 +00001863 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1864 addr,
1865 pte & mask,
1866 pte & PG_GLOBAL_MASK ? 'G' : '-',
1867 pte & PG_PSE_MASK ? 'P' : '-',
1868 pte & PG_DIRTY_MASK ? 'D' : '-',
1869 pte & PG_ACCESSED_MASK ? 'A' : '-',
1870 pte & PG_PCD_MASK ? 'C' : '-',
1871 pte & PG_PWT_MASK ? 'T' : '-',
1872 pte & PG_USER_MASK ? 'U' : '-',
1873 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001874}
1875
aliguori376253e2009-03-05 23:01:23 +00001876static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001877{
bellard6a00d602005-11-21 23:25:50 +00001878 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001879 int l1, l2;
1880 uint32_t pgd, pde, pte;
1881
bellard6a00d602005-11-21 23:25:50 +00001882 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001883
bellardb86bda52004-09-18 19:32:46 +00001884 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001885 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001886 return;
1887 }
1888 pgd = env->cr[3] & ~0xfff;
1889 for(l1 = 0; l1 < 1024; l1++) {
1890 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1891 pde = le32_to_cpu(pde);
1892 if (pde & PG_PRESENT_MASK) {
1893 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001894 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001895 } else {
1896 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001897 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001898 (uint8_t *)&pte, 4);
1899 pte = le32_to_cpu(pte);
1900 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001901 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001902 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001903 ~0xfff);
1904 }
1905 }
1906 }
1907 }
1908 }
1909}
1910
aliguori376253e2009-03-05 23:01:23 +00001911static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001912 uint32_t end, int prot)
1913{
bellard9746b152004-11-11 18:30:24 +00001914 int prot1;
1915 prot1 = *plast_prot;
1916 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001917 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001918 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1919 *pstart, end, end - *pstart,
1920 prot1 & PG_USER_MASK ? 'u' : '-',
1921 'r',
1922 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001923 }
1924 if (prot != 0)
1925 *pstart = end;
1926 else
1927 *pstart = -1;
1928 *plast_prot = prot;
1929 }
1930}
1931
aliguori376253e2009-03-05 23:01:23 +00001932static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001933{
bellard6a00d602005-11-21 23:25:50 +00001934 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001935 int l1, l2, prot, last_prot;
1936 uint32_t pgd, pde, pte, start, end;
1937
bellard6a00d602005-11-21 23:25:50 +00001938 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001939
bellardb86bda52004-09-18 19:32:46 +00001940 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001941 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001942 return;
1943 }
1944 pgd = env->cr[3] & ~0xfff;
1945 last_prot = 0;
1946 start = -1;
1947 for(l1 = 0; l1 < 1024; l1++) {
1948 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1949 pde = le32_to_cpu(pde);
1950 end = l1 << 22;
1951 if (pde & PG_PRESENT_MASK) {
1952 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1953 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001954 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001955 } else {
1956 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001957 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001958 (uint8_t *)&pte, 4);
1959 pte = le32_to_cpu(pte);
1960 end = (l1 << 22) + (l2 << 12);
1961 if (pte & PG_PRESENT_MASK) {
1962 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1963 } else {
1964 prot = 0;
1965 }
aliguori376253e2009-03-05 23:01:23 +00001966 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001967 }
1968 }
1969 } else {
1970 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001971 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001972 }
1973 }
1974}
1975#endif
1976
aurel327c664e22009-03-03 06:12:22 +00001977#if defined(TARGET_SH4)
1978
aliguori376253e2009-03-05 23:01:23 +00001979static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001980{
aliguori376253e2009-03-05 23:01:23 +00001981 monitor_printf(mon, " tlb%i:\t"
1982 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1983 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1984 "dirty=%hhu writethrough=%hhu\n",
1985 idx,
1986 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1987 tlb->v, tlb->sh, tlb->c, tlb->pr,
1988 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001989}
1990
aliguori376253e2009-03-05 23:01:23 +00001991static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001992{
1993 CPUState *env = mon_get_cpu();
1994 int i;
1995
aliguori376253e2009-03-05 23:01:23 +00001996 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001997 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001998 print_tlb (mon, i, &env->itlb[i]);
1999 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002000 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002001 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002002}
2003
2004#endif
2005
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002006static void do_info_kvm_print(Monitor *mon, const QObject *data)
2007{
2008 QDict *qdict;
2009
2010 qdict = qobject_to_qdict(data);
2011
2012 monitor_printf(mon, "kvm support: ");
2013 if (qdict_get_bool(qdict, "present")) {
2014 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2015 "enabled" : "disabled");
2016 } else {
2017 monitor_printf(mon, "not compiled\n");
2018 }
2019}
2020
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002021static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002022{
2023#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002024 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2025 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002026#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002027 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002028#endif
2029}
2030
aliguori030ea372009-04-21 22:30:47 +00002031static void do_info_numa(Monitor *mon)
2032{
aliguorib28b6232009-04-22 20:20:29 +00002033 int i;
aliguori030ea372009-04-21 22:30:47 +00002034 CPUState *env;
2035
2036 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2037 for (i = 0; i < nb_numa_nodes; i++) {
2038 monitor_printf(mon, "node %d cpus:", i);
2039 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2040 if (env->numa_node == i) {
2041 monitor_printf(mon, " %d", env->cpu_index);
2042 }
2043 }
2044 monitor_printf(mon, "\n");
2045 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2046 node_mem[i] >> 20);
2047 }
2048}
2049
bellard5f1ce942006-02-08 22:40:15 +00002050#ifdef CONFIG_PROFILER
2051
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002052int64_t qemu_time;
2053int64_t dev_time;
2054
aliguori376253e2009-03-05 23:01:23 +00002055static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002056{
2057 int64_t total;
2058 total = qemu_time;
2059 if (total == 0)
2060 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002061 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002062 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002063 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002064 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002065 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002066 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002067}
2068#else
aliguori376253e2009-03-05 23:01:23 +00002069static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002070{
aliguori376253e2009-03-05 23:01:23 +00002071 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002072}
2073#endif
2074
bellardec36b692006-07-16 18:57:03 +00002075/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002076static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002077
aliguori376253e2009-03-05 23:01:23 +00002078static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002079{
2080 int i;
2081 CaptureState *s;
2082
2083 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002084 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002085 s->ops.info (s->opaque);
2086 }
2087}
2088
Blue Swirl23130862009-06-06 08:22:04 +00002089#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002090static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002091{
2092 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002093 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002094 CaptureState *s;
2095
2096 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2097 if (i == n) {
2098 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002099 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002100 qemu_free (s);
2101 return;
2102 }
2103 }
2104}
2105
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002106static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002107{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002108 const char *path = qdict_get_str(qdict, "path");
2109 int has_freq = qdict_haskey(qdict, "freq");
2110 int freq = qdict_get_try_int(qdict, "freq", -1);
2111 int has_bits = qdict_haskey(qdict, "bits");
2112 int bits = qdict_get_try_int(qdict, "bits", -1);
2113 int has_channels = qdict_haskey(qdict, "nchannels");
2114 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002115 CaptureState *s;
2116
2117 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002118
2119 freq = has_freq ? freq : 44100;
2120 bits = has_bits ? bits : 16;
2121 nchannels = has_channels ? nchannels : 2;
2122
2123 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002124 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002125 qemu_free (s);
2126 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002127 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002128}
2129#endif
2130
aurel32dc1c0b72008-04-27 23:52:12 +00002131#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002132static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002133{
2134 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002135 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002136
2137 for (env = first_cpu; env != NULL; env = env->next_cpu)
2138 if (env->cpu_index == cpu_index) {
2139 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2140 break;
2141 }
2142}
2143#endif
2144
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002145static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002146{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002147 QDict *qdict;
2148
2149 qdict = qobject_to_qdict(data);
2150
2151 monitor_printf(mon, "VM status: ");
2152 if (qdict_get_bool(qdict, "running")) {
2153 monitor_printf(mon, "running");
2154 if (qdict_get_bool(qdict, "singlestep")) {
2155 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002156 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002157 } else {
2158 monitor_printf(mon, "paused");
2159 }
2160
2161 monitor_printf(mon, "\n");
2162}
2163
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002164static void do_info_status(Monitor *mon, QObject **ret_data)
2165{
2166 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2167 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002168}
2169
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002170static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002171{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002172 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002173
aliguori76655d62009-03-06 20:27:37 +00002174 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002175 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002176 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002177 return acl;
2178}
aliguori76655d62009-03-06 20:27:37 +00002179
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002180static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002181{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002182 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002183 qemu_acl *acl = find_acl(mon, aclname);
2184 qemu_acl_entry *entry;
2185 int i = 0;
2186
2187 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002188 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002189 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002190 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002191 i++;
2192 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002193 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002194 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002195 }
2196}
2197
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002198static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002199{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002200 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002201 qemu_acl *acl = find_acl(mon, aclname);
2202
2203 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002204 qemu_acl_reset(acl);
2205 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002206 }
2207}
aliguori76655d62009-03-06 20:27:37 +00002208
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002209static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002210{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002211 const char *aclname = qdict_get_str(qdict, "aclname");
2212 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002213 qemu_acl *acl = find_acl(mon, aclname);
2214
2215 if (acl) {
2216 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002217 acl->defaultDeny = 0;
2218 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002219 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002220 acl->defaultDeny = 1;
2221 monitor_printf(mon, "acl: policy set to 'deny'\n");
2222 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002223 monitor_printf(mon, "acl: unknown policy '%s', "
2224 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002225 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002226 }
2227}
aliguori76655d62009-03-06 20:27:37 +00002228
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002229static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002230{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002231 const char *aclname = qdict_get_str(qdict, "aclname");
2232 const char *match = qdict_get_str(qdict, "match");
2233 const char *policy = qdict_get_str(qdict, "policy");
2234 int has_index = qdict_haskey(qdict, "index");
2235 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002236 qemu_acl *acl = find_acl(mon, aclname);
2237 int deny, ret;
2238
2239 if (acl) {
2240 if (strcmp(policy, "allow") == 0) {
2241 deny = 0;
2242 } else if (strcmp(policy, "deny") == 0) {
2243 deny = 1;
2244 } else {
2245 monitor_printf(mon, "acl: unknown policy '%s', "
2246 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002247 return;
2248 }
aliguori28a76be2009-03-06 20:27:40 +00002249 if (has_index)
2250 ret = qemu_acl_insert(acl, deny, match, index);
2251 else
2252 ret = qemu_acl_append(acl, deny, match);
2253 if (ret < 0)
2254 monitor_printf(mon, "acl: unable to add acl entry\n");
2255 else
2256 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002257 }
2258}
aliguori76655d62009-03-06 20:27:37 +00002259
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002260static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002261{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002262 const char *aclname = qdict_get_str(qdict, "aclname");
2263 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002264 qemu_acl *acl = find_acl(mon, aclname);
2265 int ret;
aliguori76655d62009-03-06 20:27:37 +00002266
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002267 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002268 ret = qemu_acl_remove(acl, match);
2269 if (ret < 0)
2270 monitor_printf(mon, "acl: no matching acl entry\n");
2271 else
2272 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002273 }
2274}
2275
Huang Ying79c4f6b2009-06-23 10:05:14 +08002276#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002277static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002278{
2279 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002280 int cpu_index = qdict_get_int(qdict, "cpu_index");
2281 int bank = qdict_get_int(qdict, "bank");
2282 uint64_t status = qdict_get_int(qdict, "status");
2283 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2284 uint64_t addr = qdict_get_int(qdict, "addr");
2285 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002286
2287 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2288 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2289 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2290 break;
2291 }
2292}
2293#endif
2294
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002295static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002296{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002297 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002298 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002299 int fd;
2300
2301 fd = qemu_chr_get_msgfd(mon->chr);
2302 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002303 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002304 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002305 }
2306
2307 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002308 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2309 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002310 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002311 }
2312
Blue Swirl72cf2d42009-09-12 07:36:22 +00002313 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002314 if (strcmp(monfd->name, fdname) != 0) {
2315 continue;
2316 }
2317
2318 close(monfd->fd);
2319 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002320 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002321 }
2322
Anthony Liguoric227f092009-10-01 16:12:16 -05002323 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002324 monfd->name = qemu_strdup(fdname);
2325 monfd->fd = fd;
2326
Blue Swirl72cf2d42009-09-12 07:36:22 +00002327 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002328 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002329}
2330
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002331static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002332{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002333 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002334 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002335
Blue Swirl72cf2d42009-09-12 07:36:22 +00002336 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002337 if (strcmp(monfd->name, fdname) != 0) {
2338 continue;
2339 }
2340
Blue Swirl72cf2d42009-09-12 07:36:22 +00002341 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002342 close(monfd->fd);
2343 qemu_free(monfd->name);
2344 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002345 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002346 }
2347
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002348 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002349 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002350}
2351
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002352static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002353{
2354 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002355 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002356
2357 vm_stop(0);
2358
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002359 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002360 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002361 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002362}
2363
Mark McLoughlin7768e042009-07-22 09:11:41 +01002364int monitor_get_fd(Monitor *mon, const char *fdname)
2365{
Anthony Liguoric227f092009-10-01 16:12:16 -05002366 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002367
Blue Swirl72cf2d42009-09-12 07:36:22 +00002368 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002369 int fd;
2370
2371 if (strcmp(monfd->name, fdname) != 0) {
2372 continue;
2373 }
2374
2375 fd = monfd->fd;
2376
2377 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002378 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002379 qemu_free(monfd->name);
2380 qemu_free(monfd);
2381
2382 return fd;
2383 }
2384
2385 return -1;
2386}
2387
Anthony Liguoric227f092009-10-01 16:12:16 -05002388static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002389#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002390 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002391};
2392
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002393/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002394static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002395 {
2396 .name = "version",
2397 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002398 .params = "",
2399 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002400 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002401 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002402 },
2403 {
2404 .name = "network",
2405 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002406 .params = "",
2407 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002408 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002409 },
2410 {
2411 .name = "chardev",
2412 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 .params = "",
2414 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002415 .user_print = qemu_chr_info_print,
2416 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002417 },
2418 {
2419 .name = "block",
2420 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002421 .params = "",
2422 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002423 .user_print = bdrv_info_print,
2424 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002425 },
2426 {
2427 .name = "blockstats",
2428 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .params = "",
2430 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002431 .user_print = bdrv_stats_print,
2432 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002433 },
2434 {
2435 .name = "registers",
2436 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002437 .params = "",
2438 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002439 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002440 },
2441 {
2442 .name = "cpus",
2443 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002444 .params = "",
2445 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002446 .user_print = monitor_print_cpus,
2447 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002448 },
2449 {
2450 .name = "history",
2451 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 .params = "",
2453 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002454 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002455 },
2456 {
2457 .name = "irq",
2458 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002459 .params = "",
2460 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002461 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002462 },
2463 {
2464 .name = "pic",
2465 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002466 .params = "",
2467 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002468 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002469 },
2470 {
2471 .name = "pci",
2472 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002473 .params = "",
2474 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002475 .user_print = do_pci_info_print,
2476 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002477 },
aurel327c664e22009-03-03 06:12:22 +00002478#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002479 {
2480 .name = "tlb",
2481 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002482 .params = "",
2483 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002484 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 },
aurel327c664e22009-03-03 06:12:22 +00002486#endif
2487#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002488 {
2489 .name = "mem",
2490 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002491 .params = "",
2492 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002493 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002494 },
bellardb86bda52004-09-18 19:32:46 +00002495#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002496 {
2497 .name = "jit",
2498 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002499 .params = "",
2500 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002501 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002502 },
2503 {
2504 .name = "kvm",
2505 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002506 .params = "",
2507 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002508 .user_print = do_info_kvm_print,
2509 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002510 },
2511 {
2512 .name = "numa",
2513 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 .params = "",
2515 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002516 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002517 },
2518 {
2519 .name = "usb",
2520 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002521 .params = "",
2522 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002523 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002524 },
2525 {
2526 .name = "usbhost",
2527 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002528 .params = "",
2529 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002530 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 },
2532 {
2533 .name = "profile",
2534 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 .params = "",
2536 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002537 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002538 },
2539 {
2540 .name = "capture",
2541 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 .params = "",
2543 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002544 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002545 },
2546 {
2547 .name = "snapshots",
2548 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002549 .params = "",
2550 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002551 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002552 },
2553 {
2554 .name = "status",
2555 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002556 .params = "",
2557 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002558 .user_print = do_info_status_print,
2559 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002560 },
2561 {
2562 .name = "pcmcia",
2563 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002564 .params = "",
2565 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002566 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002567 },
2568 {
2569 .name = "mice",
2570 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 .params = "",
2572 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002573 .user_print = do_info_mice_print,
2574 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002575 },
2576 {
2577 .name = "vnc",
2578 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002579 .params = "",
2580 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002581 .user_print = do_info_vnc_print,
2582 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002583 },
2584 {
2585 .name = "name",
2586 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002587 .params = "",
2588 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002589 .user_print = do_info_name_print,
2590 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002591 },
2592 {
2593 .name = "uuid",
2594 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 .params = "",
2596 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002597 .user_print = do_info_uuid_print,
2598 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002599 },
j_mayer76a66252007-03-07 08:32:30 +00002600#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 {
2602 .name = "cpustats",
2603 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 .params = "",
2605 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002606 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 },
j_mayer76a66252007-03-07 08:32:30 +00002608#endif
blueswir131a60e22007-10-26 18:42:59 +00002609#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002610 {
2611 .name = "usernet",
2612 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002613 .params = "",
2614 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002615 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 },
blueswir131a60e22007-10-26 18:42:59 +00002617#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002618 {
2619 .name = "migrate",
2620 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002621 .params = "",
2622 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002623 .user_print = do_info_migrate_print,
2624 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002625 },
2626 {
2627 .name = "balloon",
2628 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002629 .params = "",
2630 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002631 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002632 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002633 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002634 },
2635 {
2636 .name = "qtree",
2637 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002638 .params = "",
2639 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002640 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002641 },
2642 {
2643 .name = "qdm",
2644 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002645 .params = "",
2646 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002647 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002648 },
2649 {
2650 .name = "roms",
2651 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002652 .params = "",
2653 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002654 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002655 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302656#if defined(CONFIG_SIMPLE_TRACE)
2657 {
2658 .name = "trace",
2659 .args_type = "",
2660 .params = "",
2661 .help = "show current contents of trace buffer",
2662 .mhandler.info = do_info_trace,
2663 },
2664 {
2665 .name = "trace-events",
2666 .args_type = "",
2667 .params = "",
2668 .help = "show available trace-events & their state",
2669 .mhandler.info = do_info_trace_events,
2670 },
2671#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002672 {
2673 .name = NULL,
2674 },
bellard9dc39cb2004-03-14 21:38:27 +00002675};
2676
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002677static const mon_cmd_t qmp_cmds[] = {
2678#include "qmp-commands.h"
2679 { /* NULL */ },
2680};
2681
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002682static const mon_cmd_t qmp_query_cmds[] = {
2683 {
2684 .name = "version",
2685 .args_type = "",
2686 .params = "",
2687 .help = "show the version of QEMU",
2688 .user_print = do_info_version_print,
2689 .mhandler.info_new = do_info_version,
2690 },
2691 {
2692 .name = "commands",
2693 .args_type = "",
2694 .params = "",
2695 .help = "list QMP available commands",
2696 .user_print = monitor_user_noop,
2697 .mhandler.info_new = do_info_commands,
2698 },
2699 {
2700 .name = "chardev",
2701 .args_type = "",
2702 .params = "",
2703 .help = "show the character devices",
2704 .user_print = qemu_chr_info_print,
2705 .mhandler.info_new = qemu_chr_info,
2706 },
2707 {
2708 .name = "block",
2709 .args_type = "",
2710 .params = "",
2711 .help = "show the block devices",
2712 .user_print = bdrv_info_print,
2713 .mhandler.info_new = bdrv_info,
2714 },
2715 {
2716 .name = "blockstats",
2717 .args_type = "",
2718 .params = "",
2719 .help = "show block device statistics",
2720 .user_print = bdrv_stats_print,
2721 .mhandler.info_new = bdrv_info_stats,
2722 },
2723 {
2724 .name = "cpus",
2725 .args_type = "",
2726 .params = "",
2727 .help = "show infos for each CPU",
2728 .user_print = monitor_print_cpus,
2729 .mhandler.info_new = do_info_cpus,
2730 },
2731 {
2732 .name = "pci",
2733 .args_type = "",
2734 .params = "",
2735 .help = "show PCI info",
2736 .user_print = do_pci_info_print,
2737 .mhandler.info_new = do_pci_info,
2738 },
2739 {
2740 .name = "kvm",
2741 .args_type = "",
2742 .params = "",
2743 .help = "show KVM information",
2744 .user_print = do_info_kvm_print,
2745 .mhandler.info_new = do_info_kvm,
2746 },
2747 {
2748 .name = "status",
2749 .args_type = "",
2750 .params = "",
2751 .help = "show the current VM status (running|paused)",
2752 .user_print = do_info_status_print,
2753 .mhandler.info_new = do_info_status,
2754 },
2755 {
2756 .name = "mice",
2757 .args_type = "",
2758 .params = "",
2759 .help = "show which guest mouse is receiving events",
2760 .user_print = do_info_mice_print,
2761 .mhandler.info_new = do_info_mice,
2762 },
2763 {
2764 .name = "vnc",
2765 .args_type = "",
2766 .params = "",
2767 .help = "show the vnc server status",
2768 .user_print = do_info_vnc_print,
2769 .mhandler.info_new = do_info_vnc,
2770 },
2771 {
2772 .name = "name",
2773 .args_type = "",
2774 .params = "",
2775 .help = "show the current VM name",
2776 .user_print = do_info_name_print,
2777 .mhandler.info_new = do_info_name,
2778 },
2779 {
2780 .name = "uuid",
2781 .args_type = "",
2782 .params = "",
2783 .help = "show the current VM UUID",
2784 .user_print = do_info_uuid_print,
2785 .mhandler.info_new = do_info_uuid,
2786 },
2787 {
2788 .name = "migrate",
2789 .args_type = "",
2790 .params = "",
2791 .help = "show migration status",
2792 .user_print = do_info_migrate_print,
2793 .mhandler.info_new = do_info_migrate,
2794 },
2795 {
2796 .name = "balloon",
2797 .args_type = "",
2798 .params = "",
2799 .help = "show balloon information",
2800 .user_print = monitor_print_balloon,
2801 .mhandler.info_async = do_info_balloon,
2802 .flags = MONITOR_CMD_ASYNC,
2803 },
2804 { /* NULL */ },
2805};
2806
bellard9307c4c2004-04-04 12:57:25 +00002807/*******************************************************************/
2808
2809static const char *pch;
2810static jmp_buf expr_env;
2811
bellard92a31b12005-02-10 22:00:52 +00002812#define MD_TLONG 0
2813#define MD_I32 1
2814
bellard9307c4c2004-04-04 12:57:25 +00002815typedef struct MonitorDef {
2816 const char *name;
2817 int offset;
blueswir18662d652008-10-02 18:32:44 +00002818 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002819 int type;
bellard9307c4c2004-04-04 12:57:25 +00002820} MonitorDef;
2821
bellard57206fd2004-04-25 18:54:52 +00002822#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002823static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002824{
bellard6a00d602005-11-21 23:25:50 +00002825 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002826 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002827}
2828#endif
2829
bellarda541f292004-04-12 20:39:29 +00002830#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002831static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002832{
bellard6a00d602005-11-21 23:25:50 +00002833 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002834 unsigned int u;
2835 int i;
2836
2837 u = 0;
2838 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002839 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002840
2841 return u;
2842}
2843
blueswir18662d652008-10-02 18:32:44 +00002844static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002845{
bellard6a00d602005-11-21 23:25:50 +00002846 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002847 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002848}
2849
blueswir18662d652008-10-02 18:32:44 +00002850static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002851{
bellard6a00d602005-11-21 23:25:50 +00002852 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002853 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002854}
bellard9fddaa02004-05-21 12:59:32 +00002855
blueswir18662d652008-10-02 18:32:44 +00002856static target_long monitor_get_decr (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_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002860}
2861
blueswir18662d652008-10-02 18:32:44 +00002862static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002863{
bellard6a00d602005-11-21 23:25:50 +00002864 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002865 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002866}
2867
blueswir18662d652008-10-02 18:32:44 +00002868static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002869{
bellard6a00d602005-11-21 23:25:50 +00002870 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002871 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002872}
bellarda541f292004-04-12 20:39:29 +00002873#endif
2874
bellarde95c8d52004-09-30 22:22:08 +00002875#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002876#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002877static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002878{
bellard6a00d602005-11-21 23:25:50 +00002879 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002880
2881 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002882}
bellard7b936c02005-10-30 17:05:13 +00002883#endif
bellarde95c8d52004-09-30 22:22:08 +00002884
blueswir18662d652008-10-02 18:32:44 +00002885static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002886{
bellard6a00d602005-11-21 23:25:50 +00002887 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002888 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002889}
2890#endif
2891
blueswir18662d652008-10-02 18:32:44 +00002892static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002893#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002894
2895#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002896 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002897 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002898 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002899
bellard9307c4c2004-04-04 12:57:25 +00002900 { "eax", offsetof(CPUState, regs[0]) },
2901 { "ecx", offsetof(CPUState, regs[1]) },
2902 { "edx", offsetof(CPUState, regs[2]) },
2903 { "ebx", offsetof(CPUState, regs[3]) },
2904 { "esp|sp", offsetof(CPUState, regs[4]) },
2905 { "ebp|fp", offsetof(CPUState, regs[5]) },
2906 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002907 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002908#ifdef TARGET_X86_64
2909 { "r8", offsetof(CPUState, regs[8]) },
2910 { "r9", offsetof(CPUState, regs[9]) },
2911 { "r10", offsetof(CPUState, regs[10]) },
2912 { "r11", offsetof(CPUState, regs[11]) },
2913 { "r12", offsetof(CPUState, regs[12]) },
2914 { "r13", offsetof(CPUState, regs[13]) },
2915 { "r14", offsetof(CPUState, regs[14]) },
2916 { "r15", offsetof(CPUState, regs[15]) },
2917#endif
bellard9307c4c2004-04-04 12:57:25 +00002918 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002919 { "eip", offsetof(CPUState, eip) },
2920 SEG("cs", R_CS)
2921 SEG("ds", R_DS)
2922 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002923 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002924 SEG("fs", R_FS)
2925 SEG("gs", R_GS)
2926 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002927#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002928 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002929 { "r0", offsetof(CPUState, gpr[0]) },
2930 { "r1", offsetof(CPUState, gpr[1]) },
2931 { "r2", offsetof(CPUState, gpr[2]) },
2932 { "r3", offsetof(CPUState, gpr[3]) },
2933 { "r4", offsetof(CPUState, gpr[4]) },
2934 { "r5", offsetof(CPUState, gpr[5]) },
2935 { "r6", offsetof(CPUState, gpr[6]) },
2936 { "r7", offsetof(CPUState, gpr[7]) },
2937 { "r8", offsetof(CPUState, gpr[8]) },
2938 { "r9", offsetof(CPUState, gpr[9]) },
2939 { "r10", offsetof(CPUState, gpr[10]) },
2940 { "r11", offsetof(CPUState, gpr[11]) },
2941 { "r12", offsetof(CPUState, gpr[12]) },
2942 { "r13", offsetof(CPUState, gpr[13]) },
2943 { "r14", offsetof(CPUState, gpr[14]) },
2944 { "r15", offsetof(CPUState, gpr[15]) },
2945 { "r16", offsetof(CPUState, gpr[16]) },
2946 { "r17", offsetof(CPUState, gpr[17]) },
2947 { "r18", offsetof(CPUState, gpr[18]) },
2948 { "r19", offsetof(CPUState, gpr[19]) },
2949 { "r20", offsetof(CPUState, gpr[20]) },
2950 { "r21", offsetof(CPUState, gpr[21]) },
2951 { "r22", offsetof(CPUState, gpr[22]) },
2952 { "r23", offsetof(CPUState, gpr[23]) },
2953 { "r24", offsetof(CPUState, gpr[24]) },
2954 { "r25", offsetof(CPUState, gpr[25]) },
2955 { "r26", offsetof(CPUState, gpr[26]) },
2956 { "r27", offsetof(CPUState, gpr[27]) },
2957 { "r28", offsetof(CPUState, gpr[28]) },
2958 { "r29", offsetof(CPUState, gpr[29]) },
2959 { "r30", offsetof(CPUState, gpr[30]) },
2960 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002961 /* Floating point registers */
2962 { "f0", offsetof(CPUState, fpr[0]) },
2963 { "f1", offsetof(CPUState, fpr[1]) },
2964 { "f2", offsetof(CPUState, fpr[2]) },
2965 { "f3", offsetof(CPUState, fpr[3]) },
2966 { "f4", offsetof(CPUState, fpr[4]) },
2967 { "f5", offsetof(CPUState, fpr[5]) },
2968 { "f6", offsetof(CPUState, fpr[6]) },
2969 { "f7", offsetof(CPUState, fpr[7]) },
2970 { "f8", offsetof(CPUState, fpr[8]) },
2971 { "f9", offsetof(CPUState, fpr[9]) },
2972 { "f10", offsetof(CPUState, fpr[10]) },
2973 { "f11", offsetof(CPUState, fpr[11]) },
2974 { "f12", offsetof(CPUState, fpr[12]) },
2975 { "f13", offsetof(CPUState, fpr[13]) },
2976 { "f14", offsetof(CPUState, fpr[14]) },
2977 { "f15", offsetof(CPUState, fpr[15]) },
2978 { "f16", offsetof(CPUState, fpr[16]) },
2979 { "f17", offsetof(CPUState, fpr[17]) },
2980 { "f18", offsetof(CPUState, fpr[18]) },
2981 { "f19", offsetof(CPUState, fpr[19]) },
2982 { "f20", offsetof(CPUState, fpr[20]) },
2983 { "f21", offsetof(CPUState, fpr[21]) },
2984 { "f22", offsetof(CPUState, fpr[22]) },
2985 { "f23", offsetof(CPUState, fpr[23]) },
2986 { "f24", offsetof(CPUState, fpr[24]) },
2987 { "f25", offsetof(CPUState, fpr[25]) },
2988 { "f26", offsetof(CPUState, fpr[26]) },
2989 { "f27", offsetof(CPUState, fpr[27]) },
2990 { "f28", offsetof(CPUState, fpr[28]) },
2991 { "f29", offsetof(CPUState, fpr[29]) },
2992 { "f30", offsetof(CPUState, fpr[30]) },
2993 { "f31", offsetof(CPUState, fpr[31]) },
2994 { "fpscr", offsetof(CPUState, fpscr) },
2995 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002996 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002997 { "lr", offsetof(CPUState, lr) },
2998 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002999 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003000 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003001 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003002 { "msr", 0, &monitor_get_msr, },
3003 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003004 { "tbu", 0, &monitor_get_tbu, },
3005 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003006#if defined(TARGET_PPC64)
3007 /* Address space register */
3008 { "asr", offsetof(CPUState, asr) },
3009#endif
3010 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00003011 { "sdr1", offsetof(CPUState, sdr1) },
3012 { "sr0", offsetof(CPUState, sr[0]) },
3013 { "sr1", offsetof(CPUState, sr[1]) },
3014 { "sr2", offsetof(CPUState, sr[2]) },
3015 { "sr3", offsetof(CPUState, sr[3]) },
3016 { "sr4", offsetof(CPUState, sr[4]) },
3017 { "sr5", offsetof(CPUState, sr[5]) },
3018 { "sr6", offsetof(CPUState, sr[6]) },
3019 { "sr7", offsetof(CPUState, sr[7]) },
3020 { "sr8", offsetof(CPUState, sr[8]) },
3021 { "sr9", offsetof(CPUState, sr[9]) },
3022 { "sr10", offsetof(CPUState, sr[10]) },
3023 { "sr11", offsetof(CPUState, sr[11]) },
3024 { "sr12", offsetof(CPUState, sr[12]) },
3025 { "sr13", offsetof(CPUState, sr[13]) },
3026 { "sr14", offsetof(CPUState, sr[14]) },
3027 { "sr15", offsetof(CPUState, sr[15]) },
3028 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003029#elif defined(TARGET_SPARC)
3030 { "g0", offsetof(CPUState, gregs[0]) },
3031 { "g1", offsetof(CPUState, gregs[1]) },
3032 { "g2", offsetof(CPUState, gregs[2]) },
3033 { "g3", offsetof(CPUState, gregs[3]) },
3034 { "g4", offsetof(CPUState, gregs[4]) },
3035 { "g5", offsetof(CPUState, gregs[5]) },
3036 { "g6", offsetof(CPUState, gregs[6]) },
3037 { "g7", offsetof(CPUState, gregs[7]) },
3038 { "o0", 0, monitor_get_reg },
3039 { "o1", 1, monitor_get_reg },
3040 { "o2", 2, monitor_get_reg },
3041 { "o3", 3, monitor_get_reg },
3042 { "o4", 4, monitor_get_reg },
3043 { "o5", 5, monitor_get_reg },
3044 { "o6", 6, monitor_get_reg },
3045 { "o7", 7, monitor_get_reg },
3046 { "l0", 8, monitor_get_reg },
3047 { "l1", 9, monitor_get_reg },
3048 { "l2", 10, monitor_get_reg },
3049 { "l3", 11, monitor_get_reg },
3050 { "l4", 12, monitor_get_reg },
3051 { "l5", 13, monitor_get_reg },
3052 { "l6", 14, monitor_get_reg },
3053 { "l7", 15, monitor_get_reg },
3054 { "i0", 16, monitor_get_reg },
3055 { "i1", 17, monitor_get_reg },
3056 { "i2", 18, monitor_get_reg },
3057 { "i3", 19, monitor_get_reg },
3058 { "i4", 20, monitor_get_reg },
3059 { "i5", 21, monitor_get_reg },
3060 { "i6", 22, monitor_get_reg },
3061 { "i7", 23, monitor_get_reg },
3062 { "pc", offsetof(CPUState, pc) },
3063 { "npc", offsetof(CPUState, npc) },
3064 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003065#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003066 { "psr", 0, &monitor_get_psr, },
3067 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003068#endif
bellarde95c8d52004-09-30 22:22:08 +00003069 { "tbr", offsetof(CPUState, tbr) },
3070 { "fsr", offsetof(CPUState, fsr) },
3071 { "f0", offsetof(CPUState, fpr[0]) },
3072 { "f1", offsetof(CPUState, fpr[1]) },
3073 { "f2", offsetof(CPUState, fpr[2]) },
3074 { "f3", offsetof(CPUState, fpr[3]) },
3075 { "f4", offsetof(CPUState, fpr[4]) },
3076 { "f5", offsetof(CPUState, fpr[5]) },
3077 { "f6", offsetof(CPUState, fpr[6]) },
3078 { "f7", offsetof(CPUState, fpr[7]) },
3079 { "f8", offsetof(CPUState, fpr[8]) },
3080 { "f9", offsetof(CPUState, fpr[9]) },
3081 { "f10", offsetof(CPUState, fpr[10]) },
3082 { "f11", offsetof(CPUState, fpr[11]) },
3083 { "f12", offsetof(CPUState, fpr[12]) },
3084 { "f13", offsetof(CPUState, fpr[13]) },
3085 { "f14", offsetof(CPUState, fpr[14]) },
3086 { "f15", offsetof(CPUState, fpr[15]) },
3087 { "f16", offsetof(CPUState, fpr[16]) },
3088 { "f17", offsetof(CPUState, fpr[17]) },
3089 { "f18", offsetof(CPUState, fpr[18]) },
3090 { "f19", offsetof(CPUState, fpr[19]) },
3091 { "f20", offsetof(CPUState, fpr[20]) },
3092 { "f21", offsetof(CPUState, fpr[21]) },
3093 { "f22", offsetof(CPUState, fpr[22]) },
3094 { "f23", offsetof(CPUState, fpr[23]) },
3095 { "f24", offsetof(CPUState, fpr[24]) },
3096 { "f25", offsetof(CPUState, fpr[25]) },
3097 { "f26", offsetof(CPUState, fpr[26]) },
3098 { "f27", offsetof(CPUState, fpr[27]) },
3099 { "f28", offsetof(CPUState, fpr[28]) },
3100 { "f29", offsetof(CPUState, fpr[29]) },
3101 { "f30", offsetof(CPUState, fpr[30]) },
3102 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003103#ifdef TARGET_SPARC64
3104 { "f32", offsetof(CPUState, fpr[32]) },
3105 { "f34", offsetof(CPUState, fpr[34]) },
3106 { "f36", offsetof(CPUState, fpr[36]) },
3107 { "f38", offsetof(CPUState, fpr[38]) },
3108 { "f40", offsetof(CPUState, fpr[40]) },
3109 { "f42", offsetof(CPUState, fpr[42]) },
3110 { "f44", offsetof(CPUState, fpr[44]) },
3111 { "f46", offsetof(CPUState, fpr[46]) },
3112 { "f48", offsetof(CPUState, fpr[48]) },
3113 { "f50", offsetof(CPUState, fpr[50]) },
3114 { "f52", offsetof(CPUState, fpr[52]) },
3115 { "f54", offsetof(CPUState, fpr[54]) },
3116 { "f56", offsetof(CPUState, fpr[56]) },
3117 { "f58", offsetof(CPUState, fpr[58]) },
3118 { "f60", offsetof(CPUState, fpr[60]) },
3119 { "f62", offsetof(CPUState, fpr[62]) },
3120 { "asi", offsetof(CPUState, asi) },
3121 { "pstate", offsetof(CPUState, pstate) },
3122 { "cansave", offsetof(CPUState, cansave) },
3123 { "canrestore", offsetof(CPUState, canrestore) },
3124 { "otherwin", offsetof(CPUState, otherwin) },
3125 { "wstate", offsetof(CPUState, wstate) },
3126 { "cleanwin", offsetof(CPUState, cleanwin) },
3127 { "fprs", offsetof(CPUState, fprs) },
3128#endif
bellard9307c4c2004-04-04 12:57:25 +00003129#endif
3130 { NULL },
3131};
3132
aliguori376253e2009-03-05 23:01:23 +00003133static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003134{
aliguori376253e2009-03-05 23:01:23 +00003135 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003136 longjmp(expr_env, 1);
3137}
3138
Markus Armbruster09b94182010-01-20 13:07:30 +01003139/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003140static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003141{
blueswir18662d652008-10-02 18:32:44 +00003142 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003143 void *ptr;
3144
bellard9307c4c2004-04-04 12:57:25 +00003145 for(md = monitor_defs; md->name != NULL; md++) {
3146 if (compare_cmd(name, md->name)) {
3147 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003148 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003149 } else {
bellard6a00d602005-11-21 23:25:50 +00003150 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003151 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003152 switch(md->type) {
3153 case MD_I32:
3154 *pval = *(int32_t *)ptr;
3155 break;
3156 case MD_TLONG:
3157 *pval = *(target_long *)ptr;
3158 break;
3159 default:
3160 *pval = 0;
3161 break;
3162 }
bellard9307c4c2004-04-04 12:57:25 +00003163 }
3164 return 0;
3165 }
3166 }
3167 return -1;
3168}
3169
3170static void next(void)
3171{
Blue Swirl660f11b2009-07-31 21:16:51 +00003172 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003173 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003174 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003175 pch++;
3176 }
3177}
3178
aliguori376253e2009-03-05 23:01:23 +00003179static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003180
aliguori376253e2009-03-05 23:01:23 +00003181static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003182{
blueswir1c2efc952007-09-25 17:28:42 +00003183 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003184 char *p;
bellard6a00d602005-11-21 23:25:50 +00003185 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003186
3187 switch(*pch) {
3188 case '+':
3189 next();
aliguori376253e2009-03-05 23:01:23 +00003190 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003191 break;
3192 case '-':
3193 next();
aliguori376253e2009-03-05 23:01:23 +00003194 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003195 break;
3196 case '~':
3197 next();
aliguori376253e2009-03-05 23:01:23 +00003198 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003199 break;
3200 case '(':
3201 next();
aliguori376253e2009-03-05 23:01:23 +00003202 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003203 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003204 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003205 }
3206 next();
3207 break;
bellard81d09122004-07-14 17:21:37 +00003208 case '\'':
3209 pch++;
3210 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003211 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003212 n = *pch;
3213 pch++;
3214 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003215 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003216 next();
3217 break;
bellard9307c4c2004-04-04 12:57:25 +00003218 case '$':
3219 {
3220 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003221 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003222
bellard9307c4c2004-04-04 12:57:25 +00003223 pch++;
3224 q = buf;
3225 while ((*pch >= 'a' && *pch <= 'z') ||
3226 (*pch >= 'A' && *pch <= 'Z') ||
3227 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003228 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003229 if ((q - buf) < sizeof(buf) - 1)
3230 *q++ = *pch;
3231 pch++;
3232 }
blueswir1cd390082008-11-16 13:53:32 +00003233 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003234 pch++;
3235 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003236 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003237 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003238 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003239 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003240 }
3241 break;
3242 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003243 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003244 n = 0;
3245 break;
3246 default:
blueswir17743e582007-09-24 18:39:04 +00003247#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003248 n = strtoull(pch, &p, 0);
3249#else
bellard9307c4c2004-04-04 12:57:25 +00003250 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003251#endif
bellard9307c4c2004-04-04 12:57:25 +00003252 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003253 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003254 }
3255 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003256 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003257 pch++;
3258 break;
3259 }
3260 return n;
3261}
3262
3263
aliguori376253e2009-03-05 23:01:23 +00003264static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003265{
blueswir1c2efc952007-09-25 17:28:42 +00003266 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003267 int op;
ths3b46e622007-09-17 08:09:54 +00003268
aliguori376253e2009-03-05 23:01:23 +00003269 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003270 for(;;) {
3271 op = *pch;
3272 if (op != '*' && op != '/' && op != '%')
3273 break;
3274 next();
aliguori376253e2009-03-05 23:01:23 +00003275 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003276 switch(op) {
3277 default:
3278 case '*':
3279 val *= val2;
3280 break;
3281 case '/':
3282 case '%':
ths5fafdf22007-09-16 21:08:06 +00003283 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003284 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003285 if (op == '/')
3286 val /= val2;
3287 else
3288 val %= val2;
3289 break;
3290 }
3291 }
3292 return val;
3293}
3294
aliguori376253e2009-03-05 23:01:23 +00003295static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003296{
blueswir1c2efc952007-09-25 17:28:42 +00003297 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003298 int op;
bellard9307c4c2004-04-04 12:57:25 +00003299
aliguori376253e2009-03-05 23:01:23 +00003300 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003301 for(;;) {
3302 op = *pch;
3303 if (op != '&' && op != '|' && op != '^')
3304 break;
3305 next();
aliguori376253e2009-03-05 23:01:23 +00003306 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003307 switch(op) {
3308 default:
3309 case '&':
3310 val &= val2;
3311 break;
3312 case '|':
3313 val |= val2;
3314 break;
3315 case '^':
3316 val ^= val2;
3317 break;
3318 }
3319 }
3320 return val;
3321}
3322
aliguori376253e2009-03-05 23:01:23 +00003323static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003324{
blueswir1c2efc952007-09-25 17:28:42 +00003325 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003326 int op;
bellard9307c4c2004-04-04 12:57:25 +00003327
aliguori376253e2009-03-05 23:01:23 +00003328 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003329 for(;;) {
3330 op = *pch;
3331 if (op != '+' && op != '-')
3332 break;
3333 next();
aliguori376253e2009-03-05 23:01:23 +00003334 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003335 if (op == '+')
3336 val += val2;
3337 else
3338 val -= val2;
3339 }
3340 return val;
3341}
3342
aliguori376253e2009-03-05 23:01:23 +00003343static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003344{
3345 pch = *pp;
3346 if (setjmp(expr_env)) {
3347 *pp = pch;
3348 return -1;
3349 }
blueswir1cd390082008-11-16 13:53:32 +00003350 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003351 pch++;
aliguori376253e2009-03-05 23:01:23 +00003352 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003353 *pp = pch;
3354 return 0;
3355}
3356
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003357static int get_double(Monitor *mon, double *pval, const char **pp)
3358{
3359 const char *p = *pp;
3360 char *tailp;
3361 double d;
3362
3363 d = strtod(p, &tailp);
3364 if (tailp == p) {
3365 monitor_printf(mon, "Number expected\n");
3366 return -1;
3367 }
3368 if (d != d || d - d != 0) {
3369 /* NaN or infinity */
3370 monitor_printf(mon, "Bad number\n");
3371 return -1;
3372 }
3373 *pval = d;
3374 *pp = tailp;
3375 return 0;
3376}
3377
bellard9307c4c2004-04-04 12:57:25 +00003378static int get_str(char *buf, int buf_size, const char **pp)
3379{
3380 const char *p;
3381 char *q;
3382 int c;
3383
bellard81d09122004-07-14 17:21:37 +00003384 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003385 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003386 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003387 p++;
3388 if (*p == '\0') {
3389 fail:
bellard81d09122004-07-14 17:21:37 +00003390 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003391 *pp = p;
3392 return -1;
3393 }
bellard9307c4c2004-04-04 12:57:25 +00003394 if (*p == '\"') {
3395 p++;
3396 while (*p != '\0' && *p != '\"') {
3397 if (*p == '\\') {
3398 p++;
3399 c = *p++;
3400 switch(c) {
3401 case 'n':
3402 c = '\n';
3403 break;
3404 case 'r':
3405 c = '\r';
3406 break;
3407 case '\\':
3408 case '\'':
3409 case '\"':
3410 break;
3411 default:
3412 qemu_printf("unsupported escape code: '\\%c'\n", c);
3413 goto fail;
3414 }
3415 if ((q - buf) < buf_size - 1) {
3416 *q++ = c;
3417 }
3418 } else {
3419 if ((q - buf) < buf_size - 1) {
3420 *q++ = *p;
3421 }
3422 p++;
3423 }
3424 }
3425 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003426 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003427 goto fail;
3428 }
3429 p++;
3430 } else {
blueswir1cd390082008-11-16 13:53:32 +00003431 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003432 if ((q - buf) < buf_size - 1) {
3433 *q++ = *p;
3434 }
3435 p++;
3436 }
bellard9307c4c2004-04-04 12:57:25 +00003437 }
bellard81d09122004-07-14 17:21:37 +00003438 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003439 *pp = p;
3440 return 0;
3441}
3442
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003443/*
3444 * Store the command-name in cmdname, and return a pointer to
3445 * the remaining of the command string.
3446 */
3447static const char *get_command_name(const char *cmdline,
3448 char *cmdname, size_t nlen)
3449{
3450 size_t len;
3451 const char *p, *pstart;
3452
3453 p = cmdline;
3454 while (qemu_isspace(*p))
3455 p++;
3456 if (*p == '\0')
3457 return NULL;
3458 pstart = p;
3459 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3460 p++;
3461 len = p - pstart;
3462 if (len > nlen - 1)
3463 len = nlen - 1;
3464 memcpy(cmdname, pstart, len);
3465 cmdname[len] = '\0';
3466 return p;
3467}
3468
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003469/**
3470 * Read key of 'type' into 'key' and return the current
3471 * 'type' pointer.
3472 */
3473static char *key_get_info(const char *type, char **key)
3474{
3475 size_t len;
3476 char *p, *str;
3477
3478 if (*type == ',')
3479 type++;
3480
3481 p = strchr(type, ':');
3482 if (!p) {
3483 *key = NULL;
3484 return NULL;
3485 }
3486 len = p - type;
3487
3488 str = qemu_malloc(len + 1);
3489 memcpy(str, type, len);
3490 str[len] = '\0';
3491
3492 *key = str;
3493 return ++p;
3494}
3495
bellard9307c4c2004-04-04 12:57:25 +00003496static int default_fmt_format = 'x';
3497static int default_fmt_size = 4;
3498
3499#define MAX_ARGS 16
3500
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003501static int is_valid_option(const char *c, const char *typestr)
3502{
3503 char option[3];
3504
3505 option[0] = '-';
3506 option[1] = *c;
3507 option[2] = '\0';
3508
3509 typestr = strstr(typestr, option);
3510 return (typestr != NULL);
3511}
3512
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003513static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3514 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003515{
3516 const mon_cmd_t *cmd;
3517
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003518 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003519 if (compare_cmd(cmdname, cmd->name)) {
3520 return cmd;
3521 }
3522 }
3523
3524 return NULL;
3525}
3526
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003527static const mon_cmd_t *monitor_find_command(const char *cmdname)
3528{
3529 return search_dispatch_table(mon_cmds, cmdname);
3530}
3531
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003532static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3533{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003534 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003535}
3536
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003537static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3538{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003539 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003540}
3541
Anthony Liguoric227f092009-10-01 16:12:16 -05003542static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003543 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003544 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003545{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003546 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003547 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003548 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003549 char cmdname[256];
3550 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003551 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003552
3553#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003554 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003555#endif
ths3b46e622007-09-17 08:09:54 +00003556
bellard9307c4c2004-04-04 12:57:25 +00003557 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003558 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3559 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003560 return NULL;
ths3b46e622007-09-17 08:09:54 +00003561
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003562 cmd = monitor_find_command(cmdname);
3563 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003564 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003565 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003566 }
bellard9307c4c2004-04-04 12:57:25 +00003567
bellard9307c4c2004-04-04 12:57:25 +00003568 /* parse the parameters */
3569 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003570 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003571 typestr = key_get_info(typestr, &key);
3572 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003573 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003574 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003575 typestr++;
3576 switch(c) {
3577 case 'F':
bellard81d09122004-07-14 17:21:37 +00003578 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003579 case 's':
3580 {
3581 int ret;
ths3b46e622007-09-17 08:09:54 +00003582
blueswir1cd390082008-11-16 13:53:32 +00003583 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003584 p++;
3585 if (*typestr == '?') {
3586 typestr++;
3587 if (*p == '\0') {
3588 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003589 break;
bellard9307c4c2004-04-04 12:57:25 +00003590 }
3591 }
3592 ret = get_str(buf, sizeof(buf), &p);
3593 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003594 switch(c) {
3595 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003596 monitor_printf(mon, "%s: filename expected\n",
3597 cmdname);
bellard81d09122004-07-14 17:21:37 +00003598 break;
3599 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003600 monitor_printf(mon, "%s: block device name expected\n",
3601 cmdname);
bellard81d09122004-07-14 17:21:37 +00003602 break;
3603 default:
aliguori376253e2009-03-05 23:01:23 +00003604 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003605 break;
3606 }
bellard9307c4c2004-04-04 12:57:25 +00003607 goto fail;
3608 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003609 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003610 }
3611 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003612 case 'O':
3613 {
3614 QemuOptsList *opts_list;
3615 QemuOpts *opts;
3616
3617 opts_list = qemu_find_opts(key);
3618 if (!opts_list || opts_list->desc->name) {
3619 goto bad_type;
3620 }
3621 while (qemu_isspace(*p)) {
3622 p++;
3623 }
3624 if (!*p)
3625 break;
3626 if (get_str(buf, sizeof(buf), &p) < 0) {
3627 goto fail;
3628 }
3629 opts = qemu_opts_parse(opts_list, buf, 1);
3630 if (!opts) {
3631 goto fail;
3632 }
3633 qemu_opts_to_qdict(opts, qdict);
3634 qemu_opts_del(opts);
3635 }
3636 break;
bellard9307c4c2004-04-04 12:57:25 +00003637 case '/':
3638 {
3639 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003640
blueswir1cd390082008-11-16 13:53:32 +00003641 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003642 p++;
3643 if (*p == '/') {
3644 /* format found */
3645 p++;
3646 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003647 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003648 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003649 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003650 count = count * 10 + (*p - '0');
3651 p++;
3652 }
3653 }
3654 size = -1;
3655 format = -1;
3656 for(;;) {
3657 switch(*p) {
3658 case 'o':
3659 case 'd':
3660 case 'u':
3661 case 'x':
3662 case 'i':
3663 case 'c':
3664 format = *p++;
3665 break;
3666 case 'b':
3667 size = 1;
3668 p++;
3669 break;
3670 case 'h':
3671 size = 2;
3672 p++;
3673 break;
3674 case 'w':
3675 size = 4;
3676 p++;
3677 break;
3678 case 'g':
3679 case 'L':
3680 size = 8;
3681 p++;
3682 break;
3683 default:
3684 goto next;
3685 }
3686 }
3687 next:
blueswir1cd390082008-11-16 13:53:32 +00003688 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003689 monitor_printf(mon, "invalid char in format: '%c'\n",
3690 *p);
bellard9307c4c2004-04-04 12:57:25 +00003691 goto fail;
3692 }
bellard9307c4c2004-04-04 12:57:25 +00003693 if (format < 0)
3694 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003695 if (format != 'i') {
3696 /* for 'i', not specifying a size gives -1 as size */
3697 if (size < 0)
3698 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003699 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003700 }
bellard9307c4c2004-04-04 12:57:25 +00003701 default_fmt_format = format;
3702 } else {
3703 count = 1;
3704 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003705 if (format != 'i') {
3706 size = default_fmt_size;
3707 } else {
3708 size = -1;
3709 }
bellard9307c4c2004-04-04 12:57:25 +00003710 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003711 qdict_put(qdict, "count", qint_from_int(count));
3712 qdict_put(qdict, "format", qint_from_int(format));
3713 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003714 }
3715 break;
3716 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003717 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003718 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003719 {
blueswir1c2efc952007-09-25 17:28:42 +00003720 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003721
blueswir1cd390082008-11-16 13:53:32 +00003722 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003723 p++;
bellard34405572004-06-08 00:55:58 +00003724 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003725 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003726 if (*p == '\0') {
3727 typestr++;
3728 break;
3729 }
bellard34405572004-06-08 00:55:58 +00003730 } else {
3731 if (*p == '.') {
3732 p++;
blueswir1cd390082008-11-16 13:53:32 +00003733 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003734 p++;
bellard34405572004-06-08 00:55:58 +00003735 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003736 typestr++;
3737 break;
bellard34405572004-06-08 00:55:58 +00003738 }
3739 }
bellard13224a82006-07-14 22:03:35 +00003740 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003741 }
aliguori376253e2009-03-05 23:01:23 +00003742 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003743 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003744 /* Check if 'i' is greater than 32-bit */
3745 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3746 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3747 monitor_printf(mon, "integer is for 32-bit values\n");
3748 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003749 } else if (c == 'M') {
3750 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003751 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003752 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003753 }
3754 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003755 case 'o':
3756 {
3757 ssize_t val;
3758 char *end;
3759
3760 while (qemu_isspace(*p)) {
3761 p++;
3762 }
3763 if (*typestr == '?') {
3764 typestr++;
3765 if (*p == '\0') {
3766 break;
3767 }
3768 }
3769 val = strtosz(p, &end);
3770 if (val < 0) {
3771 monitor_printf(mon, "invalid size\n");
3772 goto fail;
3773 }
3774 qdict_put(qdict, key, qint_from_int(val));
3775 p = end;
3776 }
3777 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003778 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003779 {
3780 double val;
3781
3782 while (qemu_isspace(*p))
3783 p++;
3784 if (*typestr == '?') {
3785 typestr++;
3786 if (*p == '\0') {
3787 break;
3788 }
3789 }
3790 if (get_double(mon, &val, &p) < 0) {
3791 goto fail;
3792 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003793 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003794 switch (*p) {
3795 case 'm':
3796 val /= 1e3; p += 2; break;
3797 case 'u':
3798 val /= 1e6; p += 2; break;
3799 case 'n':
3800 val /= 1e9; p += 2; break;
3801 }
3802 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003803 if (*p && !qemu_isspace(*p)) {
3804 monitor_printf(mon, "Unknown unit suffix\n");
3805 goto fail;
3806 }
3807 qdict_put(qdict, key, qfloat_from_double(val));
3808 }
3809 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003810 case 'b':
3811 {
3812 const char *beg;
3813 int val;
3814
3815 while (qemu_isspace(*p)) {
3816 p++;
3817 }
3818 beg = p;
3819 while (qemu_isgraph(*p)) {
3820 p++;
3821 }
3822 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3823 val = 1;
3824 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3825 val = 0;
3826 } else {
3827 monitor_printf(mon, "Expected 'on' or 'off'\n");
3828 goto fail;
3829 }
3830 qdict_put(qdict, key, qbool_from_int(val));
3831 }
3832 break;
bellard9307c4c2004-04-04 12:57:25 +00003833 case '-':
3834 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003835 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003836 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003837 /* option */
ths3b46e622007-09-17 08:09:54 +00003838
bellard9307c4c2004-04-04 12:57:25 +00003839 c = *typestr++;
3840 if (c == '\0')
3841 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003842 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003843 p++;
bellard9307c4c2004-04-04 12:57:25 +00003844 if (*p == '-') {
3845 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003846 if(c != *p) {
3847 if(!is_valid_option(p, typestr)) {
3848
3849 monitor_printf(mon, "%s: unsupported option -%c\n",
3850 cmdname, *p);
3851 goto fail;
3852 } else {
3853 skip_key = 1;
3854 }
bellard9307c4c2004-04-04 12:57:25 +00003855 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003856 if(skip_key) {
3857 p = tmp;
3858 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003859 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003860 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003861 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003862 }
bellard9307c4c2004-04-04 12:57:25 +00003863 }
bellard9307c4c2004-04-04 12:57:25 +00003864 }
3865 break;
3866 default:
3867 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003868 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003869 goto fail;
3870 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003871 qemu_free(key);
3872 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003873 }
3874 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003875 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003876 p++;
3877 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003878 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3879 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003880 goto fail;
3881 }
3882
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003883 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003884
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003885fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003886 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003887 return NULL;
3888}
3889
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003890void monitor_set_error(Monitor *mon, QError *qerror)
3891{
3892 /* report only the first error */
3893 if (!mon->error) {
3894 mon->error = qerror;
3895 } else {
3896 MON_DEBUG("Additional error report at %s:%d\n",
3897 qerror->file, qerror->linenr);
3898 QDECREF(qerror);
3899 }
3900}
3901
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003902static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3903{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003904 if (monitor_ctrl_mode(mon)) {
3905 if (ret && !monitor_has_error(mon)) {
3906 /*
3907 * If it returns failure, it must have passed on error.
3908 *
3909 * Action: Report an internal error to the client if in QMP.
3910 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003911 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003912 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3913 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003914 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003915
3916#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003917 if (!ret && monitor_has_error(mon)) {
3918 /*
3919 * If it returns success, it must not have passed an error.
3920 *
3921 * Action: Report the passed error to the client.
3922 */
3923 MON_DEBUG("command '%s' returned success but passed an error\n",
3924 cmd->name);
3925 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003926
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003927 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3928 /*
3929 * Handlers should not call Monitor print functions.
3930 *
3931 * Action: Ignore them in QMP.
3932 *
3933 * (XXX: we don't check any 'info' or 'query' command here
3934 * because the user print function _is_ called by do_info(), hence
3935 * we will trigger this check. This problem will go away when we
3936 * make 'query' commands real and kill do_info())
3937 */
3938 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3939 cmd->name, mon_print_count_get(mon));
3940 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003941#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003942 } else {
3943 assert(!monitor_has_error(mon));
3944 QDECREF(mon->error);
3945 mon->error = NULL;
3946 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003947}
3948
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003949static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003950{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003951 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003952 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003953
3954 qdict = qdict_new();
3955
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003956 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003957 if (!cmd)
3958 goto out;
3959
Luiz Capitulino4903de02010-09-16 11:01:32 -03003960 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003961 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003962 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003963 QObject *data = NULL;
3964
3965 /* XXX: ignores the error code */
3966 cmd->mhandler.cmd_new(mon, qdict, &data);
3967 assert(!monitor_has_error(mon));
3968 if (data) {
3969 cmd->user_print(mon, data);
3970 qobject_decref(data);
3971 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003972 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003973 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003974 }
3975
Luiz Capitulino13917be2009-10-07 13:41:54 -03003976out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003977 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003978}
3979
bellard81d09122004-07-14 17:21:37 +00003980static void cmd_completion(const char *name, const char *list)
3981{
3982 const char *p, *pstart;
3983 char cmd[128];
3984 int len;
3985
3986 p = list;
3987 for(;;) {
3988 pstart = p;
3989 p = strchr(p, '|');
3990 if (!p)
3991 p = pstart + strlen(pstart);
3992 len = p - pstart;
3993 if (len > sizeof(cmd) - 2)
3994 len = sizeof(cmd) - 2;
3995 memcpy(cmd, pstart, len);
3996 cmd[len] = '\0';
3997 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003998 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003999 }
4000 if (*p == '\0')
4001 break;
4002 p++;
4003 }
4004}
4005
4006static void file_completion(const char *input)
4007{
4008 DIR *ffs;
4009 struct dirent *d;
4010 char path[1024];
4011 char file[1024], file_prefix[1024];
4012 int input_path_len;
4013 const char *p;
4014
ths5fafdf22007-09-16 21:08:06 +00004015 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004016 if (!p) {
4017 input_path_len = 0;
4018 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004019 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004020 } else {
4021 input_path_len = p - input + 1;
4022 memcpy(path, input, input_path_len);
4023 if (input_path_len > sizeof(path) - 1)
4024 input_path_len = sizeof(path) - 1;
4025 path[input_path_len] = '\0';
4026 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4027 }
4028#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004029 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4030 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004031#endif
4032 ffs = opendir(path);
4033 if (!ffs)
4034 return;
4035 for(;;) {
4036 struct stat sb;
4037 d = readdir(ffs);
4038 if (!d)
4039 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004040
4041 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4042 continue;
4043 }
4044
bellard81d09122004-07-14 17:21:37 +00004045 if (strstart(d->d_name, file_prefix, NULL)) {
4046 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004047 if (input_path_len < sizeof(file))
4048 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4049 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004050 /* stat the file to find out if it's a directory.
4051 * In that case add a slash to speed up typing long paths
4052 */
4053 stat(file, &sb);
4054 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004055 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004056 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004057 }
4058 }
4059 closedir(ffs);
4060}
4061
aliguori51de9762009-03-05 23:00:43 +00004062static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004063{
aliguori51de9762009-03-05 23:00:43 +00004064 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004065 const char *input = opaque;
4066
4067 if (input[0] == '\0' ||
4068 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004069 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004070 }
4071}
4072
4073/* NOTE: this parser is an approximate form of the real command parser */
4074static void parse_cmdline(const char *cmdline,
4075 int *pnb_args, char **args)
4076{
4077 const char *p;
4078 int nb_args, ret;
4079 char buf[1024];
4080
4081 p = cmdline;
4082 nb_args = 0;
4083 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004084 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004085 p++;
4086 if (*p == '\0')
4087 break;
4088 if (nb_args >= MAX_ARGS)
4089 break;
4090 ret = get_str(buf, sizeof(buf), &p);
4091 args[nb_args] = qemu_strdup(buf);
4092 nb_args++;
4093 if (ret < 0)
4094 break;
4095 }
4096 *pnb_args = nb_args;
4097}
4098
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004099static const char *next_arg_type(const char *typestr)
4100{
4101 const char *p = strchr(typestr, ':');
4102 return (p != NULL ? ++p : typestr);
4103}
4104
aliguori4c36ba32009-03-05 23:01:37 +00004105static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004106{
4107 const char *cmdname;
4108 char *args[MAX_ARGS];
4109 int nb_args, i, len;
4110 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004111 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004112 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004113
4114 parse_cmdline(cmdline, &nb_args, args);
4115#ifdef DEBUG_COMPLETION
4116 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004117 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004118 }
4119#endif
4120
4121 /* if the line ends with a space, it means we want to complete the
4122 next arg */
4123 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004124 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004125 if (nb_args >= MAX_ARGS) {
4126 goto cleanup;
4127 }
bellard81d09122004-07-14 17:21:37 +00004128 args[nb_args++] = qemu_strdup("");
4129 }
4130 if (nb_args <= 1) {
4131 /* command completion */
4132 if (nb_args == 0)
4133 cmdname = "";
4134 else
4135 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004136 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004137 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004138 cmd_completion(cmdname, cmd->name);
4139 }
4140 } else {
4141 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004142 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4143 if (compare_cmd(args[0], cmd->name)) {
4144 break;
4145 }
bellard81d09122004-07-14 17:21:37 +00004146 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004147 if (!cmd->name) {
4148 goto cleanup;
4149 }
4150
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004151 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004152 for(i = 0; i < nb_args - 2; i++) {
4153 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004154 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004155 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004156 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004157 }
4158 }
4159 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004160 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004161 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004162 }
bellard81d09122004-07-14 17:21:37 +00004163 switch(*ptype) {
4164 case 'F':
4165 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004166 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004167 file_completion(str);
4168 break;
4169 case 'B':
4170 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004171 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004172 bdrv_iterate(block_completion_it, (void *)str);
4173 break;
bellard7fe48482004-10-09 18:08:01 +00004174 case 's':
4175 /* XXX: more generic ? */
4176 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004177 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004178 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4179 cmd_completion(str, cmd->name);
4180 }
bellard64866c32006-05-07 18:03:31 +00004181 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004182 char *sep = strrchr(str, '-');
4183 if (sep)
4184 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004185 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004186 for(key = key_defs; key->name != NULL; key++) {
4187 cmd_completion(str, key->name);
4188 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004189 } else if (!strcmp(cmd->name, "help|?")) {
4190 readline_set_completion_index(cur_mon->rs, strlen(str));
4191 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4192 cmd_completion(str, cmd->name);
4193 }
bellard7fe48482004-10-09 18:08:01 +00004194 }
4195 break;
bellard81d09122004-07-14 17:21:37 +00004196 default:
4197 break;
4198 }
4199 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004200
4201cleanup:
4202 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004203 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004204 }
bellard81d09122004-07-14 17:21:37 +00004205}
4206
aliguori731b0362009-03-05 23:01:42 +00004207static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004208{
aliguori731b0362009-03-05 23:01:42 +00004209 Monitor *mon = opaque;
4210
Jan Kiszkac62313b2009-12-04 14:05:29 +01004211 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004212}
4213
Luiz Capitulino09069b12010-02-04 18:10:06 -02004214static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4215{
4216 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4217 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4218}
4219
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004220/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004221 * Argument validation rules:
4222 *
4223 * 1. The argument must exist in cmd_args qdict
4224 * 2. The argument type must be the expected one
4225 *
4226 * Special case: If the argument doesn't exist in cmd_args and
4227 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4228 * checking is skipped for it.
4229 */
4230static int check_client_args_type(const QDict *client_args,
4231 const QDict *cmd_args, int flags)
4232{
4233 const QDictEntry *ent;
4234
4235 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4236 QObject *obj;
4237 QString *arg_type;
4238 const QObject *client_arg = qdict_entry_value(ent);
4239 const char *client_arg_name = qdict_entry_key(ent);
4240
4241 obj = qdict_get(cmd_args, client_arg_name);
4242 if (!obj) {
4243 if (flags & QMP_ACCEPT_UNKNOWNS) {
4244 /* handler accepts unknowns */
4245 continue;
4246 }
4247 /* client arg doesn't exist */
4248 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4249 return -1;
4250 }
4251
4252 arg_type = qobject_to_qstring(obj);
4253 assert(arg_type != NULL);
4254
4255 /* check if argument's type is correct */
4256 switch (qstring_get_str(arg_type)[0]) {
4257 case 'F':
4258 case 'B':
4259 case 's':
4260 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4261 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4262 "string");
4263 return -1;
4264 }
4265 break;
4266 case 'i':
4267 case 'l':
4268 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004269 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004270 if (qobject_type(client_arg) != QTYPE_QINT) {
4271 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4272 "int");
4273 return -1;
4274 }
4275 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004276 case 'T':
4277 if (qobject_type(client_arg) != QTYPE_QINT &&
4278 qobject_type(client_arg) != QTYPE_QFLOAT) {
4279 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4280 "number");
4281 return -1;
4282 }
4283 break;
4284 case 'b':
4285 case '-':
4286 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4287 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4288 "bool");
4289 return -1;
4290 }
4291 break;
4292 case 'O':
4293 assert(flags & QMP_ACCEPT_UNKNOWNS);
4294 break;
4295 case '/':
4296 case '.':
4297 /*
4298 * These types are not supported by QMP and thus are not
4299 * handled here. Fall through.
4300 */
4301 default:
4302 abort();
4303 }
4304 }
4305
4306 return 0;
4307}
4308
4309/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004310 * - Check if the client has passed all mandatory args
4311 * - Set special flags for argument validation
4312 */
4313static int check_mandatory_args(const QDict *cmd_args,
4314 const QDict *client_args, int *flags)
4315{
4316 const QDictEntry *ent;
4317
4318 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4319 const char *cmd_arg_name = qdict_entry_key(ent);
4320 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4321 assert(type != NULL);
4322
4323 if (qstring_get_str(type)[0] == 'O') {
4324 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4325 *flags |= QMP_ACCEPT_UNKNOWNS;
4326 } else if (qstring_get_str(type)[0] != '-' &&
4327 qstring_get_str(type)[1] != '?' &&
4328 !qdict_haskey(client_args, cmd_arg_name)) {
4329 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4330 return -1;
4331 }
4332 }
4333
4334 return 0;
4335}
4336
4337static QDict *qdict_from_args_type(const char *args_type)
4338{
4339 int i;
4340 QDict *qdict;
4341 QString *key, *type, *cur_qs;
4342
4343 assert(args_type != NULL);
4344
4345 qdict = qdict_new();
4346
4347 if (args_type == NULL || args_type[0] == '\0') {
4348 /* no args, empty qdict */
4349 goto out;
4350 }
4351
4352 key = qstring_new();
4353 type = qstring_new();
4354
4355 cur_qs = key;
4356
4357 for (i = 0;; i++) {
4358 switch (args_type[i]) {
4359 case ',':
4360 case '\0':
4361 qdict_put(qdict, qstring_get_str(key), type);
4362 QDECREF(key);
4363 if (args_type[i] == '\0') {
4364 goto out;
4365 }
4366 type = qstring_new(); /* qdict has ref */
4367 cur_qs = key = qstring_new();
4368 break;
4369 case ':':
4370 cur_qs = type;
4371 break;
4372 default:
4373 qstring_append_chr(cur_qs, args_type[i]);
4374 break;
4375 }
4376 }
4377
4378out:
4379 return qdict;
4380}
4381
4382/*
4383 * Client argument checking rules:
4384 *
4385 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004386 * 2. Each argument provided by the client must be expected
4387 * 3. Each argument provided by the client must have the type expected
4388 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004389 */
4390static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4391{
4392 int flags, err;
4393 QDict *cmd_args;
4394
4395 cmd_args = qdict_from_args_type(cmd->args_type);
4396
4397 flags = 0;
4398 err = check_mandatory_args(cmd_args, client_args, &flags);
4399 if (err) {
4400 goto out;
4401 }
4402
Luiz Capitulino4af91932010-06-22 11:44:05 -03004403 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004404
4405out:
4406 QDECREF(cmd_args);
4407 return err;
4408}
4409
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004410/*
4411 * Input object checking rules
4412 *
4413 * 1. Input object must be a dict
4414 * 2. The "execute" key must exist
4415 * 3. The "execute" key must be a string
4416 * 4. If the "arguments" key exists, it must be a dict
4417 * 5. If the "id" key exists, it can be anything (ie. json-value)
4418 * 6. Any argument not listed above is considered invalid
4419 */
4420static QDict *qmp_check_input_obj(QObject *input_obj)
4421{
4422 const QDictEntry *ent;
4423 int has_exec_key = 0;
4424 QDict *input_dict;
4425
4426 if (qobject_type(input_obj) != QTYPE_QDICT) {
4427 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4428 return NULL;
4429 }
4430
4431 input_dict = qobject_to_qdict(input_obj);
4432
4433 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4434 const char *arg_name = qdict_entry_key(ent);
4435 const QObject *arg_obj = qdict_entry_value(ent);
4436
4437 if (!strcmp(arg_name, "execute")) {
4438 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4439 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4440 "string");
4441 return NULL;
4442 }
4443 has_exec_key = 1;
4444 } else if (!strcmp(arg_name, "arguments")) {
4445 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4446 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4447 "object");
4448 return NULL;
4449 }
4450 } else if (!strcmp(arg_name, "id")) {
4451 /* FIXME: check duplicated IDs for async commands */
4452 } else {
4453 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4454 return NULL;
4455 }
4456 }
4457
4458 if (!has_exec_key) {
4459 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4460 return NULL;
4461 }
4462
4463 return input_dict;
4464}
4465
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004466static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4467{
4468 QObject *ret_data = NULL;
4469
Luiz Capitulino4903de02010-09-16 11:01:32 -03004470 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004471 qmp_async_info_handler(mon, cmd);
4472 if (monitor_has_error(mon)) {
4473 monitor_protocol_emitter(mon, NULL);
4474 }
4475 } else {
4476 cmd->mhandler.info_new(mon, &ret_data);
4477 if (ret_data) {
4478 monitor_protocol_emitter(mon, ret_data);
4479 qobject_decref(ret_data);
4480 }
4481 }
4482}
4483
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004484static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4485 const QDict *params)
4486{
4487 int ret;
4488 QObject *data = NULL;
4489
4490 mon_print_count_init(mon);
4491
4492 ret = cmd->mhandler.cmd_new(mon, params, &data);
4493 handler_audit(mon, cmd, ret);
4494 monitor_protocol_emitter(mon, data);
4495 qobject_decref(data);
4496}
4497
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004498static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4499{
4500 int err;
4501 QObject *obj;
4502 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004503 const mon_cmd_t *cmd;
4504 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004505 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004506
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004507 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004508 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004509
4510 obj = json_parser_parse(tokens, NULL);
4511 if (!obj) {
4512 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004513 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004514 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004515 }
4516
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004517 input = qmp_check_input_obj(obj);
4518 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004519 qobject_decref(obj);
4520 goto err_out;
4521 }
4522
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004523 mon->mc->id = qdict_get(input, "id");
4524 qobject_incref(mon->mc->id);
4525
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004526 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004527 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004528 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004529 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004530 }
4531
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004532 if (strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004533 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004534 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004535 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004536 }
4537
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004538 if (!cmd) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004539 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4540 goto err_out;
4541 }
4542
4543 obj = qdict_get(input, "arguments");
4544 if (!obj) {
4545 args = qdict_new();
4546 } else {
4547 args = qobject_to_qdict(obj);
4548 QINCREF(args);
4549 }
4550
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004551 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004552 if (err < 0) {
4553 goto err_out;
4554 }
4555
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004556 if (query_cmd) {
4557 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004558 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004559 err = qmp_async_cmd_handler(mon, cmd, args);
4560 if (err) {
4561 /* emit the error response */
4562 goto err_out;
4563 }
Adam Litke940cc302010-01-25 12:18:44 -06004564 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004565 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004566 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004567
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004568 goto out;
4569
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004570err_out:
4571 monitor_protocol_emitter(mon, NULL);
4572out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004573 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004574 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004575}
4576
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004577/**
4578 * monitor_control_read(): Read and handle QMP input
4579 */
4580static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4581{
4582 Monitor *old_mon = cur_mon;
4583
4584 cur_mon = opaque;
4585
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004586 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004587
4588 cur_mon = old_mon;
4589}
4590
aliguori731b0362009-03-05 23:01:42 +00004591static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004592{
aliguori731b0362009-03-05 23:01:42 +00004593 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004594 int i;
aliguori376253e2009-03-05 23:01:23 +00004595
aliguori731b0362009-03-05 23:01:42 +00004596 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004597
aliguoricde76ee2009-03-05 23:01:51 +00004598 if (cur_mon->rs) {
4599 for (i = 0; i < size; i++)
4600 readline_handle_byte(cur_mon->rs, buf[i]);
4601 } else {
4602 if (size == 0 || buf[size - 1] != 0)
4603 monitor_printf(cur_mon, "corrupted command\n");
4604 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004605 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004606 }
aliguori731b0362009-03-05 23:01:42 +00004607
4608 cur_mon = old_mon;
4609}
aliguorid8f44602008-10-06 13:52:44 +00004610
aliguori376253e2009-03-05 23:01:23 +00004611static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004612{
aliguori731b0362009-03-05 23:01:42 +00004613 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004614 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004615 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004616}
4617
aliguoricde76ee2009-03-05 23:01:51 +00004618int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004619{
aliguoricde76ee2009-03-05 23:01:51 +00004620 if (!mon->rs)
4621 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004622 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004623 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004624}
4625
aliguori376253e2009-03-05 23:01:23 +00004626void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004627{
aliguoricde76ee2009-03-05 23:01:51 +00004628 if (!mon->rs)
4629 return;
aliguori731b0362009-03-05 23:01:42 +00004630 if (--mon->suspend_cnt == 0)
4631 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004632}
4633
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004634static QObject *get_qmp_greeting(void)
4635{
4636 QObject *ver;
4637
4638 do_info_version(NULL, &ver);
4639 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4640}
4641
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004642/**
4643 * monitor_control_event(): Print QMP gretting
4644 */
4645static void monitor_control_event(void *opaque, int event)
4646{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004647 QObject *data;
4648 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004649
Luiz Capitulino47116d12010-02-08 17:01:30 -02004650 switch (event) {
4651 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004652 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004653 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004654 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004655 monitor_json_emitter(mon, data);
4656 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004657 break;
4658 case CHR_EVENT_CLOSED:
4659 json_message_parser_destroy(&mon->mc->parser);
4660 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004661 }
4662}
4663
aliguori731b0362009-03-05 23:01:42 +00004664static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004665{
aliguori376253e2009-03-05 23:01:23 +00004666 Monitor *mon = opaque;
4667
aliguori2724b182009-03-05 23:01:47 +00004668 switch (event) {
4669 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004670 mon->mux_out = 0;
4671 if (mon->reset_seen) {
4672 readline_restart(mon->rs);
4673 monitor_resume(mon);
4674 monitor_flush(mon);
4675 } else {
4676 mon->suspend_cnt = 0;
4677 }
aliguori2724b182009-03-05 23:01:47 +00004678 break;
ths86e94de2007-01-05 22:01:59 +00004679
aliguori2724b182009-03-05 23:01:47 +00004680 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004681 if (mon->reset_seen) {
4682 if (mon->suspend_cnt == 0) {
4683 monitor_printf(mon, "\n");
4684 }
4685 monitor_flush(mon);
4686 monitor_suspend(mon);
4687 } else {
4688 mon->suspend_cnt++;
4689 }
4690 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004691 break;
4692
Amit Shahb6b8df52009-10-07 18:31:16 +05304693 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004694 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4695 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004696 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004697 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004698 }
4699 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004700 break;
4701 }
ths86e94de2007-01-05 22:01:59 +00004702}
4703
aliguori76655d62009-03-06 20:27:37 +00004704
4705/*
4706 * Local variables:
4707 * c-indent-level: 4
4708 * c-basic-offset: 4
4709 * tab-width: 8
4710 * End:
4711 */
4712
aliguori731b0362009-03-05 23:01:42 +00004713void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004714{
aliguori731b0362009-03-05 23:01:42 +00004715 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004716 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004717
4718 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004719 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004720 is_first_init = 0;
4721 }
aliguori87127162009-03-05 23:01:29 +00004722
4723 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004724
aliguori87127162009-03-05 23:01:29 +00004725 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004726 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004727 if (flags & MONITOR_USE_READLINE) {
4728 mon->rs = readline_init(mon, monitor_find_completion);
4729 monitor_read_command(mon, 0);
4730 }
aliguori87127162009-03-05 23:01:29 +00004731
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004732 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004733 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004734 /* Control mode requires special handlers */
4735 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4736 monitor_control_event, mon);
4737 } else {
4738 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4739 monitor_event, mon);
4740 }
aliguori87127162009-03-05 23:01:29 +00004741
Blue Swirl72cf2d42009-09-12 07:36:22 +00004742 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004743 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4744 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004745}
4746
aliguori376253e2009-03-05 23:01:23 +00004747static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004748{
aliguoribb5fc202009-03-05 23:01:15 +00004749 BlockDriverState *bs = opaque;
4750 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004751
aliguoribb5fc202009-03-05 23:01:15 +00004752 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004753 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004754 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004755 }
aliguori731b0362009-03-05 23:01:42 +00004756 if (mon->password_completion_cb)
4757 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004758
aliguori731b0362009-03-05 23:01:42 +00004759 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004760}
aliguoric0f4ce72009-03-05 23:01:01 +00004761
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004762int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4763 BlockDriverCompletionFunc *completion_cb,
4764 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004765{
aliguoricde76ee2009-03-05 23:01:51 +00004766 int err;
4767
aliguoribb5fc202009-03-05 23:01:15 +00004768 if (!bdrv_key_required(bs)) {
4769 if (completion_cb)
4770 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004771 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004772 }
aliguoric0f4ce72009-03-05 23:01:01 +00004773
Luiz Capitulino94171e12009-12-07 21:37:00 +01004774 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004775 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004776 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004777 }
4778
aliguori376253e2009-03-05 23:01:23 +00004779 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4780 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004781
aliguori731b0362009-03-05 23:01:42 +00004782 mon->password_completion_cb = completion_cb;
4783 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004784
aliguoricde76ee2009-03-05 23:01:51 +00004785 err = monitor_read_password(mon, bdrv_password_cb, bs);
4786
4787 if (err && completion_cb)
4788 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004789
4790 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004791}