blob: bf5da506fc53d0e0ee2052424fbb5cb6effd75f6 [file] [log] [blame]
bellard9dc39cb2004-03-14 21:38:27 +00001/*
2 * QEMU monitor
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard9dc39cb2004-03-14 21:38:27 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard9dc39cb2004-03-14 21:38:27 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
blueswir1511d2b12009-03-07 15:32:56 +000024#include <dirent.h>
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw/hw.h"
Gerd Hoffmanncae49562009-06-05 15:53:17 +010026#include "hw/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
29#include "hw/pc.h"
30#include "hw/pci.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +010031#include "hw/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "gdbstub.h"
34#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000035#include "net/slirp.h"
pbrook87ecb682007-11-17 17:14:51 +000036#include "qemu-char.h"
37#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000038#include "monitor.h"
39#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000040#include "console.h"
Markus Armbruster666daa62010-06-02 18:48:27 +020041#include "blockdev.h"
pbrook87ecb682007-11-17 17:14:51 +000042#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000043#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000044#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000045#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000046#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000047#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000048#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030049#include "qint.h"
Markus Armbruster3350a4d2010-01-25 14:23:03 +010050#include "qfloat.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030051#include "qlist.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020052#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030053#include "qstring.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020054#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020055#include "json-streamer.h"
56#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000057#include "osdep.h"
Paolo Bonzinia88790a2010-06-29 09:58:51 +020058#include "exec-all.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053059#ifdef CONFIG_SIMPLE_TRACE
60#include "trace.h"
61#endif
ths6a5bd302007-12-03 17:05:38 +000062
bellard9dc39cb2004-03-14 21:38:27 +000063//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000064//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000065
bellard9307c4c2004-04-04 12:57:25 +000066/*
67 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000068 *
bellard9307c4c2004-04-04 12:57:25 +000069 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000070 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000071 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010072 * 'O' option string of the form NAME=VALUE,...
73 * parsed according to QemuOptsList given by its name
74 * Example: 'device:O' uses qemu_device_opts.
75 * Restriction: only lists with empty desc are supported
76 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000077 * 'i' 32 bit integer
78 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010079 * 'M' just like 'l', except in user mode the value is
80 * multiplied by 2^20 (think Mebibyte)
Markus Armbrusteree9545d2010-03-26 09:07:08 +010081 * 'f' double
Markus Armbruster3350a4d2010-01-25 14:23:03 +010082 * user mode accepts an optional G, g, M, m, K, k suffix,
83 * which multiplies the value by 2^30 for suffixes G and
84 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010085 * 'T' double
86 * user mode accepts an optional ms, us, ns suffix,
87 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000088 * '/' optional gdb-like print format (like "/10x")
89 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030090 * '?' optional type (for all types, except '/')
91 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010092 * 'b' boolean
93 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030094 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000095 *
96 */
97
Adam Litke940cc302010-01-25 12:18:44 -060098typedef struct MonitorCompletionData MonitorCompletionData;
99struct MonitorCompletionData {
100 Monitor *mon;
101 void (*user_print)(Monitor *mon, const QObject *data);
102};
103
Anthony Liguoric227f092009-10-01 16:12:16 -0500104typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000105 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000106 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000107 const char *params;
108 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300109 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300110 union {
111 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300112 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600113 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300114 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200115 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600116 int (*cmd_async)(Monitor *mon, const QDict *params,
117 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300118 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200119 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500120} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000121
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100122/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500123typedef struct mon_fd_t mon_fd_t;
124struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100125 char *name;
126 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500127 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100128};
129
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200130typedef struct MonitorControl {
131 QObject *id;
132 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200133 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200134} MonitorControl;
135
aliguori87127162009-03-05 23:01:29 +0000136struct Monitor {
137 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200138 int mux_out;
139 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000140 int flags;
141 int suspend_cnt;
142 uint8_t outbuf[1024];
143 int outbuf_index;
144 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200145 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000146 CPUState *mon_cpu;
147 BlockDriverCompletionFunc *password_completion_cb;
148 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200149#ifdef CONFIG_DEBUG_MONITOR
150 int print_calls_nr;
151#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200152 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500153 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000154 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000155};
156
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200157#ifdef CONFIG_DEBUG_MONITOR
158#define MON_DEBUG(fmt, ...) do { \
159 fprintf(stderr, "Monitor: "); \
160 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200161
162static inline void mon_print_count_inc(Monitor *mon)
163{
164 mon->print_calls_nr++;
165}
166
167static inline void mon_print_count_init(Monitor *mon)
168{
169 mon->print_calls_nr = 0;
170}
171
172static inline int mon_print_count_get(const Monitor *mon)
173{
174 return mon->print_calls_nr;
175}
176
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200177#else /* !CONFIG_DEBUG_MONITOR */
178#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200179static inline void mon_print_count_inc(Monitor *mon) { }
180static inline void mon_print_count_init(Monitor *mon) { }
181static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200182#endif /* CONFIG_DEBUG_MONITOR */
183
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300184/* QMP checker flags */
185#define QMP_ACCEPT_UNKNOWNS 1
186
Blue Swirl72cf2d42009-09-12 07:36:22 +0000187static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000188
Anthony Liguoric227f092009-10-01 16:12:16 -0500189static const mon_cmd_t mon_cmds[];
190static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000191
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300192static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300193static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300194
Markus Armbruster8631b602010-02-18 11:41:55 +0100195Monitor *cur_mon;
196Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000197
aliguori731b0362009-03-05 23:01:42 +0000198static void monitor_command_cb(Monitor *mon, const char *cmdline,
199 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000200
Luiz Capitulino09069b12010-02-04 18:10:06 -0200201static inline int qmp_cmd_mode(const Monitor *mon)
202{
203 return (mon->mc ? mon->mc->command_mode : 0);
204}
205
Luiz Capitulino418173c2009-11-26 22:58:51 -0200206/* Return true if in control mode, false otherwise */
207static inline int monitor_ctrl_mode(const Monitor *mon)
208{
209 return (mon->flags & MONITOR_USE_CONTROL);
210}
211
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100212/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
213int monitor_cur_is_qmp(void)
214{
215 return cur_mon && monitor_ctrl_mode(cur_mon);
216}
217
aliguori731b0362009-03-05 23:01:42 +0000218static void monitor_read_command(Monitor *mon, int show_prompt)
219{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200220 if (!mon->rs)
221 return;
222
aliguori731b0362009-03-05 23:01:42 +0000223 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
224 if (show_prompt)
225 readline_show_prompt(mon->rs);
226}
bellard6a00d602005-11-21 23:25:50 +0000227
aliguoricde76ee2009-03-05 23:01:51 +0000228static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
229 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000230{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100231 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100232 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100233 return -EINVAL;
234 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000235 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
236 /* prompt is printed on return from the command handler */
237 return 0;
238 } else {
239 monitor_printf(mon, "terminal does not support password prompting\n");
240 return -ENOTTY;
241 }
aliguoribb5fc202009-03-05 23:01:15 +0000242}
243
aliguori376253e2009-03-05 23:01:23 +0000244void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000245{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200246 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000247 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
248 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000249 }
250}
251
252/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000253static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000254{
ths60fe76f2007-12-16 03:02:09 +0000255 char c;
aliguori731b0362009-03-05 23:01:42 +0000256
bellard7e2515e2004-08-01 21:52:19 +0000257 for(;;) {
258 c = *str++;
259 if (c == '\0')
260 break;
bellard7ba12602006-07-14 20:26:42 +0000261 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000262 mon->outbuf[mon->outbuf_index++] = '\r';
263 mon->outbuf[mon->outbuf_index++] = c;
264 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
265 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000266 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000267 }
268}
269
aliguori376253e2009-03-05 23:01:23 +0000270void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000271{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200272 char buf[4096];
273
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200274 if (!mon)
275 return;
276
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200277 mon_print_count_inc(mon);
278
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200279 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200280 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200281 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200282
283 vsnprintf(buf, sizeof(buf), fmt, ap);
284 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000285}
286
aliguori376253e2009-03-05 23:01:23 +0000287void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000288{
289 va_list ap;
290 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000291 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000292 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000293}
294
aliguori376253e2009-03-05 23:01:23 +0000295void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000296{
297 int i;
298
299 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000300 switch (filename[i]) {
301 case ' ':
302 case '"':
303 case '\\':
304 monitor_printf(mon, "\\%c", filename[i]);
305 break;
306 case '\t':
307 monitor_printf(mon, "\\t");
308 break;
309 case '\r':
310 monitor_printf(mon, "\\r");
311 break;
312 case '\n':
313 monitor_printf(mon, "\\n");
314 break;
315 default:
316 monitor_printf(mon, "%c", filename[i]);
317 break;
318 }
thsfef30742006-12-22 14:11:32 +0000319 }
320}
321
bellard7fe48482004-10-09 18:08:01 +0000322static int monitor_fprintf(FILE *stream, const char *fmt, ...)
323{
324 va_list ap;
325 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000326 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000327 va_end(ap);
328 return 0;
329}
330
Luiz Capitulino13c74252009-10-07 13:41:55 -0300331static void monitor_user_noop(Monitor *mon, const QObject *data) { }
332
Luiz Capitulino13917be2009-10-07 13:41:54 -0300333static inline int monitor_handler_ported(const mon_cmd_t *cmd)
334{
335 return cmd->user_print != NULL;
336}
337
Adam Litke940cc302010-01-25 12:18:44 -0600338static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
339{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200340 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600341}
342
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200343static inline bool monitor_cmd_user_only(const mon_cmd_t *cmd)
344{
345 return (cmd->flags & MONITOR_CMD_USER_ONLY);
bellard9dc39cb2004-03-14 21:38:27 +0000346}
347
Luiz Capitulino8204a912009-11-18 23:05:31 -0200348static inline int monitor_has_error(const Monitor *mon)
349{
350 return mon->error != NULL;
351}
352
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200353static void monitor_json_emitter(Monitor *mon, const QObject *data)
354{
355 QString *json;
356
Daniel P. Berrange39eaab92010-06-07 15:42:31 +0100357 if (mon->flags & MONITOR_USE_PRETTY)
358 json = qobject_to_json_pretty(data);
359 else
360 json = qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200361 assert(json != NULL);
362
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200363 qstring_append_chr(json, '\n');
364 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200365
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200366 QDECREF(json);
367}
368
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200369static void monitor_protocol_emitter(Monitor *mon, QObject *data)
370{
371 QDict *qmp;
372
373 qmp = qdict_new();
374
375 if (!monitor_has_error(mon)) {
376 /* success response */
377 if (data) {
378 qobject_incref(data);
379 qdict_put_obj(qmp, "return", data);
380 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200381 /* return an empty QDict by default */
382 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200383 }
384 } else {
385 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100386 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200387 qdict_put(qmp, "error", mon->error->error);
388 QINCREF(mon->error->error);
389 QDECREF(mon->error);
390 mon->error = NULL;
391 }
392
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200393 if (mon->mc->id) {
394 qdict_put_obj(qmp, "id", mon->mc->id);
395 mon->mc->id = NULL;
396 }
397
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200398 monitor_json_emitter(mon, QOBJECT(qmp));
399 QDECREF(qmp);
400}
401
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200402static void timestamp_put(QDict *qdict)
403{
404 int err;
405 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000406 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200407
Blue Swirld08d6f02009-12-04 18:06:39 +0000408 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200409 if (err < 0)
410 return;
411
412 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
413 "'microseconds': %" PRId64 " }",
414 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200415 qdict_put_obj(qdict, "timestamp", obj);
416}
417
418/**
419 * monitor_protocol_event(): Generate a Monitor event
420 *
421 * Event-specific data can be emitted through the (optional) 'data' parameter.
422 */
423void monitor_protocol_event(MonitorEvent event, QObject *data)
424{
425 QDict *qmp;
426 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600427 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200428
Blue Swirl242cd002009-12-04 18:05:45 +0000429 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200430
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200431 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000432 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200433 event_name = "SHUTDOWN";
434 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000435 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200436 event_name = "RESET";
437 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000438 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200439 event_name = "POWERDOWN";
440 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000441 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200442 event_name = "STOP";
443 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300444 case QEVENT_RESUME:
445 event_name = "RESUME";
446 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200447 case QEVENT_VNC_CONNECTED:
448 event_name = "VNC_CONNECTED";
449 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200450 case QEVENT_VNC_INITIALIZED:
451 event_name = "VNC_INITIALIZED";
452 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200453 case QEVENT_VNC_DISCONNECTED:
454 event_name = "VNC_DISCONNECTED";
455 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200456 case QEVENT_BLOCK_IO_ERROR:
457 event_name = "BLOCK_IO_ERROR";
458 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300459 case QEVENT_RTC_CHANGE:
460 event_name = "RTC_CHANGE";
461 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300462 case QEVENT_WATCHDOG:
463 event_name = "WATCHDOG";
464 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200465 default:
466 abort();
467 break;
468 }
469
470 qmp = qdict_new();
471 timestamp_put(qmp);
472 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200473 if (data) {
474 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200475 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200476 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200477
Adam Litkef039a562010-01-15 08:34:02 -0600478 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200479 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200480 monitor_json_emitter(mon, QOBJECT(qmp));
481 }
Adam Litkef039a562010-01-15 08:34:02 -0600482 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200483 QDECREF(qmp);
484}
485
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200486static int do_qmp_capabilities(Monitor *mon, const QDict *params,
487 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200488{
489 /* Will setup QMP capabilities in the future */
490 if (monitor_ctrl_mode(mon)) {
491 mon->mc->command_mode = 1;
492 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200493
494 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200495}
496
bellard9dc39cb2004-03-14 21:38:27 +0000497static int compare_cmd(const char *name, const char *list)
498{
499 const char *p, *pstart;
500 int len;
501 len = strlen(name);
502 p = list;
503 for(;;) {
504 pstart = p;
505 p = strchr(p, '|');
506 if (!p)
507 p = pstart + strlen(pstart);
508 if ((p - pstart) == len && !memcmp(pstart, name, len))
509 return 1;
510 if (*p == '\0')
511 break;
512 p++;
513 }
514 return 0;
515}
516
Anthony Liguoric227f092009-10-01 16:12:16 -0500517static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000518 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000519{
Anthony Liguoric227f092009-10-01 16:12:16 -0500520 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000521
522 for(cmd = cmds; cmd->name != NULL; cmd++) {
523 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000524 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
525 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000526 }
527}
528
aliguori376253e2009-03-05 23:01:23 +0000529static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000530{
531 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000532 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000533 } else {
aliguori376253e2009-03-05 23:01:23 +0000534 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000535 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000536 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000537 monitor_printf(mon, "Log items (comma separated):\n");
538 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000539 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000540 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000541 }
542 }
bellard9dc39cb2004-03-14 21:38:27 +0000543 }
544}
545
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300546static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300547{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300548 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300549}
550
Prerna Saxena22890ab2010-06-24 17:04:53 +0530551#ifdef CONFIG_SIMPLE_TRACE
552static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
553{
554 const char *tp_name = qdict_get_str(qdict, "name");
555 bool new_state = qdict_get_bool(qdict, "option");
556 st_change_trace_event_state(tp_name, new_state);
557}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100558
559static void do_trace_file(Monitor *mon, const QDict *qdict)
560{
561 const char *op = qdict_get_try_str(qdict, "op");
562 const char *arg = qdict_get_try_str(qdict, "arg");
563
564 if (!op) {
565 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
566 } else if (!strcmp(op, "on")) {
567 st_set_trace_file_enabled(true);
568 } else if (!strcmp(op, "off")) {
569 st_set_trace_file_enabled(false);
570 } else if (!strcmp(op, "flush")) {
571 st_flush_trace_buffer();
572 } else if (!strcmp(op, "set")) {
573 if (arg) {
574 st_set_trace_file(arg);
575 }
576 } else {
577 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
578 help_cmd(mon, "trace-file");
579 }
580}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530581#endif
582
Adam Litke940cc302010-01-25 12:18:44 -0600583static void user_monitor_complete(void *opaque, QObject *ret_data)
584{
585 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
586
587 if (ret_data) {
588 data->user_print(data->mon, ret_data);
589 }
590 monitor_resume(data->mon);
591 qemu_free(data);
592}
593
594static void qmp_monitor_complete(void *opaque, QObject *ret_data)
595{
596 monitor_protocol_emitter(opaque, ret_data);
597}
598
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300599static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
600 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600601{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300602 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600603}
604
605static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
606{
607 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
608}
609
610static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
611 const QDict *params)
612{
613 int ret;
614
615 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
616 cb_data->mon = mon;
617 cb_data->user_print = cmd->user_print;
618 monitor_suspend(mon);
619 ret = cmd->mhandler.cmd_async(mon, params,
620 user_monitor_complete, cb_data);
621 if (ret < 0) {
622 monitor_resume(mon);
623 qemu_free(cb_data);
624 }
625}
626
627static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
628{
629 int ret;
630
631 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
632 cb_data->mon = mon;
633 cb_data->user_print = cmd->user_print;
634 monitor_suspend(mon);
635 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
636 if (ret < 0) {
637 monitor_resume(mon);
638 qemu_free(cb_data);
639 }
640}
641
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300642static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000643{
Anthony Liguoric227f092009-10-01 16:12:16 -0500644 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300645 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000646
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200647 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000648 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200649 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300650
651 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000652 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300653 break;
bellard9dc39cb2004-03-14 21:38:27 +0000654 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300655
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200656 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300657 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200658 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300659
Adam Litke940cc302010-01-25 12:18:44 -0600660 if (monitor_handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300661 user_async_info_handler(mon, cmd);
Adam Litke940cc302010-01-25 12:18:44 -0600662 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300663 QObject *info_data = NULL;
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200664
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300665 cmd->mhandler.info_new(mon, &info_data);
666 if (info_data) {
667 cmd->user_print(mon, info_data);
668 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200669 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300670 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300671 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300672 }
673
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300674 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300675
676help:
677 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000678}
679
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200680static void do_info_version_print(Monitor *mon, const QObject *data)
681{
682 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300683 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200684
685 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300686 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200687
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300688 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
689 qdict_get_int(qemu, "major"),
690 qdict_get_int(qemu, "minor"),
691 qdict_get_int(qemu, "micro"),
692 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200693}
694
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300695static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000696{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300697 const char *version = QEMU_VERSION;
698 int major = 0, minor = 0, micro = 0;
699 char *tmp;
700
701 major = strtol(version, &tmp, 10);
702 tmp++;
703 minor = strtol(tmp, &tmp, 10);
704 tmp++;
705 micro = strtol(tmp, &tmp, 10);
706
707 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
708 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000709}
710
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200711static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000712{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200713 QDict *qdict;
714
715 qdict = qobject_to_qdict(data);
716 if (qdict_size(qdict) == 0) {
717 return;
718 }
719
720 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
721}
722
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200723static void do_info_name(Monitor *mon, QObject **ret_data)
724{
725 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
726 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000727}
728
Luiz Capitulino1a728672009-12-10 17:15:56 -0200729static QObject *get_cmd_dict(const char *name)
730{
731 const char *p;
732
733 /* Remove '|' from some commands */
734 p = strchr(name, '|');
735 if (p) {
736 p++;
737 } else {
738 p = name;
739 }
740
741 return qobject_from_jsonf("{ 'name': %s }", p);
742}
743
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200744static void do_info_commands(Monitor *mon, QObject **ret_data)
745{
746 QList *cmd_list;
747 const mon_cmd_t *cmd;
748
749 cmd_list = qlist_new();
750
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300751 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200752 if (monitor_handler_ported(cmd) && !monitor_cmd_user_only(cmd) &&
753 !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200754 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200755 }
756 }
757
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300758 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200759 if (monitor_handler_ported(cmd) && !monitor_cmd_user_only(cmd)) {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200760 char buf[128];
761 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200762 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200763 }
764 }
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[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002345#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002346 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002347};
2348
Blue Swirl23130862009-06-06 08:22:04 +00002349/* Please update qemu-monitor.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 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002360 .name = "commands",
2361 .args_type = "",
2362 .params = "",
2363 .help = "list QMP available commands",
2364 .user_print = monitor_user_noop,
2365 .mhandler.info_new = do_info_commands,
2366 },
2367 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002368 .name = "network",
2369 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002370 .params = "",
2371 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002372 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002373 },
2374 {
2375 .name = "chardev",
2376 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002377 .params = "",
2378 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002379 .user_print = qemu_chr_info_print,
2380 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002381 },
2382 {
2383 .name = "block",
2384 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002385 .params = "",
2386 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002387 .user_print = bdrv_info_print,
2388 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002389 },
2390 {
2391 .name = "blockstats",
2392 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002393 .params = "",
2394 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002395 .user_print = bdrv_stats_print,
2396 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002397 },
2398 {
2399 .name = "registers",
2400 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002401 .params = "",
2402 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002403 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002404 },
2405 {
2406 .name = "cpus",
2407 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002408 .params = "",
2409 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002410 .user_print = monitor_print_cpus,
2411 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002412 },
2413 {
2414 .name = "history",
2415 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002416 .params = "",
2417 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002418 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002419 },
2420 {
2421 .name = "irq",
2422 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002423 .params = "",
2424 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002425 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002426 },
2427 {
2428 .name = "pic",
2429 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002430 .params = "",
2431 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002432 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002433 },
2434 {
2435 .name = "pci",
2436 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002437 .params = "",
2438 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002439 .user_print = do_pci_info_print,
2440 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002441 },
aurel327c664e22009-03-03 06:12:22 +00002442#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002443 {
2444 .name = "tlb",
2445 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002446 .params = "",
2447 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002448 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002449 },
aurel327c664e22009-03-03 06:12:22 +00002450#endif
2451#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 {
2453 .name = "mem",
2454 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002455 .params = "",
2456 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002457 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002458 },
bellardb86bda52004-09-18 19:32:46 +00002459#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002460 {
2461 .name = "jit",
2462 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002463 .params = "",
2464 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002465 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002466 },
2467 {
2468 .name = "kvm",
2469 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002470 .params = "",
2471 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002472 .user_print = do_info_kvm_print,
2473 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002474 },
2475 {
2476 .name = "numa",
2477 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002478 .params = "",
2479 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002480 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002481 },
2482 {
2483 .name = "usb",
2484 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 .params = "",
2486 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002487 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002488 },
2489 {
2490 .name = "usbhost",
2491 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 .params = "",
2493 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002494 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002495 },
2496 {
2497 .name = "profile",
2498 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002499 .params = "",
2500 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002501 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002502 },
2503 {
2504 .name = "capture",
2505 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002506 .params = "",
2507 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002508 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002509 },
2510 {
2511 .name = "snapshots",
2512 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002513 .params = "",
2514 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002515 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002516 },
2517 {
2518 .name = "status",
2519 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002520 .params = "",
2521 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002522 .user_print = do_info_status_print,
2523 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002524 },
2525 {
2526 .name = "pcmcia",
2527 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002528 .params = "",
2529 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002530 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 },
2532 {
2533 .name = "mice",
2534 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 .params = "",
2536 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002537 .user_print = do_info_mice_print,
2538 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 },
2540 {
2541 .name = "vnc",
2542 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 .params = "",
2544 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002545 .user_print = do_info_vnc_print,
2546 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 },
2548 {
2549 .name = "name",
2550 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002551 .params = "",
2552 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002553 .user_print = do_info_name_print,
2554 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002555 },
2556 {
2557 .name = "uuid",
2558 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002559 .params = "",
2560 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002561 .user_print = do_info_uuid_print,
2562 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 },
j_mayer76a66252007-03-07 08:32:30 +00002564#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 {
2566 .name = "cpustats",
2567 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 .params = "",
2569 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002570 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 },
j_mayer76a66252007-03-07 08:32:30 +00002572#endif
blueswir131a60e22007-10-26 18:42:59 +00002573#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002574 {
2575 .name = "usernet",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002579 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002580 },
blueswir131a60e22007-10-26 18:42:59 +00002581#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002582 {
2583 .name = "migrate",
2584 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 .params = "",
2586 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002587 .user_print = do_info_migrate_print,
2588 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 },
2590 {
2591 .name = "balloon",
2592 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002593 .params = "",
2594 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002595 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002596 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002597 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002598 },
2599 {
2600 .name = "qtree",
2601 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002602 .params = "",
2603 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002604 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002605 },
2606 {
2607 .name = "qdm",
2608 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002609 .params = "",
2610 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002611 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002612 },
2613 {
2614 .name = "roms",
2615 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 .params = "",
2617 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002618 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002619 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302620#if defined(CONFIG_SIMPLE_TRACE)
2621 {
2622 .name = "trace",
2623 .args_type = "",
2624 .params = "",
2625 .help = "show current contents of trace buffer",
2626 .mhandler.info = do_info_trace,
2627 },
2628 {
2629 .name = "trace-events",
2630 .args_type = "",
2631 .params = "",
2632 .help = "show available trace-events & their state",
2633 .mhandler.info = do_info_trace_events,
2634 },
2635#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002636 {
2637 .name = NULL,
2638 },
bellard9dc39cb2004-03-14 21:38:27 +00002639};
2640
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002641static const mon_cmd_t qmp_cmds[] = {
2642#include "qmp-commands.h"
2643 { /* NULL */ },
2644};
2645
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002646static const mon_cmd_t qmp_query_cmds[] = {
2647 {
2648 .name = "version",
2649 .args_type = "",
2650 .params = "",
2651 .help = "show the version of QEMU",
2652 .user_print = do_info_version_print,
2653 .mhandler.info_new = do_info_version,
2654 },
2655 {
2656 .name = "commands",
2657 .args_type = "",
2658 .params = "",
2659 .help = "list QMP available commands",
2660 .user_print = monitor_user_noop,
2661 .mhandler.info_new = do_info_commands,
2662 },
2663 {
2664 .name = "chardev",
2665 .args_type = "",
2666 .params = "",
2667 .help = "show the character devices",
2668 .user_print = qemu_chr_info_print,
2669 .mhandler.info_new = qemu_chr_info,
2670 },
2671 {
2672 .name = "block",
2673 .args_type = "",
2674 .params = "",
2675 .help = "show the block devices",
2676 .user_print = bdrv_info_print,
2677 .mhandler.info_new = bdrv_info,
2678 },
2679 {
2680 .name = "blockstats",
2681 .args_type = "",
2682 .params = "",
2683 .help = "show block device statistics",
2684 .user_print = bdrv_stats_print,
2685 .mhandler.info_new = bdrv_info_stats,
2686 },
2687 {
2688 .name = "cpus",
2689 .args_type = "",
2690 .params = "",
2691 .help = "show infos for each CPU",
2692 .user_print = monitor_print_cpus,
2693 .mhandler.info_new = do_info_cpus,
2694 },
2695 {
2696 .name = "pci",
2697 .args_type = "",
2698 .params = "",
2699 .help = "show PCI info",
2700 .user_print = do_pci_info_print,
2701 .mhandler.info_new = do_pci_info,
2702 },
2703 {
2704 .name = "kvm",
2705 .args_type = "",
2706 .params = "",
2707 .help = "show KVM information",
2708 .user_print = do_info_kvm_print,
2709 .mhandler.info_new = do_info_kvm,
2710 },
2711 {
2712 .name = "status",
2713 .args_type = "",
2714 .params = "",
2715 .help = "show the current VM status (running|paused)",
2716 .user_print = do_info_status_print,
2717 .mhandler.info_new = do_info_status,
2718 },
2719 {
2720 .name = "mice",
2721 .args_type = "",
2722 .params = "",
2723 .help = "show which guest mouse is receiving events",
2724 .user_print = do_info_mice_print,
2725 .mhandler.info_new = do_info_mice,
2726 },
2727 {
2728 .name = "vnc",
2729 .args_type = "",
2730 .params = "",
2731 .help = "show the vnc server status",
2732 .user_print = do_info_vnc_print,
2733 .mhandler.info_new = do_info_vnc,
2734 },
2735 {
2736 .name = "name",
2737 .args_type = "",
2738 .params = "",
2739 .help = "show the current VM name",
2740 .user_print = do_info_name_print,
2741 .mhandler.info_new = do_info_name,
2742 },
2743 {
2744 .name = "uuid",
2745 .args_type = "",
2746 .params = "",
2747 .help = "show the current VM UUID",
2748 .user_print = do_info_uuid_print,
2749 .mhandler.info_new = do_info_uuid,
2750 },
2751 {
2752 .name = "migrate",
2753 .args_type = "",
2754 .params = "",
2755 .help = "show migration status",
2756 .user_print = do_info_migrate_print,
2757 .mhandler.info_new = do_info_migrate,
2758 },
2759 {
2760 .name = "balloon",
2761 .args_type = "",
2762 .params = "",
2763 .help = "show balloon information",
2764 .user_print = monitor_print_balloon,
2765 .mhandler.info_async = do_info_balloon,
2766 .flags = MONITOR_CMD_ASYNC,
2767 },
2768 { /* NULL */ },
2769};
2770
bellard9307c4c2004-04-04 12:57:25 +00002771/*******************************************************************/
2772
2773static const char *pch;
2774static jmp_buf expr_env;
2775
bellard92a31b12005-02-10 22:00:52 +00002776#define MD_TLONG 0
2777#define MD_I32 1
2778
bellard9307c4c2004-04-04 12:57:25 +00002779typedef struct MonitorDef {
2780 const char *name;
2781 int offset;
blueswir18662d652008-10-02 18:32:44 +00002782 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002783 int type;
bellard9307c4c2004-04-04 12:57:25 +00002784} MonitorDef;
2785
bellard57206fd2004-04-25 18:54:52 +00002786#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002787static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002788{
bellard6a00d602005-11-21 23:25:50 +00002789 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002790 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002791}
2792#endif
2793
bellarda541f292004-04-12 20:39:29 +00002794#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002795static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002796{
bellard6a00d602005-11-21 23:25:50 +00002797 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002798 unsigned int u;
2799 int i;
2800
2801 u = 0;
2802 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002803 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002804
2805 return u;
2806}
2807
blueswir18662d652008-10-02 18:32:44 +00002808static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002809{
bellard6a00d602005-11-21 23:25:50 +00002810 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002811 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002812}
2813
blueswir18662d652008-10-02 18:32:44 +00002814static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002815{
bellard6a00d602005-11-21 23:25:50 +00002816 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002817 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002818}
bellard9fddaa02004-05-21 12:59:32 +00002819
blueswir18662d652008-10-02 18:32:44 +00002820static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002821{
bellard6a00d602005-11-21 23:25:50 +00002822 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002823 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002824}
2825
blueswir18662d652008-10-02 18:32:44 +00002826static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002827{
bellard6a00d602005-11-21 23:25:50 +00002828 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002829 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002830}
2831
blueswir18662d652008-10-02 18:32:44 +00002832static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002833{
bellard6a00d602005-11-21 23:25:50 +00002834 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002835 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002836}
bellarda541f292004-04-12 20:39:29 +00002837#endif
2838
bellarde95c8d52004-09-30 22:22:08 +00002839#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002840#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002841static target_long monitor_get_psr (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();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002844
2845 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002846}
bellard7b936c02005-10-30 17:05:13 +00002847#endif
bellarde95c8d52004-09-30 22:22:08 +00002848
blueswir18662d652008-10-02 18:32:44 +00002849static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002850{
bellard6a00d602005-11-21 23:25:50 +00002851 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002852 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002853}
2854#endif
2855
blueswir18662d652008-10-02 18:32:44 +00002856static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002857#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002858
2859#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002860 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002861 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002862 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002863
bellard9307c4c2004-04-04 12:57:25 +00002864 { "eax", offsetof(CPUState, regs[0]) },
2865 { "ecx", offsetof(CPUState, regs[1]) },
2866 { "edx", offsetof(CPUState, regs[2]) },
2867 { "ebx", offsetof(CPUState, regs[3]) },
2868 { "esp|sp", offsetof(CPUState, regs[4]) },
2869 { "ebp|fp", offsetof(CPUState, regs[5]) },
2870 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002871 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002872#ifdef TARGET_X86_64
2873 { "r8", offsetof(CPUState, regs[8]) },
2874 { "r9", offsetof(CPUState, regs[9]) },
2875 { "r10", offsetof(CPUState, regs[10]) },
2876 { "r11", offsetof(CPUState, regs[11]) },
2877 { "r12", offsetof(CPUState, regs[12]) },
2878 { "r13", offsetof(CPUState, regs[13]) },
2879 { "r14", offsetof(CPUState, regs[14]) },
2880 { "r15", offsetof(CPUState, regs[15]) },
2881#endif
bellard9307c4c2004-04-04 12:57:25 +00002882 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002883 { "eip", offsetof(CPUState, eip) },
2884 SEG("cs", R_CS)
2885 SEG("ds", R_DS)
2886 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002887 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002888 SEG("fs", R_FS)
2889 SEG("gs", R_GS)
2890 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002891#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002892 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002893 { "r0", offsetof(CPUState, gpr[0]) },
2894 { "r1", offsetof(CPUState, gpr[1]) },
2895 { "r2", offsetof(CPUState, gpr[2]) },
2896 { "r3", offsetof(CPUState, gpr[3]) },
2897 { "r4", offsetof(CPUState, gpr[4]) },
2898 { "r5", offsetof(CPUState, gpr[5]) },
2899 { "r6", offsetof(CPUState, gpr[6]) },
2900 { "r7", offsetof(CPUState, gpr[7]) },
2901 { "r8", offsetof(CPUState, gpr[8]) },
2902 { "r9", offsetof(CPUState, gpr[9]) },
2903 { "r10", offsetof(CPUState, gpr[10]) },
2904 { "r11", offsetof(CPUState, gpr[11]) },
2905 { "r12", offsetof(CPUState, gpr[12]) },
2906 { "r13", offsetof(CPUState, gpr[13]) },
2907 { "r14", offsetof(CPUState, gpr[14]) },
2908 { "r15", offsetof(CPUState, gpr[15]) },
2909 { "r16", offsetof(CPUState, gpr[16]) },
2910 { "r17", offsetof(CPUState, gpr[17]) },
2911 { "r18", offsetof(CPUState, gpr[18]) },
2912 { "r19", offsetof(CPUState, gpr[19]) },
2913 { "r20", offsetof(CPUState, gpr[20]) },
2914 { "r21", offsetof(CPUState, gpr[21]) },
2915 { "r22", offsetof(CPUState, gpr[22]) },
2916 { "r23", offsetof(CPUState, gpr[23]) },
2917 { "r24", offsetof(CPUState, gpr[24]) },
2918 { "r25", offsetof(CPUState, gpr[25]) },
2919 { "r26", offsetof(CPUState, gpr[26]) },
2920 { "r27", offsetof(CPUState, gpr[27]) },
2921 { "r28", offsetof(CPUState, gpr[28]) },
2922 { "r29", offsetof(CPUState, gpr[29]) },
2923 { "r30", offsetof(CPUState, gpr[30]) },
2924 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002925 /* Floating point registers */
2926 { "f0", offsetof(CPUState, fpr[0]) },
2927 { "f1", offsetof(CPUState, fpr[1]) },
2928 { "f2", offsetof(CPUState, fpr[2]) },
2929 { "f3", offsetof(CPUState, fpr[3]) },
2930 { "f4", offsetof(CPUState, fpr[4]) },
2931 { "f5", offsetof(CPUState, fpr[5]) },
2932 { "f6", offsetof(CPUState, fpr[6]) },
2933 { "f7", offsetof(CPUState, fpr[7]) },
2934 { "f8", offsetof(CPUState, fpr[8]) },
2935 { "f9", offsetof(CPUState, fpr[9]) },
2936 { "f10", offsetof(CPUState, fpr[10]) },
2937 { "f11", offsetof(CPUState, fpr[11]) },
2938 { "f12", offsetof(CPUState, fpr[12]) },
2939 { "f13", offsetof(CPUState, fpr[13]) },
2940 { "f14", offsetof(CPUState, fpr[14]) },
2941 { "f15", offsetof(CPUState, fpr[15]) },
2942 { "f16", offsetof(CPUState, fpr[16]) },
2943 { "f17", offsetof(CPUState, fpr[17]) },
2944 { "f18", offsetof(CPUState, fpr[18]) },
2945 { "f19", offsetof(CPUState, fpr[19]) },
2946 { "f20", offsetof(CPUState, fpr[20]) },
2947 { "f21", offsetof(CPUState, fpr[21]) },
2948 { "f22", offsetof(CPUState, fpr[22]) },
2949 { "f23", offsetof(CPUState, fpr[23]) },
2950 { "f24", offsetof(CPUState, fpr[24]) },
2951 { "f25", offsetof(CPUState, fpr[25]) },
2952 { "f26", offsetof(CPUState, fpr[26]) },
2953 { "f27", offsetof(CPUState, fpr[27]) },
2954 { "f28", offsetof(CPUState, fpr[28]) },
2955 { "f29", offsetof(CPUState, fpr[29]) },
2956 { "f30", offsetof(CPUState, fpr[30]) },
2957 { "f31", offsetof(CPUState, fpr[31]) },
2958 { "fpscr", offsetof(CPUState, fpscr) },
2959 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002960 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002961 { "lr", offsetof(CPUState, lr) },
2962 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002963 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002964 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002965 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002966 { "msr", 0, &monitor_get_msr, },
2967 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002968 { "tbu", 0, &monitor_get_tbu, },
2969 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002970#if defined(TARGET_PPC64)
2971 /* Address space register */
2972 { "asr", offsetof(CPUState, asr) },
2973#endif
2974 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002975 { "sdr1", offsetof(CPUState, sdr1) },
2976 { "sr0", offsetof(CPUState, sr[0]) },
2977 { "sr1", offsetof(CPUState, sr[1]) },
2978 { "sr2", offsetof(CPUState, sr[2]) },
2979 { "sr3", offsetof(CPUState, sr[3]) },
2980 { "sr4", offsetof(CPUState, sr[4]) },
2981 { "sr5", offsetof(CPUState, sr[5]) },
2982 { "sr6", offsetof(CPUState, sr[6]) },
2983 { "sr7", offsetof(CPUState, sr[7]) },
2984 { "sr8", offsetof(CPUState, sr[8]) },
2985 { "sr9", offsetof(CPUState, sr[9]) },
2986 { "sr10", offsetof(CPUState, sr[10]) },
2987 { "sr11", offsetof(CPUState, sr[11]) },
2988 { "sr12", offsetof(CPUState, sr[12]) },
2989 { "sr13", offsetof(CPUState, sr[13]) },
2990 { "sr14", offsetof(CPUState, sr[14]) },
2991 { "sr15", offsetof(CPUState, sr[15]) },
2992 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002993#elif defined(TARGET_SPARC)
2994 { "g0", offsetof(CPUState, gregs[0]) },
2995 { "g1", offsetof(CPUState, gregs[1]) },
2996 { "g2", offsetof(CPUState, gregs[2]) },
2997 { "g3", offsetof(CPUState, gregs[3]) },
2998 { "g4", offsetof(CPUState, gregs[4]) },
2999 { "g5", offsetof(CPUState, gregs[5]) },
3000 { "g6", offsetof(CPUState, gregs[6]) },
3001 { "g7", offsetof(CPUState, gregs[7]) },
3002 { "o0", 0, monitor_get_reg },
3003 { "o1", 1, monitor_get_reg },
3004 { "o2", 2, monitor_get_reg },
3005 { "o3", 3, monitor_get_reg },
3006 { "o4", 4, monitor_get_reg },
3007 { "o5", 5, monitor_get_reg },
3008 { "o6", 6, monitor_get_reg },
3009 { "o7", 7, monitor_get_reg },
3010 { "l0", 8, monitor_get_reg },
3011 { "l1", 9, monitor_get_reg },
3012 { "l2", 10, monitor_get_reg },
3013 { "l3", 11, monitor_get_reg },
3014 { "l4", 12, monitor_get_reg },
3015 { "l5", 13, monitor_get_reg },
3016 { "l6", 14, monitor_get_reg },
3017 { "l7", 15, monitor_get_reg },
3018 { "i0", 16, monitor_get_reg },
3019 { "i1", 17, monitor_get_reg },
3020 { "i2", 18, monitor_get_reg },
3021 { "i3", 19, monitor_get_reg },
3022 { "i4", 20, monitor_get_reg },
3023 { "i5", 21, monitor_get_reg },
3024 { "i6", 22, monitor_get_reg },
3025 { "i7", 23, monitor_get_reg },
3026 { "pc", offsetof(CPUState, pc) },
3027 { "npc", offsetof(CPUState, npc) },
3028 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003029#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003030 { "psr", 0, &monitor_get_psr, },
3031 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003032#endif
bellarde95c8d52004-09-30 22:22:08 +00003033 { "tbr", offsetof(CPUState, tbr) },
3034 { "fsr", offsetof(CPUState, fsr) },
3035 { "f0", offsetof(CPUState, fpr[0]) },
3036 { "f1", offsetof(CPUState, fpr[1]) },
3037 { "f2", offsetof(CPUState, fpr[2]) },
3038 { "f3", offsetof(CPUState, fpr[3]) },
3039 { "f4", offsetof(CPUState, fpr[4]) },
3040 { "f5", offsetof(CPUState, fpr[5]) },
3041 { "f6", offsetof(CPUState, fpr[6]) },
3042 { "f7", offsetof(CPUState, fpr[7]) },
3043 { "f8", offsetof(CPUState, fpr[8]) },
3044 { "f9", offsetof(CPUState, fpr[9]) },
3045 { "f10", offsetof(CPUState, fpr[10]) },
3046 { "f11", offsetof(CPUState, fpr[11]) },
3047 { "f12", offsetof(CPUState, fpr[12]) },
3048 { "f13", offsetof(CPUState, fpr[13]) },
3049 { "f14", offsetof(CPUState, fpr[14]) },
3050 { "f15", offsetof(CPUState, fpr[15]) },
3051 { "f16", offsetof(CPUState, fpr[16]) },
3052 { "f17", offsetof(CPUState, fpr[17]) },
3053 { "f18", offsetof(CPUState, fpr[18]) },
3054 { "f19", offsetof(CPUState, fpr[19]) },
3055 { "f20", offsetof(CPUState, fpr[20]) },
3056 { "f21", offsetof(CPUState, fpr[21]) },
3057 { "f22", offsetof(CPUState, fpr[22]) },
3058 { "f23", offsetof(CPUState, fpr[23]) },
3059 { "f24", offsetof(CPUState, fpr[24]) },
3060 { "f25", offsetof(CPUState, fpr[25]) },
3061 { "f26", offsetof(CPUState, fpr[26]) },
3062 { "f27", offsetof(CPUState, fpr[27]) },
3063 { "f28", offsetof(CPUState, fpr[28]) },
3064 { "f29", offsetof(CPUState, fpr[29]) },
3065 { "f30", offsetof(CPUState, fpr[30]) },
3066 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003067#ifdef TARGET_SPARC64
3068 { "f32", offsetof(CPUState, fpr[32]) },
3069 { "f34", offsetof(CPUState, fpr[34]) },
3070 { "f36", offsetof(CPUState, fpr[36]) },
3071 { "f38", offsetof(CPUState, fpr[38]) },
3072 { "f40", offsetof(CPUState, fpr[40]) },
3073 { "f42", offsetof(CPUState, fpr[42]) },
3074 { "f44", offsetof(CPUState, fpr[44]) },
3075 { "f46", offsetof(CPUState, fpr[46]) },
3076 { "f48", offsetof(CPUState, fpr[48]) },
3077 { "f50", offsetof(CPUState, fpr[50]) },
3078 { "f52", offsetof(CPUState, fpr[52]) },
3079 { "f54", offsetof(CPUState, fpr[54]) },
3080 { "f56", offsetof(CPUState, fpr[56]) },
3081 { "f58", offsetof(CPUState, fpr[58]) },
3082 { "f60", offsetof(CPUState, fpr[60]) },
3083 { "f62", offsetof(CPUState, fpr[62]) },
3084 { "asi", offsetof(CPUState, asi) },
3085 { "pstate", offsetof(CPUState, pstate) },
3086 { "cansave", offsetof(CPUState, cansave) },
3087 { "canrestore", offsetof(CPUState, canrestore) },
3088 { "otherwin", offsetof(CPUState, otherwin) },
3089 { "wstate", offsetof(CPUState, wstate) },
3090 { "cleanwin", offsetof(CPUState, cleanwin) },
3091 { "fprs", offsetof(CPUState, fprs) },
3092#endif
bellard9307c4c2004-04-04 12:57:25 +00003093#endif
3094 { NULL },
3095};
3096
aliguori376253e2009-03-05 23:01:23 +00003097static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003098{
aliguori376253e2009-03-05 23:01:23 +00003099 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003100 longjmp(expr_env, 1);
3101}
3102
Markus Armbruster09b94182010-01-20 13:07:30 +01003103/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003104static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003105{
blueswir18662d652008-10-02 18:32:44 +00003106 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003107 void *ptr;
3108
bellard9307c4c2004-04-04 12:57:25 +00003109 for(md = monitor_defs; md->name != NULL; md++) {
3110 if (compare_cmd(name, md->name)) {
3111 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003112 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003113 } else {
bellard6a00d602005-11-21 23:25:50 +00003114 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003115 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003116 switch(md->type) {
3117 case MD_I32:
3118 *pval = *(int32_t *)ptr;
3119 break;
3120 case MD_TLONG:
3121 *pval = *(target_long *)ptr;
3122 break;
3123 default:
3124 *pval = 0;
3125 break;
3126 }
bellard9307c4c2004-04-04 12:57:25 +00003127 }
3128 return 0;
3129 }
3130 }
3131 return -1;
3132}
3133
3134static void next(void)
3135{
Blue Swirl660f11b2009-07-31 21:16:51 +00003136 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003137 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003138 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003139 pch++;
3140 }
3141}
3142
aliguori376253e2009-03-05 23:01:23 +00003143static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003144
aliguori376253e2009-03-05 23:01:23 +00003145static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003146{
blueswir1c2efc952007-09-25 17:28:42 +00003147 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003148 char *p;
bellard6a00d602005-11-21 23:25:50 +00003149 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003150
3151 switch(*pch) {
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_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003159 break;
3160 case '~':
3161 next();
aliguori376253e2009-03-05 23:01:23 +00003162 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003163 break;
3164 case '(':
3165 next();
aliguori376253e2009-03-05 23:01:23 +00003166 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003167 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003168 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003169 }
3170 next();
3171 break;
bellard81d09122004-07-14 17:21:37 +00003172 case '\'':
3173 pch++;
3174 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003175 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003176 n = *pch;
3177 pch++;
3178 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003179 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003180 next();
3181 break;
bellard9307c4c2004-04-04 12:57:25 +00003182 case '$':
3183 {
3184 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003185 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003186
bellard9307c4c2004-04-04 12:57:25 +00003187 pch++;
3188 q = buf;
3189 while ((*pch >= 'a' && *pch <= 'z') ||
3190 (*pch >= 'A' && *pch <= 'Z') ||
3191 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003192 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003193 if ((q - buf) < sizeof(buf) - 1)
3194 *q++ = *pch;
3195 pch++;
3196 }
blueswir1cd390082008-11-16 13:53:32 +00003197 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003198 pch++;
3199 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003200 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003201 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003202 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003203 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003204 }
3205 break;
3206 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003207 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003208 n = 0;
3209 break;
3210 default:
blueswir17743e582007-09-24 18:39:04 +00003211#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003212 n = strtoull(pch, &p, 0);
3213#else
bellard9307c4c2004-04-04 12:57:25 +00003214 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003215#endif
bellard9307c4c2004-04-04 12:57:25 +00003216 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003217 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003218 }
3219 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003220 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003221 pch++;
3222 break;
3223 }
3224 return n;
3225}
3226
3227
aliguori376253e2009-03-05 23:01:23 +00003228static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003229{
blueswir1c2efc952007-09-25 17:28:42 +00003230 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003231 int op;
ths3b46e622007-09-17 08:09:54 +00003232
aliguori376253e2009-03-05 23:01:23 +00003233 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003234 for(;;) {
3235 op = *pch;
3236 if (op != '*' && op != '/' && op != '%')
3237 break;
3238 next();
aliguori376253e2009-03-05 23:01:23 +00003239 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003240 switch(op) {
3241 default:
3242 case '*':
3243 val *= val2;
3244 break;
3245 case '/':
3246 case '%':
ths5fafdf22007-09-16 21:08:06 +00003247 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003248 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003249 if (op == '/')
3250 val /= val2;
3251 else
3252 val %= val2;
3253 break;
3254 }
3255 }
3256 return val;
3257}
3258
aliguori376253e2009-03-05 23:01:23 +00003259static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003260{
blueswir1c2efc952007-09-25 17:28:42 +00003261 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003262 int op;
bellard9307c4c2004-04-04 12:57:25 +00003263
aliguori376253e2009-03-05 23:01:23 +00003264 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003265 for(;;) {
3266 op = *pch;
3267 if (op != '&' && op != '|' && op != '^')
3268 break;
3269 next();
aliguori376253e2009-03-05 23:01:23 +00003270 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003271 switch(op) {
3272 default:
3273 case '&':
3274 val &= val2;
3275 break;
3276 case '|':
3277 val |= val2;
3278 break;
3279 case '^':
3280 val ^= val2;
3281 break;
3282 }
3283 }
3284 return val;
3285}
3286
aliguori376253e2009-03-05 23:01:23 +00003287static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003288{
blueswir1c2efc952007-09-25 17:28:42 +00003289 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003290 int op;
bellard9307c4c2004-04-04 12:57:25 +00003291
aliguori376253e2009-03-05 23:01:23 +00003292 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003293 for(;;) {
3294 op = *pch;
3295 if (op != '+' && op != '-')
3296 break;
3297 next();
aliguori376253e2009-03-05 23:01:23 +00003298 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003299 if (op == '+')
3300 val += val2;
3301 else
3302 val -= val2;
3303 }
3304 return val;
3305}
3306
aliguori376253e2009-03-05 23:01:23 +00003307static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003308{
3309 pch = *pp;
3310 if (setjmp(expr_env)) {
3311 *pp = pch;
3312 return -1;
3313 }
blueswir1cd390082008-11-16 13:53:32 +00003314 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003315 pch++;
aliguori376253e2009-03-05 23:01:23 +00003316 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003317 *pp = pch;
3318 return 0;
3319}
3320
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003321static int get_double(Monitor *mon, double *pval, const char **pp)
3322{
3323 const char *p = *pp;
3324 char *tailp;
3325 double d;
3326
3327 d = strtod(p, &tailp);
3328 if (tailp == p) {
3329 monitor_printf(mon, "Number expected\n");
3330 return -1;
3331 }
3332 if (d != d || d - d != 0) {
3333 /* NaN or infinity */
3334 monitor_printf(mon, "Bad number\n");
3335 return -1;
3336 }
3337 *pval = d;
3338 *pp = tailp;
3339 return 0;
3340}
3341
bellard9307c4c2004-04-04 12:57:25 +00003342static int get_str(char *buf, int buf_size, const char **pp)
3343{
3344 const char *p;
3345 char *q;
3346 int c;
3347
bellard81d09122004-07-14 17:21:37 +00003348 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003349 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003350 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003351 p++;
3352 if (*p == '\0') {
3353 fail:
bellard81d09122004-07-14 17:21:37 +00003354 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003355 *pp = p;
3356 return -1;
3357 }
bellard9307c4c2004-04-04 12:57:25 +00003358 if (*p == '\"') {
3359 p++;
3360 while (*p != '\0' && *p != '\"') {
3361 if (*p == '\\') {
3362 p++;
3363 c = *p++;
3364 switch(c) {
3365 case 'n':
3366 c = '\n';
3367 break;
3368 case 'r':
3369 c = '\r';
3370 break;
3371 case '\\':
3372 case '\'':
3373 case '\"':
3374 break;
3375 default:
3376 qemu_printf("unsupported escape code: '\\%c'\n", c);
3377 goto fail;
3378 }
3379 if ((q - buf) < buf_size - 1) {
3380 *q++ = c;
3381 }
3382 } else {
3383 if ((q - buf) < buf_size - 1) {
3384 *q++ = *p;
3385 }
3386 p++;
3387 }
3388 }
3389 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003390 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003391 goto fail;
3392 }
3393 p++;
3394 } else {
blueswir1cd390082008-11-16 13:53:32 +00003395 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003396 if ((q - buf) < buf_size - 1) {
3397 *q++ = *p;
3398 }
3399 p++;
3400 }
bellard9307c4c2004-04-04 12:57:25 +00003401 }
bellard81d09122004-07-14 17:21:37 +00003402 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003403 *pp = p;
3404 return 0;
3405}
3406
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003407/*
3408 * Store the command-name in cmdname, and return a pointer to
3409 * the remaining of the command string.
3410 */
3411static const char *get_command_name(const char *cmdline,
3412 char *cmdname, size_t nlen)
3413{
3414 size_t len;
3415 const char *p, *pstart;
3416
3417 p = cmdline;
3418 while (qemu_isspace(*p))
3419 p++;
3420 if (*p == '\0')
3421 return NULL;
3422 pstart = p;
3423 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3424 p++;
3425 len = p - pstart;
3426 if (len > nlen - 1)
3427 len = nlen - 1;
3428 memcpy(cmdname, pstart, len);
3429 cmdname[len] = '\0';
3430 return p;
3431}
3432
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003433/**
3434 * Read key of 'type' into 'key' and return the current
3435 * 'type' pointer.
3436 */
3437static char *key_get_info(const char *type, char **key)
3438{
3439 size_t len;
3440 char *p, *str;
3441
3442 if (*type == ',')
3443 type++;
3444
3445 p = strchr(type, ':');
3446 if (!p) {
3447 *key = NULL;
3448 return NULL;
3449 }
3450 len = p - type;
3451
3452 str = qemu_malloc(len + 1);
3453 memcpy(str, type, len);
3454 str[len] = '\0';
3455
3456 *key = str;
3457 return ++p;
3458}
3459
bellard9307c4c2004-04-04 12:57:25 +00003460static int default_fmt_format = 'x';
3461static int default_fmt_size = 4;
3462
3463#define MAX_ARGS 16
3464
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003465static int is_valid_option(const char *c, const char *typestr)
3466{
3467 char option[3];
3468
3469 option[0] = '-';
3470 option[1] = *c;
3471 option[2] = '\0';
3472
3473 typestr = strstr(typestr, option);
3474 return (typestr != NULL);
3475}
3476
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003477static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3478 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003479{
3480 const mon_cmd_t *cmd;
3481
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003482 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003483 if (compare_cmd(cmdname, cmd->name)) {
3484 return cmd;
3485 }
3486 }
3487
3488 return NULL;
3489}
3490
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003491static const mon_cmd_t *monitor_find_command(const char *cmdname)
3492{
3493 return search_dispatch_table(mon_cmds, cmdname);
3494}
3495
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003496static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3497{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003498 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003499}
3500
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003501static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3502{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003503 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003504}
3505
Anthony Liguoric227f092009-10-01 16:12:16 -05003506static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003507 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003508 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003509{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003510 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003511 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003512 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003513 char cmdname[256];
3514 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003515 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003516
3517#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003518 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003519#endif
ths3b46e622007-09-17 08:09:54 +00003520
bellard9307c4c2004-04-04 12:57:25 +00003521 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003522 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3523 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003524 return NULL;
ths3b46e622007-09-17 08:09:54 +00003525
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003526 cmd = monitor_find_command(cmdname);
3527 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003528 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003529 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003530 }
bellard9307c4c2004-04-04 12:57:25 +00003531
bellard9307c4c2004-04-04 12:57:25 +00003532 /* parse the parameters */
3533 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003534 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003535 typestr = key_get_info(typestr, &key);
3536 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003537 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003538 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003539 typestr++;
3540 switch(c) {
3541 case 'F':
bellard81d09122004-07-14 17:21:37 +00003542 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003543 case 's':
3544 {
3545 int ret;
ths3b46e622007-09-17 08:09:54 +00003546
blueswir1cd390082008-11-16 13:53:32 +00003547 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003548 p++;
3549 if (*typestr == '?') {
3550 typestr++;
3551 if (*p == '\0') {
3552 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003553 break;
bellard9307c4c2004-04-04 12:57:25 +00003554 }
3555 }
3556 ret = get_str(buf, sizeof(buf), &p);
3557 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003558 switch(c) {
3559 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003560 monitor_printf(mon, "%s: filename expected\n",
3561 cmdname);
bellard81d09122004-07-14 17:21:37 +00003562 break;
3563 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003564 monitor_printf(mon, "%s: block device name expected\n",
3565 cmdname);
bellard81d09122004-07-14 17:21:37 +00003566 break;
3567 default:
aliguori376253e2009-03-05 23:01:23 +00003568 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003569 break;
3570 }
bellard9307c4c2004-04-04 12:57:25 +00003571 goto fail;
3572 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003573 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003574 }
3575 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003576 case 'O':
3577 {
3578 QemuOptsList *opts_list;
3579 QemuOpts *opts;
3580
3581 opts_list = qemu_find_opts(key);
3582 if (!opts_list || opts_list->desc->name) {
3583 goto bad_type;
3584 }
3585 while (qemu_isspace(*p)) {
3586 p++;
3587 }
3588 if (!*p)
3589 break;
3590 if (get_str(buf, sizeof(buf), &p) < 0) {
3591 goto fail;
3592 }
3593 opts = qemu_opts_parse(opts_list, buf, 1);
3594 if (!opts) {
3595 goto fail;
3596 }
3597 qemu_opts_to_qdict(opts, qdict);
3598 qemu_opts_del(opts);
3599 }
3600 break;
bellard9307c4c2004-04-04 12:57:25 +00003601 case '/':
3602 {
3603 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003604
blueswir1cd390082008-11-16 13:53:32 +00003605 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003606 p++;
3607 if (*p == '/') {
3608 /* format found */
3609 p++;
3610 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003611 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003612 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003613 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003614 count = count * 10 + (*p - '0');
3615 p++;
3616 }
3617 }
3618 size = -1;
3619 format = -1;
3620 for(;;) {
3621 switch(*p) {
3622 case 'o':
3623 case 'd':
3624 case 'u':
3625 case 'x':
3626 case 'i':
3627 case 'c':
3628 format = *p++;
3629 break;
3630 case 'b':
3631 size = 1;
3632 p++;
3633 break;
3634 case 'h':
3635 size = 2;
3636 p++;
3637 break;
3638 case 'w':
3639 size = 4;
3640 p++;
3641 break;
3642 case 'g':
3643 case 'L':
3644 size = 8;
3645 p++;
3646 break;
3647 default:
3648 goto next;
3649 }
3650 }
3651 next:
blueswir1cd390082008-11-16 13:53:32 +00003652 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003653 monitor_printf(mon, "invalid char in format: '%c'\n",
3654 *p);
bellard9307c4c2004-04-04 12:57:25 +00003655 goto fail;
3656 }
bellard9307c4c2004-04-04 12:57:25 +00003657 if (format < 0)
3658 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003659 if (format != 'i') {
3660 /* for 'i', not specifying a size gives -1 as size */
3661 if (size < 0)
3662 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003663 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003664 }
bellard9307c4c2004-04-04 12:57:25 +00003665 default_fmt_format = format;
3666 } else {
3667 count = 1;
3668 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003669 if (format != 'i') {
3670 size = default_fmt_size;
3671 } else {
3672 size = -1;
3673 }
bellard9307c4c2004-04-04 12:57:25 +00003674 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003675 qdict_put(qdict, "count", qint_from_int(count));
3676 qdict_put(qdict, "format", qint_from_int(format));
3677 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003678 }
3679 break;
3680 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003681 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003682 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003683 {
blueswir1c2efc952007-09-25 17:28:42 +00003684 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003685
blueswir1cd390082008-11-16 13:53:32 +00003686 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003687 p++;
bellard34405572004-06-08 00:55:58 +00003688 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003689 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003690 if (*p == '\0') {
3691 typestr++;
3692 break;
3693 }
bellard34405572004-06-08 00:55:58 +00003694 } else {
3695 if (*p == '.') {
3696 p++;
blueswir1cd390082008-11-16 13:53:32 +00003697 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003698 p++;
bellard34405572004-06-08 00:55:58 +00003699 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003700 typestr++;
3701 break;
bellard34405572004-06-08 00:55:58 +00003702 }
3703 }
bellard13224a82006-07-14 22:03:35 +00003704 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003705 }
aliguori376253e2009-03-05 23:01:23 +00003706 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003707 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003708 /* Check if 'i' is greater than 32-bit */
3709 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3710 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3711 monitor_printf(mon, "integer is for 32-bit values\n");
3712 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003713 } else if (c == 'M') {
3714 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003715 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003716 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003717 }
3718 break;
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003719 case 'f':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003720 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003721 {
3722 double val;
3723
3724 while (qemu_isspace(*p))
3725 p++;
3726 if (*typestr == '?') {
3727 typestr++;
3728 if (*p == '\0') {
3729 break;
3730 }
3731 }
3732 if (get_double(mon, &val, &p) < 0) {
3733 goto fail;
3734 }
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003735 if (c == 'f' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003736 switch (*p) {
3737 case 'K': case 'k':
3738 val *= 1 << 10; p++; break;
3739 case 'M': case 'm':
3740 val *= 1 << 20; p++; break;
3741 case 'G': case 'g':
3742 val *= 1 << 30; p++; break;
3743 }
3744 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003745 if (c == 'T' && p[0] && p[1] == 's') {
3746 switch (*p) {
3747 case 'm':
3748 val /= 1e3; p += 2; break;
3749 case 'u':
3750 val /= 1e6; p += 2; break;
3751 case 'n':
3752 val /= 1e9; p += 2; break;
3753 }
3754 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003755 if (*p && !qemu_isspace(*p)) {
3756 monitor_printf(mon, "Unknown unit suffix\n");
3757 goto fail;
3758 }
3759 qdict_put(qdict, key, qfloat_from_double(val));
3760 }
3761 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003762 case 'b':
3763 {
3764 const char *beg;
3765 int val;
3766
3767 while (qemu_isspace(*p)) {
3768 p++;
3769 }
3770 beg = p;
3771 while (qemu_isgraph(*p)) {
3772 p++;
3773 }
3774 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3775 val = 1;
3776 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3777 val = 0;
3778 } else {
3779 monitor_printf(mon, "Expected 'on' or 'off'\n");
3780 goto fail;
3781 }
3782 qdict_put(qdict, key, qbool_from_int(val));
3783 }
3784 break;
bellard9307c4c2004-04-04 12:57:25 +00003785 case '-':
3786 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003787 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003788 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003789 /* option */
ths3b46e622007-09-17 08:09:54 +00003790
bellard9307c4c2004-04-04 12:57:25 +00003791 c = *typestr++;
3792 if (c == '\0')
3793 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003794 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003795 p++;
bellard9307c4c2004-04-04 12:57:25 +00003796 if (*p == '-') {
3797 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003798 if(c != *p) {
3799 if(!is_valid_option(p, typestr)) {
3800
3801 monitor_printf(mon, "%s: unsupported option -%c\n",
3802 cmdname, *p);
3803 goto fail;
3804 } else {
3805 skip_key = 1;
3806 }
bellard9307c4c2004-04-04 12:57:25 +00003807 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003808 if(skip_key) {
3809 p = tmp;
3810 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003811 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003812 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003813 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003814 }
bellard9307c4c2004-04-04 12:57:25 +00003815 }
bellard9307c4c2004-04-04 12:57:25 +00003816 }
3817 break;
3818 default:
3819 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003820 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003821 goto fail;
3822 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003823 qemu_free(key);
3824 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003825 }
3826 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003827 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003828 p++;
3829 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003830 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3831 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003832 goto fail;
3833 }
3834
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003835 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003836
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003837fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003838 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003839 return NULL;
3840}
3841
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003842void monitor_set_error(Monitor *mon, QError *qerror)
3843{
3844 /* report only the first error */
3845 if (!mon->error) {
3846 mon->error = qerror;
3847 } else {
3848 MON_DEBUG("Additional error report at %s:%d\n",
3849 qerror->file, qerror->linenr);
3850 QDECREF(qerror);
3851 }
3852}
3853
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003854static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3855{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003856 if (monitor_ctrl_mode(mon)) {
3857 if (ret && !monitor_has_error(mon)) {
3858 /*
3859 * If it returns failure, it must have passed on error.
3860 *
3861 * Action: Report an internal error to the client if in QMP.
3862 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003863 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003864 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3865 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003866 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003867
3868#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003869 if (!ret && monitor_has_error(mon)) {
3870 /*
3871 * If it returns success, it must not have passed an error.
3872 *
3873 * Action: Report the passed error to the client.
3874 */
3875 MON_DEBUG("command '%s' returned success but passed an error\n",
3876 cmd->name);
3877 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003878
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003879 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3880 /*
3881 * Handlers should not call Monitor print functions.
3882 *
3883 * Action: Ignore them in QMP.
3884 *
3885 * (XXX: we don't check any 'info' or 'query' command here
3886 * because the user print function _is_ called by do_info(), hence
3887 * we will trigger this check. This problem will go away when we
3888 * make 'query' commands real and kill do_info())
3889 */
3890 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3891 cmd->name, mon_print_count_get(mon));
3892 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003893#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003894 } else {
3895 assert(!monitor_has_error(mon));
3896 QDECREF(mon->error);
3897 mon->error = NULL;
3898 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003899}
3900
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003901static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3902 const QDict *params)
3903{
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003904 int ret;
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003905 QObject *data = NULL;
3906
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003907 mon_print_count_init(mon);
3908
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003909 ret = cmd->mhandler.cmd_new(mon, params, &data);
3910 handler_audit(mon, cmd, ret);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003911
Luiz Capitulinod4551292010-09-15 16:56:48 -03003912 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003913 /* Monitor Protocol */
3914 monitor_protocol_emitter(mon, data);
3915 } else {
3916 /* User Protocol */
3917 if (data)
3918 cmd->user_print(mon, data);
3919 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003920
3921 qobject_decref(data);
3922}
3923
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003924static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003925{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003926 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003927 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003928
3929 qdict = qdict_new();
3930
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003931 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003932 if (!cmd)
3933 goto out;
3934
Adam Litke940cc302010-01-25 12:18:44 -06003935 if (monitor_handler_is_async(cmd)) {
3936 user_async_cmd_handler(mon, cmd, qdict);
3937 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003938 monitor_call_handler(mon, cmd, qdict);
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;
4007 if (strstart(d->d_name, file_prefix, NULL)) {
4008 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004009 if (input_path_len < sizeof(file))
4010 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4011 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004012 /* stat the file to find out if it's a directory.
4013 * In that case add a slash to speed up typing long paths
4014 */
4015 stat(file, &sb);
4016 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004017 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004018 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004019 }
4020 }
4021 closedir(ffs);
4022}
4023
aliguori51de9762009-03-05 23:00:43 +00004024static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004025{
aliguori51de9762009-03-05 23:00:43 +00004026 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004027 const char *input = opaque;
4028
4029 if (input[0] == '\0' ||
4030 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004031 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004032 }
4033}
4034
4035/* NOTE: this parser is an approximate form of the real command parser */
4036static void parse_cmdline(const char *cmdline,
4037 int *pnb_args, char **args)
4038{
4039 const char *p;
4040 int nb_args, ret;
4041 char buf[1024];
4042
4043 p = cmdline;
4044 nb_args = 0;
4045 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004046 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004047 p++;
4048 if (*p == '\0')
4049 break;
4050 if (nb_args >= MAX_ARGS)
4051 break;
4052 ret = get_str(buf, sizeof(buf), &p);
4053 args[nb_args] = qemu_strdup(buf);
4054 nb_args++;
4055 if (ret < 0)
4056 break;
4057 }
4058 *pnb_args = nb_args;
4059}
4060
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004061static const char *next_arg_type(const char *typestr)
4062{
4063 const char *p = strchr(typestr, ':');
4064 return (p != NULL ? ++p : typestr);
4065}
4066
aliguori4c36ba32009-03-05 23:01:37 +00004067static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004068{
4069 const char *cmdname;
4070 char *args[MAX_ARGS];
4071 int nb_args, i, len;
4072 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004073 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004074 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004075
4076 parse_cmdline(cmdline, &nb_args, args);
4077#ifdef DEBUG_COMPLETION
4078 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004079 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004080 }
4081#endif
4082
4083 /* if the line ends with a space, it means we want to complete the
4084 next arg */
4085 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004086 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004087 if (nb_args >= MAX_ARGS) {
4088 goto cleanup;
4089 }
bellard81d09122004-07-14 17:21:37 +00004090 args[nb_args++] = qemu_strdup("");
4091 }
4092 if (nb_args <= 1) {
4093 /* command completion */
4094 if (nb_args == 0)
4095 cmdname = "";
4096 else
4097 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004098 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004099 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004100 cmd_completion(cmdname, cmd->name);
4101 }
4102 } else {
4103 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004104 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4105 if (compare_cmd(args[0], cmd->name)) {
4106 break;
4107 }
bellard81d09122004-07-14 17:21:37 +00004108 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004109 if (!cmd->name) {
4110 goto cleanup;
4111 }
4112
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004113 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004114 for(i = 0; i < nb_args - 2; i++) {
4115 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004116 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004117 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004118 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004119 }
4120 }
4121 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004122 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004123 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004124 }
bellard81d09122004-07-14 17:21:37 +00004125 switch(*ptype) {
4126 case 'F':
4127 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004128 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004129 file_completion(str);
4130 break;
4131 case 'B':
4132 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004133 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004134 bdrv_iterate(block_completion_it, (void *)str);
4135 break;
bellard7fe48482004-10-09 18:08:01 +00004136 case 's':
4137 /* XXX: more generic ? */
4138 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004139 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004140 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4141 cmd_completion(str, cmd->name);
4142 }
bellard64866c32006-05-07 18:03:31 +00004143 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004144 char *sep = strrchr(str, '-');
4145 if (sep)
4146 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004147 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004148 for(key = key_defs; key->name != NULL; key++) {
4149 cmd_completion(str, key->name);
4150 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004151 } else if (!strcmp(cmd->name, "help|?")) {
4152 readline_set_completion_index(cur_mon->rs, strlen(str));
4153 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4154 cmd_completion(str, cmd->name);
4155 }
bellard7fe48482004-10-09 18:08:01 +00004156 }
4157 break;
bellard81d09122004-07-14 17:21:37 +00004158 default:
4159 break;
4160 }
4161 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004162
4163cleanup:
4164 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004165 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004166 }
bellard81d09122004-07-14 17:21:37 +00004167}
4168
aliguori731b0362009-03-05 23:01:42 +00004169static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004170{
aliguori731b0362009-03-05 23:01:42 +00004171 Monitor *mon = opaque;
4172
Jan Kiszkac62313b2009-12-04 14:05:29 +01004173 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004174}
4175
Luiz Capitulino09069b12010-02-04 18:10:06 -02004176static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4177{
4178 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4179 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4180}
4181
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004182/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004183 * Argument validation rules:
4184 *
4185 * 1. The argument must exist in cmd_args qdict
4186 * 2. The argument type must be the expected one
4187 *
4188 * Special case: If the argument doesn't exist in cmd_args and
4189 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4190 * checking is skipped for it.
4191 */
4192static int check_client_args_type(const QDict *client_args,
4193 const QDict *cmd_args, int flags)
4194{
4195 const QDictEntry *ent;
4196
4197 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4198 QObject *obj;
4199 QString *arg_type;
4200 const QObject *client_arg = qdict_entry_value(ent);
4201 const char *client_arg_name = qdict_entry_key(ent);
4202
4203 obj = qdict_get(cmd_args, client_arg_name);
4204 if (!obj) {
4205 if (flags & QMP_ACCEPT_UNKNOWNS) {
4206 /* handler accepts unknowns */
4207 continue;
4208 }
4209 /* client arg doesn't exist */
4210 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4211 return -1;
4212 }
4213
4214 arg_type = qobject_to_qstring(obj);
4215 assert(arg_type != NULL);
4216
4217 /* check if argument's type is correct */
4218 switch (qstring_get_str(arg_type)[0]) {
4219 case 'F':
4220 case 'B':
4221 case 's':
4222 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4223 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4224 "string");
4225 return -1;
4226 }
4227 break;
4228 case 'i':
4229 case 'l':
4230 case 'M':
4231 if (qobject_type(client_arg) != QTYPE_QINT) {
4232 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4233 "int");
4234 return -1;
4235 }
4236 break;
4237 case 'f':
4238 case 'T':
4239 if (qobject_type(client_arg) != QTYPE_QINT &&
4240 qobject_type(client_arg) != QTYPE_QFLOAT) {
4241 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4242 "number");
4243 return -1;
4244 }
4245 break;
4246 case 'b':
4247 case '-':
4248 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4249 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4250 "bool");
4251 return -1;
4252 }
4253 break;
4254 case 'O':
4255 assert(flags & QMP_ACCEPT_UNKNOWNS);
4256 break;
4257 case '/':
4258 case '.':
4259 /*
4260 * These types are not supported by QMP and thus are not
4261 * handled here. Fall through.
4262 */
4263 default:
4264 abort();
4265 }
4266 }
4267
4268 return 0;
4269}
4270
4271/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004272 * - Check if the client has passed all mandatory args
4273 * - Set special flags for argument validation
4274 */
4275static int check_mandatory_args(const QDict *cmd_args,
4276 const QDict *client_args, int *flags)
4277{
4278 const QDictEntry *ent;
4279
4280 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4281 const char *cmd_arg_name = qdict_entry_key(ent);
4282 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4283 assert(type != NULL);
4284
4285 if (qstring_get_str(type)[0] == 'O') {
4286 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4287 *flags |= QMP_ACCEPT_UNKNOWNS;
4288 } else if (qstring_get_str(type)[0] != '-' &&
4289 qstring_get_str(type)[1] != '?' &&
4290 !qdict_haskey(client_args, cmd_arg_name)) {
4291 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4292 return -1;
4293 }
4294 }
4295
4296 return 0;
4297}
4298
4299static QDict *qdict_from_args_type(const char *args_type)
4300{
4301 int i;
4302 QDict *qdict;
4303 QString *key, *type, *cur_qs;
4304
4305 assert(args_type != NULL);
4306
4307 qdict = qdict_new();
4308
4309 if (args_type == NULL || args_type[0] == '\0') {
4310 /* no args, empty qdict */
4311 goto out;
4312 }
4313
4314 key = qstring_new();
4315 type = qstring_new();
4316
4317 cur_qs = key;
4318
4319 for (i = 0;; i++) {
4320 switch (args_type[i]) {
4321 case ',':
4322 case '\0':
4323 qdict_put(qdict, qstring_get_str(key), type);
4324 QDECREF(key);
4325 if (args_type[i] == '\0') {
4326 goto out;
4327 }
4328 type = qstring_new(); /* qdict has ref */
4329 cur_qs = key = qstring_new();
4330 break;
4331 case ':':
4332 cur_qs = type;
4333 break;
4334 default:
4335 qstring_append_chr(cur_qs, args_type[i]);
4336 break;
4337 }
4338 }
4339
4340out:
4341 return qdict;
4342}
4343
4344/*
4345 * Client argument checking rules:
4346 *
4347 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004348 * 2. Each argument provided by the client must be expected
4349 * 3. Each argument provided by the client must have the type expected
4350 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004351 */
4352static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4353{
4354 int flags, err;
4355 QDict *cmd_args;
4356
4357 cmd_args = qdict_from_args_type(cmd->args_type);
4358
4359 flags = 0;
4360 err = check_mandatory_args(cmd_args, client_args, &flags);
4361 if (err) {
4362 goto out;
4363 }
4364
Luiz Capitulino4af91932010-06-22 11:44:05 -03004365 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004366
4367out:
4368 QDECREF(cmd_args);
4369 return err;
4370}
4371
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004372/*
4373 * Input object checking rules
4374 *
4375 * 1. Input object must be a dict
4376 * 2. The "execute" key must exist
4377 * 3. The "execute" key must be a string
4378 * 4. If the "arguments" key exists, it must be a dict
4379 * 5. If the "id" key exists, it can be anything (ie. json-value)
4380 * 6. Any argument not listed above is considered invalid
4381 */
4382static QDict *qmp_check_input_obj(QObject *input_obj)
4383{
4384 const QDictEntry *ent;
4385 int has_exec_key = 0;
4386 QDict *input_dict;
4387
4388 if (qobject_type(input_obj) != QTYPE_QDICT) {
4389 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4390 return NULL;
4391 }
4392
4393 input_dict = qobject_to_qdict(input_obj);
4394
4395 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4396 const char *arg_name = qdict_entry_key(ent);
4397 const QObject *arg_obj = qdict_entry_value(ent);
4398
4399 if (!strcmp(arg_name, "execute")) {
4400 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4401 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4402 "string");
4403 return NULL;
4404 }
4405 has_exec_key = 1;
4406 } else if (!strcmp(arg_name, "arguments")) {
4407 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4408 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4409 "object");
4410 return NULL;
4411 }
4412 } else if (!strcmp(arg_name, "id")) {
4413 /* FIXME: check duplicated IDs for async commands */
4414 } else {
4415 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4416 return NULL;
4417 }
4418 }
4419
4420 if (!has_exec_key) {
4421 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4422 return NULL;
4423 }
4424
4425 return input_dict;
4426}
4427
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004428static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4429{
4430 QObject *ret_data = NULL;
4431
4432 if (monitor_handler_is_async(cmd)) {
4433 qmp_async_info_handler(mon, cmd);
4434 if (monitor_has_error(mon)) {
4435 monitor_protocol_emitter(mon, NULL);
4436 }
4437 } else {
4438 cmd->mhandler.info_new(mon, &ret_data);
4439 if (ret_data) {
4440 monitor_protocol_emitter(mon, ret_data);
4441 qobject_decref(ret_data);
4442 }
4443 }
4444}
4445
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004446static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4447{
4448 int err;
4449 QObject *obj;
4450 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004451 const mon_cmd_t *cmd;
4452 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004453 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004454
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004455 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004456 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004457
4458 obj = json_parser_parse(tokens, NULL);
4459 if (!obj) {
4460 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004461 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004462 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004463 }
4464
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004465 input = qmp_check_input_obj(obj);
4466 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004467 qobject_decref(obj);
4468 goto err_out;
4469 }
4470
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004471 mon->mc->id = qdict_get(input, "id");
4472 qobject_incref(mon->mc->id);
4473
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004474 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004475 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004476 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004477 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004478 }
4479
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004480 /*
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004481 * XXX: We need this special case until QMP has its own dispatch table
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004482 */
4483 if (compare_cmd(cmd_name, "info")) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004484 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004485 goto err_out;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004486 } else if (strstart(cmd_name, "query-", &query_cmd)) {
4487 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004488 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004489 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004490 }
4491
4492 if (!cmd || !monitor_handler_ported(cmd) || monitor_cmd_user_only(cmd)) {
4493 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4494 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004495 }
4496
4497 obj = qdict_get(input, "arguments");
4498 if (!obj) {
4499 args = qdict_new();
4500 } else {
4501 args = qobject_to_qdict(obj);
4502 QINCREF(args);
4503 }
4504
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004505 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004506 if (err < 0) {
4507 goto err_out;
4508 }
4509
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004510 if (query_cmd) {
4511 qmp_call_query_cmd(mon, cmd);
4512 } else if (monitor_handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004513 err = qmp_async_cmd_handler(mon, cmd, args);
4514 if (err) {
4515 /* emit the error response */
4516 goto err_out;
4517 }
Adam Litke940cc302010-01-25 12:18:44 -06004518 } else {
4519 monitor_call_handler(mon, cmd, args);
4520 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004521
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004522 goto out;
4523
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004524err_out:
4525 monitor_protocol_emitter(mon, NULL);
4526out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004527 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004528 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004529}
4530
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004531/**
4532 * monitor_control_read(): Read and handle QMP input
4533 */
4534static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4535{
4536 Monitor *old_mon = cur_mon;
4537
4538 cur_mon = opaque;
4539
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004540 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004541
4542 cur_mon = old_mon;
4543}
4544
aliguori731b0362009-03-05 23:01:42 +00004545static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004546{
aliguori731b0362009-03-05 23:01:42 +00004547 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004548 int i;
aliguori376253e2009-03-05 23:01:23 +00004549
aliguori731b0362009-03-05 23:01:42 +00004550 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004551
aliguoricde76ee2009-03-05 23:01:51 +00004552 if (cur_mon->rs) {
4553 for (i = 0; i < size; i++)
4554 readline_handle_byte(cur_mon->rs, buf[i]);
4555 } else {
4556 if (size == 0 || buf[size - 1] != 0)
4557 monitor_printf(cur_mon, "corrupted command\n");
4558 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004559 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004560 }
aliguori731b0362009-03-05 23:01:42 +00004561
4562 cur_mon = old_mon;
4563}
aliguorid8f44602008-10-06 13:52:44 +00004564
aliguori376253e2009-03-05 23:01:23 +00004565static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004566{
aliguori731b0362009-03-05 23:01:42 +00004567 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004568 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004569 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004570}
4571
aliguoricde76ee2009-03-05 23:01:51 +00004572int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004573{
aliguoricde76ee2009-03-05 23:01:51 +00004574 if (!mon->rs)
4575 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004576 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004577 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004578}
4579
aliguori376253e2009-03-05 23:01:23 +00004580void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004581{
aliguoricde76ee2009-03-05 23:01:51 +00004582 if (!mon->rs)
4583 return;
aliguori731b0362009-03-05 23:01:42 +00004584 if (--mon->suspend_cnt == 0)
4585 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004586}
4587
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004588static QObject *get_qmp_greeting(void)
4589{
4590 QObject *ver;
4591
4592 do_info_version(NULL, &ver);
4593 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4594}
4595
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004596/**
4597 * monitor_control_event(): Print QMP gretting
4598 */
4599static void monitor_control_event(void *opaque, int event)
4600{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004601 QObject *data;
4602 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004603
Luiz Capitulino47116d12010-02-08 17:01:30 -02004604 switch (event) {
4605 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004606 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004607 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004608 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004609 monitor_json_emitter(mon, data);
4610 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004611 break;
4612 case CHR_EVENT_CLOSED:
4613 json_message_parser_destroy(&mon->mc->parser);
4614 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004615 }
4616}
4617
aliguori731b0362009-03-05 23:01:42 +00004618static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004619{
aliguori376253e2009-03-05 23:01:23 +00004620 Monitor *mon = opaque;
4621
aliguori2724b182009-03-05 23:01:47 +00004622 switch (event) {
4623 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004624 mon->mux_out = 0;
4625 if (mon->reset_seen) {
4626 readline_restart(mon->rs);
4627 monitor_resume(mon);
4628 monitor_flush(mon);
4629 } else {
4630 mon->suspend_cnt = 0;
4631 }
aliguori2724b182009-03-05 23:01:47 +00004632 break;
ths86e94de2007-01-05 22:01:59 +00004633
aliguori2724b182009-03-05 23:01:47 +00004634 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004635 if (mon->reset_seen) {
4636 if (mon->suspend_cnt == 0) {
4637 monitor_printf(mon, "\n");
4638 }
4639 monitor_flush(mon);
4640 monitor_suspend(mon);
4641 } else {
4642 mon->suspend_cnt++;
4643 }
4644 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004645 break;
4646
Amit Shahb6b8df52009-10-07 18:31:16 +05304647 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004648 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4649 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004650 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004651 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004652 }
4653 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004654 break;
4655 }
ths86e94de2007-01-05 22:01:59 +00004656}
4657
aliguori76655d62009-03-06 20:27:37 +00004658
4659/*
4660 * Local variables:
4661 * c-indent-level: 4
4662 * c-basic-offset: 4
4663 * tab-width: 8
4664 * End:
4665 */
4666
aliguori731b0362009-03-05 23:01:42 +00004667void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004668{
aliguori731b0362009-03-05 23:01:42 +00004669 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004670 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004671
4672 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004673 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004674 is_first_init = 0;
4675 }
aliguori87127162009-03-05 23:01:29 +00004676
4677 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004678
aliguori87127162009-03-05 23:01:29 +00004679 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004680 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004681 if (flags & MONITOR_USE_READLINE) {
4682 mon->rs = readline_init(mon, monitor_find_completion);
4683 monitor_read_command(mon, 0);
4684 }
aliguori87127162009-03-05 23:01:29 +00004685
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004686 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004687 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004688 /* Control mode requires special handlers */
4689 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4690 monitor_control_event, mon);
4691 } else {
4692 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4693 monitor_event, mon);
4694 }
aliguori87127162009-03-05 23:01:29 +00004695
Blue Swirl72cf2d42009-09-12 07:36:22 +00004696 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004697 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4698 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004699}
4700
aliguori376253e2009-03-05 23:01:23 +00004701static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004702{
aliguoribb5fc202009-03-05 23:01:15 +00004703 BlockDriverState *bs = opaque;
4704 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004705
aliguoribb5fc202009-03-05 23:01:15 +00004706 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004707 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004708 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004709 }
aliguori731b0362009-03-05 23:01:42 +00004710 if (mon->password_completion_cb)
4711 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004712
aliguori731b0362009-03-05 23:01:42 +00004713 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004714}
aliguoric0f4ce72009-03-05 23:01:01 +00004715
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004716int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4717 BlockDriverCompletionFunc *completion_cb,
4718 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004719{
aliguoricde76ee2009-03-05 23:01:51 +00004720 int err;
4721
aliguoribb5fc202009-03-05 23:01:15 +00004722 if (!bdrv_key_required(bs)) {
4723 if (completion_cb)
4724 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004725 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004726 }
aliguoric0f4ce72009-03-05 23:01:01 +00004727
Luiz Capitulino94171e12009-12-07 21:37:00 +01004728 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004729 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004730 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004731 }
4732
aliguori376253e2009-03-05 23:01:23 +00004733 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4734 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004735
aliguori731b0362009-03-05 23:01:42 +00004736 mon->password_completion_cb = completion_cb;
4737 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004738
aliguoricde76ee2009-03-05 23:01:51 +00004739 err = monitor_read_password(mon, bdrv_password_cb, bs);
4740
4741 if (err && completion_cb)
4742 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004743
4744 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004745}