blob: be8761a40db9706d72b65a9564c9f5b4c8b7f149 [file] [log] [blame]
bellard9dc39cb2004-03-14 21:38:27 +00001/*
2 * QEMU monitor
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard9dc39cb2004-03-14 21:38:27 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard9dc39cb2004-03-14 21:38:27 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
blueswir1511d2b12009-03-07 15:32:56 +000024#include <dirent.h>
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw/hw.h"
Gerd Hoffmanncae49562009-06-05 15:53:17 +010026#include "hw/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
29#include "hw/pc.h"
30#include "hw/pci.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +010031#include "hw/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "gdbstub.h"
34#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000035#include "net/slirp.h"
pbrook87ecb682007-11-17 17:14:51 +000036#include "qemu-char.h"
37#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000038#include "monitor.h"
39#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000040#include "console.h"
Markus Armbruster666daa62010-06-02 18:48:27 +020041#include "blockdev.h"
pbrook87ecb682007-11-17 17:14:51 +000042#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000043#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000044#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000045#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000046#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000047#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000048#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030049#include "qint.h"
Markus Armbruster3350a4d2010-01-25 14:23:03 +010050#include "qfloat.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030051#include "qlist.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020052#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030053#include "qstring.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020054#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020055#include "json-streamer.h"
56#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000057#include "osdep.h"
Paolo Bonzinia88790a2010-06-29 09:58:51 +020058#include "exec-all.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053059#ifdef CONFIG_SIMPLE_TRACE
60#include "trace.h"
61#endif
ths6a5bd302007-12-03 17:05:38 +000062
bellard9dc39cb2004-03-14 21:38:27 +000063//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000064//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000065
bellard9307c4c2004-04-04 12:57:25 +000066/*
67 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000068 *
bellard9307c4c2004-04-04 12:57:25 +000069 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000070 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000071 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010072 * 'O' option string of the form NAME=VALUE,...
73 * parsed according to QemuOptsList given by its name
74 * Example: 'device:O' uses qemu_device_opts.
75 * Restriction: only lists with empty desc are supported
76 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000077 * 'i' 32 bit integer
78 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010079 * 'M' just like 'l', except in user mode the value is
80 * multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +020081 * 'o' octets (aka bytes)
82 * user mode accepts an optional T, t, G, g, M, m, K, k
83 * suffix, which multiplies the value by 2^40 for
84 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
85 * M and m, 2^10 for K and k
Markus Armbrusteree9545d2010-03-26 09:07:08 +010086 * 'f' double
Markus Armbruster3350a4d2010-01-25 14:23:03 +010087 * user mode accepts an optional G, g, M, m, K, k suffix,
88 * which multiplies the value by 2^30 for suffixes G and
89 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010090 * 'T' double
91 * user mode accepts an optional ms, us, ns suffix,
92 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000093 * '/' optional gdb-like print format (like "/10x")
94 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030095 * '?' optional type (for all types, except '/')
96 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010097 * 'b' boolean
98 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030099 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000100 *
101 */
102
Adam Litke940cc302010-01-25 12:18:44 -0600103typedef struct MonitorCompletionData MonitorCompletionData;
104struct MonitorCompletionData {
105 Monitor *mon;
106 void (*user_print)(Monitor *mon, const QObject *data);
107};
108
Anthony Liguoric227f092009-10-01 16:12:16 -0500109typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000110 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000111 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000112 const char *params;
113 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300114 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300115 union {
116 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300117 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600118 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300119 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200120 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600121 int (*cmd_async)(Monitor *mon, const QDict *params,
122 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300123 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200124 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500125} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000126
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100127/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500128typedef struct mon_fd_t mon_fd_t;
129struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100130 char *name;
131 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500132 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100133};
134
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200135typedef struct MonitorControl {
136 QObject *id;
137 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200138 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200139} MonitorControl;
140
aliguori87127162009-03-05 23:01:29 +0000141struct Monitor {
142 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200143 int mux_out;
144 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000145 int flags;
146 int suspend_cnt;
147 uint8_t outbuf[1024];
148 int outbuf_index;
149 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200150 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000151 CPUState *mon_cpu;
152 BlockDriverCompletionFunc *password_completion_cb;
153 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200154#ifdef CONFIG_DEBUG_MONITOR
155 int print_calls_nr;
156#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200157 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500158 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000159 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000160};
161
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200162#ifdef CONFIG_DEBUG_MONITOR
163#define MON_DEBUG(fmt, ...) do { \
164 fprintf(stderr, "Monitor: "); \
165 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200166
167static inline void mon_print_count_inc(Monitor *mon)
168{
169 mon->print_calls_nr++;
170}
171
172static inline void mon_print_count_init(Monitor *mon)
173{
174 mon->print_calls_nr = 0;
175}
176
177static inline int mon_print_count_get(const Monitor *mon)
178{
179 return mon->print_calls_nr;
180}
181
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200182#else /* !CONFIG_DEBUG_MONITOR */
183#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200184static inline void mon_print_count_inc(Monitor *mon) { }
185static inline void mon_print_count_init(Monitor *mon) { }
186static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200187#endif /* CONFIG_DEBUG_MONITOR */
188
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300189/* QMP checker flags */
190#define QMP_ACCEPT_UNKNOWNS 1
191
Blue Swirl72cf2d42009-09-12 07:36:22 +0000192static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000193
Anthony Liguoric227f092009-10-01 16:12:16 -0500194static const mon_cmd_t mon_cmds[];
195static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000196
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300197static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300198static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300199
Markus Armbruster8631b602010-02-18 11:41:55 +0100200Monitor *cur_mon;
201Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000202
aliguori731b0362009-03-05 23:01:42 +0000203static void monitor_command_cb(Monitor *mon, const char *cmdline,
204 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000205
Luiz Capitulino09069b12010-02-04 18:10:06 -0200206static inline int qmp_cmd_mode(const Monitor *mon)
207{
208 return (mon->mc ? mon->mc->command_mode : 0);
209}
210
Luiz Capitulino418173c2009-11-26 22:58:51 -0200211/* Return true if in control mode, false otherwise */
212static inline int monitor_ctrl_mode(const Monitor *mon)
213{
214 return (mon->flags & MONITOR_USE_CONTROL);
215}
216
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100217/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
218int monitor_cur_is_qmp(void)
219{
220 return cur_mon && monitor_ctrl_mode(cur_mon);
221}
222
aliguori731b0362009-03-05 23:01:42 +0000223static void monitor_read_command(Monitor *mon, int show_prompt)
224{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200225 if (!mon->rs)
226 return;
227
aliguori731b0362009-03-05 23:01:42 +0000228 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
229 if (show_prompt)
230 readline_show_prompt(mon->rs);
231}
bellard6a00d602005-11-21 23:25:50 +0000232
aliguoricde76ee2009-03-05 23:01:51 +0000233static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
234 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000235{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100236 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100237 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100238 return -EINVAL;
239 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000240 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
241 /* prompt is printed on return from the command handler */
242 return 0;
243 } else {
244 monitor_printf(mon, "terminal does not support password prompting\n");
245 return -ENOTTY;
246 }
aliguoribb5fc202009-03-05 23:01:15 +0000247}
248
aliguori376253e2009-03-05 23:01:23 +0000249void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000250{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200251 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000252 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
253 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000254 }
255}
256
257/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000258static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000259{
ths60fe76f2007-12-16 03:02:09 +0000260 char c;
aliguori731b0362009-03-05 23:01:42 +0000261
bellard7e2515e2004-08-01 21:52:19 +0000262 for(;;) {
263 c = *str++;
264 if (c == '\0')
265 break;
bellard7ba12602006-07-14 20:26:42 +0000266 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000267 mon->outbuf[mon->outbuf_index++] = '\r';
268 mon->outbuf[mon->outbuf_index++] = c;
269 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
270 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000271 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000272 }
273}
274
aliguori376253e2009-03-05 23:01:23 +0000275void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000276{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200277 char buf[4096];
278
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200279 if (!mon)
280 return;
281
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200282 mon_print_count_inc(mon);
283
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200284 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200285 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200286 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200287
288 vsnprintf(buf, sizeof(buf), fmt, ap);
289 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000290}
291
aliguori376253e2009-03-05 23:01:23 +0000292void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000293{
294 va_list ap;
295 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000296 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000297 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000298}
299
aliguori376253e2009-03-05 23:01:23 +0000300void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000301{
302 int i;
303
304 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000305 switch (filename[i]) {
306 case ' ':
307 case '"':
308 case '\\':
309 monitor_printf(mon, "\\%c", filename[i]);
310 break;
311 case '\t':
312 monitor_printf(mon, "\\t");
313 break;
314 case '\r':
315 monitor_printf(mon, "\\r");
316 break;
317 case '\n':
318 monitor_printf(mon, "\\n");
319 break;
320 default:
321 monitor_printf(mon, "%c", filename[i]);
322 break;
323 }
thsfef30742006-12-22 14:11:32 +0000324 }
325}
326
Stefan Weil8b7968f2010-09-23 21:28:05 +0200327static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
328 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000329{
330 va_list ap;
331 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000332 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000333 va_end(ap);
334 return 0;
335}
336
Luiz Capitulino13c74252009-10-07 13:41:55 -0300337static void monitor_user_noop(Monitor *mon, const QObject *data) { }
338
Luiz Capitulino9e807212010-09-16 10:58:59 -0300339static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300340{
341 return cmd->user_print != NULL;
342}
343
Luiz Capitulino4903de02010-09-16 11:01:32 -0300344static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600345{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200346 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600347}
348
Luiz Capitulino8204a912009-11-18 23:05:31 -0200349static inline int monitor_has_error(const Monitor *mon)
350{
351 return mon->error != NULL;
352}
353
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200354static void monitor_json_emitter(Monitor *mon, const QObject *data)
355{
356 QString *json;
357
Daniel P. Berrange39eaab92010-06-07 15:42:31 +0100358 if (mon->flags & MONITOR_USE_PRETTY)
359 json = qobject_to_json_pretty(data);
360 else
361 json = qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200362 assert(json != NULL);
363
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200364 qstring_append_chr(json, '\n');
365 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200366
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200367 QDECREF(json);
368}
369
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200370static void monitor_protocol_emitter(Monitor *mon, QObject *data)
371{
372 QDict *qmp;
373
374 qmp = qdict_new();
375
376 if (!monitor_has_error(mon)) {
377 /* success response */
378 if (data) {
379 qobject_incref(data);
380 qdict_put_obj(qmp, "return", data);
381 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200382 /* return an empty QDict by default */
383 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200384 }
385 } else {
386 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100387 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200388 qdict_put(qmp, "error", mon->error->error);
389 QINCREF(mon->error->error);
390 QDECREF(mon->error);
391 mon->error = NULL;
392 }
393
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200394 if (mon->mc->id) {
395 qdict_put_obj(qmp, "id", mon->mc->id);
396 mon->mc->id = NULL;
397 }
398
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200399 monitor_json_emitter(mon, QOBJECT(qmp));
400 QDECREF(qmp);
401}
402
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200403static void timestamp_put(QDict *qdict)
404{
405 int err;
406 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000407 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200408
Blue Swirld08d6f02009-12-04 18:06:39 +0000409 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200410 if (err < 0)
411 return;
412
413 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
414 "'microseconds': %" PRId64 " }",
415 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200416 qdict_put_obj(qdict, "timestamp", obj);
417}
418
419/**
420 * monitor_protocol_event(): Generate a Monitor event
421 *
422 * Event-specific data can be emitted through the (optional) 'data' parameter.
423 */
424void monitor_protocol_event(MonitorEvent event, QObject *data)
425{
426 QDict *qmp;
427 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600428 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200429
Blue Swirl242cd002009-12-04 18:05:45 +0000430 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200431
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200432 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000433 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200434 event_name = "SHUTDOWN";
435 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000436 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200437 event_name = "RESET";
438 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000439 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200440 event_name = "POWERDOWN";
441 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000442 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200443 event_name = "STOP";
444 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300445 case QEVENT_RESUME:
446 event_name = "RESUME";
447 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200448 case QEVENT_VNC_CONNECTED:
449 event_name = "VNC_CONNECTED";
450 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200451 case QEVENT_VNC_INITIALIZED:
452 event_name = "VNC_INITIALIZED";
453 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200454 case QEVENT_VNC_DISCONNECTED:
455 event_name = "VNC_DISCONNECTED";
456 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200457 case QEVENT_BLOCK_IO_ERROR:
458 event_name = "BLOCK_IO_ERROR";
459 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300460 case QEVENT_RTC_CHANGE:
461 event_name = "RTC_CHANGE";
462 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300463 case QEVENT_WATCHDOG:
464 event_name = "WATCHDOG";
465 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200466 default:
467 abort();
468 break;
469 }
470
471 qmp = qdict_new();
472 timestamp_put(qmp);
473 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200474 if (data) {
475 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200476 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200477 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200478
Adam Litkef039a562010-01-15 08:34:02 -0600479 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200480 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200481 monitor_json_emitter(mon, QOBJECT(qmp));
482 }
Adam Litkef039a562010-01-15 08:34:02 -0600483 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200484 QDECREF(qmp);
485}
486
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200487static int do_qmp_capabilities(Monitor *mon, const QDict *params,
488 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200489{
490 /* Will setup QMP capabilities in the future */
491 if (monitor_ctrl_mode(mon)) {
492 mon->mc->command_mode = 1;
493 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200494
495 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200496}
497
bellard9dc39cb2004-03-14 21:38:27 +0000498static int compare_cmd(const char *name, const char *list)
499{
500 const char *p, *pstart;
501 int len;
502 len = strlen(name);
503 p = list;
504 for(;;) {
505 pstart = p;
506 p = strchr(p, '|');
507 if (!p)
508 p = pstart + strlen(pstart);
509 if ((p - pstart) == len && !memcmp(pstart, name, len))
510 return 1;
511 if (*p == '\0')
512 break;
513 p++;
514 }
515 return 0;
516}
517
Anthony Liguoric227f092009-10-01 16:12:16 -0500518static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000519 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000520{
Anthony Liguoric227f092009-10-01 16:12:16 -0500521 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000522
523 for(cmd = cmds; cmd->name != NULL; cmd++) {
524 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000525 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
526 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000527 }
528}
529
aliguori376253e2009-03-05 23:01:23 +0000530static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000531{
532 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000533 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000534 } else {
aliguori376253e2009-03-05 23:01:23 +0000535 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000536 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000537 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000538 monitor_printf(mon, "Log items (comma separated):\n");
539 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000540 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000541 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000542 }
543 }
bellard9dc39cb2004-03-14 21:38:27 +0000544 }
545}
546
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300547static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300548{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300549 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300550}
551
Prerna Saxena22890ab2010-06-24 17:04:53 +0530552#ifdef CONFIG_SIMPLE_TRACE
553static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
554{
555 const char *tp_name = qdict_get_str(qdict, "name");
556 bool new_state = qdict_get_bool(qdict, "option");
Blue Swirlf871d682010-10-13 19:14:29 +0000557 int ret = st_change_trace_event_state(tp_name, new_state);
558
559 if (!ret) {
560 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
561 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530562}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100563
564static void do_trace_file(Monitor *mon, const QDict *qdict)
565{
566 const char *op = qdict_get_try_str(qdict, "op");
567 const char *arg = qdict_get_try_str(qdict, "arg");
568
569 if (!op) {
570 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
571 } else if (!strcmp(op, "on")) {
572 st_set_trace_file_enabled(true);
573 } else if (!strcmp(op, "off")) {
574 st_set_trace_file_enabled(false);
575 } else if (!strcmp(op, "flush")) {
576 st_flush_trace_buffer();
577 } else if (!strcmp(op, "set")) {
578 if (arg) {
579 st_set_trace_file(arg);
580 }
581 } else {
582 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
583 help_cmd(mon, "trace-file");
584 }
585}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530586#endif
587
Adam Litke940cc302010-01-25 12:18:44 -0600588static void user_monitor_complete(void *opaque, QObject *ret_data)
589{
590 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
591
592 if (ret_data) {
593 data->user_print(data->mon, ret_data);
594 }
595 monitor_resume(data->mon);
596 qemu_free(data);
597}
598
599static void qmp_monitor_complete(void *opaque, QObject *ret_data)
600{
601 monitor_protocol_emitter(opaque, ret_data);
602}
603
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300604static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
605 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600606{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300607 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600608}
609
610static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
611{
612 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
613}
614
615static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
616 const QDict *params)
617{
618 int ret;
619
620 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
621 cb_data->mon = mon;
622 cb_data->user_print = cmd->user_print;
623 monitor_suspend(mon);
624 ret = cmd->mhandler.cmd_async(mon, params,
625 user_monitor_complete, cb_data);
626 if (ret < 0) {
627 monitor_resume(mon);
628 qemu_free(cb_data);
629 }
630}
631
632static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
633{
634 int ret;
635
636 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
637 cb_data->mon = mon;
638 cb_data->user_print = cmd->user_print;
639 monitor_suspend(mon);
640 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
641 if (ret < 0) {
642 monitor_resume(mon);
643 qemu_free(cb_data);
644 }
645}
646
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300647static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000648{
Anthony Liguoric227f092009-10-01 16:12:16 -0500649 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300650 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000651
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200652 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000653 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200654 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300655
656 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000657 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300658 break;
bellard9dc39cb2004-03-14 21:38:27 +0000659 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300660
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200661 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300662 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200663 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300664
Luiz Capitulino4903de02010-09-16 11:01:32 -0300665 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300666 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300667 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300668 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200669
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300670 cmd->mhandler.info_new(mon, &info_data);
671 if (info_data) {
672 cmd->user_print(mon, info_data);
673 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200674 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300675 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300676 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300677 }
678
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300679 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300680
681help:
682 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000683}
684
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200685static void do_info_version_print(Monitor *mon, const QObject *data)
686{
687 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300688 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200689
690 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300691 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200692
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300693 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
694 qdict_get_int(qemu, "major"),
695 qdict_get_int(qemu, "minor"),
696 qdict_get_int(qemu, "micro"),
697 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200698}
699
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300700static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000701{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300702 const char *version = QEMU_VERSION;
703 int major = 0, minor = 0, micro = 0;
704 char *tmp;
705
706 major = strtol(version, &tmp, 10);
707 tmp++;
708 minor = strtol(tmp, &tmp, 10);
709 tmp++;
710 micro = strtol(tmp, &tmp, 10);
711
712 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
713 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000714}
715
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200716static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000717{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200718 QDict *qdict;
719
720 qdict = qobject_to_qdict(data);
721 if (qdict_size(qdict) == 0) {
722 return;
723 }
724
725 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
726}
727
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200728static void do_info_name(Monitor *mon, QObject **ret_data)
729{
730 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
731 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000732}
733
Luiz Capitulino1a728672009-12-10 17:15:56 -0200734static QObject *get_cmd_dict(const char *name)
735{
736 const char *p;
737
738 /* Remove '|' from some commands */
739 p = strchr(name, '|');
740 if (p) {
741 p++;
742 } else {
743 p = name;
744 }
745
746 return qobject_from_jsonf("{ 'name': %s }", p);
747}
748
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200749static void do_info_commands(Monitor *mon, QObject **ret_data)
750{
751 QList *cmd_list;
752 const mon_cmd_t *cmd;
753
754 cmd_list = qlist_new();
755
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300756 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300757 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200758 }
759
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300760 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300761 char buf[128];
762 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
763 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200764 }
765
766 *ret_data = QOBJECT(cmd_list);
767}
768
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200769static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000770{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200771 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
772}
773
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200774static void do_info_uuid(Monitor *mon, QObject **ret_data)
775{
776 char uuid[64];
777
778 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000779 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
780 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
781 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
782 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200783 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000784}
785
bellard6a00d602005-11-21 23:25:50 +0000786/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000787static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000788{
789 CPUState *env;
790
791 for(env = first_cpu; env != NULL; env = env->next_cpu) {
792 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000793 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000794 return 0;
795 }
796 }
797 return -1;
798}
799
pbrook9596ebb2007-11-18 01:44:38 +0000800static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000801{
aliguori731b0362009-03-05 23:01:42 +0000802 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000803 mon_set_cpu(0);
804 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300805 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000806 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000807}
808
aliguori376253e2009-03-05 23:01:23 +0000809static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000810{
bellard6a00d602005-11-21 23:25:50 +0000811 CPUState *env;
812 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000813#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000814 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000815 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000816#else
aliguori376253e2009-03-05 23:01:23 +0000817 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000818 0);
bellard9307c4c2004-04-04 12:57:25 +0000819#endif
820}
821
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300822static void print_cpu_iter(QObject *obj, void *opaque)
823{
824 QDict *cpu;
825 int active = ' ';
826 Monitor *mon = opaque;
827
828 assert(qobject_type(obj) == QTYPE_QDICT);
829 cpu = qobject_to_qdict(obj);
830
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200831 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300832 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200833 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300834
835 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
836
837#if defined(TARGET_I386)
838 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
839 (target_ulong) qdict_get_int(cpu, "pc"));
840#elif defined(TARGET_PPC)
841 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
842 (target_long) qdict_get_int(cpu, "nip"));
843#elif defined(TARGET_SPARC)
844 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
845 (target_long) qdict_get_int(cpu, "pc"));
846 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
847 (target_long) qdict_get_int(cpu, "npc"));
848#elif defined(TARGET_MIPS)
849 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
850 (target_long) qdict_get_int(cpu, "PC"));
851#endif
852
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200853 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300854 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200855 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300856
857 monitor_printf(mon, "\n");
858}
859
860static void monitor_print_cpus(Monitor *mon, const QObject *data)
861{
862 QList *cpu_list;
863
864 assert(qobject_type(data) == QTYPE_QLIST);
865 cpu_list = qobject_to_qlist(data);
866 qlist_iter(cpu_list, print_cpu_iter, mon);
867}
868
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300869static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000870{
871 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300872 QList *cpu_list;
873
874 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000875
876 /* just to set the default cpu if not already done */
877 mon_get_cpu();
878
879 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200880 QDict *cpu;
881 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300882
Avi Kivity4c0960c2009-08-17 23:19:53 +0300883 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300884
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200885 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
886 env->cpu_index, env == mon->mon_cpu,
887 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200888
889 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300890
bellard6a00d602005-11-21 23:25:50 +0000891#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300892 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000893#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300894 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000895#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300896 qdict_put(cpu, "pc", qint_from_int(env->pc));
897 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000898#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300899 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000900#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300901
902 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000903 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300904
905 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000906}
907
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200908static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000909{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300910 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200911 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100912 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
913 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200914 return -1;
915 }
916 return 0;
bellard6a00d602005-11-21 23:25:50 +0000917}
918
aliguori376253e2009-03-05 23:01:23 +0000919static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000920{
aliguori376253e2009-03-05 23:01:23 +0000921 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000922}
923
aliguori376253e2009-03-05 23:01:23 +0000924static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000925{
926 int i;
bellard7e2515e2004-08-01 21:52:19 +0000927 const char *str;
ths3b46e622007-09-17 08:09:54 +0000928
aliguoricde76ee2009-03-05 23:01:51 +0000929 if (!mon->rs)
930 return;
bellard7e2515e2004-08-01 21:52:19 +0000931 i = 0;
932 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000933 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000934 if (!str)
935 break;
aliguori376253e2009-03-05 23:01:23 +0000936 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000937 i++;
bellardaa455482004-04-04 13:07:25 +0000938 }
939}
940
j_mayer76a66252007-03-07 08:32:30 +0000941#if defined(TARGET_PPC)
942/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000943static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000944{
945 CPUState *env;
946
947 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000948 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000949}
950#endif
951
Prerna Saxena22890ab2010-06-24 17:04:53 +0530952#if defined(CONFIG_SIMPLE_TRACE)
953static void do_info_trace(Monitor *mon)
954{
955 st_print_trace((FILE *)mon, &monitor_fprintf);
956}
957
958static void do_info_trace_events(Monitor *mon)
959{
960 st_print_trace_events((FILE *)mon, &monitor_fprintf);
961}
962#endif
963
Luiz Capitulinob223f352009-10-07 13:41:56 -0300964/**
965 * do_quit(): Quit QEMU execution
966 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200967static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000968{
Luiz Capitulino39b59d22010-05-11 18:08:20 -0300969 monitor_suspend(mon);
970 no_shutdown = 0;
971 qemu_system_shutdown_request();
972
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200973 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000974}
975
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200976static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000977{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200978 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100979 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200980 return -1;
981 }
aliguoribb5fc202009-03-05 23:01:15 +0000982
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200983 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +0100984}
985
986static void change_vnc_password_cb(Monitor *mon, const char *password,
987 void *opaque)
988{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100989 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000990 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000991}
992
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200993static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000994{
ths70848512007-08-25 01:37:05 +0000995 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000996 strcmp(target, "password") == 0) {
997 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000998 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000999 strncpy(password, arg, sizeof(password));
1000 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001001 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001002 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001003 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001004 }
ths70848512007-08-25 01:37:05 +00001005 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001006 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001007 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001008 return -1;
1009 }
ths70848512007-08-25 01:37:05 +00001010 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001011
1012 return 0;
thse25a5822007-08-25 01:36:20 +00001013}
1014
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001015/**
1016 * do_change(): Change a removable medium, or VNC configuration
1017 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001018static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001019{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001020 const char *device = qdict_get_str(qdict, "device");
1021 const char *target = qdict_get_str(qdict, "target");
1022 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001023 int ret;
1024
thse25a5822007-08-25 01:36:20 +00001025 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001026 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001027 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001028 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001029 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001030
1031 return ret;
thse25a5822007-08-25 01:36:20 +00001032}
1033
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001034static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001035{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001036 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001037 return 0;
bellard59a983b2004-03-17 23:17:16 +00001038}
1039
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001040static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001041{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001042 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001043}
1044
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001045static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001046{
1047 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001048 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001049
bellard9307c4c2004-04-04 12:57:25 +00001050 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001051 mask = 0;
1052 } else {
bellard9307c4c2004-04-04 12:57:25 +00001053 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001054 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001055 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001056 return;
1057 }
1058 }
1059 cpu_set_log(mask);
1060}
1061
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001062static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001063{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001064 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001065 if (!option || !strcmp(option, "on")) {
1066 singlestep = 1;
1067 } else if (!strcmp(option, "off")) {
1068 singlestep = 0;
1069 } else {
1070 monitor_printf(mon, "unexpected option %s\n", option);
1071 }
1072}
1073
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001074/**
1075 * do_stop(): Stop VM execution
1076 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001077static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001078{
1079 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001080 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001081}
1082
aliguoribb5fc202009-03-05 23:01:15 +00001083static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001084
aliguori376253e2009-03-05 23:01:23 +00001085struct bdrv_iterate_context {
1086 Monitor *mon;
1087 int err;
1088};
aliguoric0f4ce72009-03-05 23:01:01 +00001089
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001090/**
1091 * do_cont(): Resume emulation.
1092 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001093static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001094{
1095 struct bdrv_iterate_context context = { mon, 0 };
1096
Amit Shah8e848652010-07-27 15:49:19 +05301097 if (incoming_expected) {
1098 qerror_report(QERR_MIGRATION_EXPECTED);
1099 return -1;
1100 }
aliguori376253e2009-03-05 23:01:23 +00001101 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001102 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001103 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001104 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001105 return 0;
1106 } else {
1107 return -1;
1108 }
bellard8a7ddc32004-03-31 19:00:16 +00001109}
1110
aliguoribb5fc202009-03-05 23:01:15 +00001111static void bdrv_key_cb(void *opaque, int err)
1112{
aliguori376253e2009-03-05 23:01:23 +00001113 Monitor *mon = opaque;
1114
aliguoribb5fc202009-03-05 23:01:15 +00001115 /* another key was set successfully, retry to continue */
1116 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001117 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001118}
1119
1120static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1121{
aliguori376253e2009-03-05 23:01:23 +00001122 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001123
aliguori376253e2009-03-05 23:01:23 +00001124 if (!context->err && bdrv_key_required(bs)) {
1125 context->err = -EBUSY;
1126 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1127 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001128 }
1129}
1130
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001131static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001132{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001133 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001134 if (!device)
1135 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1136 if (gdbserver_start(device) < 0) {
1137 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1138 device);
1139 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001140 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001141 } else {
aliguori59030a82009-04-05 18:43:41 +00001142 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1143 device);
bellard8a7ddc32004-03-31 19:00:16 +00001144 }
1145}
1146
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001147static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001148{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001149 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001150 if (select_watchdog_action(action) == -1) {
1151 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1152 }
1153}
1154
aliguori376253e2009-03-05 23:01:23 +00001155static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001156{
aliguori376253e2009-03-05 23:01:23 +00001157 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001158 switch(c) {
1159 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001160 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001161 break;
1162 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001163 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001164 break;
1165 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001166 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001167 break;
1168 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001169 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001170 break;
1171 default:
1172 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001173 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001174 } else {
aliguori376253e2009-03-05 23:01:23 +00001175 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001176 }
1177 break;
1178 }
aliguori376253e2009-03-05 23:01:23 +00001179 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001180}
1181
aliguori376253e2009-03-05 23:01:23 +00001182static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001183 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001184{
bellard6a00d602005-11-21 23:25:50 +00001185 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001186 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001187 uint8_t buf[16];
1188 uint64_t v;
1189
1190 if (format == 'i') {
1191 int flags;
1192 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001193 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001194#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001195 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001196 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001197 } else if (wsize == 4) {
1198 flags = 0;
1199 } else {
bellard6a15fd12006-04-12 21:07:07 +00001200 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001201 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001202 if (env) {
1203#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001204 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001205 (env->segs[R_CS].flags & DESC_L_MASK))
1206 flags = 2;
1207 else
1208#endif
1209 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1210 flags = 1;
1211 }
bellard4c27ba22004-04-25 18:05:08 +00001212 }
1213#endif
aliguori376253e2009-03-05 23:01:23 +00001214 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001215 return;
1216 }
1217
1218 len = wsize * count;
1219 if (wsize == 1)
1220 line_size = 8;
1221 else
1222 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001223 max_digits = 0;
1224
1225 switch(format) {
1226 case 'o':
1227 max_digits = (wsize * 8 + 2) / 3;
1228 break;
1229 default:
1230 case 'x':
1231 max_digits = (wsize * 8) / 4;
1232 break;
1233 case 'u':
1234 case 'd':
1235 max_digits = (wsize * 8 * 10 + 32) / 33;
1236 break;
1237 case 'c':
1238 wsize = 1;
1239 break;
1240 }
1241
1242 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001243 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001244 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001245 else
aliguori376253e2009-03-05 23:01:23 +00001246 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001247 l = len;
1248 if (l > line_size)
1249 l = line_size;
1250 if (is_physical) {
1251 cpu_physical_memory_rw(addr, buf, l, 0);
1252 } else {
bellard6a00d602005-11-21 23:25:50 +00001253 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001254 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001255 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001256 break;
1257 }
bellard9307c4c2004-04-04 12:57:25 +00001258 }
ths5fafdf22007-09-16 21:08:06 +00001259 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001260 while (i < l) {
1261 switch(wsize) {
1262 default:
1263 case 1:
1264 v = ldub_raw(buf + i);
1265 break;
1266 case 2:
1267 v = lduw_raw(buf + i);
1268 break;
1269 case 4:
bellard92a31b12005-02-10 22:00:52 +00001270 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001271 break;
1272 case 8:
1273 v = ldq_raw(buf + i);
1274 break;
1275 }
aliguori376253e2009-03-05 23:01:23 +00001276 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001277 switch(format) {
1278 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001279 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001280 break;
1281 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001282 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001283 break;
1284 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001285 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001286 break;
1287 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001288 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001289 break;
1290 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001291 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001292 break;
1293 }
1294 i += wsize;
1295 }
aliguori376253e2009-03-05 23:01:23 +00001296 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001297 addr += l;
1298 len -= l;
1299 }
1300}
1301
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001302static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001303{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001304 int count = qdict_get_int(qdict, "count");
1305 int format = qdict_get_int(qdict, "format");
1306 int size = qdict_get_int(qdict, "size");
1307 target_long addr = qdict_get_int(qdict, "addr");
1308
aliguori376253e2009-03-05 23:01:23 +00001309 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001310}
1311
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001312static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001313{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001314 int count = qdict_get_int(qdict, "count");
1315 int format = qdict_get_int(qdict, "format");
1316 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001317 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001318
aliguori376253e2009-03-05 23:01:23 +00001319 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001320}
1321
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001322static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001323{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001324 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001325 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001326
blueswir17743e582007-09-24 18:39:04 +00001327#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001328 switch(format) {
1329 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001330 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001331 break;
1332 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001333 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001334 break;
1335 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001336 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001337 break;
1338 default:
1339 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001340 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001341 break;
1342 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001343 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001344 break;
1345 }
bellard92a31b12005-02-10 22:00:52 +00001346#else
1347 switch(format) {
1348 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001349 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001350 break;
1351 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001352 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001353 break;
1354 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001355 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001356 break;
1357 default:
1358 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001359 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001360 break;
1361 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001362 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001363 break;
1364 }
1365#endif
aliguori376253e2009-03-05 23:01:23 +00001366 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001367}
1368
Luiz Capitulino98696222010-02-10 23:49:58 -02001369static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001370{
1371 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001372 uint32_t size = qdict_get_int(qdict, "size");
1373 const char *filename = qdict_get_str(qdict, "filename");
1374 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001375 uint32_t l;
1376 CPUState *env;
1377 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001378 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001379
1380 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001381
1382 f = fopen(filename, "wb");
1383 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001384 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001385 return -1;
bellardb371dc52007-01-03 15:20:39 +00001386 }
1387 while (size != 0) {
1388 l = sizeof(buf);
1389 if (l > size)
1390 l = size;
1391 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001392 if (fwrite(buf, 1, l, f) != l) {
1393 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1394 goto exit;
1395 }
bellardb371dc52007-01-03 15:20:39 +00001396 addr += l;
1397 size -= l;
1398 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001399
1400 ret = 0;
1401
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001402exit:
bellardb371dc52007-01-03 15:20:39 +00001403 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001404 return ret;
bellardb371dc52007-01-03 15:20:39 +00001405}
1406
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001407static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001408 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001409{
1410 FILE *f;
1411 uint32_t l;
1412 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001413 uint32_t size = qdict_get_int(qdict, "size");
1414 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001415 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001416 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001417
1418 f = fopen(filename, "wb");
1419 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001420 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001421 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001422 }
1423 while (size != 0) {
1424 l = sizeof(buf);
1425 if (l > size)
1426 l = size;
1427 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001428 if (fwrite(buf, 1, l, f) != l) {
1429 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1430 goto exit;
1431 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001432 fflush(f);
1433 addr += l;
1434 size -= l;
1435 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001436
1437 ret = 0;
1438
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001439exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001440 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001441 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001442}
1443
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001444static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001445{
1446 uint32_t addr;
1447 uint8_t buf[1];
1448 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001449 uint32_t start = qdict_get_int(qdict, "start");
1450 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001451
1452 sum = 0;
1453 for(addr = start; addr < (start + size); addr++) {
1454 cpu_physical_memory_rw(addr, buf, 1, 0);
1455 /* BSD sum algorithm ('sum' Unix command) */
1456 sum = (sum >> 1) | (sum << 15);
1457 sum += buf[0];
1458 }
aliguori376253e2009-03-05 23:01:23 +00001459 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001460}
1461
bellarda3a91a32004-06-04 11:06:21 +00001462typedef struct {
1463 int keycode;
1464 const char *name;
1465} KeyDef;
1466
1467static const KeyDef key_defs[] = {
1468 { 0x2a, "shift" },
1469 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001470
bellarda3a91a32004-06-04 11:06:21 +00001471 { 0x38, "alt" },
1472 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001473 { 0x64, "altgr" },
1474 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001475 { 0x1d, "ctrl" },
1476 { 0x9d, "ctrl_r" },
1477
1478 { 0xdd, "menu" },
1479
1480 { 0x01, "esc" },
1481
1482 { 0x02, "1" },
1483 { 0x03, "2" },
1484 { 0x04, "3" },
1485 { 0x05, "4" },
1486 { 0x06, "5" },
1487 { 0x07, "6" },
1488 { 0x08, "7" },
1489 { 0x09, "8" },
1490 { 0x0a, "9" },
1491 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001492 { 0x0c, "minus" },
1493 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001494 { 0x0e, "backspace" },
1495
1496 { 0x0f, "tab" },
1497 { 0x10, "q" },
1498 { 0x11, "w" },
1499 { 0x12, "e" },
1500 { 0x13, "r" },
1501 { 0x14, "t" },
1502 { 0x15, "y" },
1503 { 0x16, "u" },
1504 { 0x17, "i" },
1505 { 0x18, "o" },
1506 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001507 { 0x1a, "bracket_left" },
1508 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001509 { 0x1c, "ret" },
1510
1511 { 0x1e, "a" },
1512 { 0x1f, "s" },
1513 { 0x20, "d" },
1514 { 0x21, "f" },
1515 { 0x22, "g" },
1516 { 0x23, "h" },
1517 { 0x24, "j" },
1518 { 0x25, "k" },
1519 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001520 { 0x27, "semicolon" },
1521 { 0x28, "apostrophe" },
1522 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001523
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001524 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001525 { 0x2c, "z" },
1526 { 0x2d, "x" },
1527 { 0x2e, "c" },
1528 { 0x2f, "v" },
1529 { 0x30, "b" },
1530 { 0x31, "n" },
1531 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001532 { 0x33, "comma" },
1533 { 0x34, "dot" },
1534 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001535
balrog4d3b6f62008-02-10 16:33:14 +00001536 { 0x37, "asterisk" },
1537
bellarda3a91a32004-06-04 11:06:21 +00001538 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001539 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001540 { 0x3b, "f1" },
1541 { 0x3c, "f2" },
1542 { 0x3d, "f3" },
1543 { 0x3e, "f4" },
1544 { 0x3f, "f5" },
1545 { 0x40, "f6" },
1546 { 0x41, "f7" },
1547 { 0x42, "f8" },
1548 { 0x43, "f9" },
1549 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001550 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001551 { 0x46, "scroll_lock" },
1552
bellard64866c32006-05-07 18:03:31 +00001553 { 0xb5, "kp_divide" },
1554 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001555 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001556 { 0x4e, "kp_add" },
1557 { 0x9c, "kp_enter" },
1558 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001559 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001560
1561 { 0x52, "kp_0" },
1562 { 0x4f, "kp_1" },
1563 { 0x50, "kp_2" },
1564 { 0x51, "kp_3" },
1565 { 0x4b, "kp_4" },
1566 { 0x4c, "kp_5" },
1567 { 0x4d, "kp_6" },
1568 { 0x47, "kp_7" },
1569 { 0x48, "kp_8" },
1570 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001571
bellarda3a91a32004-06-04 11:06:21 +00001572 { 0x56, "<" },
1573
1574 { 0x57, "f11" },
1575 { 0x58, "f12" },
1576
1577 { 0xb7, "print" },
1578
1579 { 0xc7, "home" },
1580 { 0xc9, "pgup" },
1581 { 0xd1, "pgdn" },
1582 { 0xcf, "end" },
1583
1584 { 0xcb, "left" },
1585 { 0xc8, "up" },
1586 { 0xd0, "down" },
1587 { 0xcd, "right" },
1588
1589 { 0xd2, "insert" },
1590 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001591#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1592 { 0xf0, "stop" },
1593 { 0xf1, "again" },
1594 { 0xf2, "props" },
1595 { 0xf3, "undo" },
1596 { 0xf4, "front" },
1597 { 0xf5, "copy" },
1598 { 0xf6, "open" },
1599 { 0xf7, "paste" },
1600 { 0xf8, "find" },
1601 { 0xf9, "cut" },
1602 { 0xfa, "lf" },
1603 { 0xfb, "help" },
1604 { 0xfc, "meta_l" },
1605 { 0xfd, "meta_r" },
1606 { 0xfe, "compose" },
1607#endif
bellarda3a91a32004-06-04 11:06:21 +00001608 { 0, NULL },
1609};
1610
1611static int get_keycode(const char *key)
1612{
1613 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001614 char *endp;
1615 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001616
1617 for(p = key_defs; p->name != NULL; p++) {
1618 if (!strcmp(key, p->name))
1619 return p->keycode;
1620 }
bellard64866c32006-05-07 18:03:31 +00001621 if (strstart(key, "0x", NULL)) {
1622 ret = strtoul(key, &endp, 0);
1623 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1624 return ret;
1625 }
bellarda3a91a32004-06-04 11:06:21 +00001626 return -1;
1627}
1628
balrogc8256f92008-06-08 22:45:01 +00001629#define MAX_KEYCODES 16
1630static uint8_t keycodes[MAX_KEYCODES];
1631static int nb_pending_keycodes;
1632static QEMUTimer *key_timer;
1633
1634static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001635{
balrogc8256f92008-06-08 22:45:01 +00001636 int keycode;
1637
1638 while (nb_pending_keycodes > 0) {
1639 nb_pending_keycodes--;
1640 keycode = keycodes[nb_pending_keycodes];
1641 if (keycode & 0x80)
1642 kbd_put_keycode(0xe0);
1643 kbd_put_keycode(keycode | 0x80);
1644 }
1645}
1646
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001647static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001648{
balrog3401c0d2008-06-04 10:05:59 +00001649 char keyname_buf[16];
1650 char *separator;
1651 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001652 const char *string = qdict_get_str(qdict, "string");
1653 int has_hold_time = qdict_haskey(qdict, "hold_time");
1654 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001655
balrogc8256f92008-06-08 22:45:01 +00001656 if (nb_pending_keycodes > 0) {
1657 qemu_del_timer(key_timer);
1658 release_keys(NULL);
1659 }
1660 if (!has_hold_time)
1661 hold_time = 100;
1662 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001663 while (1) {
1664 separator = strchr(string, '-');
1665 keyname_len = separator ? separator - string : strlen(string);
1666 if (keyname_len > 0) {
1667 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1668 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001669 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001670 return;
bellarda3a91a32004-06-04 11:06:21 +00001671 }
balrogc8256f92008-06-08 22:45:01 +00001672 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001673 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001674 return;
1675 }
1676 keyname_buf[keyname_len] = 0;
1677 keycode = get_keycode(keyname_buf);
1678 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001679 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001680 return;
1681 }
balrogc8256f92008-06-08 22:45:01 +00001682 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001683 }
balrog3401c0d2008-06-04 10:05:59 +00001684 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001685 break;
balrog3401c0d2008-06-04 10:05:59 +00001686 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001687 }
balrogc8256f92008-06-08 22:45:01 +00001688 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001689 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001690 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001691 keycode = keycodes[i];
1692 if (keycode & 0x80)
1693 kbd_put_keycode(0xe0);
1694 kbd_put_keycode(keycode & 0x7f);
1695 }
balrogc8256f92008-06-08 22:45:01 +00001696 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001697 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001698 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001699}
1700
bellard13224a82006-07-14 22:03:35 +00001701static int mouse_button_state;
1702
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001703static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001704{
1705 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001706 const char *dx_str = qdict_get_str(qdict, "dx_str");
1707 const char *dy_str = qdict_get_str(qdict, "dy_str");
1708 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001709 dx = strtol(dx_str, NULL, 0);
1710 dy = strtol(dy_str, NULL, 0);
1711 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001712 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001713 dz = strtol(dz_str, NULL, 0);
1714 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1715}
1716
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001717static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001718{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001719 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001720 mouse_button_state = button_state;
1721 kbd_mouse_event(0, 0, 0, mouse_button_state);
1722}
1723
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001724static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001725{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001726 int size = qdict_get_int(qdict, "size");
1727 int addr = qdict_get_int(qdict, "addr");
1728 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001729 uint32_t val;
1730 int suffix;
1731
1732 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001733 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001734 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001735 addr++;
1736 }
1737 addr &= 0xffff;
1738
1739 switch(size) {
1740 default:
1741 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001742 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001743 suffix = 'b';
1744 break;
1745 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001746 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001747 suffix = 'w';
1748 break;
1749 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001750 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001751 suffix = 'l';
1752 break;
1753 }
aliguori376253e2009-03-05 23:01:23 +00001754 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1755 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001756}
bellarda3a91a32004-06-04 11:06:21 +00001757
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001758static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001759{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001760 int size = qdict_get_int(qdict, "size");
1761 int addr = qdict_get_int(qdict, "addr");
1762 int val = qdict_get_int(qdict, "val");
1763
Jan Kiszkaf1147842009-07-14 10:20:11 +02001764 addr &= IOPORTS_MASK;
1765
1766 switch (size) {
1767 default:
1768 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001769 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001770 break;
1771 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001772 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001773 break;
1774 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001775 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001776 break;
1777 }
1778}
1779
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001780static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001781{
1782 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001783 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001784
Jan Kiszka76e30d02009-07-02 00:19:02 +02001785 res = qemu_boot_set(bootdevice);
1786 if (res == 0) {
1787 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1788 } else if (res > 0) {
1789 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001790 } else {
aliguori376253e2009-03-05 23:01:23 +00001791 monitor_printf(mon, "no function defined to set boot device list for "
1792 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001793 }
1794}
1795
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001796/**
1797 * do_system_reset(): Issue a machine reset
1798 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001799static int do_system_reset(Monitor *mon, const QDict *qdict,
1800 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001801{
1802 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001803 return 0;
bellarde4f90822004-06-20 12:35:44 +00001804}
1805
Luiz Capitulino43076662009-10-07 13:41:59 -03001806/**
1807 * do_system_powerdown(): Issue a machine powerdown
1808 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001809static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1810 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001811{
1812 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001813 return 0;
bellard34751872005-07-02 14:31:34 +00001814}
1815
bellardb86bda52004-09-18 19:32:46 +00001816#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001817static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001818{
aliguori376253e2009-03-05 23:01:23 +00001819 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1820 addr,
1821 pte & mask,
1822 pte & PG_GLOBAL_MASK ? 'G' : '-',
1823 pte & PG_PSE_MASK ? 'P' : '-',
1824 pte & PG_DIRTY_MASK ? 'D' : '-',
1825 pte & PG_ACCESSED_MASK ? 'A' : '-',
1826 pte & PG_PCD_MASK ? 'C' : '-',
1827 pte & PG_PWT_MASK ? 'T' : '-',
1828 pte & PG_USER_MASK ? 'U' : '-',
1829 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001830}
1831
aliguori376253e2009-03-05 23:01:23 +00001832static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001833{
bellard6a00d602005-11-21 23:25:50 +00001834 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001835 int l1, l2;
1836 uint32_t pgd, pde, pte;
1837
bellard6a00d602005-11-21 23:25:50 +00001838 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001839
bellardb86bda52004-09-18 19:32:46 +00001840 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001841 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001842 return;
1843 }
1844 pgd = env->cr[3] & ~0xfff;
1845 for(l1 = 0; l1 < 1024; l1++) {
1846 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1847 pde = le32_to_cpu(pde);
1848 if (pde & PG_PRESENT_MASK) {
1849 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001850 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001851 } else {
1852 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001853 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001854 (uint8_t *)&pte, 4);
1855 pte = le32_to_cpu(pte);
1856 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001857 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001858 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001859 ~0xfff);
1860 }
1861 }
1862 }
1863 }
1864 }
1865}
1866
aliguori376253e2009-03-05 23:01:23 +00001867static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001868 uint32_t end, int prot)
1869{
bellard9746b152004-11-11 18:30:24 +00001870 int prot1;
1871 prot1 = *plast_prot;
1872 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001873 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001874 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1875 *pstart, end, end - *pstart,
1876 prot1 & PG_USER_MASK ? 'u' : '-',
1877 'r',
1878 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001879 }
1880 if (prot != 0)
1881 *pstart = end;
1882 else
1883 *pstart = -1;
1884 *plast_prot = prot;
1885 }
1886}
1887
aliguori376253e2009-03-05 23:01:23 +00001888static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001889{
bellard6a00d602005-11-21 23:25:50 +00001890 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001891 int l1, l2, prot, last_prot;
1892 uint32_t pgd, pde, pte, start, end;
1893
bellard6a00d602005-11-21 23:25:50 +00001894 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001895
bellardb86bda52004-09-18 19:32:46 +00001896 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001897 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001898 return;
1899 }
1900 pgd = env->cr[3] & ~0xfff;
1901 last_prot = 0;
1902 start = -1;
1903 for(l1 = 0; l1 < 1024; l1++) {
1904 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1905 pde = le32_to_cpu(pde);
1906 end = l1 << 22;
1907 if (pde & PG_PRESENT_MASK) {
1908 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1909 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001910 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001911 } else {
1912 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001913 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001914 (uint8_t *)&pte, 4);
1915 pte = le32_to_cpu(pte);
1916 end = (l1 << 22) + (l2 << 12);
1917 if (pte & PG_PRESENT_MASK) {
1918 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1919 } else {
1920 prot = 0;
1921 }
aliguori376253e2009-03-05 23:01:23 +00001922 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001923 }
1924 }
1925 } else {
1926 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001927 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001928 }
1929 }
1930}
1931#endif
1932
aurel327c664e22009-03-03 06:12:22 +00001933#if defined(TARGET_SH4)
1934
aliguori376253e2009-03-05 23:01:23 +00001935static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001936{
aliguori376253e2009-03-05 23:01:23 +00001937 monitor_printf(mon, " tlb%i:\t"
1938 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1939 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1940 "dirty=%hhu writethrough=%hhu\n",
1941 idx,
1942 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1943 tlb->v, tlb->sh, tlb->c, tlb->pr,
1944 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001945}
1946
aliguori376253e2009-03-05 23:01:23 +00001947static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001948{
1949 CPUState *env = mon_get_cpu();
1950 int i;
1951
aliguori376253e2009-03-05 23:01:23 +00001952 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001953 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001954 print_tlb (mon, i, &env->itlb[i]);
1955 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001956 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001957 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001958}
1959
1960#endif
1961
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001962static void do_info_kvm_print(Monitor *mon, const QObject *data)
1963{
1964 QDict *qdict;
1965
1966 qdict = qobject_to_qdict(data);
1967
1968 monitor_printf(mon, "kvm support: ");
1969 if (qdict_get_bool(qdict, "present")) {
1970 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1971 "enabled" : "disabled");
1972 } else {
1973 monitor_printf(mon, "not compiled\n");
1974 }
1975}
1976
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001977static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00001978{
1979#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001980 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1981 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00001982#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001983 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00001984#endif
1985}
1986
aliguori030ea372009-04-21 22:30:47 +00001987static void do_info_numa(Monitor *mon)
1988{
aliguorib28b6232009-04-22 20:20:29 +00001989 int i;
aliguori030ea372009-04-21 22:30:47 +00001990 CPUState *env;
1991
1992 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1993 for (i = 0; i < nb_numa_nodes; i++) {
1994 monitor_printf(mon, "node %d cpus:", i);
1995 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1996 if (env->numa_node == i) {
1997 monitor_printf(mon, " %d", env->cpu_index);
1998 }
1999 }
2000 monitor_printf(mon, "\n");
2001 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2002 node_mem[i] >> 20);
2003 }
2004}
2005
bellard5f1ce942006-02-08 22:40:15 +00002006#ifdef CONFIG_PROFILER
2007
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002008int64_t qemu_time;
2009int64_t dev_time;
2010
aliguori376253e2009-03-05 23:01:23 +00002011static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002012{
2013 int64_t total;
2014 total = qemu_time;
2015 if (total == 0)
2016 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002017 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002018 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002019 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002020 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002021 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002022 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002023}
2024#else
aliguori376253e2009-03-05 23:01:23 +00002025static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002026{
aliguori376253e2009-03-05 23:01:23 +00002027 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002028}
2029#endif
2030
bellardec36b692006-07-16 18:57:03 +00002031/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002032static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002033
aliguori376253e2009-03-05 23:01:23 +00002034static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002035{
2036 int i;
2037 CaptureState *s;
2038
2039 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002040 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002041 s->ops.info (s->opaque);
2042 }
2043}
2044
Blue Swirl23130862009-06-06 08:22:04 +00002045#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002046static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002047{
2048 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002049 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002050 CaptureState *s;
2051
2052 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2053 if (i == n) {
2054 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002055 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002056 qemu_free (s);
2057 return;
2058 }
2059 }
2060}
2061
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002062static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002063{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002064 const char *path = qdict_get_str(qdict, "path");
2065 int has_freq = qdict_haskey(qdict, "freq");
2066 int freq = qdict_get_try_int(qdict, "freq", -1);
2067 int has_bits = qdict_haskey(qdict, "bits");
2068 int bits = qdict_get_try_int(qdict, "bits", -1);
2069 int has_channels = qdict_haskey(qdict, "nchannels");
2070 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002071 CaptureState *s;
2072
2073 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002074
2075 freq = has_freq ? freq : 44100;
2076 bits = has_bits ? bits : 16;
2077 nchannels = has_channels ? nchannels : 2;
2078
2079 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002080 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002081 qemu_free (s);
2082 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002083 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002084}
2085#endif
2086
aurel32dc1c0b72008-04-27 23:52:12 +00002087#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002088static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002089{
2090 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002091 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002092
2093 for (env = first_cpu; env != NULL; env = env->next_cpu)
2094 if (env->cpu_index == cpu_index) {
2095 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2096 break;
2097 }
2098}
2099#endif
2100
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002101static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002102{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002103 QDict *qdict;
2104
2105 qdict = qobject_to_qdict(data);
2106
2107 monitor_printf(mon, "VM status: ");
2108 if (qdict_get_bool(qdict, "running")) {
2109 monitor_printf(mon, "running");
2110 if (qdict_get_bool(qdict, "singlestep")) {
2111 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002112 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002113 } else {
2114 monitor_printf(mon, "paused");
2115 }
2116
2117 monitor_printf(mon, "\n");
2118}
2119
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002120static void do_info_status(Monitor *mon, QObject **ret_data)
2121{
2122 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2123 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002124}
2125
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002126static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002127{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002128 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002129
aliguori76655d62009-03-06 20:27:37 +00002130 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002131 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002132 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002133 return acl;
2134}
aliguori76655d62009-03-06 20:27:37 +00002135
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002136static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002137{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002138 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002139 qemu_acl *acl = find_acl(mon, aclname);
2140 qemu_acl_entry *entry;
2141 int i = 0;
2142
2143 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002144 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002145 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002146 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002147 i++;
2148 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002149 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002150 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002151 }
2152}
2153
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002154static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002155{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002156 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002157 qemu_acl *acl = find_acl(mon, aclname);
2158
2159 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002160 qemu_acl_reset(acl);
2161 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002162 }
2163}
aliguori76655d62009-03-06 20:27:37 +00002164
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002165static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002166{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002167 const char *aclname = qdict_get_str(qdict, "aclname");
2168 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002169 qemu_acl *acl = find_acl(mon, aclname);
2170
2171 if (acl) {
2172 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002173 acl->defaultDeny = 0;
2174 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002175 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002176 acl->defaultDeny = 1;
2177 monitor_printf(mon, "acl: policy set to 'deny'\n");
2178 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002179 monitor_printf(mon, "acl: unknown policy '%s', "
2180 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002181 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002182 }
2183}
aliguori76655d62009-03-06 20:27:37 +00002184
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002185static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002186{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002187 const char *aclname = qdict_get_str(qdict, "aclname");
2188 const char *match = qdict_get_str(qdict, "match");
2189 const char *policy = qdict_get_str(qdict, "policy");
2190 int has_index = qdict_haskey(qdict, "index");
2191 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002192 qemu_acl *acl = find_acl(mon, aclname);
2193 int deny, ret;
2194
2195 if (acl) {
2196 if (strcmp(policy, "allow") == 0) {
2197 deny = 0;
2198 } else if (strcmp(policy, "deny") == 0) {
2199 deny = 1;
2200 } else {
2201 monitor_printf(mon, "acl: unknown policy '%s', "
2202 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002203 return;
2204 }
aliguori28a76be2009-03-06 20:27:40 +00002205 if (has_index)
2206 ret = qemu_acl_insert(acl, deny, match, index);
2207 else
2208 ret = qemu_acl_append(acl, deny, match);
2209 if (ret < 0)
2210 monitor_printf(mon, "acl: unable to add acl entry\n");
2211 else
2212 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002213 }
2214}
aliguori76655d62009-03-06 20:27:37 +00002215
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002216static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002217{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002218 const char *aclname = qdict_get_str(qdict, "aclname");
2219 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002220 qemu_acl *acl = find_acl(mon, aclname);
2221 int ret;
aliguori76655d62009-03-06 20:27:37 +00002222
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002223 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002224 ret = qemu_acl_remove(acl, match);
2225 if (ret < 0)
2226 monitor_printf(mon, "acl: no matching acl entry\n");
2227 else
2228 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002229 }
2230}
2231
Huang Ying79c4f6b2009-06-23 10:05:14 +08002232#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002233static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002234{
2235 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002236 int cpu_index = qdict_get_int(qdict, "cpu_index");
2237 int bank = qdict_get_int(qdict, "bank");
2238 uint64_t status = qdict_get_int(qdict, "status");
2239 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2240 uint64_t addr = qdict_get_int(qdict, "addr");
2241 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002242
2243 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2244 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2245 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2246 break;
2247 }
2248}
2249#endif
2250
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002251static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002252{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002253 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002254 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002255 int fd;
2256
2257 fd = qemu_chr_get_msgfd(mon->chr);
2258 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002259 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002260 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002261 }
2262
2263 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002264 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2265 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002266 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002267 }
2268
Blue Swirl72cf2d42009-09-12 07:36:22 +00002269 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002270 if (strcmp(monfd->name, fdname) != 0) {
2271 continue;
2272 }
2273
2274 close(monfd->fd);
2275 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002276 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002277 }
2278
Anthony Liguoric227f092009-10-01 16:12:16 -05002279 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002280 monfd->name = qemu_strdup(fdname);
2281 monfd->fd = fd;
2282
Blue Swirl72cf2d42009-09-12 07:36:22 +00002283 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002284 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002285}
2286
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002287static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002288{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002289 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002290 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002291
Blue Swirl72cf2d42009-09-12 07:36:22 +00002292 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002293 if (strcmp(monfd->name, fdname) != 0) {
2294 continue;
2295 }
2296
Blue Swirl72cf2d42009-09-12 07:36:22 +00002297 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002298 close(monfd->fd);
2299 qemu_free(monfd->name);
2300 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002301 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002302 }
2303
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002304 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002305 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002306}
2307
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002308static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002309{
2310 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002311 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002312
2313 vm_stop(0);
2314
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002315 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002316 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002317 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002318}
2319
Mark McLoughlin7768e042009-07-22 09:11:41 +01002320int monitor_get_fd(Monitor *mon, const char *fdname)
2321{
Anthony Liguoric227f092009-10-01 16:12:16 -05002322 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002323
Blue Swirl72cf2d42009-09-12 07:36:22 +00002324 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002325 int fd;
2326
2327 if (strcmp(monfd->name, fdname) != 0) {
2328 continue;
2329 }
2330
2331 fd = monfd->fd;
2332
2333 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002334 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002335 qemu_free(monfd->name);
2336 qemu_free(monfd);
2337
2338 return fd;
2339 }
2340
2341 return -1;
2342}
2343
Anthony Liguoric227f092009-10-01 16:12:16 -05002344static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002345#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002346 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002347};
2348
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002349/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002350static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002351 {
2352 .name = "version",
2353 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002354 .params = "",
2355 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002356 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002357 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002358 },
2359 {
2360 .name = "network",
2361 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002362 .params = "",
2363 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002364 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002365 },
2366 {
2367 .name = "chardev",
2368 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002369 .params = "",
2370 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002371 .user_print = qemu_chr_info_print,
2372 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002373 },
2374 {
2375 .name = "block",
2376 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002377 .params = "",
2378 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002379 .user_print = bdrv_info_print,
2380 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002381 },
2382 {
2383 .name = "blockstats",
2384 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002385 .params = "",
2386 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002387 .user_print = bdrv_stats_print,
2388 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002389 },
2390 {
2391 .name = "registers",
2392 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002393 .params = "",
2394 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002395 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002396 },
2397 {
2398 .name = "cpus",
2399 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002400 .params = "",
2401 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002402 .user_print = monitor_print_cpus,
2403 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002404 },
2405 {
2406 .name = "history",
2407 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002408 .params = "",
2409 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002410 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002411 },
2412 {
2413 .name = "irq",
2414 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002415 .params = "",
2416 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002417 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002418 },
2419 {
2420 .name = "pic",
2421 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002422 .params = "",
2423 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002424 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002425 },
2426 {
2427 .name = "pci",
2428 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .params = "",
2430 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002431 .user_print = do_pci_info_print,
2432 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002433 },
aurel327c664e22009-03-03 06:12:22 +00002434#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002435 {
2436 .name = "tlb",
2437 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002438 .params = "",
2439 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002440 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002441 },
aurel327c664e22009-03-03 06:12:22 +00002442#endif
2443#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002444 {
2445 .name = "mem",
2446 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002447 .params = "",
2448 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002449 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002450 },
bellardb86bda52004-09-18 19:32:46 +00002451#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 {
2453 .name = "jit",
2454 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002455 .params = "",
2456 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002457 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002458 },
2459 {
2460 .name = "kvm",
2461 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002462 .params = "",
2463 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002464 .user_print = do_info_kvm_print,
2465 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002466 },
2467 {
2468 .name = "numa",
2469 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002470 .params = "",
2471 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002472 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002473 },
2474 {
2475 .name = "usb",
2476 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002477 .params = "",
2478 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002479 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002480 },
2481 {
2482 .name = "usbhost",
2483 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002484 .params = "",
2485 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002486 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002487 },
2488 {
2489 .name = "profile",
2490 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002491 .params = "",
2492 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002493 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002494 },
2495 {
2496 .name = "capture",
2497 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002498 .params = "",
2499 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002500 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002501 },
2502 {
2503 .name = "snapshots",
2504 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002505 .params = "",
2506 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002507 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002508 },
2509 {
2510 .name = "status",
2511 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002512 .params = "",
2513 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002514 .user_print = do_info_status_print,
2515 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002516 },
2517 {
2518 .name = "pcmcia",
2519 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002520 .params = "",
2521 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002522 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002523 },
2524 {
2525 .name = "mice",
2526 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 .params = "",
2528 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002529 .user_print = do_info_mice_print,
2530 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 },
2532 {
2533 .name = "vnc",
2534 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 .params = "",
2536 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002537 .user_print = do_info_vnc_print,
2538 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 },
2540 {
2541 .name = "name",
2542 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 .params = "",
2544 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002545 .user_print = do_info_name_print,
2546 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 },
2548 {
2549 .name = "uuid",
2550 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002551 .params = "",
2552 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002553 .user_print = do_info_uuid_print,
2554 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002555 },
j_mayer76a66252007-03-07 08:32:30 +00002556#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 {
2558 .name = "cpustats",
2559 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002560 .params = "",
2561 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002562 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 },
j_mayer76a66252007-03-07 08:32:30 +00002564#endif
blueswir131a60e22007-10-26 18:42:59 +00002565#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002566 {
2567 .name = "usernet",
2568 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 .params = "",
2570 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002571 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002572 },
blueswir131a60e22007-10-26 18:42:59 +00002573#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002574 {
2575 .name = "migrate",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002579 .user_print = do_info_migrate_print,
2580 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 },
2582 {
2583 .name = "balloon",
2584 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 .params = "",
2586 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002587 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002588 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002589 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002590 },
2591 {
2592 .name = "qtree",
2593 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002594 .params = "",
2595 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002596 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002597 },
2598 {
2599 .name = "qdm",
2600 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 .params = "",
2602 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002603 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 },
2605 {
2606 .name = "roms",
2607 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002608 .params = "",
2609 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002610 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002611 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302612#if defined(CONFIG_SIMPLE_TRACE)
2613 {
2614 .name = "trace",
2615 .args_type = "",
2616 .params = "",
2617 .help = "show current contents of trace buffer",
2618 .mhandler.info = do_info_trace,
2619 },
2620 {
2621 .name = "trace-events",
2622 .args_type = "",
2623 .params = "",
2624 .help = "show available trace-events & their state",
2625 .mhandler.info = do_info_trace_events,
2626 },
2627#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002628 {
2629 .name = NULL,
2630 },
bellard9dc39cb2004-03-14 21:38:27 +00002631};
2632
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002633static const mon_cmd_t qmp_cmds[] = {
2634#include "qmp-commands.h"
2635 { /* NULL */ },
2636};
2637
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002638static const mon_cmd_t qmp_query_cmds[] = {
2639 {
2640 .name = "version",
2641 .args_type = "",
2642 .params = "",
2643 .help = "show the version of QEMU",
2644 .user_print = do_info_version_print,
2645 .mhandler.info_new = do_info_version,
2646 },
2647 {
2648 .name = "commands",
2649 .args_type = "",
2650 .params = "",
2651 .help = "list QMP available commands",
2652 .user_print = monitor_user_noop,
2653 .mhandler.info_new = do_info_commands,
2654 },
2655 {
2656 .name = "chardev",
2657 .args_type = "",
2658 .params = "",
2659 .help = "show the character devices",
2660 .user_print = qemu_chr_info_print,
2661 .mhandler.info_new = qemu_chr_info,
2662 },
2663 {
2664 .name = "block",
2665 .args_type = "",
2666 .params = "",
2667 .help = "show the block devices",
2668 .user_print = bdrv_info_print,
2669 .mhandler.info_new = bdrv_info,
2670 },
2671 {
2672 .name = "blockstats",
2673 .args_type = "",
2674 .params = "",
2675 .help = "show block device statistics",
2676 .user_print = bdrv_stats_print,
2677 .mhandler.info_new = bdrv_info_stats,
2678 },
2679 {
2680 .name = "cpus",
2681 .args_type = "",
2682 .params = "",
2683 .help = "show infos for each CPU",
2684 .user_print = monitor_print_cpus,
2685 .mhandler.info_new = do_info_cpus,
2686 },
2687 {
2688 .name = "pci",
2689 .args_type = "",
2690 .params = "",
2691 .help = "show PCI info",
2692 .user_print = do_pci_info_print,
2693 .mhandler.info_new = do_pci_info,
2694 },
2695 {
2696 .name = "kvm",
2697 .args_type = "",
2698 .params = "",
2699 .help = "show KVM information",
2700 .user_print = do_info_kvm_print,
2701 .mhandler.info_new = do_info_kvm,
2702 },
2703 {
2704 .name = "status",
2705 .args_type = "",
2706 .params = "",
2707 .help = "show the current VM status (running|paused)",
2708 .user_print = do_info_status_print,
2709 .mhandler.info_new = do_info_status,
2710 },
2711 {
2712 .name = "mice",
2713 .args_type = "",
2714 .params = "",
2715 .help = "show which guest mouse is receiving events",
2716 .user_print = do_info_mice_print,
2717 .mhandler.info_new = do_info_mice,
2718 },
2719 {
2720 .name = "vnc",
2721 .args_type = "",
2722 .params = "",
2723 .help = "show the vnc server status",
2724 .user_print = do_info_vnc_print,
2725 .mhandler.info_new = do_info_vnc,
2726 },
2727 {
2728 .name = "name",
2729 .args_type = "",
2730 .params = "",
2731 .help = "show the current VM name",
2732 .user_print = do_info_name_print,
2733 .mhandler.info_new = do_info_name,
2734 },
2735 {
2736 .name = "uuid",
2737 .args_type = "",
2738 .params = "",
2739 .help = "show the current VM UUID",
2740 .user_print = do_info_uuid_print,
2741 .mhandler.info_new = do_info_uuid,
2742 },
2743 {
2744 .name = "migrate",
2745 .args_type = "",
2746 .params = "",
2747 .help = "show migration status",
2748 .user_print = do_info_migrate_print,
2749 .mhandler.info_new = do_info_migrate,
2750 },
2751 {
2752 .name = "balloon",
2753 .args_type = "",
2754 .params = "",
2755 .help = "show balloon information",
2756 .user_print = monitor_print_balloon,
2757 .mhandler.info_async = do_info_balloon,
2758 .flags = MONITOR_CMD_ASYNC,
2759 },
2760 { /* NULL */ },
2761};
2762
bellard9307c4c2004-04-04 12:57:25 +00002763/*******************************************************************/
2764
2765static const char *pch;
2766static jmp_buf expr_env;
2767
bellard92a31b12005-02-10 22:00:52 +00002768#define MD_TLONG 0
2769#define MD_I32 1
2770
bellard9307c4c2004-04-04 12:57:25 +00002771typedef struct MonitorDef {
2772 const char *name;
2773 int offset;
blueswir18662d652008-10-02 18:32:44 +00002774 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002775 int type;
bellard9307c4c2004-04-04 12:57:25 +00002776} MonitorDef;
2777
bellard57206fd2004-04-25 18:54:52 +00002778#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002779static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002780{
bellard6a00d602005-11-21 23:25:50 +00002781 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002782 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002783}
2784#endif
2785
bellarda541f292004-04-12 20:39:29 +00002786#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002787static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002788{
bellard6a00d602005-11-21 23:25:50 +00002789 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002790 unsigned int u;
2791 int i;
2792
2793 u = 0;
2794 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002795 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002796
2797 return u;
2798}
2799
blueswir18662d652008-10-02 18:32:44 +00002800static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002801{
bellard6a00d602005-11-21 23:25:50 +00002802 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002803 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002804}
2805
blueswir18662d652008-10-02 18:32:44 +00002806static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002807{
bellard6a00d602005-11-21 23:25:50 +00002808 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002809 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002810}
bellard9fddaa02004-05-21 12:59:32 +00002811
blueswir18662d652008-10-02 18:32:44 +00002812static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002813{
bellard6a00d602005-11-21 23:25:50 +00002814 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002815 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002816}
2817
blueswir18662d652008-10-02 18:32:44 +00002818static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002819{
bellard6a00d602005-11-21 23:25:50 +00002820 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002821 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002822}
2823
blueswir18662d652008-10-02 18:32:44 +00002824static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002825{
bellard6a00d602005-11-21 23:25:50 +00002826 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002827 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002828}
bellarda541f292004-04-12 20:39:29 +00002829#endif
2830
bellarde95c8d52004-09-30 22:22:08 +00002831#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002832#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002833static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002834{
bellard6a00d602005-11-21 23:25:50 +00002835 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002836
2837 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002838}
bellard7b936c02005-10-30 17:05:13 +00002839#endif
bellarde95c8d52004-09-30 22:22:08 +00002840
blueswir18662d652008-10-02 18:32:44 +00002841static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002842{
bellard6a00d602005-11-21 23:25:50 +00002843 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002844 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002845}
2846#endif
2847
blueswir18662d652008-10-02 18:32:44 +00002848static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002849#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002850
2851#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002852 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002853 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002854 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002855
bellard9307c4c2004-04-04 12:57:25 +00002856 { "eax", offsetof(CPUState, regs[0]) },
2857 { "ecx", offsetof(CPUState, regs[1]) },
2858 { "edx", offsetof(CPUState, regs[2]) },
2859 { "ebx", offsetof(CPUState, regs[3]) },
2860 { "esp|sp", offsetof(CPUState, regs[4]) },
2861 { "ebp|fp", offsetof(CPUState, regs[5]) },
2862 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002863 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002864#ifdef TARGET_X86_64
2865 { "r8", offsetof(CPUState, regs[8]) },
2866 { "r9", offsetof(CPUState, regs[9]) },
2867 { "r10", offsetof(CPUState, regs[10]) },
2868 { "r11", offsetof(CPUState, regs[11]) },
2869 { "r12", offsetof(CPUState, regs[12]) },
2870 { "r13", offsetof(CPUState, regs[13]) },
2871 { "r14", offsetof(CPUState, regs[14]) },
2872 { "r15", offsetof(CPUState, regs[15]) },
2873#endif
bellard9307c4c2004-04-04 12:57:25 +00002874 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002875 { "eip", offsetof(CPUState, eip) },
2876 SEG("cs", R_CS)
2877 SEG("ds", R_DS)
2878 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002879 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002880 SEG("fs", R_FS)
2881 SEG("gs", R_GS)
2882 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002883#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002884 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002885 { "r0", offsetof(CPUState, gpr[0]) },
2886 { "r1", offsetof(CPUState, gpr[1]) },
2887 { "r2", offsetof(CPUState, gpr[2]) },
2888 { "r3", offsetof(CPUState, gpr[3]) },
2889 { "r4", offsetof(CPUState, gpr[4]) },
2890 { "r5", offsetof(CPUState, gpr[5]) },
2891 { "r6", offsetof(CPUState, gpr[6]) },
2892 { "r7", offsetof(CPUState, gpr[7]) },
2893 { "r8", offsetof(CPUState, gpr[8]) },
2894 { "r9", offsetof(CPUState, gpr[9]) },
2895 { "r10", offsetof(CPUState, gpr[10]) },
2896 { "r11", offsetof(CPUState, gpr[11]) },
2897 { "r12", offsetof(CPUState, gpr[12]) },
2898 { "r13", offsetof(CPUState, gpr[13]) },
2899 { "r14", offsetof(CPUState, gpr[14]) },
2900 { "r15", offsetof(CPUState, gpr[15]) },
2901 { "r16", offsetof(CPUState, gpr[16]) },
2902 { "r17", offsetof(CPUState, gpr[17]) },
2903 { "r18", offsetof(CPUState, gpr[18]) },
2904 { "r19", offsetof(CPUState, gpr[19]) },
2905 { "r20", offsetof(CPUState, gpr[20]) },
2906 { "r21", offsetof(CPUState, gpr[21]) },
2907 { "r22", offsetof(CPUState, gpr[22]) },
2908 { "r23", offsetof(CPUState, gpr[23]) },
2909 { "r24", offsetof(CPUState, gpr[24]) },
2910 { "r25", offsetof(CPUState, gpr[25]) },
2911 { "r26", offsetof(CPUState, gpr[26]) },
2912 { "r27", offsetof(CPUState, gpr[27]) },
2913 { "r28", offsetof(CPUState, gpr[28]) },
2914 { "r29", offsetof(CPUState, gpr[29]) },
2915 { "r30", offsetof(CPUState, gpr[30]) },
2916 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002917 /* Floating point registers */
2918 { "f0", offsetof(CPUState, fpr[0]) },
2919 { "f1", offsetof(CPUState, fpr[1]) },
2920 { "f2", offsetof(CPUState, fpr[2]) },
2921 { "f3", offsetof(CPUState, fpr[3]) },
2922 { "f4", offsetof(CPUState, fpr[4]) },
2923 { "f5", offsetof(CPUState, fpr[5]) },
2924 { "f6", offsetof(CPUState, fpr[6]) },
2925 { "f7", offsetof(CPUState, fpr[7]) },
2926 { "f8", offsetof(CPUState, fpr[8]) },
2927 { "f9", offsetof(CPUState, fpr[9]) },
2928 { "f10", offsetof(CPUState, fpr[10]) },
2929 { "f11", offsetof(CPUState, fpr[11]) },
2930 { "f12", offsetof(CPUState, fpr[12]) },
2931 { "f13", offsetof(CPUState, fpr[13]) },
2932 { "f14", offsetof(CPUState, fpr[14]) },
2933 { "f15", offsetof(CPUState, fpr[15]) },
2934 { "f16", offsetof(CPUState, fpr[16]) },
2935 { "f17", offsetof(CPUState, fpr[17]) },
2936 { "f18", offsetof(CPUState, fpr[18]) },
2937 { "f19", offsetof(CPUState, fpr[19]) },
2938 { "f20", offsetof(CPUState, fpr[20]) },
2939 { "f21", offsetof(CPUState, fpr[21]) },
2940 { "f22", offsetof(CPUState, fpr[22]) },
2941 { "f23", offsetof(CPUState, fpr[23]) },
2942 { "f24", offsetof(CPUState, fpr[24]) },
2943 { "f25", offsetof(CPUState, fpr[25]) },
2944 { "f26", offsetof(CPUState, fpr[26]) },
2945 { "f27", offsetof(CPUState, fpr[27]) },
2946 { "f28", offsetof(CPUState, fpr[28]) },
2947 { "f29", offsetof(CPUState, fpr[29]) },
2948 { "f30", offsetof(CPUState, fpr[30]) },
2949 { "f31", offsetof(CPUState, fpr[31]) },
2950 { "fpscr", offsetof(CPUState, fpscr) },
2951 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002952 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002953 { "lr", offsetof(CPUState, lr) },
2954 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002955 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002956 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002957 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002958 { "msr", 0, &monitor_get_msr, },
2959 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002960 { "tbu", 0, &monitor_get_tbu, },
2961 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002962#if defined(TARGET_PPC64)
2963 /* Address space register */
2964 { "asr", offsetof(CPUState, asr) },
2965#endif
2966 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002967 { "sdr1", offsetof(CPUState, sdr1) },
2968 { "sr0", offsetof(CPUState, sr[0]) },
2969 { "sr1", offsetof(CPUState, sr[1]) },
2970 { "sr2", offsetof(CPUState, sr[2]) },
2971 { "sr3", offsetof(CPUState, sr[3]) },
2972 { "sr4", offsetof(CPUState, sr[4]) },
2973 { "sr5", offsetof(CPUState, sr[5]) },
2974 { "sr6", offsetof(CPUState, sr[6]) },
2975 { "sr7", offsetof(CPUState, sr[7]) },
2976 { "sr8", offsetof(CPUState, sr[8]) },
2977 { "sr9", offsetof(CPUState, sr[9]) },
2978 { "sr10", offsetof(CPUState, sr[10]) },
2979 { "sr11", offsetof(CPUState, sr[11]) },
2980 { "sr12", offsetof(CPUState, sr[12]) },
2981 { "sr13", offsetof(CPUState, sr[13]) },
2982 { "sr14", offsetof(CPUState, sr[14]) },
2983 { "sr15", offsetof(CPUState, sr[15]) },
2984 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002985#elif defined(TARGET_SPARC)
2986 { "g0", offsetof(CPUState, gregs[0]) },
2987 { "g1", offsetof(CPUState, gregs[1]) },
2988 { "g2", offsetof(CPUState, gregs[2]) },
2989 { "g3", offsetof(CPUState, gregs[3]) },
2990 { "g4", offsetof(CPUState, gregs[4]) },
2991 { "g5", offsetof(CPUState, gregs[5]) },
2992 { "g6", offsetof(CPUState, gregs[6]) },
2993 { "g7", offsetof(CPUState, gregs[7]) },
2994 { "o0", 0, monitor_get_reg },
2995 { "o1", 1, monitor_get_reg },
2996 { "o2", 2, monitor_get_reg },
2997 { "o3", 3, monitor_get_reg },
2998 { "o4", 4, monitor_get_reg },
2999 { "o5", 5, monitor_get_reg },
3000 { "o6", 6, monitor_get_reg },
3001 { "o7", 7, monitor_get_reg },
3002 { "l0", 8, monitor_get_reg },
3003 { "l1", 9, monitor_get_reg },
3004 { "l2", 10, monitor_get_reg },
3005 { "l3", 11, monitor_get_reg },
3006 { "l4", 12, monitor_get_reg },
3007 { "l5", 13, monitor_get_reg },
3008 { "l6", 14, monitor_get_reg },
3009 { "l7", 15, monitor_get_reg },
3010 { "i0", 16, monitor_get_reg },
3011 { "i1", 17, monitor_get_reg },
3012 { "i2", 18, monitor_get_reg },
3013 { "i3", 19, monitor_get_reg },
3014 { "i4", 20, monitor_get_reg },
3015 { "i5", 21, monitor_get_reg },
3016 { "i6", 22, monitor_get_reg },
3017 { "i7", 23, monitor_get_reg },
3018 { "pc", offsetof(CPUState, pc) },
3019 { "npc", offsetof(CPUState, npc) },
3020 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003021#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003022 { "psr", 0, &monitor_get_psr, },
3023 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003024#endif
bellarde95c8d52004-09-30 22:22:08 +00003025 { "tbr", offsetof(CPUState, tbr) },
3026 { "fsr", offsetof(CPUState, fsr) },
3027 { "f0", offsetof(CPUState, fpr[0]) },
3028 { "f1", offsetof(CPUState, fpr[1]) },
3029 { "f2", offsetof(CPUState, fpr[2]) },
3030 { "f3", offsetof(CPUState, fpr[3]) },
3031 { "f4", offsetof(CPUState, fpr[4]) },
3032 { "f5", offsetof(CPUState, fpr[5]) },
3033 { "f6", offsetof(CPUState, fpr[6]) },
3034 { "f7", offsetof(CPUState, fpr[7]) },
3035 { "f8", offsetof(CPUState, fpr[8]) },
3036 { "f9", offsetof(CPUState, fpr[9]) },
3037 { "f10", offsetof(CPUState, fpr[10]) },
3038 { "f11", offsetof(CPUState, fpr[11]) },
3039 { "f12", offsetof(CPUState, fpr[12]) },
3040 { "f13", offsetof(CPUState, fpr[13]) },
3041 { "f14", offsetof(CPUState, fpr[14]) },
3042 { "f15", offsetof(CPUState, fpr[15]) },
3043 { "f16", offsetof(CPUState, fpr[16]) },
3044 { "f17", offsetof(CPUState, fpr[17]) },
3045 { "f18", offsetof(CPUState, fpr[18]) },
3046 { "f19", offsetof(CPUState, fpr[19]) },
3047 { "f20", offsetof(CPUState, fpr[20]) },
3048 { "f21", offsetof(CPUState, fpr[21]) },
3049 { "f22", offsetof(CPUState, fpr[22]) },
3050 { "f23", offsetof(CPUState, fpr[23]) },
3051 { "f24", offsetof(CPUState, fpr[24]) },
3052 { "f25", offsetof(CPUState, fpr[25]) },
3053 { "f26", offsetof(CPUState, fpr[26]) },
3054 { "f27", offsetof(CPUState, fpr[27]) },
3055 { "f28", offsetof(CPUState, fpr[28]) },
3056 { "f29", offsetof(CPUState, fpr[29]) },
3057 { "f30", offsetof(CPUState, fpr[30]) },
3058 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003059#ifdef TARGET_SPARC64
3060 { "f32", offsetof(CPUState, fpr[32]) },
3061 { "f34", offsetof(CPUState, fpr[34]) },
3062 { "f36", offsetof(CPUState, fpr[36]) },
3063 { "f38", offsetof(CPUState, fpr[38]) },
3064 { "f40", offsetof(CPUState, fpr[40]) },
3065 { "f42", offsetof(CPUState, fpr[42]) },
3066 { "f44", offsetof(CPUState, fpr[44]) },
3067 { "f46", offsetof(CPUState, fpr[46]) },
3068 { "f48", offsetof(CPUState, fpr[48]) },
3069 { "f50", offsetof(CPUState, fpr[50]) },
3070 { "f52", offsetof(CPUState, fpr[52]) },
3071 { "f54", offsetof(CPUState, fpr[54]) },
3072 { "f56", offsetof(CPUState, fpr[56]) },
3073 { "f58", offsetof(CPUState, fpr[58]) },
3074 { "f60", offsetof(CPUState, fpr[60]) },
3075 { "f62", offsetof(CPUState, fpr[62]) },
3076 { "asi", offsetof(CPUState, asi) },
3077 { "pstate", offsetof(CPUState, pstate) },
3078 { "cansave", offsetof(CPUState, cansave) },
3079 { "canrestore", offsetof(CPUState, canrestore) },
3080 { "otherwin", offsetof(CPUState, otherwin) },
3081 { "wstate", offsetof(CPUState, wstate) },
3082 { "cleanwin", offsetof(CPUState, cleanwin) },
3083 { "fprs", offsetof(CPUState, fprs) },
3084#endif
bellard9307c4c2004-04-04 12:57:25 +00003085#endif
3086 { NULL },
3087};
3088
aliguori376253e2009-03-05 23:01:23 +00003089static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003090{
aliguori376253e2009-03-05 23:01:23 +00003091 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003092 longjmp(expr_env, 1);
3093}
3094
Markus Armbruster09b94182010-01-20 13:07:30 +01003095/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003096static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003097{
blueswir18662d652008-10-02 18:32:44 +00003098 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003099 void *ptr;
3100
bellard9307c4c2004-04-04 12:57:25 +00003101 for(md = monitor_defs; md->name != NULL; md++) {
3102 if (compare_cmd(name, md->name)) {
3103 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003104 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003105 } else {
bellard6a00d602005-11-21 23:25:50 +00003106 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003107 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003108 switch(md->type) {
3109 case MD_I32:
3110 *pval = *(int32_t *)ptr;
3111 break;
3112 case MD_TLONG:
3113 *pval = *(target_long *)ptr;
3114 break;
3115 default:
3116 *pval = 0;
3117 break;
3118 }
bellard9307c4c2004-04-04 12:57:25 +00003119 }
3120 return 0;
3121 }
3122 }
3123 return -1;
3124}
3125
3126static void next(void)
3127{
Blue Swirl660f11b2009-07-31 21:16:51 +00003128 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003129 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003130 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003131 pch++;
3132 }
3133}
3134
aliguori376253e2009-03-05 23:01:23 +00003135static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003136
aliguori376253e2009-03-05 23:01:23 +00003137static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003138{
blueswir1c2efc952007-09-25 17:28:42 +00003139 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003140 char *p;
bellard6a00d602005-11-21 23:25:50 +00003141 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003142
3143 switch(*pch) {
3144 case '+':
3145 next();
aliguori376253e2009-03-05 23:01:23 +00003146 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003147 break;
3148 case '-':
3149 next();
aliguori376253e2009-03-05 23:01:23 +00003150 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003151 break;
3152 case '~':
3153 next();
aliguori376253e2009-03-05 23:01:23 +00003154 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003155 break;
3156 case '(':
3157 next();
aliguori376253e2009-03-05 23:01:23 +00003158 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003159 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003160 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003161 }
3162 next();
3163 break;
bellard81d09122004-07-14 17:21:37 +00003164 case '\'':
3165 pch++;
3166 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003167 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003168 n = *pch;
3169 pch++;
3170 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003171 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003172 next();
3173 break;
bellard9307c4c2004-04-04 12:57:25 +00003174 case '$':
3175 {
3176 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003177 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003178
bellard9307c4c2004-04-04 12:57:25 +00003179 pch++;
3180 q = buf;
3181 while ((*pch >= 'a' && *pch <= 'z') ||
3182 (*pch >= 'A' && *pch <= 'Z') ||
3183 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003184 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003185 if ((q - buf) < sizeof(buf) - 1)
3186 *q++ = *pch;
3187 pch++;
3188 }
blueswir1cd390082008-11-16 13:53:32 +00003189 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003190 pch++;
3191 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003192 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003193 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003194 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003195 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003196 }
3197 break;
3198 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003199 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003200 n = 0;
3201 break;
3202 default:
blueswir17743e582007-09-24 18:39:04 +00003203#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003204 n = strtoull(pch, &p, 0);
3205#else
bellard9307c4c2004-04-04 12:57:25 +00003206 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003207#endif
bellard9307c4c2004-04-04 12:57:25 +00003208 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003209 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003210 }
3211 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003212 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003213 pch++;
3214 break;
3215 }
3216 return n;
3217}
3218
3219
aliguori376253e2009-03-05 23:01:23 +00003220static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003221{
blueswir1c2efc952007-09-25 17:28:42 +00003222 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003223 int op;
ths3b46e622007-09-17 08:09:54 +00003224
aliguori376253e2009-03-05 23:01:23 +00003225 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003226 for(;;) {
3227 op = *pch;
3228 if (op != '*' && op != '/' && op != '%')
3229 break;
3230 next();
aliguori376253e2009-03-05 23:01:23 +00003231 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003232 switch(op) {
3233 default:
3234 case '*':
3235 val *= val2;
3236 break;
3237 case '/':
3238 case '%':
ths5fafdf22007-09-16 21:08:06 +00003239 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003240 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003241 if (op == '/')
3242 val /= val2;
3243 else
3244 val %= val2;
3245 break;
3246 }
3247 }
3248 return val;
3249}
3250
aliguori376253e2009-03-05 23:01:23 +00003251static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003252{
blueswir1c2efc952007-09-25 17:28:42 +00003253 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003254 int op;
bellard9307c4c2004-04-04 12:57:25 +00003255
aliguori376253e2009-03-05 23:01:23 +00003256 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003257 for(;;) {
3258 op = *pch;
3259 if (op != '&' && op != '|' && op != '^')
3260 break;
3261 next();
aliguori376253e2009-03-05 23:01:23 +00003262 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003263 switch(op) {
3264 default:
3265 case '&':
3266 val &= val2;
3267 break;
3268 case '|':
3269 val |= val2;
3270 break;
3271 case '^':
3272 val ^= val2;
3273 break;
3274 }
3275 }
3276 return val;
3277}
3278
aliguori376253e2009-03-05 23:01:23 +00003279static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003280{
blueswir1c2efc952007-09-25 17:28:42 +00003281 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003282 int op;
bellard9307c4c2004-04-04 12:57:25 +00003283
aliguori376253e2009-03-05 23:01:23 +00003284 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003285 for(;;) {
3286 op = *pch;
3287 if (op != '+' && op != '-')
3288 break;
3289 next();
aliguori376253e2009-03-05 23:01:23 +00003290 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003291 if (op == '+')
3292 val += val2;
3293 else
3294 val -= val2;
3295 }
3296 return val;
3297}
3298
aliguori376253e2009-03-05 23:01:23 +00003299static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003300{
3301 pch = *pp;
3302 if (setjmp(expr_env)) {
3303 *pp = pch;
3304 return -1;
3305 }
blueswir1cd390082008-11-16 13:53:32 +00003306 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003307 pch++;
aliguori376253e2009-03-05 23:01:23 +00003308 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003309 *pp = pch;
3310 return 0;
3311}
3312
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003313static int get_double(Monitor *mon, double *pval, const char **pp)
3314{
3315 const char *p = *pp;
3316 char *tailp;
3317 double d;
3318
3319 d = strtod(p, &tailp);
3320 if (tailp == p) {
3321 monitor_printf(mon, "Number expected\n");
3322 return -1;
3323 }
3324 if (d != d || d - d != 0) {
3325 /* NaN or infinity */
3326 monitor_printf(mon, "Bad number\n");
3327 return -1;
3328 }
3329 *pval = d;
3330 *pp = tailp;
3331 return 0;
3332}
3333
bellard9307c4c2004-04-04 12:57:25 +00003334static int get_str(char *buf, int buf_size, const char **pp)
3335{
3336 const char *p;
3337 char *q;
3338 int c;
3339
bellard81d09122004-07-14 17:21:37 +00003340 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003341 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003342 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003343 p++;
3344 if (*p == '\0') {
3345 fail:
bellard81d09122004-07-14 17:21:37 +00003346 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003347 *pp = p;
3348 return -1;
3349 }
bellard9307c4c2004-04-04 12:57:25 +00003350 if (*p == '\"') {
3351 p++;
3352 while (*p != '\0' && *p != '\"') {
3353 if (*p == '\\') {
3354 p++;
3355 c = *p++;
3356 switch(c) {
3357 case 'n':
3358 c = '\n';
3359 break;
3360 case 'r':
3361 c = '\r';
3362 break;
3363 case '\\':
3364 case '\'':
3365 case '\"':
3366 break;
3367 default:
3368 qemu_printf("unsupported escape code: '\\%c'\n", c);
3369 goto fail;
3370 }
3371 if ((q - buf) < buf_size - 1) {
3372 *q++ = c;
3373 }
3374 } else {
3375 if ((q - buf) < buf_size - 1) {
3376 *q++ = *p;
3377 }
3378 p++;
3379 }
3380 }
3381 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003382 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003383 goto fail;
3384 }
3385 p++;
3386 } else {
blueswir1cd390082008-11-16 13:53:32 +00003387 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003388 if ((q - buf) < buf_size - 1) {
3389 *q++ = *p;
3390 }
3391 p++;
3392 }
bellard9307c4c2004-04-04 12:57:25 +00003393 }
bellard81d09122004-07-14 17:21:37 +00003394 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003395 *pp = p;
3396 return 0;
3397}
3398
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003399/*
3400 * Store the command-name in cmdname, and return a pointer to
3401 * the remaining of the command string.
3402 */
3403static const char *get_command_name(const char *cmdline,
3404 char *cmdname, size_t nlen)
3405{
3406 size_t len;
3407 const char *p, *pstart;
3408
3409 p = cmdline;
3410 while (qemu_isspace(*p))
3411 p++;
3412 if (*p == '\0')
3413 return NULL;
3414 pstart = p;
3415 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3416 p++;
3417 len = p - pstart;
3418 if (len > nlen - 1)
3419 len = nlen - 1;
3420 memcpy(cmdname, pstart, len);
3421 cmdname[len] = '\0';
3422 return p;
3423}
3424
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003425/**
3426 * Read key of 'type' into 'key' and return the current
3427 * 'type' pointer.
3428 */
3429static char *key_get_info(const char *type, char **key)
3430{
3431 size_t len;
3432 char *p, *str;
3433
3434 if (*type == ',')
3435 type++;
3436
3437 p = strchr(type, ':');
3438 if (!p) {
3439 *key = NULL;
3440 return NULL;
3441 }
3442 len = p - type;
3443
3444 str = qemu_malloc(len + 1);
3445 memcpy(str, type, len);
3446 str[len] = '\0';
3447
3448 *key = str;
3449 return ++p;
3450}
3451
bellard9307c4c2004-04-04 12:57:25 +00003452static int default_fmt_format = 'x';
3453static int default_fmt_size = 4;
3454
3455#define MAX_ARGS 16
3456
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003457static int is_valid_option(const char *c, const char *typestr)
3458{
3459 char option[3];
3460
3461 option[0] = '-';
3462 option[1] = *c;
3463 option[2] = '\0';
3464
3465 typestr = strstr(typestr, option);
3466 return (typestr != NULL);
3467}
3468
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003469static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3470 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003471{
3472 const mon_cmd_t *cmd;
3473
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003474 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003475 if (compare_cmd(cmdname, cmd->name)) {
3476 return cmd;
3477 }
3478 }
3479
3480 return NULL;
3481}
3482
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003483static const mon_cmd_t *monitor_find_command(const char *cmdname)
3484{
3485 return search_dispatch_table(mon_cmds, cmdname);
3486}
3487
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003488static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3489{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003490 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003491}
3492
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003493static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3494{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003495 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003496}
3497
Anthony Liguoric227f092009-10-01 16:12:16 -05003498static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003499 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003500 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003501{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003502 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003503 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003504 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003505 char cmdname[256];
3506 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003507 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003508
3509#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003510 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003511#endif
ths3b46e622007-09-17 08:09:54 +00003512
bellard9307c4c2004-04-04 12:57:25 +00003513 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003514 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3515 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003516 return NULL;
ths3b46e622007-09-17 08:09:54 +00003517
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003518 cmd = monitor_find_command(cmdname);
3519 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003520 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003521 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003522 }
bellard9307c4c2004-04-04 12:57:25 +00003523
bellard9307c4c2004-04-04 12:57:25 +00003524 /* parse the parameters */
3525 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003526 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003527 typestr = key_get_info(typestr, &key);
3528 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003529 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003530 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003531 typestr++;
3532 switch(c) {
3533 case 'F':
bellard81d09122004-07-14 17:21:37 +00003534 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003535 case 's':
3536 {
3537 int ret;
ths3b46e622007-09-17 08:09:54 +00003538
blueswir1cd390082008-11-16 13:53:32 +00003539 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003540 p++;
3541 if (*typestr == '?') {
3542 typestr++;
3543 if (*p == '\0') {
3544 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003545 break;
bellard9307c4c2004-04-04 12:57:25 +00003546 }
3547 }
3548 ret = get_str(buf, sizeof(buf), &p);
3549 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003550 switch(c) {
3551 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003552 monitor_printf(mon, "%s: filename expected\n",
3553 cmdname);
bellard81d09122004-07-14 17:21:37 +00003554 break;
3555 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003556 monitor_printf(mon, "%s: block device name expected\n",
3557 cmdname);
bellard81d09122004-07-14 17:21:37 +00003558 break;
3559 default:
aliguori376253e2009-03-05 23:01:23 +00003560 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003561 break;
3562 }
bellard9307c4c2004-04-04 12:57:25 +00003563 goto fail;
3564 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003565 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003566 }
3567 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003568 case 'O':
3569 {
3570 QemuOptsList *opts_list;
3571 QemuOpts *opts;
3572
3573 opts_list = qemu_find_opts(key);
3574 if (!opts_list || opts_list->desc->name) {
3575 goto bad_type;
3576 }
3577 while (qemu_isspace(*p)) {
3578 p++;
3579 }
3580 if (!*p)
3581 break;
3582 if (get_str(buf, sizeof(buf), &p) < 0) {
3583 goto fail;
3584 }
3585 opts = qemu_opts_parse(opts_list, buf, 1);
3586 if (!opts) {
3587 goto fail;
3588 }
3589 qemu_opts_to_qdict(opts, qdict);
3590 qemu_opts_del(opts);
3591 }
3592 break;
bellard9307c4c2004-04-04 12:57:25 +00003593 case '/':
3594 {
3595 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003596
blueswir1cd390082008-11-16 13:53:32 +00003597 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003598 p++;
3599 if (*p == '/') {
3600 /* format found */
3601 p++;
3602 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003603 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003604 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003605 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003606 count = count * 10 + (*p - '0');
3607 p++;
3608 }
3609 }
3610 size = -1;
3611 format = -1;
3612 for(;;) {
3613 switch(*p) {
3614 case 'o':
3615 case 'd':
3616 case 'u':
3617 case 'x':
3618 case 'i':
3619 case 'c':
3620 format = *p++;
3621 break;
3622 case 'b':
3623 size = 1;
3624 p++;
3625 break;
3626 case 'h':
3627 size = 2;
3628 p++;
3629 break;
3630 case 'w':
3631 size = 4;
3632 p++;
3633 break;
3634 case 'g':
3635 case 'L':
3636 size = 8;
3637 p++;
3638 break;
3639 default:
3640 goto next;
3641 }
3642 }
3643 next:
blueswir1cd390082008-11-16 13:53:32 +00003644 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003645 monitor_printf(mon, "invalid char in format: '%c'\n",
3646 *p);
bellard9307c4c2004-04-04 12:57:25 +00003647 goto fail;
3648 }
bellard9307c4c2004-04-04 12:57:25 +00003649 if (format < 0)
3650 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003651 if (format != 'i') {
3652 /* for 'i', not specifying a size gives -1 as size */
3653 if (size < 0)
3654 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003655 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003656 }
bellard9307c4c2004-04-04 12:57:25 +00003657 default_fmt_format = format;
3658 } else {
3659 count = 1;
3660 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003661 if (format != 'i') {
3662 size = default_fmt_size;
3663 } else {
3664 size = -1;
3665 }
bellard9307c4c2004-04-04 12:57:25 +00003666 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003667 qdict_put(qdict, "count", qint_from_int(count));
3668 qdict_put(qdict, "format", qint_from_int(format));
3669 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003670 }
3671 break;
3672 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003673 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003674 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003675 {
blueswir1c2efc952007-09-25 17:28:42 +00003676 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003677
blueswir1cd390082008-11-16 13:53:32 +00003678 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003679 p++;
bellard34405572004-06-08 00:55:58 +00003680 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003681 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003682 if (*p == '\0') {
3683 typestr++;
3684 break;
3685 }
bellard34405572004-06-08 00:55:58 +00003686 } else {
3687 if (*p == '.') {
3688 p++;
blueswir1cd390082008-11-16 13:53:32 +00003689 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003690 p++;
bellard34405572004-06-08 00:55:58 +00003691 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003692 typestr++;
3693 break;
bellard34405572004-06-08 00:55:58 +00003694 }
3695 }
bellard13224a82006-07-14 22:03:35 +00003696 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003697 }
aliguori376253e2009-03-05 23:01:23 +00003698 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003699 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003700 /* Check if 'i' is greater than 32-bit */
3701 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3702 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3703 monitor_printf(mon, "integer is for 32-bit values\n");
3704 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003705 } else if (c == 'M') {
3706 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003707 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003708 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003709 }
3710 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003711 case 'o':
3712 {
3713 ssize_t val;
3714 char *end;
3715
3716 while (qemu_isspace(*p)) {
3717 p++;
3718 }
3719 if (*typestr == '?') {
3720 typestr++;
3721 if (*p == '\0') {
3722 break;
3723 }
3724 }
3725 val = strtosz(p, &end);
3726 if (val < 0) {
3727 monitor_printf(mon, "invalid size\n");
3728 goto fail;
3729 }
3730 qdict_put(qdict, key, qint_from_int(val));
3731 p = end;
3732 }
3733 break;
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003734 case 'f':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003735 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003736 {
3737 double val;
3738
3739 while (qemu_isspace(*p))
3740 p++;
3741 if (*typestr == '?') {
3742 typestr++;
3743 if (*p == '\0') {
3744 break;
3745 }
3746 }
3747 if (get_double(mon, &val, &p) < 0) {
3748 goto fail;
3749 }
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003750 if (c == 'f' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003751 switch (*p) {
3752 case 'K': case 'k':
3753 val *= 1 << 10; p++; break;
3754 case 'M': case 'm':
3755 val *= 1 << 20; p++; break;
3756 case 'G': case 'g':
3757 val *= 1 << 30; p++; break;
3758 }
3759 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003760 if (c == 'T' && p[0] && p[1] == 's') {
3761 switch (*p) {
3762 case 'm':
3763 val /= 1e3; p += 2; break;
3764 case 'u':
3765 val /= 1e6; p += 2; break;
3766 case 'n':
3767 val /= 1e9; p += 2; break;
3768 }
3769 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003770 if (*p && !qemu_isspace(*p)) {
3771 monitor_printf(mon, "Unknown unit suffix\n");
3772 goto fail;
3773 }
3774 qdict_put(qdict, key, qfloat_from_double(val));
3775 }
3776 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003777 case 'b':
3778 {
3779 const char *beg;
3780 int val;
3781
3782 while (qemu_isspace(*p)) {
3783 p++;
3784 }
3785 beg = p;
3786 while (qemu_isgraph(*p)) {
3787 p++;
3788 }
3789 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3790 val = 1;
3791 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3792 val = 0;
3793 } else {
3794 monitor_printf(mon, "Expected 'on' or 'off'\n");
3795 goto fail;
3796 }
3797 qdict_put(qdict, key, qbool_from_int(val));
3798 }
3799 break;
bellard9307c4c2004-04-04 12:57:25 +00003800 case '-':
3801 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003802 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003803 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003804 /* option */
ths3b46e622007-09-17 08:09:54 +00003805
bellard9307c4c2004-04-04 12:57:25 +00003806 c = *typestr++;
3807 if (c == '\0')
3808 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003809 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003810 p++;
bellard9307c4c2004-04-04 12:57:25 +00003811 if (*p == '-') {
3812 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003813 if(c != *p) {
3814 if(!is_valid_option(p, typestr)) {
3815
3816 monitor_printf(mon, "%s: unsupported option -%c\n",
3817 cmdname, *p);
3818 goto fail;
3819 } else {
3820 skip_key = 1;
3821 }
bellard9307c4c2004-04-04 12:57:25 +00003822 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003823 if(skip_key) {
3824 p = tmp;
3825 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003826 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003827 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003828 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003829 }
bellard9307c4c2004-04-04 12:57:25 +00003830 }
bellard9307c4c2004-04-04 12:57:25 +00003831 }
3832 break;
3833 default:
3834 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003835 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003836 goto fail;
3837 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003838 qemu_free(key);
3839 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003840 }
3841 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003842 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003843 p++;
3844 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003845 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3846 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003847 goto fail;
3848 }
3849
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003850 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003851
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003852fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003853 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003854 return NULL;
3855}
3856
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003857void monitor_set_error(Monitor *mon, QError *qerror)
3858{
3859 /* report only the first error */
3860 if (!mon->error) {
3861 mon->error = qerror;
3862 } else {
3863 MON_DEBUG("Additional error report at %s:%d\n",
3864 qerror->file, qerror->linenr);
3865 QDECREF(qerror);
3866 }
3867}
3868
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003869static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3870{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003871 if (monitor_ctrl_mode(mon)) {
3872 if (ret && !monitor_has_error(mon)) {
3873 /*
3874 * If it returns failure, it must have passed on error.
3875 *
3876 * Action: Report an internal error to the client if in QMP.
3877 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003878 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003879 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3880 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003881 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003882
3883#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003884 if (!ret && monitor_has_error(mon)) {
3885 /*
3886 * If it returns success, it must not have passed an error.
3887 *
3888 * Action: Report the passed error to the client.
3889 */
3890 MON_DEBUG("command '%s' returned success but passed an error\n",
3891 cmd->name);
3892 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003893
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003894 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3895 /*
3896 * Handlers should not call Monitor print functions.
3897 *
3898 * Action: Ignore them in QMP.
3899 *
3900 * (XXX: we don't check any 'info' or 'query' command here
3901 * because the user print function _is_ called by do_info(), hence
3902 * we will trigger this check. This problem will go away when we
3903 * make 'query' commands real and kill do_info())
3904 */
3905 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3906 cmd->name, mon_print_count_get(mon));
3907 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003908#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003909 } else {
3910 assert(!monitor_has_error(mon));
3911 QDECREF(mon->error);
3912 mon->error = NULL;
3913 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003914}
3915
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003916static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003917{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003918 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003919 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003920
3921 qdict = qdict_new();
3922
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003923 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003924 if (!cmd)
3925 goto out;
3926
Luiz Capitulino4903de02010-09-16 11:01:32 -03003927 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003928 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003929 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003930 QObject *data = NULL;
3931
3932 /* XXX: ignores the error code */
3933 cmd->mhandler.cmd_new(mon, qdict, &data);
3934 assert(!monitor_has_error(mon));
3935 if (data) {
3936 cmd->user_print(mon, data);
3937 qobject_decref(data);
3938 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003939 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003940 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003941 }
3942
Luiz Capitulino13917be2009-10-07 13:41:54 -03003943out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003944 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003945}
3946
bellard81d09122004-07-14 17:21:37 +00003947static void cmd_completion(const char *name, const char *list)
3948{
3949 const char *p, *pstart;
3950 char cmd[128];
3951 int len;
3952
3953 p = list;
3954 for(;;) {
3955 pstart = p;
3956 p = strchr(p, '|');
3957 if (!p)
3958 p = pstart + strlen(pstart);
3959 len = p - pstart;
3960 if (len > sizeof(cmd) - 2)
3961 len = sizeof(cmd) - 2;
3962 memcpy(cmd, pstart, len);
3963 cmd[len] = '\0';
3964 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003965 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003966 }
3967 if (*p == '\0')
3968 break;
3969 p++;
3970 }
3971}
3972
3973static void file_completion(const char *input)
3974{
3975 DIR *ffs;
3976 struct dirent *d;
3977 char path[1024];
3978 char file[1024], file_prefix[1024];
3979 int input_path_len;
3980 const char *p;
3981
ths5fafdf22007-09-16 21:08:06 +00003982 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003983 if (!p) {
3984 input_path_len = 0;
3985 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003986 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003987 } else {
3988 input_path_len = p - input + 1;
3989 memcpy(path, input, input_path_len);
3990 if (input_path_len > sizeof(path) - 1)
3991 input_path_len = sizeof(path) - 1;
3992 path[input_path_len] = '\0';
3993 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3994 }
3995#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003996 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3997 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003998#endif
3999 ffs = opendir(path);
4000 if (!ffs)
4001 return;
4002 for(;;) {
4003 struct stat sb;
4004 d = readdir(ffs);
4005 if (!d)
4006 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004007
4008 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4009 continue;
4010 }
4011
bellard81d09122004-07-14 17:21:37 +00004012 if (strstart(d->d_name, file_prefix, NULL)) {
4013 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004014 if (input_path_len < sizeof(file))
4015 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4016 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004017 /* stat the file to find out if it's a directory.
4018 * In that case add a slash to speed up typing long paths
4019 */
4020 stat(file, &sb);
4021 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004022 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004023 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004024 }
4025 }
4026 closedir(ffs);
4027}
4028
aliguori51de9762009-03-05 23:00:43 +00004029static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004030{
aliguori51de9762009-03-05 23:00:43 +00004031 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004032 const char *input = opaque;
4033
4034 if (input[0] == '\0' ||
4035 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004036 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004037 }
4038}
4039
4040/* NOTE: this parser is an approximate form of the real command parser */
4041static void parse_cmdline(const char *cmdline,
4042 int *pnb_args, char **args)
4043{
4044 const char *p;
4045 int nb_args, ret;
4046 char buf[1024];
4047
4048 p = cmdline;
4049 nb_args = 0;
4050 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004051 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004052 p++;
4053 if (*p == '\0')
4054 break;
4055 if (nb_args >= MAX_ARGS)
4056 break;
4057 ret = get_str(buf, sizeof(buf), &p);
4058 args[nb_args] = qemu_strdup(buf);
4059 nb_args++;
4060 if (ret < 0)
4061 break;
4062 }
4063 *pnb_args = nb_args;
4064}
4065
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004066static const char *next_arg_type(const char *typestr)
4067{
4068 const char *p = strchr(typestr, ':');
4069 return (p != NULL ? ++p : typestr);
4070}
4071
aliguori4c36ba32009-03-05 23:01:37 +00004072static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004073{
4074 const char *cmdname;
4075 char *args[MAX_ARGS];
4076 int nb_args, i, len;
4077 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004078 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004079 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004080
4081 parse_cmdline(cmdline, &nb_args, args);
4082#ifdef DEBUG_COMPLETION
4083 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004084 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004085 }
4086#endif
4087
4088 /* if the line ends with a space, it means we want to complete the
4089 next arg */
4090 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004091 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004092 if (nb_args >= MAX_ARGS) {
4093 goto cleanup;
4094 }
bellard81d09122004-07-14 17:21:37 +00004095 args[nb_args++] = qemu_strdup("");
4096 }
4097 if (nb_args <= 1) {
4098 /* command completion */
4099 if (nb_args == 0)
4100 cmdname = "";
4101 else
4102 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004103 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004104 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004105 cmd_completion(cmdname, cmd->name);
4106 }
4107 } else {
4108 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004109 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4110 if (compare_cmd(args[0], cmd->name)) {
4111 break;
4112 }
bellard81d09122004-07-14 17:21:37 +00004113 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004114 if (!cmd->name) {
4115 goto cleanup;
4116 }
4117
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004118 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004119 for(i = 0; i < nb_args - 2; i++) {
4120 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004121 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004122 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004123 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004124 }
4125 }
4126 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004127 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004128 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004129 }
bellard81d09122004-07-14 17:21:37 +00004130 switch(*ptype) {
4131 case 'F':
4132 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004133 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004134 file_completion(str);
4135 break;
4136 case 'B':
4137 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004138 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004139 bdrv_iterate(block_completion_it, (void *)str);
4140 break;
bellard7fe48482004-10-09 18:08:01 +00004141 case 's':
4142 /* XXX: more generic ? */
4143 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004144 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004145 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4146 cmd_completion(str, cmd->name);
4147 }
bellard64866c32006-05-07 18:03:31 +00004148 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004149 char *sep = strrchr(str, '-');
4150 if (sep)
4151 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004152 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004153 for(key = key_defs; key->name != NULL; key++) {
4154 cmd_completion(str, key->name);
4155 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004156 } else if (!strcmp(cmd->name, "help|?")) {
4157 readline_set_completion_index(cur_mon->rs, strlen(str));
4158 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4159 cmd_completion(str, cmd->name);
4160 }
bellard7fe48482004-10-09 18:08:01 +00004161 }
4162 break;
bellard81d09122004-07-14 17:21:37 +00004163 default:
4164 break;
4165 }
4166 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004167
4168cleanup:
4169 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004170 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004171 }
bellard81d09122004-07-14 17:21:37 +00004172}
4173
aliguori731b0362009-03-05 23:01:42 +00004174static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004175{
aliguori731b0362009-03-05 23:01:42 +00004176 Monitor *mon = opaque;
4177
Jan Kiszkac62313b2009-12-04 14:05:29 +01004178 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004179}
4180
Luiz Capitulino09069b12010-02-04 18:10:06 -02004181static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4182{
4183 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4184 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4185}
4186
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004187/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004188 * Argument validation rules:
4189 *
4190 * 1. The argument must exist in cmd_args qdict
4191 * 2. The argument type must be the expected one
4192 *
4193 * Special case: If the argument doesn't exist in cmd_args and
4194 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4195 * checking is skipped for it.
4196 */
4197static int check_client_args_type(const QDict *client_args,
4198 const QDict *cmd_args, int flags)
4199{
4200 const QDictEntry *ent;
4201
4202 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4203 QObject *obj;
4204 QString *arg_type;
4205 const QObject *client_arg = qdict_entry_value(ent);
4206 const char *client_arg_name = qdict_entry_key(ent);
4207
4208 obj = qdict_get(cmd_args, client_arg_name);
4209 if (!obj) {
4210 if (flags & QMP_ACCEPT_UNKNOWNS) {
4211 /* handler accepts unknowns */
4212 continue;
4213 }
4214 /* client arg doesn't exist */
4215 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4216 return -1;
4217 }
4218
4219 arg_type = qobject_to_qstring(obj);
4220 assert(arg_type != NULL);
4221
4222 /* check if argument's type is correct */
4223 switch (qstring_get_str(arg_type)[0]) {
4224 case 'F':
4225 case 'B':
4226 case 's':
4227 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4228 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4229 "string");
4230 return -1;
4231 }
4232 break;
4233 case 'i':
4234 case 'l':
4235 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004236 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004237 if (qobject_type(client_arg) != QTYPE_QINT) {
4238 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4239 "int");
4240 return -1;
4241 }
4242 break;
4243 case 'f':
4244 case 'T':
4245 if (qobject_type(client_arg) != QTYPE_QINT &&
4246 qobject_type(client_arg) != QTYPE_QFLOAT) {
4247 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4248 "number");
4249 return -1;
4250 }
4251 break;
4252 case 'b':
4253 case '-':
4254 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4255 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4256 "bool");
4257 return -1;
4258 }
4259 break;
4260 case 'O':
4261 assert(flags & QMP_ACCEPT_UNKNOWNS);
4262 break;
4263 case '/':
4264 case '.':
4265 /*
4266 * These types are not supported by QMP and thus are not
4267 * handled here. Fall through.
4268 */
4269 default:
4270 abort();
4271 }
4272 }
4273
4274 return 0;
4275}
4276
4277/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004278 * - Check if the client has passed all mandatory args
4279 * - Set special flags for argument validation
4280 */
4281static int check_mandatory_args(const QDict *cmd_args,
4282 const QDict *client_args, int *flags)
4283{
4284 const QDictEntry *ent;
4285
4286 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4287 const char *cmd_arg_name = qdict_entry_key(ent);
4288 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4289 assert(type != NULL);
4290
4291 if (qstring_get_str(type)[0] == 'O') {
4292 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4293 *flags |= QMP_ACCEPT_UNKNOWNS;
4294 } else if (qstring_get_str(type)[0] != '-' &&
4295 qstring_get_str(type)[1] != '?' &&
4296 !qdict_haskey(client_args, cmd_arg_name)) {
4297 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4298 return -1;
4299 }
4300 }
4301
4302 return 0;
4303}
4304
4305static QDict *qdict_from_args_type(const char *args_type)
4306{
4307 int i;
4308 QDict *qdict;
4309 QString *key, *type, *cur_qs;
4310
4311 assert(args_type != NULL);
4312
4313 qdict = qdict_new();
4314
4315 if (args_type == NULL || args_type[0] == '\0') {
4316 /* no args, empty qdict */
4317 goto out;
4318 }
4319
4320 key = qstring_new();
4321 type = qstring_new();
4322
4323 cur_qs = key;
4324
4325 for (i = 0;; i++) {
4326 switch (args_type[i]) {
4327 case ',':
4328 case '\0':
4329 qdict_put(qdict, qstring_get_str(key), type);
4330 QDECREF(key);
4331 if (args_type[i] == '\0') {
4332 goto out;
4333 }
4334 type = qstring_new(); /* qdict has ref */
4335 cur_qs = key = qstring_new();
4336 break;
4337 case ':':
4338 cur_qs = type;
4339 break;
4340 default:
4341 qstring_append_chr(cur_qs, args_type[i]);
4342 break;
4343 }
4344 }
4345
4346out:
4347 return qdict;
4348}
4349
4350/*
4351 * Client argument checking rules:
4352 *
4353 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004354 * 2. Each argument provided by the client must be expected
4355 * 3. Each argument provided by the client must have the type expected
4356 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004357 */
4358static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4359{
4360 int flags, err;
4361 QDict *cmd_args;
4362
4363 cmd_args = qdict_from_args_type(cmd->args_type);
4364
4365 flags = 0;
4366 err = check_mandatory_args(cmd_args, client_args, &flags);
4367 if (err) {
4368 goto out;
4369 }
4370
Luiz Capitulino4af91932010-06-22 11:44:05 -03004371 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004372
4373out:
4374 QDECREF(cmd_args);
4375 return err;
4376}
4377
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004378/*
4379 * Input object checking rules
4380 *
4381 * 1. Input object must be a dict
4382 * 2. The "execute" key must exist
4383 * 3. The "execute" key must be a string
4384 * 4. If the "arguments" key exists, it must be a dict
4385 * 5. If the "id" key exists, it can be anything (ie. json-value)
4386 * 6. Any argument not listed above is considered invalid
4387 */
4388static QDict *qmp_check_input_obj(QObject *input_obj)
4389{
4390 const QDictEntry *ent;
4391 int has_exec_key = 0;
4392 QDict *input_dict;
4393
4394 if (qobject_type(input_obj) != QTYPE_QDICT) {
4395 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4396 return NULL;
4397 }
4398
4399 input_dict = qobject_to_qdict(input_obj);
4400
4401 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4402 const char *arg_name = qdict_entry_key(ent);
4403 const QObject *arg_obj = qdict_entry_value(ent);
4404
4405 if (!strcmp(arg_name, "execute")) {
4406 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4407 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4408 "string");
4409 return NULL;
4410 }
4411 has_exec_key = 1;
4412 } else if (!strcmp(arg_name, "arguments")) {
4413 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4414 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4415 "object");
4416 return NULL;
4417 }
4418 } else if (!strcmp(arg_name, "id")) {
4419 /* FIXME: check duplicated IDs for async commands */
4420 } else {
4421 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4422 return NULL;
4423 }
4424 }
4425
4426 if (!has_exec_key) {
4427 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4428 return NULL;
4429 }
4430
4431 return input_dict;
4432}
4433
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004434static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4435{
4436 QObject *ret_data = NULL;
4437
Luiz Capitulino4903de02010-09-16 11:01:32 -03004438 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004439 qmp_async_info_handler(mon, cmd);
4440 if (monitor_has_error(mon)) {
4441 monitor_protocol_emitter(mon, NULL);
4442 }
4443 } else {
4444 cmd->mhandler.info_new(mon, &ret_data);
4445 if (ret_data) {
4446 monitor_protocol_emitter(mon, ret_data);
4447 qobject_decref(ret_data);
4448 }
4449 }
4450}
4451
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004452static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4453 const QDict *params)
4454{
4455 int ret;
4456 QObject *data = NULL;
4457
4458 mon_print_count_init(mon);
4459
4460 ret = cmd->mhandler.cmd_new(mon, params, &data);
4461 handler_audit(mon, cmd, ret);
4462 monitor_protocol_emitter(mon, data);
4463 qobject_decref(data);
4464}
4465
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004466static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4467{
4468 int err;
4469 QObject *obj;
4470 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004471 const mon_cmd_t *cmd;
4472 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004473 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004474
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004475 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004476 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004477
4478 obj = json_parser_parse(tokens, NULL);
4479 if (!obj) {
4480 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004481 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004482 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004483 }
4484
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004485 input = qmp_check_input_obj(obj);
4486 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004487 qobject_decref(obj);
4488 goto err_out;
4489 }
4490
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004491 mon->mc->id = qdict_get(input, "id");
4492 qobject_incref(mon->mc->id);
4493
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004494 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004495 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004496 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004497 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004498 }
4499
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004500 if (strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004501 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004502 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004503 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004504 }
4505
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004506 if (!cmd) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004507 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4508 goto err_out;
4509 }
4510
4511 obj = qdict_get(input, "arguments");
4512 if (!obj) {
4513 args = qdict_new();
4514 } else {
4515 args = qobject_to_qdict(obj);
4516 QINCREF(args);
4517 }
4518
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004519 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004520 if (err < 0) {
4521 goto err_out;
4522 }
4523
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004524 if (query_cmd) {
4525 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004526 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004527 err = qmp_async_cmd_handler(mon, cmd, args);
4528 if (err) {
4529 /* emit the error response */
4530 goto err_out;
4531 }
Adam Litke940cc302010-01-25 12:18:44 -06004532 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004533 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004534 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004535
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004536 goto out;
4537
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004538err_out:
4539 monitor_protocol_emitter(mon, NULL);
4540out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004541 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004542 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004543}
4544
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004545/**
4546 * monitor_control_read(): Read and handle QMP input
4547 */
4548static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4549{
4550 Monitor *old_mon = cur_mon;
4551
4552 cur_mon = opaque;
4553
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004554 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004555
4556 cur_mon = old_mon;
4557}
4558
aliguori731b0362009-03-05 23:01:42 +00004559static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004560{
aliguori731b0362009-03-05 23:01:42 +00004561 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004562 int i;
aliguori376253e2009-03-05 23:01:23 +00004563
aliguori731b0362009-03-05 23:01:42 +00004564 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004565
aliguoricde76ee2009-03-05 23:01:51 +00004566 if (cur_mon->rs) {
4567 for (i = 0; i < size; i++)
4568 readline_handle_byte(cur_mon->rs, buf[i]);
4569 } else {
4570 if (size == 0 || buf[size - 1] != 0)
4571 monitor_printf(cur_mon, "corrupted command\n");
4572 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004573 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004574 }
aliguori731b0362009-03-05 23:01:42 +00004575
4576 cur_mon = old_mon;
4577}
aliguorid8f44602008-10-06 13:52:44 +00004578
aliguori376253e2009-03-05 23:01:23 +00004579static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004580{
aliguori731b0362009-03-05 23:01:42 +00004581 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004582 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004583 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004584}
4585
aliguoricde76ee2009-03-05 23:01:51 +00004586int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004587{
aliguoricde76ee2009-03-05 23:01:51 +00004588 if (!mon->rs)
4589 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004590 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004591 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004592}
4593
aliguori376253e2009-03-05 23:01:23 +00004594void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004595{
aliguoricde76ee2009-03-05 23:01:51 +00004596 if (!mon->rs)
4597 return;
aliguori731b0362009-03-05 23:01:42 +00004598 if (--mon->suspend_cnt == 0)
4599 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004600}
4601
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004602static QObject *get_qmp_greeting(void)
4603{
4604 QObject *ver;
4605
4606 do_info_version(NULL, &ver);
4607 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4608}
4609
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004610/**
4611 * monitor_control_event(): Print QMP gretting
4612 */
4613static void monitor_control_event(void *opaque, int event)
4614{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004615 QObject *data;
4616 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004617
Luiz Capitulino47116d12010-02-08 17:01:30 -02004618 switch (event) {
4619 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004620 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004621 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004622 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004623 monitor_json_emitter(mon, data);
4624 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004625 break;
4626 case CHR_EVENT_CLOSED:
4627 json_message_parser_destroy(&mon->mc->parser);
4628 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004629 }
4630}
4631
aliguori731b0362009-03-05 23:01:42 +00004632static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004633{
aliguori376253e2009-03-05 23:01:23 +00004634 Monitor *mon = opaque;
4635
aliguori2724b182009-03-05 23:01:47 +00004636 switch (event) {
4637 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004638 mon->mux_out = 0;
4639 if (mon->reset_seen) {
4640 readline_restart(mon->rs);
4641 monitor_resume(mon);
4642 monitor_flush(mon);
4643 } else {
4644 mon->suspend_cnt = 0;
4645 }
aliguori2724b182009-03-05 23:01:47 +00004646 break;
ths86e94de2007-01-05 22:01:59 +00004647
aliguori2724b182009-03-05 23:01:47 +00004648 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004649 if (mon->reset_seen) {
4650 if (mon->suspend_cnt == 0) {
4651 monitor_printf(mon, "\n");
4652 }
4653 monitor_flush(mon);
4654 monitor_suspend(mon);
4655 } else {
4656 mon->suspend_cnt++;
4657 }
4658 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004659 break;
4660
Amit Shahb6b8df52009-10-07 18:31:16 +05304661 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004662 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4663 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004664 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004665 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004666 }
4667 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004668 break;
4669 }
ths86e94de2007-01-05 22:01:59 +00004670}
4671
aliguori76655d62009-03-06 20:27:37 +00004672
4673/*
4674 * Local variables:
4675 * c-indent-level: 4
4676 * c-basic-offset: 4
4677 * tab-width: 8
4678 * End:
4679 */
4680
aliguori731b0362009-03-05 23:01:42 +00004681void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004682{
aliguori731b0362009-03-05 23:01:42 +00004683 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004684 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004685
4686 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004687 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004688 is_first_init = 0;
4689 }
aliguori87127162009-03-05 23:01:29 +00004690
4691 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004692
aliguori87127162009-03-05 23:01:29 +00004693 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004694 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004695 if (flags & MONITOR_USE_READLINE) {
4696 mon->rs = readline_init(mon, monitor_find_completion);
4697 monitor_read_command(mon, 0);
4698 }
aliguori87127162009-03-05 23:01:29 +00004699
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004700 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004701 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004702 /* Control mode requires special handlers */
4703 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4704 monitor_control_event, mon);
4705 } else {
4706 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4707 monitor_event, mon);
4708 }
aliguori87127162009-03-05 23:01:29 +00004709
Blue Swirl72cf2d42009-09-12 07:36:22 +00004710 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004711 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4712 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004713}
4714
aliguori376253e2009-03-05 23:01:23 +00004715static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004716{
aliguoribb5fc202009-03-05 23:01:15 +00004717 BlockDriverState *bs = opaque;
4718 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004719
aliguoribb5fc202009-03-05 23:01:15 +00004720 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004721 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004722 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004723 }
aliguori731b0362009-03-05 23:01:42 +00004724 if (mon->password_completion_cb)
4725 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004726
aliguori731b0362009-03-05 23:01:42 +00004727 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004728}
aliguoric0f4ce72009-03-05 23:01:01 +00004729
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004730int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4731 BlockDriverCompletionFunc *completion_cb,
4732 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004733{
aliguoricde76ee2009-03-05 23:01:51 +00004734 int err;
4735
aliguoribb5fc202009-03-05 23:01:15 +00004736 if (!bdrv_key_required(bs)) {
4737 if (completion_cb)
4738 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004739 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004740 }
aliguoric0f4ce72009-03-05 23:01:01 +00004741
Luiz Capitulino94171e12009-12-07 21:37:00 +01004742 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004743 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004744 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004745 }
4746
aliguori376253e2009-03-05 23:01:23 +00004747 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4748 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004749
aliguori731b0362009-03-05 23:01:42 +00004750 mon->password_completion_cb = completion_cb;
4751 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004752
aliguoricde76ee2009-03-05 23:01:51 +00004753 err = monitor_read_password(mon, bdrv_password_cb, bs);
4754
4755 if (err && completion_cb)
4756 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004757
4758 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004759}