blob: d8a31242b640266ea510cc47d28092ae94b4e475 [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"
41#include "block.h"
42#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 Capitulinof7188bb2009-08-28 15:27:10 -030052#include "qdict.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020053#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030054#include "qstring.h"
Luiz Capitulino8204a912009-11-18 23:05:31 -020055#include "qerror.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020056#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020057#include "json-streamer.h"
58#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000059#include "osdep.h"
ths6a5bd302007-12-03 17:05:38 +000060
bellard9dc39cb2004-03-14 21:38:27 +000061//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000062//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000063
bellard9307c4c2004-04-04 12:57:25 +000064/*
65 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000066 *
bellard9307c4c2004-04-04 12:57:25 +000067 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000068 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000069 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000070 * 'i' 32 bit integer
71 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010072 * 'M' just like 'l', except in user mode the value is
73 * multiplied by 2^20 (think Mebibyte)
Markus Armbruster3350a4d2010-01-25 14:23:03 +010074 * 'b' double
75 * user mode accepts an optional G, g, M, m, K, k suffix,
76 * which multiplies the value by 2^30 for suffixes G and
77 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010078 * 'T' double
79 * user mode accepts an optional ms, us, ns suffix,
80 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000081 * '/' optional gdb-like print format (like "/10x")
82 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030083 * '?' optional type (for all types, except '/')
84 * '.' other form of optional type (for 'i' and 'l')
85 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000086 *
87 */
88
Adam Litke940cc302010-01-25 12:18:44 -060089typedef struct MonitorCompletionData MonitorCompletionData;
90struct MonitorCompletionData {
91 Monitor *mon;
92 void (*user_print)(Monitor *mon, const QObject *data);
93};
94
Anthony Liguoric227f092009-10-01 16:12:16 -050095typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000096 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000097 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +000098 const char *params;
99 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300100 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300101 union {
102 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300103 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600104 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300105 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200106 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600107 int (*cmd_async)(Monitor *mon, const QDict *params,
108 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300109 } mhandler;
Adam Litke940cc302010-01-25 12:18:44 -0600110 int async;
Anthony Liguoric227f092009-10-01 16:12:16 -0500111} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000112
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100113/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500114typedef struct mon_fd_t mon_fd_t;
115struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100116 char *name;
117 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500118 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100119};
120
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200121typedef struct MonitorControl {
122 QObject *id;
123 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200124 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200125} MonitorControl;
126
aliguori87127162009-03-05 23:01:29 +0000127struct Monitor {
128 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200129 int mux_out;
130 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000131 int flags;
132 int suspend_cnt;
133 uint8_t outbuf[1024];
134 int outbuf_index;
135 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200136 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000137 CPUState *mon_cpu;
138 BlockDriverCompletionFunc *password_completion_cb;
139 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200140#ifdef CONFIG_DEBUG_MONITOR
141 int print_calls_nr;
142#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200143 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500144 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000145 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000146};
147
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200148#ifdef CONFIG_DEBUG_MONITOR
149#define MON_DEBUG(fmt, ...) do { \
150 fprintf(stderr, "Monitor: "); \
151 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200152
153static inline void mon_print_count_inc(Monitor *mon)
154{
155 mon->print_calls_nr++;
156}
157
158static inline void mon_print_count_init(Monitor *mon)
159{
160 mon->print_calls_nr = 0;
161}
162
163static inline int mon_print_count_get(const Monitor *mon)
164{
165 return mon->print_calls_nr;
166}
167
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200168#else /* !CONFIG_DEBUG_MONITOR */
169#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200170static inline void mon_print_count_inc(Monitor *mon) { }
171static inline void mon_print_count_init(Monitor *mon) { }
172static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200173#endif /* CONFIG_DEBUG_MONITOR */
174
Blue Swirl72cf2d42009-09-12 07:36:22 +0000175static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000176
Anthony Liguoric227f092009-10-01 16:12:16 -0500177static const mon_cmd_t mon_cmds[];
178static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000179
Markus Armbruster8631b602010-02-18 11:41:55 +0100180Monitor *cur_mon;
181Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000182
aliguori731b0362009-03-05 23:01:42 +0000183static void monitor_command_cb(Monitor *mon, const char *cmdline,
184 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000185
Luiz Capitulino09069b12010-02-04 18:10:06 -0200186static inline int qmp_cmd_mode(const Monitor *mon)
187{
188 return (mon->mc ? mon->mc->command_mode : 0);
189}
190
Luiz Capitulino418173c2009-11-26 22:58:51 -0200191/* Return true if in control mode, false otherwise */
192static inline int monitor_ctrl_mode(const Monitor *mon)
193{
194 return (mon->flags & MONITOR_USE_CONTROL);
195}
196
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100197/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
198int monitor_cur_is_qmp(void)
199{
200 return cur_mon && monitor_ctrl_mode(cur_mon);
201}
202
aliguori731b0362009-03-05 23:01:42 +0000203static void monitor_read_command(Monitor *mon, int show_prompt)
204{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200205 if (!mon->rs)
206 return;
207
aliguori731b0362009-03-05 23:01:42 +0000208 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
209 if (show_prompt)
210 readline_show_prompt(mon->rs);
211}
bellard6a00d602005-11-21 23:25:50 +0000212
aliguoricde76ee2009-03-05 23:01:51 +0000213static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
214 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000215{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100216 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100217 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100218 return -EINVAL;
219 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000220 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
221 /* prompt is printed on return from the command handler */
222 return 0;
223 } else {
224 monitor_printf(mon, "terminal does not support password prompting\n");
225 return -ENOTTY;
226 }
aliguoribb5fc202009-03-05 23:01:15 +0000227}
228
aliguori376253e2009-03-05 23:01:23 +0000229void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000230{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200231 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000232 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
233 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000234 }
235}
236
237/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000238static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000239{
ths60fe76f2007-12-16 03:02:09 +0000240 char c;
aliguori731b0362009-03-05 23:01:42 +0000241
bellard7e2515e2004-08-01 21:52:19 +0000242 for(;;) {
243 c = *str++;
244 if (c == '\0')
245 break;
bellard7ba12602006-07-14 20:26:42 +0000246 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000247 mon->outbuf[mon->outbuf_index++] = '\r';
248 mon->outbuf[mon->outbuf_index++] = c;
249 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
250 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000251 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000252 }
253}
254
aliguori376253e2009-03-05 23:01:23 +0000255void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000256{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200257 char buf[4096];
258
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200259 if (!mon)
260 return;
261
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200262 mon_print_count_inc(mon);
263
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200264 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200265 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200266 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200267
268 vsnprintf(buf, sizeof(buf), fmt, ap);
269 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000270}
271
aliguori376253e2009-03-05 23:01:23 +0000272void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000273{
274 va_list ap;
275 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000276 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000277 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000278}
279
aliguori376253e2009-03-05 23:01:23 +0000280void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000281{
282 int i;
283
284 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000285 switch (filename[i]) {
286 case ' ':
287 case '"':
288 case '\\':
289 monitor_printf(mon, "\\%c", filename[i]);
290 break;
291 case '\t':
292 monitor_printf(mon, "\\t");
293 break;
294 case '\r':
295 monitor_printf(mon, "\\r");
296 break;
297 case '\n':
298 monitor_printf(mon, "\\n");
299 break;
300 default:
301 monitor_printf(mon, "%c", filename[i]);
302 break;
303 }
thsfef30742006-12-22 14:11:32 +0000304 }
305}
306
bellard7fe48482004-10-09 18:08:01 +0000307static int monitor_fprintf(FILE *stream, const char *fmt, ...)
308{
309 va_list ap;
310 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000311 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000312 va_end(ap);
313 return 0;
314}
315
Luiz Capitulino13c74252009-10-07 13:41:55 -0300316static void monitor_user_noop(Monitor *mon, const QObject *data) { }
317
Luiz Capitulino13917be2009-10-07 13:41:54 -0300318static inline int monitor_handler_ported(const mon_cmd_t *cmd)
319{
320 return cmd->user_print != NULL;
321}
322
Adam Litke940cc302010-01-25 12:18:44 -0600323static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
324{
325 return cmd->async != 0;
326}
327
Luiz Capitulino8204a912009-11-18 23:05:31 -0200328static inline int monitor_has_error(const Monitor *mon)
329{
330 return mon->error != NULL;
331}
332
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200333static void monitor_json_emitter(Monitor *mon, const QObject *data)
334{
335 QString *json;
336
337 json = qobject_to_json(data);
338 assert(json != NULL);
339
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200340 qstring_append_chr(json, '\n');
341 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200342
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200343 QDECREF(json);
344}
345
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200346static void monitor_protocol_emitter(Monitor *mon, QObject *data)
347{
348 QDict *qmp;
349
350 qmp = qdict_new();
351
352 if (!monitor_has_error(mon)) {
353 /* success response */
354 if (data) {
355 qobject_incref(data);
356 qdict_put_obj(qmp, "return", data);
357 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200358 /* return an empty QDict by default */
359 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200360 }
361 } else {
362 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100363 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200364 qdict_put(qmp, "error", mon->error->error);
365 QINCREF(mon->error->error);
366 QDECREF(mon->error);
367 mon->error = NULL;
368 }
369
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200370 if (mon->mc->id) {
371 qdict_put_obj(qmp, "id", mon->mc->id);
372 mon->mc->id = NULL;
373 }
374
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200375 monitor_json_emitter(mon, QOBJECT(qmp));
376 QDECREF(qmp);
377}
378
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200379static void timestamp_put(QDict *qdict)
380{
381 int err;
382 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000383 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200384
Blue Swirld08d6f02009-12-04 18:06:39 +0000385 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200386 if (err < 0)
387 return;
388
389 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
390 "'microseconds': %" PRId64 " }",
391 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200392 qdict_put_obj(qdict, "timestamp", obj);
393}
394
395/**
396 * monitor_protocol_event(): Generate a Monitor event
397 *
398 * Event-specific data can be emitted through the (optional) 'data' parameter.
399 */
400void monitor_protocol_event(MonitorEvent event, QObject *data)
401{
402 QDict *qmp;
403 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600404 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200405
Blue Swirl242cd002009-12-04 18:05:45 +0000406 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200407
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200408 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000409 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200410 event_name = "SHUTDOWN";
411 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000412 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200413 event_name = "RESET";
414 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000415 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200416 event_name = "POWERDOWN";
417 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000418 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200419 event_name = "STOP";
420 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200421 case QEVENT_VNC_CONNECTED:
422 event_name = "VNC_CONNECTED";
423 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200424 case QEVENT_VNC_INITIALIZED:
425 event_name = "VNC_INITIALIZED";
426 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200427 case QEVENT_VNC_DISCONNECTED:
428 event_name = "VNC_DISCONNECTED";
429 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200430 case QEVENT_BLOCK_IO_ERROR:
431 event_name = "BLOCK_IO_ERROR";
432 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300433 case QEVENT_RTC_CHANGE:
434 event_name = "RTC_CHANGE";
435 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300436 case QEVENT_WATCHDOG:
437 event_name = "WATCHDOG";
438 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200439 default:
440 abort();
441 break;
442 }
443
444 qmp = qdict_new();
445 timestamp_put(qmp);
446 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200447 if (data) {
448 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200449 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200450 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200451
Adam Litkef039a562010-01-15 08:34:02 -0600452 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200453 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200454 monitor_json_emitter(mon, QOBJECT(qmp));
455 }
Adam Litkef039a562010-01-15 08:34:02 -0600456 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200457 QDECREF(qmp);
458}
459
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200460static int do_qmp_capabilities(Monitor *mon, const QDict *params,
461 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200462{
463 /* Will setup QMP capabilities in the future */
464 if (monitor_ctrl_mode(mon)) {
465 mon->mc->command_mode = 1;
466 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200467
468 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200469}
470
bellard9dc39cb2004-03-14 21:38:27 +0000471static int compare_cmd(const char *name, const char *list)
472{
473 const char *p, *pstart;
474 int len;
475 len = strlen(name);
476 p = list;
477 for(;;) {
478 pstart = p;
479 p = strchr(p, '|');
480 if (!p)
481 p = pstart + strlen(pstart);
482 if ((p - pstart) == len && !memcmp(pstart, name, len))
483 return 1;
484 if (*p == '\0')
485 break;
486 p++;
487 }
488 return 0;
489}
490
Anthony Liguoric227f092009-10-01 16:12:16 -0500491static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000492 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000493{
Anthony Liguoric227f092009-10-01 16:12:16 -0500494 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000495
496 for(cmd = cmds; cmd->name != NULL; cmd++) {
497 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000498 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
499 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000500 }
501}
502
aliguori376253e2009-03-05 23:01:23 +0000503static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000504{
505 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000506 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000507 } else {
aliguori376253e2009-03-05 23:01:23 +0000508 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000509 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000510 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000511 monitor_printf(mon, "Log items (comma separated):\n");
512 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000513 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000514 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000515 }
516 }
bellard9dc39cb2004-03-14 21:38:27 +0000517 }
518}
519
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300520static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300521{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300522 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300523}
524
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300525static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000526{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200527 int all_devices;
528 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300529 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000530
bellard7954c732006-08-01 15:52:40 +0000531 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000532 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200533 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300534 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200535 continue;
536 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000537 }
538}
539
Adam Litke940cc302010-01-25 12:18:44 -0600540static void user_monitor_complete(void *opaque, QObject *ret_data)
541{
542 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
543
544 if (ret_data) {
545 data->user_print(data->mon, ret_data);
546 }
547 monitor_resume(data->mon);
548 qemu_free(data);
549}
550
551static void qmp_monitor_complete(void *opaque, QObject *ret_data)
552{
553 monitor_protocol_emitter(opaque, ret_data);
554}
555
556static void qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
557 const QDict *params)
558{
559 cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
560}
561
562static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
563{
564 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
565}
566
567static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
568 const QDict *params)
569{
570 int ret;
571
572 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
573 cb_data->mon = mon;
574 cb_data->user_print = cmd->user_print;
575 monitor_suspend(mon);
576 ret = cmd->mhandler.cmd_async(mon, params,
577 user_monitor_complete, cb_data);
578 if (ret < 0) {
579 monitor_resume(mon);
580 qemu_free(cb_data);
581 }
582}
583
584static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
585{
586 int ret;
587
588 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
589 cb_data->mon = mon;
590 cb_data->user_print = cmd->user_print;
591 monitor_suspend(mon);
592 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
593 if (ret < 0) {
594 monitor_resume(mon);
595 qemu_free(cb_data);
596 }
597}
598
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200599static int do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000600{
Anthony Liguoric227f092009-10-01 16:12:16 -0500601 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300602 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000603
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200604 if (!item) {
605 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000606 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200607 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300608
609 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000610 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300611 break;
bellard9dc39cb2004-03-14 21:38:27 +0000612 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300613
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200614 if (cmd->name == NULL) {
615 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100616 qerror_report(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200617 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200618 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300619 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200620 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300621
Adam Litke940cc302010-01-25 12:18:44 -0600622 if (monitor_handler_is_async(cmd)) {
623 if (monitor_ctrl_mode(mon)) {
624 qmp_async_info_handler(mon, cmd);
625 } else {
626 user_async_info_handler(mon, cmd);
627 }
628 /*
629 * Indicate that this command is asynchronous and will not return any
630 * data (not even empty). Instead, the data will be returned via a
631 * completion callback.
632 */
633 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
634 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300635 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200636
637 if (!monitor_ctrl_mode(mon)) {
638 /*
639 * User Protocol function is called here, Monitor Protocol is
640 * handled by monitor_call_handler()
641 */
642 if (*ret_data)
643 cmd->user_print(mon, *ret_data);
644 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300645 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200646 if (monitor_ctrl_mode(mon)) {
647 /* handler not converted yet */
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100648 qerror_report(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200649 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200650 } else {
651 cmd->mhandler.info(mon);
652 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300653 }
654
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200655 return 0;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300656
657help:
658 help_cmd(mon, "info");
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200659 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000660}
661
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200662static void do_info_version_print(Monitor *mon, const QObject *data)
663{
664 QDict *qdict;
665
666 qdict = qobject_to_qdict(data);
667
668 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
669 qdict_get_str(qdict, "package"));
670}
671
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300672/**
673 * do_info_version(): Show QEMU version
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200674 *
675 * Return a QDict with the following information:
676 *
677 * - "qemu": QEMU's version
678 * - "package": package's version
679 *
680 * Example:
681 *
682 * { "qemu": "0.11.50", "package": "" }
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300683 */
684static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000685{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200686 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
687 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000688}
689
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200690static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000691{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200692 QDict *qdict;
693
694 qdict = qobject_to_qdict(data);
695 if (qdict_size(qdict) == 0) {
696 return;
697 }
698
699 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
700}
701
702/**
703 * do_info_name(): Show VM name
704 *
705 * Return a QDict with the following information:
706 *
707 * - "name": VM's name (optional)
708 *
709 * Example:
710 *
711 * { "name": "qemu-name" }
712 */
713static void do_info_name(Monitor *mon, QObject **ret_data)
714{
715 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
716 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000717}
718
Luiz Capitulino1a728672009-12-10 17:15:56 -0200719static QObject *get_cmd_dict(const char *name)
720{
721 const char *p;
722
723 /* Remove '|' from some commands */
724 p = strchr(name, '|');
725 if (p) {
726 p++;
727 } else {
728 p = name;
729 }
730
731 return qobject_from_jsonf("{ 'name': %s }", p);
732}
733
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200734/**
735 * do_info_commands(): List QMP available commands
736 *
Luiz Capitulino1a728672009-12-10 17:15:56 -0200737 * Each command is represented by a QDict, the returned QObject is a QList
738 * of all commands.
739 *
740 * The QDict contains:
741 *
742 * - "name": command's name
743 *
744 * Example:
745 *
746 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200747 */
748static void do_info_commands(Monitor *mon, QObject **ret_data)
749{
750 QList *cmd_list;
751 const mon_cmd_t *cmd;
752
753 cmd_list = qlist_new();
754
755 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
756 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200757 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200758 }
759 }
760
761 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
762 if (monitor_handler_ported(cmd)) {
763 char buf[128];
764 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200765 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200766 }
767 }
768
769 *ret_data = QOBJECT(cmd_list);
770}
771
aurel32bf4f74c2008-12-18 22:42:34 +0000772#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200773static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000774{
aliguori376253e2009-03-05 23:01:23 +0000775 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200776 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
777 "enabled" : "disabled");
778}
779
780/**
781 * do_info_hpet(): Show HPET state
782 *
783 * Return a QDict with the following information:
784 *
785 * - "enabled": true if hpet if enabled, false otherwise
786 *
787 * Example:
788 *
789 * { "enabled": true }
790 */
791static void do_info_hpet(Monitor *mon, QObject **ret_data)
792{
793 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000794}
aurel32bf4f74c2008-12-18 22:42:34 +0000795#endif
aliguori16b29ae2008-12-17 23:28:44 +0000796
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200797static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000798{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200799 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
800}
801
802/**
803 * do_info_uuid(): Show VM UUID
804 *
805 * Return a QDict with the following information:
806 *
807 * - "UUID": Universally Unique Identifier
808 *
809 * Example:
810 *
811 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
812 */
813static void do_info_uuid(Monitor *mon, QObject **ret_data)
814{
815 char uuid[64];
816
817 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000818 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
819 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
820 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
821 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200822 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000823}
824
bellard6a00d602005-11-21 23:25:50 +0000825/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000826static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000827{
828 CPUState *env;
829
830 for(env = first_cpu; env != NULL; env = env->next_cpu) {
831 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000832 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000833 return 0;
834 }
835 }
836 return -1;
837}
838
pbrook9596ebb2007-11-18 01:44:38 +0000839static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000840{
aliguori731b0362009-03-05 23:01:42 +0000841 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000842 mon_set_cpu(0);
843 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300844 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000845 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000846}
847
aliguori376253e2009-03-05 23:01:23 +0000848static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000849{
bellard6a00d602005-11-21 23:25:50 +0000850 CPUState *env;
851 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000852#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000853 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000854 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000855#else
aliguori376253e2009-03-05 23:01:23 +0000856 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000857 0);
bellard9307c4c2004-04-04 12:57:25 +0000858#endif
859}
860
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300861static void print_cpu_iter(QObject *obj, void *opaque)
862{
863 QDict *cpu;
864 int active = ' ';
865 Monitor *mon = opaque;
866
867 assert(qobject_type(obj) == QTYPE_QDICT);
868 cpu = qobject_to_qdict(obj);
869
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200870 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300871 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200872 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300873
874 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
875
876#if defined(TARGET_I386)
877 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
878 (target_ulong) qdict_get_int(cpu, "pc"));
879#elif defined(TARGET_PPC)
880 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
881 (target_long) qdict_get_int(cpu, "nip"));
882#elif defined(TARGET_SPARC)
883 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
884 (target_long) qdict_get_int(cpu, "pc"));
885 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
886 (target_long) qdict_get_int(cpu, "npc"));
887#elif defined(TARGET_MIPS)
888 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
889 (target_long) qdict_get_int(cpu, "PC"));
890#endif
891
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200892 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300893 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200894 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300895
896 monitor_printf(mon, "\n");
897}
898
899static void monitor_print_cpus(Monitor *mon, const QObject *data)
900{
901 QList *cpu_list;
902
903 assert(qobject_type(data) == QTYPE_QLIST);
904 cpu_list = qobject_to_qlist(data);
905 qlist_iter(cpu_list, print_cpu_iter, mon);
906}
907
908/**
909 * do_info_cpus(): Show CPU information
910 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200911 * Return a QList. Each CPU is represented by a QDict, which contains:
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300912 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200913 * - "cpu": CPU index
914 * - "current": true if this is the current CPU, false otherwise
915 * - "halted": true if the cpu is halted, false otherwise
916 * - Current program counter. The key's name depends on the architecture:
917 * "pc": i386/x86)64
918 * "nip": PPC
919 * "pc" and "npc": sparc
920 * "PC": mips
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300921 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200922 * Example:
923 *
924 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
925 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300926 */
927static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000928{
929 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300930 QList *cpu_list;
931
932 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000933
934 /* just to set the default cpu if not already done */
935 mon_get_cpu();
936
937 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200938 QDict *cpu;
939 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300940
Avi Kivity4c0960c2009-08-17 23:19:53 +0300941 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300942
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200943 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
944 env->cpu_index, env == mon->mon_cpu,
945 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200946
947 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300948
bellard6a00d602005-11-21 23:25:50 +0000949#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300950 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000951#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300952 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000953#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300954 qdict_put(cpu, "pc", qint_from_int(env->pc));
955 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000956#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300957 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000958#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300959
960 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000961 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300962
963 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000964}
965
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200966static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000967{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300968 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200969 if (mon_set_cpu(index) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100970 qerror_report(QERR_INVALID_PARAMETER, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200971 return -1;
972 }
973 return 0;
bellard6a00d602005-11-21 23:25:50 +0000974}
975
aliguori376253e2009-03-05 23:01:23 +0000976static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000977{
aliguori376253e2009-03-05 23:01:23 +0000978 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000979}
980
aliguori376253e2009-03-05 23:01:23 +0000981static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000982{
983 int i;
bellard7e2515e2004-08-01 21:52:19 +0000984 const char *str;
ths3b46e622007-09-17 08:09:54 +0000985
aliguoricde76ee2009-03-05 23:01:51 +0000986 if (!mon->rs)
987 return;
bellard7e2515e2004-08-01 21:52:19 +0000988 i = 0;
989 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000990 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000991 if (!str)
992 break;
aliguori376253e2009-03-05 23:01:23 +0000993 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000994 i++;
bellardaa455482004-04-04 13:07:25 +0000995 }
996}
997
j_mayer76a66252007-03-07 08:32:30 +0000998#if defined(TARGET_PPC)
999/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +00001000static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +00001001{
1002 CPUState *env;
1003
1004 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +00001005 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +00001006}
1007#endif
1008
Luiz Capitulinob223f352009-10-07 13:41:56 -03001009/**
1010 * do_quit(): Quit QEMU execution
1011 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001012static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +00001013{
1014 exit(0);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001015 return 0;
bellard9dc39cb2004-03-14 21:38:27 +00001016}
1017
aliguori376253e2009-03-05 23:01:23 +00001018static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +00001019{
1020 if (bdrv_is_inserted(bs)) {
1021 if (!force) {
1022 if (!bdrv_is_removable(bs)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001023 qerror_report(QERR_DEVICE_NOT_REMOVABLE,
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +01001024 bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +00001025 return -1;
1026 }
1027 if (bdrv_is_locked(bs)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001028 qerror_report(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +00001029 return -1;
1030 }
1031 }
1032 bdrv_close(bs);
1033 }
1034 return 0;
1035}
1036
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -02001037static int do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +00001038{
1039 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001040 int force = qdict_get_int(qdict, "force");
Luiz Capitulino78d714e2009-12-14 18:53:21 -02001041 const char *filename = qdict_get_str(qdict, "device");
bellard9dc39cb2004-03-14 21:38:27 +00001042
bellard9307c4c2004-04-04 12:57:25 +00001043 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +00001044 if (!bs) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001045 qerror_report(QERR_DEVICE_NOT_FOUND, filename);
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -02001046 return -1;
bellard9dc39cb2004-03-14 21:38:27 +00001047 }
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -02001048 return eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +00001049}
1050
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001051static int do_block_set_passwd(Monitor *mon, const QDict *qdict,
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001052 QObject **ret_data)
1053{
1054 BlockDriverState *bs;
1055
1056 bs = bdrv_find(qdict_get_str(qdict, "device"));
1057 if (!bs) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001058 qerror_report(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001059 return -1;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001060 }
1061
1062 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001063 qerror_report(QERR_INVALID_PASSWORD);
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001064 return -1;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001065 }
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001066
1067 return 0;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001068}
1069
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001070static int do_change_block(Monitor *mon, const char *device,
1071 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001072{
1073 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +00001074 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +00001075
bellard9307c4c2004-04-04 12:57:25 +00001076 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +00001077 if (!bs) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001078 qerror_report(QERR_DEVICE_NOT_FOUND, device);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001079 return -1;
bellard9dc39cb2004-03-14 21:38:27 +00001080 }
aurel322ecea9b2008-06-18 22:10:01 +00001081 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +01001082 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +00001083 if (!drv) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001084 qerror_report(QERR_INVALID_BLOCK_FORMAT, fmt);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001085 return -1;
aurel322ecea9b2008-06-18 22:10:01 +00001086 }
1087 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001088 if (eject_device(mon, bs, 0) < 0) {
1089 return -1;
1090 }
1091 if (bdrv_open2(bs, filename, BDRV_O_RDWR, drv) < 0) {
1092 return -1;
1093 }
1094 return monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001095}
1096
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001097static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001098{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001099 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001100 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001101 return -1;
1102 }
aliguoribb5fc202009-03-05 23:01:15 +00001103
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001104 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +01001105}
1106
1107static void change_vnc_password_cb(Monitor *mon, const char *password,
1108 void *opaque)
1109{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001110 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001111 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001112}
1113
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001114static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001115{
ths70848512007-08-25 01:37:05 +00001116 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001117 strcmp(target, "password") == 0) {
1118 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001119 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001120 strncpy(password, arg, sizeof(password));
1121 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001122 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001123 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001124 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001125 }
ths70848512007-08-25 01:37:05 +00001126 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001127 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001128 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001129 return -1;
1130 }
ths70848512007-08-25 01:37:05 +00001131 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001132
1133 return 0;
thse25a5822007-08-25 01:36:20 +00001134}
1135
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001136/**
1137 * do_change(): Change a removable medium, or VNC configuration
1138 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001139static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001140{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001141 const char *device = qdict_get_str(qdict, "device");
1142 const char *target = qdict_get_str(qdict, "target");
1143 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001144 int ret;
1145
thse25a5822007-08-25 01:36:20 +00001146 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001147 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001148 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001149 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001150 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001151
1152 return ret;
thse25a5822007-08-25 01:36:20 +00001153}
1154
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001155static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +00001156{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001157 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +00001158}
1159
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001160static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001161{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001162 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001163}
1164
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001165static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001166{
1167 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001168 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001169
bellard9307c4c2004-04-04 12:57:25 +00001170 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001171 mask = 0;
1172 } else {
bellard9307c4c2004-04-04 12:57:25 +00001173 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001174 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001175 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001176 return;
1177 }
1178 }
1179 cpu_set_log(mask);
1180}
1181
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001182static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001183{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001184 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001185 if (!option || !strcmp(option, "on")) {
1186 singlestep = 1;
1187 } else if (!strcmp(option, "off")) {
1188 singlestep = 0;
1189 } else {
1190 monitor_printf(mon, "unexpected option %s\n", option);
1191 }
1192}
1193
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001194/**
1195 * do_stop(): Stop VM execution
1196 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001197static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001198{
1199 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001200 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001201}
1202
aliguoribb5fc202009-03-05 23:01:15 +00001203static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001204
aliguori376253e2009-03-05 23:01:23 +00001205struct bdrv_iterate_context {
1206 Monitor *mon;
1207 int err;
1208};
aliguoric0f4ce72009-03-05 23:01:01 +00001209
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001210/**
1211 * do_cont(): Resume emulation.
1212 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001213static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001214{
1215 struct bdrv_iterate_context context = { mon, 0 };
1216
1217 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001218 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001219 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001220 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001221 return 0;
1222 } else {
1223 return -1;
1224 }
bellard8a7ddc32004-03-31 19:00:16 +00001225}
1226
aliguoribb5fc202009-03-05 23:01:15 +00001227static void bdrv_key_cb(void *opaque, int err)
1228{
aliguori376253e2009-03-05 23:01:23 +00001229 Monitor *mon = opaque;
1230
aliguoribb5fc202009-03-05 23:01:15 +00001231 /* another key was set successfully, retry to continue */
1232 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001233 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001234}
1235
1236static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1237{
aliguori376253e2009-03-05 23:01:23 +00001238 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001239
aliguori376253e2009-03-05 23:01:23 +00001240 if (!context->err && bdrv_key_required(bs)) {
1241 context->err = -EBUSY;
1242 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1243 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001244 }
1245}
1246
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001247static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001248{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001249 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001250 if (!device)
1251 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1252 if (gdbserver_start(device) < 0) {
1253 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1254 device);
1255 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001256 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001257 } else {
aliguori59030a82009-04-05 18:43:41 +00001258 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1259 device);
bellard8a7ddc32004-03-31 19:00:16 +00001260 }
1261}
1262
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001263static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001264{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001265 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001266 if (select_watchdog_action(action) == -1) {
1267 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1268 }
1269}
1270
aliguori376253e2009-03-05 23:01:23 +00001271static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001272{
aliguori376253e2009-03-05 23:01:23 +00001273 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001274 switch(c) {
1275 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001276 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001277 break;
1278 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001279 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001280 break;
1281 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001282 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001283 break;
1284 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001285 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001286 break;
1287 default:
1288 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001289 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001290 } else {
aliguori376253e2009-03-05 23:01:23 +00001291 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001292 }
1293 break;
1294 }
aliguori376253e2009-03-05 23:01:23 +00001295 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001296}
1297
aliguori376253e2009-03-05 23:01:23 +00001298static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001299 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001300{
bellard6a00d602005-11-21 23:25:50 +00001301 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001302 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001303 uint8_t buf[16];
1304 uint64_t v;
1305
1306 if (format == 'i') {
1307 int flags;
1308 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001309 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001310#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001311 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001312 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001313 } else if (wsize == 4) {
1314 flags = 0;
1315 } else {
bellard6a15fd12006-04-12 21:07:07 +00001316 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001317 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001318 if (env) {
1319#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001320 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001321 (env->segs[R_CS].flags & DESC_L_MASK))
1322 flags = 2;
1323 else
1324#endif
1325 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1326 flags = 1;
1327 }
bellard4c27ba22004-04-25 18:05:08 +00001328 }
1329#endif
aliguori376253e2009-03-05 23:01:23 +00001330 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001331 return;
1332 }
1333
1334 len = wsize * count;
1335 if (wsize == 1)
1336 line_size = 8;
1337 else
1338 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001339 max_digits = 0;
1340
1341 switch(format) {
1342 case 'o':
1343 max_digits = (wsize * 8 + 2) / 3;
1344 break;
1345 default:
1346 case 'x':
1347 max_digits = (wsize * 8) / 4;
1348 break;
1349 case 'u':
1350 case 'd':
1351 max_digits = (wsize * 8 * 10 + 32) / 33;
1352 break;
1353 case 'c':
1354 wsize = 1;
1355 break;
1356 }
1357
1358 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001359 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001360 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001361 else
aliguori376253e2009-03-05 23:01:23 +00001362 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001363 l = len;
1364 if (l > line_size)
1365 l = line_size;
1366 if (is_physical) {
1367 cpu_physical_memory_rw(addr, buf, l, 0);
1368 } else {
bellard6a00d602005-11-21 23:25:50 +00001369 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001370 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001371 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001372 break;
1373 }
bellard9307c4c2004-04-04 12:57:25 +00001374 }
ths5fafdf22007-09-16 21:08:06 +00001375 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001376 while (i < l) {
1377 switch(wsize) {
1378 default:
1379 case 1:
1380 v = ldub_raw(buf + i);
1381 break;
1382 case 2:
1383 v = lduw_raw(buf + i);
1384 break;
1385 case 4:
bellard92a31b12005-02-10 22:00:52 +00001386 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001387 break;
1388 case 8:
1389 v = ldq_raw(buf + i);
1390 break;
1391 }
aliguori376253e2009-03-05 23:01:23 +00001392 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001393 switch(format) {
1394 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001395 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001396 break;
1397 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001398 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001399 break;
1400 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001401 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001402 break;
1403 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001404 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001405 break;
1406 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001407 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001408 break;
1409 }
1410 i += wsize;
1411 }
aliguori376253e2009-03-05 23:01:23 +00001412 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001413 addr += l;
1414 len -= l;
1415 }
1416}
1417
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001418static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001419{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001420 int count = qdict_get_int(qdict, "count");
1421 int format = qdict_get_int(qdict, "format");
1422 int size = qdict_get_int(qdict, "size");
1423 target_long addr = qdict_get_int(qdict, "addr");
1424
aliguori376253e2009-03-05 23:01:23 +00001425 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001426}
1427
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001428static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001429{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001430 int count = qdict_get_int(qdict, "count");
1431 int format = qdict_get_int(qdict, "format");
1432 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001433 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001434
aliguori376253e2009-03-05 23:01:23 +00001435 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001436}
1437
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001438static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001439{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001440 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001441 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001442
blueswir17743e582007-09-24 18:39:04 +00001443#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001444 switch(format) {
1445 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001446 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001447 break;
1448 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001449 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001450 break;
1451 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001452 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001453 break;
1454 default:
1455 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001456 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001457 break;
1458 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001459 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001460 break;
1461 }
bellard92a31b12005-02-10 22:00:52 +00001462#else
1463 switch(format) {
1464 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001465 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001466 break;
1467 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001468 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001469 break;
1470 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001471 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001472 break;
1473 default:
1474 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001475 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001476 break;
1477 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001478 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001479 break;
1480 }
1481#endif
aliguori376253e2009-03-05 23:01:23 +00001482 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001483}
1484
Luiz Capitulino98696222010-02-10 23:49:58 -02001485static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001486{
1487 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001488 uint32_t size = qdict_get_int(qdict, "size");
1489 const char *filename = qdict_get_str(qdict, "filename");
1490 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001491 uint32_t l;
1492 CPUState *env;
1493 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001494 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001495
1496 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001497
1498 f = fopen(filename, "wb");
1499 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001500 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001501 return -1;
bellardb371dc52007-01-03 15:20:39 +00001502 }
1503 while (size != 0) {
1504 l = sizeof(buf);
1505 if (l > size)
1506 l = size;
1507 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001508 if (fwrite(buf, 1, l, f) != l) {
1509 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1510 goto exit;
1511 }
bellardb371dc52007-01-03 15:20:39 +00001512 addr += l;
1513 size -= l;
1514 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001515
1516 ret = 0;
1517
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001518exit:
bellardb371dc52007-01-03 15:20:39 +00001519 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001520 return ret;
bellardb371dc52007-01-03 15:20:39 +00001521}
1522
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001523static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001524 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001525{
1526 FILE *f;
1527 uint32_t l;
1528 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001529 uint32_t size = qdict_get_int(qdict, "size");
1530 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001531 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001532 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001533
1534 f = fopen(filename, "wb");
1535 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001536 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001537 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001538 }
1539 while (size != 0) {
1540 l = sizeof(buf);
1541 if (l > size)
1542 l = size;
1543 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001544 if (fwrite(buf, 1, l, f) != l) {
1545 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1546 goto exit;
1547 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001548 fflush(f);
1549 addr += l;
1550 size -= l;
1551 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001552
1553 ret = 0;
1554
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001555exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001556 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001557 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001558}
1559
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001560static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001561{
1562 uint32_t addr;
1563 uint8_t buf[1];
1564 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001565 uint32_t start = qdict_get_int(qdict, "start");
1566 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001567
1568 sum = 0;
1569 for(addr = start; addr < (start + size); addr++) {
1570 cpu_physical_memory_rw(addr, buf, 1, 0);
1571 /* BSD sum algorithm ('sum' Unix command) */
1572 sum = (sum >> 1) | (sum << 15);
1573 sum += buf[0];
1574 }
aliguori376253e2009-03-05 23:01:23 +00001575 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001576}
1577
bellarda3a91a32004-06-04 11:06:21 +00001578typedef struct {
1579 int keycode;
1580 const char *name;
1581} KeyDef;
1582
1583static const KeyDef key_defs[] = {
1584 { 0x2a, "shift" },
1585 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001586
bellarda3a91a32004-06-04 11:06:21 +00001587 { 0x38, "alt" },
1588 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001589 { 0x64, "altgr" },
1590 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001591 { 0x1d, "ctrl" },
1592 { 0x9d, "ctrl_r" },
1593
1594 { 0xdd, "menu" },
1595
1596 { 0x01, "esc" },
1597
1598 { 0x02, "1" },
1599 { 0x03, "2" },
1600 { 0x04, "3" },
1601 { 0x05, "4" },
1602 { 0x06, "5" },
1603 { 0x07, "6" },
1604 { 0x08, "7" },
1605 { 0x09, "8" },
1606 { 0x0a, "9" },
1607 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001608 { 0x0c, "minus" },
1609 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001610 { 0x0e, "backspace" },
1611
1612 { 0x0f, "tab" },
1613 { 0x10, "q" },
1614 { 0x11, "w" },
1615 { 0x12, "e" },
1616 { 0x13, "r" },
1617 { 0x14, "t" },
1618 { 0x15, "y" },
1619 { 0x16, "u" },
1620 { 0x17, "i" },
1621 { 0x18, "o" },
1622 { 0x19, "p" },
1623
1624 { 0x1c, "ret" },
1625
1626 { 0x1e, "a" },
1627 { 0x1f, "s" },
1628 { 0x20, "d" },
1629 { 0x21, "f" },
1630 { 0x22, "g" },
1631 { 0x23, "h" },
1632 { 0x24, "j" },
1633 { 0x25, "k" },
1634 { 0x26, "l" },
1635
1636 { 0x2c, "z" },
1637 { 0x2d, "x" },
1638 { 0x2e, "c" },
1639 { 0x2f, "v" },
1640 { 0x30, "b" },
1641 { 0x31, "n" },
1642 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001643 { 0x33, "comma" },
1644 { 0x34, "dot" },
1645 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001646
balrog4d3b6f62008-02-10 16:33:14 +00001647 { 0x37, "asterisk" },
1648
bellarda3a91a32004-06-04 11:06:21 +00001649 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001650 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001651 { 0x3b, "f1" },
1652 { 0x3c, "f2" },
1653 { 0x3d, "f3" },
1654 { 0x3e, "f4" },
1655 { 0x3f, "f5" },
1656 { 0x40, "f6" },
1657 { 0x41, "f7" },
1658 { 0x42, "f8" },
1659 { 0x43, "f9" },
1660 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001661 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001662 { 0x46, "scroll_lock" },
1663
bellard64866c32006-05-07 18:03:31 +00001664 { 0xb5, "kp_divide" },
1665 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001666 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001667 { 0x4e, "kp_add" },
1668 { 0x9c, "kp_enter" },
1669 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001670 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001671
1672 { 0x52, "kp_0" },
1673 { 0x4f, "kp_1" },
1674 { 0x50, "kp_2" },
1675 { 0x51, "kp_3" },
1676 { 0x4b, "kp_4" },
1677 { 0x4c, "kp_5" },
1678 { 0x4d, "kp_6" },
1679 { 0x47, "kp_7" },
1680 { 0x48, "kp_8" },
1681 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001682
bellarda3a91a32004-06-04 11:06:21 +00001683 { 0x56, "<" },
1684
1685 { 0x57, "f11" },
1686 { 0x58, "f12" },
1687
1688 { 0xb7, "print" },
1689
1690 { 0xc7, "home" },
1691 { 0xc9, "pgup" },
1692 { 0xd1, "pgdn" },
1693 { 0xcf, "end" },
1694
1695 { 0xcb, "left" },
1696 { 0xc8, "up" },
1697 { 0xd0, "down" },
1698 { 0xcd, "right" },
1699
1700 { 0xd2, "insert" },
1701 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001702#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1703 { 0xf0, "stop" },
1704 { 0xf1, "again" },
1705 { 0xf2, "props" },
1706 { 0xf3, "undo" },
1707 { 0xf4, "front" },
1708 { 0xf5, "copy" },
1709 { 0xf6, "open" },
1710 { 0xf7, "paste" },
1711 { 0xf8, "find" },
1712 { 0xf9, "cut" },
1713 { 0xfa, "lf" },
1714 { 0xfb, "help" },
1715 { 0xfc, "meta_l" },
1716 { 0xfd, "meta_r" },
1717 { 0xfe, "compose" },
1718#endif
bellarda3a91a32004-06-04 11:06:21 +00001719 { 0, NULL },
1720};
1721
1722static int get_keycode(const char *key)
1723{
1724 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001725 char *endp;
1726 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001727
1728 for(p = key_defs; p->name != NULL; p++) {
1729 if (!strcmp(key, p->name))
1730 return p->keycode;
1731 }
bellard64866c32006-05-07 18:03:31 +00001732 if (strstart(key, "0x", NULL)) {
1733 ret = strtoul(key, &endp, 0);
1734 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1735 return ret;
1736 }
bellarda3a91a32004-06-04 11:06:21 +00001737 return -1;
1738}
1739
balrogc8256f92008-06-08 22:45:01 +00001740#define MAX_KEYCODES 16
1741static uint8_t keycodes[MAX_KEYCODES];
1742static int nb_pending_keycodes;
1743static QEMUTimer *key_timer;
1744
1745static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001746{
balrogc8256f92008-06-08 22:45:01 +00001747 int keycode;
1748
1749 while (nb_pending_keycodes > 0) {
1750 nb_pending_keycodes--;
1751 keycode = keycodes[nb_pending_keycodes];
1752 if (keycode & 0x80)
1753 kbd_put_keycode(0xe0);
1754 kbd_put_keycode(keycode | 0x80);
1755 }
1756}
1757
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001758static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001759{
balrog3401c0d2008-06-04 10:05:59 +00001760 char keyname_buf[16];
1761 char *separator;
1762 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001763 const char *string = qdict_get_str(qdict, "string");
1764 int has_hold_time = qdict_haskey(qdict, "hold_time");
1765 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001766
balrogc8256f92008-06-08 22:45:01 +00001767 if (nb_pending_keycodes > 0) {
1768 qemu_del_timer(key_timer);
1769 release_keys(NULL);
1770 }
1771 if (!has_hold_time)
1772 hold_time = 100;
1773 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001774 while (1) {
1775 separator = strchr(string, '-');
1776 keyname_len = separator ? separator - string : strlen(string);
1777 if (keyname_len > 0) {
1778 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1779 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001780 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001781 return;
bellarda3a91a32004-06-04 11:06:21 +00001782 }
balrogc8256f92008-06-08 22:45:01 +00001783 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001784 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001785 return;
1786 }
1787 keyname_buf[keyname_len] = 0;
1788 keycode = get_keycode(keyname_buf);
1789 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001790 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001791 return;
1792 }
balrogc8256f92008-06-08 22:45:01 +00001793 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001794 }
balrog3401c0d2008-06-04 10:05:59 +00001795 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001796 break;
balrog3401c0d2008-06-04 10:05:59 +00001797 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001798 }
balrogc8256f92008-06-08 22:45:01 +00001799 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001800 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001801 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001802 keycode = keycodes[i];
1803 if (keycode & 0x80)
1804 kbd_put_keycode(0xe0);
1805 kbd_put_keycode(keycode & 0x7f);
1806 }
balrogc8256f92008-06-08 22:45:01 +00001807 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001808 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001809 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001810}
1811
bellard13224a82006-07-14 22:03:35 +00001812static int mouse_button_state;
1813
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001814static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001815{
1816 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001817 const char *dx_str = qdict_get_str(qdict, "dx_str");
1818 const char *dy_str = qdict_get_str(qdict, "dy_str");
1819 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001820 dx = strtol(dx_str, NULL, 0);
1821 dy = strtol(dy_str, NULL, 0);
1822 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001823 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001824 dz = strtol(dz_str, NULL, 0);
1825 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1826}
1827
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001828static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001829{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001830 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001831 mouse_button_state = button_state;
1832 kbd_mouse_event(0, 0, 0, mouse_button_state);
1833}
1834
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001835static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001836{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001837 int size = qdict_get_int(qdict, "size");
1838 int addr = qdict_get_int(qdict, "addr");
1839 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001840 uint32_t val;
1841 int suffix;
1842
1843 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001844 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001845 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001846 addr++;
1847 }
1848 addr &= 0xffff;
1849
1850 switch(size) {
1851 default:
1852 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001853 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001854 suffix = 'b';
1855 break;
1856 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001857 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001858 suffix = 'w';
1859 break;
1860 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001861 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001862 suffix = 'l';
1863 break;
1864 }
aliguori376253e2009-03-05 23:01:23 +00001865 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1866 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001867}
bellarda3a91a32004-06-04 11:06:21 +00001868
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001869static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001870{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001871 int size = qdict_get_int(qdict, "size");
1872 int addr = qdict_get_int(qdict, "addr");
1873 int val = qdict_get_int(qdict, "val");
1874
Jan Kiszkaf1147842009-07-14 10:20:11 +02001875 addr &= IOPORTS_MASK;
1876
1877 switch (size) {
1878 default:
1879 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001880 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001881 break;
1882 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001883 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001884 break;
1885 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001886 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001887 break;
1888 }
1889}
1890
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001891static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001892{
1893 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001894 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001895
Jan Kiszka76e30d02009-07-02 00:19:02 +02001896 res = qemu_boot_set(bootdevice);
1897 if (res == 0) {
1898 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1899 } else if (res > 0) {
1900 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001901 } else {
aliguori376253e2009-03-05 23:01:23 +00001902 monitor_printf(mon, "no function defined to set boot device list for "
1903 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001904 }
1905}
1906
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001907/**
1908 * do_system_reset(): Issue a machine reset
1909 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001910static int do_system_reset(Monitor *mon, const QDict *qdict,
1911 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001912{
1913 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001914 return 0;
bellarde4f90822004-06-20 12:35:44 +00001915}
1916
Luiz Capitulino43076662009-10-07 13:41:59 -03001917/**
1918 * do_system_powerdown(): Issue a machine powerdown
1919 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001920static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1921 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001922{
1923 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001924 return 0;
bellard34751872005-07-02 14:31:34 +00001925}
1926
bellardb86bda52004-09-18 19:32:46 +00001927#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001928static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001929{
aliguori376253e2009-03-05 23:01:23 +00001930 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1931 addr,
1932 pte & mask,
1933 pte & PG_GLOBAL_MASK ? 'G' : '-',
1934 pte & PG_PSE_MASK ? 'P' : '-',
1935 pte & PG_DIRTY_MASK ? 'D' : '-',
1936 pte & PG_ACCESSED_MASK ? 'A' : '-',
1937 pte & PG_PCD_MASK ? 'C' : '-',
1938 pte & PG_PWT_MASK ? 'T' : '-',
1939 pte & PG_USER_MASK ? 'U' : '-',
1940 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001941}
1942
aliguori376253e2009-03-05 23:01:23 +00001943static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001944{
bellard6a00d602005-11-21 23:25:50 +00001945 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001946 int l1, l2;
1947 uint32_t pgd, pde, pte;
1948
bellard6a00d602005-11-21 23:25:50 +00001949 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001950
bellardb86bda52004-09-18 19:32:46 +00001951 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001952 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001953 return;
1954 }
1955 pgd = env->cr[3] & ~0xfff;
1956 for(l1 = 0; l1 < 1024; l1++) {
1957 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1958 pde = le32_to_cpu(pde);
1959 if (pde & PG_PRESENT_MASK) {
1960 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001961 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001962 } else {
1963 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001964 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001965 (uint8_t *)&pte, 4);
1966 pte = le32_to_cpu(pte);
1967 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001968 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001969 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001970 ~0xfff);
1971 }
1972 }
1973 }
1974 }
1975 }
1976}
1977
aliguori376253e2009-03-05 23:01:23 +00001978static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001979 uint32_t end, int prot)
1980{
bellard9746b152004-11-11 18:30:24 +00001981 int prot1;
1982 prot1 = *plast_prot;
1983 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001984 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001985 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1986 *pstart, end, end - *pstart,
1987 prot1 & PG_USER_MASK ? 'u' : '-',
1988 'r',
1989 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001990 }
1991 if (prot != 0)
1992 *pstart = end;
1993 else
1994 *pstart = -1;
1995 *plast_prot = prot;
1996 }
1997}
1998
aliguori376253e2009-03-05 23:01:23 +00001999static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00002000{
bellard6a00d602005-11-21 23:25:50 +00002001 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00002002 int l1, l2, prot, last_prot;
2003 uint32_t pgd, pde, pte, start, end;
2004
bellard6a00d602005-11-21 23:25:50 +00002005 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002006
bellardb86bda52004-09-18 19:32:46 +00002007 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00002008 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00002009 return;
2010 }
2011 pgd = env->cr[3] & ~0xfff;
2012 last_prot = 0;
2013 start = -1;
2014 for(l1 = 0; l1 < 1024; l1++) {
2015 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
2016 pde = le32_to_cpu(pde);
2017 end = l1 << 22;
2018 if (pde & PG_PRESENT_MASK) {
2019 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2020 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00002021 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002022 } else {
2023 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00002024 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00002025 (uint8_t *)&pte, 4);
2026 pte = le32_to_cpu(pte);
2027 end = (l1 << 22) + (l2 << 12);
2028 if (pte & PG_PRESENT_MASK) {
2029 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2030 } else {
2031 prot = 0;
2032 }
aliguori376253e2009-03-05 23:01:23 +00002033 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002034 }
2035 }
2036 } else {
2037 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00002038 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002039 }
2040 }
2041}
2042#endif
2043
aurel327c664e22009-03-03 06:12:22 +00002044#if defined(TARGET_SH4)
2045
aliguori376253e2009-03-05 23:01:23 +00002046static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00002047{
aliguori376253e2009-03-05 23:01:23 +00002048 monitor_printf(mon, " tlb%i:\t"
2049 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2050 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2051 "dirty=%hhu writethrough=%hhu\n",
2052 idx,
2053 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2054 tlb->v, tlb->sh, tlb->c, tlb->pr,
2055 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00002056}
2057
aliguori376253e2009-03-05 23:01:23 +00002058static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00002059{
2060 CPUState *env = mon_get_cpu();
2061 int i;
2062
aliguori376253e2009-03-05 23:01:23 +00002063 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002064 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002065 print_tlb (mon, i, &env->itlb[i]);
2066 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002067 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002068 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002069}
2070
2071#endif
2072
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002073static void do_info_kvm_print(Monitor *mon, const QObject *data)
2074{
2075 QDict *qdict;
2076
2077 qdict = qobject_to_qdict(data);
2078
2079 monitor_printf(mon, "kvm support: ");
2080 if (qdict_get_bool(qdict, "present")) {
2081 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2082 "enabled" : "disabled");
2083 } else {
2084 monitor_printf(mon, "not compiled\n");
2085 }
2086}
2087
2088/**
2089 * do_info_kvm(): Show KVM information
2090 *
2091 * Return a QDict with the following information:
2092 *
2093 * - "enabled": true if KVM support is enabled, false otherwise
2094 * - "present": true if QEMU has KVM support, false otherwise
2095 *
2096 * Example:
2097 *
2098 * { "enabled": true, "present": true }
2099 */
2100static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002101{
2102#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002103 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2104 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002105#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002106 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002107#endif
2108}
2109
aliguori030ea372009-04-21 22:30:47 +00002110static void do_info_numa(Monitor *mon)
2111{
aliguorib28b6232009-04-22 20:20:29 +00002112 int i;
aliguori030ea372009-04-21 22:30:47 +00002113 CPUState *env;
2114
2115 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2116 for (i = 0; i < nb_numa_nodes; i++) {
2117 monitor_printf(mon, "node %d cpus:", i);
2118 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2119 if (env->numa_node == i) {
2120 monitor_printf(mon, " %d", env->cpu_index);
2121 }
2122 }
2123 monitor_printf(mon, "\n");
2124 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2125 node_mem[i] >> 20);
2126 }
2127}
2128
bellard5f1ce942006-02-08 22:40:15 +00002129#ifdef CONFIG_PROFILER
2130
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002131int64_t qemu_time;
2132int64_t dev_time;
2133
aliguori376253e2009-03-05 23:01:23 +00002134static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002135{
2136 int64_t total;
2137 total = qemu_time;
2138 if (total == 0)
2139 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002140 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002141 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002142 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002143 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002144 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002145 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002146}
2147#else
aliguori376253e2009-03-05 23:01:23 +00002148static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002149{
aliguori376253e2009-03-05 23:01:23 +00002150 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002151}
2152#endif
2153
bellardec36b692006-07-16 18:57:03 +00002154/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002155static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002156
aliguori376253e2009-03-05 23:01:23 +00002157static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002158{
2159 int i;
2160 CaptureState *s;
2161
2162 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002163 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002164 s->ops.info (s->opaque);
2165 }
2166}
2167
Blue Swirl23130862009-06-06 08:22:04 +00002168#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002169static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002170{
2171 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002172 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002173 CaptureState *s;
2174
2175 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2176 if (i == n) {
2177 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002178 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002179 qemu_free (s);
2180 return;
2181 }
2182 }
2183}
2184
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002185static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002186{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002187 const char *path = qdict_get_str(qdict, "path");
2188 int has_freq = qdict_haskey(qdict, "freq");
2189 int freq = qdict_get_try_int(qdict, "freq", -1);
2190 int has_bits = qdict_haskey(qdict, "bits");
2191 int bits = qdict_get_try_int(qdict, "bits", -1);
2192 int has_channels = qdict_haskey(qdict, "nchannels");
2193 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002194 CaptureState *s;
2195
2196 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002197
2198 freq = has_freq ? freq : 44100;
2199 bits = has_bits ? bits : 16;
2200 nchannels = has_channels ? nchannels : 2;
2201
2202 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002203 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002204 qemu_free (s);
2205 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002206 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002207}
2208#endif
2209
aurel32dc1c0b72008-04-27 23:52:12 +00002210#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002211static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002212{
2213 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002214 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002215
2216 for (env = first_cpu; env != NULL; env = env->next_cpu)
2217 if (env->cpu_index == cpu_index) {
2218 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2219 break;
2220 }
2221}
2222#endif
2223
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002224static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002225{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002226 QDict *qdict;
2227
2228 qdict = qobject_to_qdict(data);
2229
2230 monitor_printf(mon, "VM status: ");
2231 if (qdict_get_bool(qdict, "running")) {
2232 monitor_printf(mon, "running");
2233 if (qdict_get_bool(qdict, "singlestep")) {
2234 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002235 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002236 } else {
2237 monitor_printf(mon, "paused");
2238 }
2239
2240 monitor_printf(mon, "\n");
2241}
2242
2243/**
2244 * do_info_status(): VM status
2245 *
2246 * Return a QDict with the following information:
2247 *
2248 * - "running": true if the VM is running, or false if it is paused
2249 * - "singlestep": true if the VM is in single step mode, false otherwise
2250 *
2251 * Example:
2252 *
2253 * { "running": true, "singlestep": false }
2254 */
2255static void do_info_status(Monitor *mon, QObject **ret_data)
2256{
2257 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2258 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002259}
2260
Adam Litke625a5be2010-01-26 14:17:35 -06002261static void print_balloon_stat(const char *key, QObject *obj, void *opaque)
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002262{
Adam Litke625a5be2010-01-26 14:17:35 -06002263 Monitor *mon = opaque;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002264
Adam Litke625a5be2010-01-26 14:17:35 -06002265 if (strcmp(key, "actual"))
2266 monitor_printf(mon, ",%s=%" PRId64, key,
2267 qint_get_int(qobject_to_qint(obj)));
aliguoridf751fa2008-12-04 20:19:35 +00002268}
2269
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002270static void monitor_print_balloon(Monitor *mon, const QObject *data)
2271{
Luiz Capitulino7f179672009-12-10 17:15:55 -02002272 QDict *qdict;
2273
2274 qdict = qobject_to_qdict(data);
Adam Litke625a5be2010-01-26 14:17:35 -06002275 if (!qdict_haskey(qdict, "actual"))
2276 return;
Luiz Capitulino7f179672009-12-10 17:15:55 -02002277
Adam Litke625a5be2010-01-26 14:17:35 -06002278 monitor_printf(mon, "balloon: actual=%" PRId64,
2279 qdict_get_int(qdict, "actual") >> 20);
2280 qdict_iter(qdict, print_balloon_stat, mon);
2281 monitor_printf(mon, "\n");
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002282}
2283
2284/**
2285 * do_info_balloon(): Balloon information
Luiz Capitulino7f179672009-12-10 17:15:55 -02002286 *
Adam Litke625a5be2010-01-26 14:17:35 -06002287 * Make an asynchronous request for balloon info. When the request completes
2288 * a QDict will be returned according to the following specification:
Luiz Capitulino7f179672009-12-10 17:15:55 -02002289 *
Adam Litke625a5be2010-01-26 14:17:35 -06002290 * - "actual": current balloon value in bytes
2291 * The following fields may or may not be present:
2292 * - "mem_swapped_in": Amount of memory swapped in (bytes)
2293 * - "mem_swapped_out": Amount of memory swapped out (bytes)
2294 * - "major_page_faults": Number of major faults
2295 * - "minor_page_faults": Number of minor faults
2296 * - "free_mem": Total amount of free and unused memory (bytes)
2297 * - "total_mem": Total amount of available memory (bytes)
Luiz Capitulino7f179672009-12-10 17:15:55 -02002298 *
2299 * Example:
2300 *
Adam Litke625a5be2010-01-26 14:17:35 -06002301 * { "actual": 1073741824, "mem_swapped_in": 0, "mem_swapped_out": 0,
2302 * "major_page_faults": 142, "minor_page_faults": 239245,
2303 * "free_mem": 1014185984, "total_mem": 1044668416 }
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002304 */
Adam Litke625a5be2010-01-26 14:17:35 -06002305static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque)
aliguoridf751fa2008-12-04 20:19:35 +00002306{
Adam Litke625a5be2010-01-26 14:17:35 -06002307 int ret;
aliguoridf751fa2008-12-04 20:19:35 +00002308
Adam Litke625a5be2010-01-26 14:17:35 -06002309 if (kvm_enabled() && !kvm_has_sync_mmu()) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002310 qerror_report(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
Adam Litke625a5be2010-01-26 14:17:35 -06002311 return -1;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002312 }
Adam Litke625a5be2010-01-26 14:17:35 -06002313
2314 ret = qemu_balloon_status(cb, opaque);
2315 if (!ret) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002316 qerror_report(QERR_DEVICE_NOT_ACTIVE, "balloon");
Adam Litke625a5be2010-01-26 14:17:35 -06002317 return -1;
2318 }
2319
2320 return 0;
2321}
2322
2323/**
2324 * do_balloon(): Request VM to change its memory allocation
2325 */
2326static int do_balloon(Monitor *mon, const QDict *params,
2327 MonitorCompletion cb, void *opaque)
2328{
2329 int ret;
2330
2331 if (kvm_enabled() && !kvm_has_sync_mmu()) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002332 qerror_report(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
Adam Litke625a5be2010-01-26 14:17:35 -06002333 return -1;
2334 }
2335
2336 ret = qemu_balloon(qdict_get_int(params, "value"), cb, opaque);
2337 if (ret == 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002338 qerror_report(QERR_DEVICE_NOT_ACTIVE, "balloon");
Adam Litke625a5be2010-01-26 14:17:35 -06002339 return -1;
2340 }
2341
Adam Litke93d67ee2010-02-22 10:51:20 -06002342 cb(opaque, NULL);
Adam Litke625a5be2010-01-26 14:17:35 -06002343 return 0;
aliguoridf751fa2008-12-04 20:19:35 +00002344}
2345
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002346static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002347{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002348 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002349
aliguori76655d62009-03-06 20:27:37 +00002350 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002351 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002352 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002353 return acl;
2354}
aliguori76655d62009-03-06 20:27:37 +00002355
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002356static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002357{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002358 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002359 qemu_acl *acl = find_acl(mon, aclname);
2360 qemu_acl_entry *entry;
2361 int i = 0;
2362
2363 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002364 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002365 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002366 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002367 i++;
2368 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002369 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002370 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002371 }
2372}
2373
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002374static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002375{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002376 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002377 qemu_acl *acl = find_acl(mon, aclname);
2378
2379 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002380 qemu_acl_reset(acl);
2381 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002382 }
2383}
aliguori76655d62009-03-06 20:27:37 +00002384
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002385static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002386{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002387 const char *aclname = qdict_get_str(qdict, "aclname");
2388 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002389 qemu_acl *acl = find_acl(mon, aclname);
2390
2391 if (acl) {
2392 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002393 acl->defaultDeny = 0;
2394 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002395 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002396 acl->defaultDeny = 1;
2397 monitor_printf(mon, "acl: policy set to 'deny'\n");
2398 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002399 monitor_printf(mon, "acl: unknown policy '%s', "
2400 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002401 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002402 }
2403}
aliguori76655d62009-03-06 20:27:37 +00002404
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002405static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002406{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002407 const char *aclname = qdict_get_str(qdict, "aclname");
2408 const char *match = qdict_get_str(qdict, "match");
2409 const char *policy = qdict_get_str(qdict, "policy");
2410 int has_index = qdict_haskey(qdict, "index");
2411 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002412 qemu_acl *acl = find_acl(mon, aclname);
2413 int deny, ret;
2414
2415 if (acl) {
2416 if (strcmp(policy, "allow") == 0) {
2417 deny = 0;
2418 } else if (strcmp(policy, "deny") == 0) {
2419 deny = 1;
2420 } else {
2421 monitor_printf(mon, "acl: unknown policy '%s', "
2422 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002423 return;
2424 }
aliguori28a76be2009-03-06 20:27:40 +00002425 if (has_index)
2426 ret = qemu_acl_insert(acl, deny, match, index);
2427 else
2428 ret = qemu_acl_append(acl, deny, match);
2429 if (ret < 0)
2430 monitor_printf(mon, "acl: unable to add acl entry\n");
2431 else
2432 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002433 }
2434}
aliguori76655d62009-03-06 20:27:37 +00002435
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002436static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002437{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002438 const char *aclname = qdict_get_str(qdict, "aclname");
2439 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002440 qemu_acl *acl = find_acl(mon, aclname);
2441 int ret;
aliguori76655d62009-03-06 20:27:37 +00002442
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002443 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002444 ret = qemu_acl_remove(acl, match);
2445 if (ret < 0)
2446 monitor_printf(mon, "acl: no matching acl entry\n");
2447 else
2448 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002449 }
2450}
2451
Huang Ying79c4f6b2009-06-23 10:05:14 +08002452#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002453static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002454{
2455 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002456 int cpu_index = qdict_get_int(qdict, "cpu_index");
2457 int bank = qdict_get_int(qdict, "bank");
2458 uint64_t status = qdict_get_int(qdict, "status");
2459 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2460 uint64_t addr = qdict_get_int(qdict, "addr");
2461 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002462
2463 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2464 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2465 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2466 break;
2467 }
2468}
2469#endif
2470
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002471static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002472{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002473 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002474 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002475 int fd;
2476
2477 fd = qemu_chr_get_msgfd(mon->chr);
2478 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002479 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002480 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002481 }
2482
2483 if (qemu_isdigit(fdname[0])) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002484 qerror_report(QERR_INVALID_PARAMETER, "fdname");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002485 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002486 }
2487
2488 fd = dup(fd);
2489 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002490 if (errno == EMFILE)
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002491 qerror_report(QERR_TOO_MANY_FILES);
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002492 else
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002493 qerror_report(QERR_UNDEFINED_ERROR);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002494 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002495 }
2496
Blue Swirl72cf2d42009-09-12 07:36:22 +00002497 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002498 if (strcmp(monfd->name, fdname) != 0) {
2499 continue;
2500 }
2501
2502 close(monfd->fd);
2503 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002504 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002505 }
2506
Anthony Liguoric227f092009-10-01 16:12:16 -05002507 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002508 monfd->name = qemu_strdup(fdname);
2509 monfd->fd = fd;
2510
Blue Swirl72cf2d42009-09-12 07:36:22 +00002511 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002512 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002513}
2514
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002515static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002516{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002517 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002518 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002519
Blue Swirl72cf2d42009-09-12 07:36:22 +00002520 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002521 if (strcmp(monfd->name, fdname) != 0) {
2522 continue;
2523 }
2524
Blue Swirl72cf2d42009-09-12 07:36:22 +00002525 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002526 close(monfd->fd);
2527 qemu_free(monfd->name);
2528 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002529 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002530 }
2531
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002532 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002533 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002534}
2535
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002536static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002537{
2538 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002539 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002540
2541 vm_stop(0);
2542
Markus Armbruster03cd4652010-02-17 16:24:10 +01002543 if (load_vmstate(name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002544 vm_start();
2545}
2546
Mark McLoughlin7768e042009-07-22 09:11:41 +01002547int monitor_get_fd(Monitor *mon, const char *fdname)
2548{
Anthony Liguoric227f092009-10-01 16:12:16 -05002549 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002550
Blue Swirl72cf2d42009-09-12 07:36:22 +00002551 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002552 int fd;
2553
2554 if (strcmp(monfd->name, fdname) != 0) {
2555 continue;
2556 }
2557
2558 fd = monfd->fd;
2559
2560 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002561 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002562 qemu_free(monfd->name);
2563 qemu_free(monfd);
2564
2565 return fd;
2566 }
2567
2568 return -1;
2569}
2570
Anthony Liguoric227f092009-10-01 16:12:16 -05002571static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002572#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002573 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002574};
2575
Blue Swirl23130862009-06-06 08:22:04 +00002576/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002577static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002578 {
2579 .name = "version",
2580 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 .params = "",
2582 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002583 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002584 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 },
2586 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002587 .name = "commands",
2588 .args_type = "",
2589 .params = "",
2590 .help = "list QMP available commands",
2591 .user_print = monitor_user_noop,
2592 .mhandler.info_new = do_info_commands,
2593 },
2594 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 .name = "network",
2596 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002597 .params = "",
2598 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002599 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002600 },
2601 {
2602 .name = "chardev",
2603 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 .params = "",
2605 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002606 .user_print = qemu_chr_info_print,
2607 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002608 },
2609 {
2610 .name = "block",
2611 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002612 .params = "",
2613 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002614 .user_print = bdrv_info_print,
2615 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 },
2617 {
2618 .name = "blockstats",
2619 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002620 .params = "",
2621 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002622 .user_print = bdrv_stats_print,
2623 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002624 },
2625 {
2626 .name = "registers",
2627 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002628 .params = "",
2629 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002630 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002631 },
2632 {
2633 .name = "cpus",
2634 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002635 .params = "",
2636 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002637 .user_print = monitor_print_cpus,
2638 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002639 },
2640 {
2641 .name = "history",
2642 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002643 .params = "",
2644 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002645 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002646 },
2647 {
2648 .name = "irq",
2649 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002650 .params = "",
2651 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002652 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002653 },
2654 {
2655 .name = "pic",
2656 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002657 .params = "",
2658 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002659 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002660 },
2661 {
2662 .name = "pci",
2663 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002664 .params = "",
2665 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002666 .user_print = do_pci_info_print,
2667 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002668 },
aurel327c664e22009-03-03 06:12:22 +00002669#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002670 {
2671 .name = "tlb",
2672 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002673 .params = "",
2674 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002675 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002676 },
aurel327c664e22009-03-03 06:12:22 +00002677#endif
2678#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002679 {
2680 .name = "mem",
2681 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002682 .params = "",
2683 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002684 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002685 },
2686 {
2687 .name = "hpet",
2688 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002689 .params = "",
2690 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002691 .user_print = do_info_hpet_print,
2692 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002693 },
bellardb86bda52004-09-18 19:32:46 +00002694#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002695 {
2696 .name = "jit",
2697 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002698 .params = "",
2699 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002700 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002701 },
2702 {
2703 .name = "kvm",
2704 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002705 .params = "",
2706 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002707 .user_print = do_info_kvm_print,
2708 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002709 },
2710 {
2711 .name = "numa",
2712 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002713 .params = "",
2714 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002715 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002716 },
2717 {
2718 .name = "usb",
2719 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002720 .params = "",
2721 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002722 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002723 },
2724 {
2725 .name = "usbhost",
2726 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002727 .params = "",
2728 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002729 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002730 },
2731 {
2732 .name = "profile",
2733 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002734 .params = "",
2735 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002736 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002737 },
2738 {
2739 .name = "capture",
2740 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002741 .params = "",
2742 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002743 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002744 },
2745 {
2746 .name = "snapshots",
2747 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002748 .params = "",
2749 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002750 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002751 },
2752 {
2753 .name = "status",
2754 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002755 .params = "",
2756 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002757 .user_print = do_info_status_print,
2758 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002759 },
2760 {
2761 .name = "pcmcia",
2762 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002763 .params = "",
2764 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002765 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002766 },
2767 {
2768 .name = "mice",
2769 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002770 .params = "",
2771 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002772 .user_print = do_info_mice_print,
2773 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002774 },
2775 {
2776 .name = "vnc",
2777 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002778 .params = "",
2779 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002780 .user_print = do_info_vnc_print,
2781 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002782 },
2783 {
2784 .name = "name",
2785 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002786 .params = "",
2787 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002788 .user_print = do_info_name_print,
2789 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002790 },
2791 {
2792 .name = "uuid",
2793 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002794 .params = "",
2795 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002796 .user_print = do_info_uuid_print,
2797 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002798 },
j_mayer76a66252007-03-07 08:32:30 +00002799#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002800 {
2801 .name = "cpustats",
2802 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002803 .params = "",
2804 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002805 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002806 },
j_mayer76a66252007-03-07 08:32:30 +00002807#endif
blueswir131a60e22007-10-26 18:42:59 +00002808#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002809 {
2810 .name = "usernet",
2811 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002812 .params = "",
2813 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002814 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002815 },
blueswir131a60e22007-10-26 18:42:59 +00002816#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002817 {
2818 .name = "migrate",
2819 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002820 .params = "",
2821 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002822 .user_print = do_info_migrate_print,
2823 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002824 },
2825 {
2826 .name = "balloon",
2827 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002828 .params = "",
2829 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002830 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002831 .mhandler.info_async = do_info_balloon,
2832 .async = 1,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002833 },
2834 {
2835 .name = "qtree",
2836 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002837 .params = "",
2838 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002839 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002840 },
2841 {
2842 .name = "qdm",
2843 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002844 .params = "",
2845 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002846 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002847 },
2848 {
2849 .name = "roms",
2850 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002851 .params = "",
2852 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002853 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002854 },
2855 {
2856 .name = NULL,
2857 },
bellard9dc39cb2004-03-14 21:38:27 +00002858};
2859
bellard9307c4c2004-04-04 12:57:25 +00002860/*******************************************************************/
2861
2862static const char *pch;
2863static jmp_buf expr_env;
2864
bellard92a31b12005-02-10 22:00:52 +00002865#define MD_TLONG 0
2866#define MD_I32 1
2867
bellard9307c4c2004-04-04 12:57:25 +00002868typedef struct MonitorDef {
2869 const char *name;
2870 int offset;
blueswir18662d652008-10-02 18:32:44 +00002871 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002872 int type;
bellard9307c4c2004-04-04 12:57:25 +00002873} MonitorDef;
2874
bellard57206fd2004-04-25 18:54:52 +00002875#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002876static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002877{
bellard6a00d602005-11-21 23:25:50 +00002878 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002879 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002880}
2881#endif
2882
bellarda541f292004-04-12 20:39:29 +00002883#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002884static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002885{
bellard6a00d602005-11-21 23:25:50 +00002886 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002887 unsigned int u;
2888 int i;
2889
2890 u = 0;
2891 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002892 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002893
2894 return u;
2895}
2896
blueswir18662d652008-10-02 18:32:44 +00002897static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002898{
bellard6a00d602005-11-21 23:25:50 +00002899 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002900 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002901}
2902
blueswir18662d652008-10-02 18:32:44 +00002903static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002904{
bellard6a00d602005-11-21 23:25:50 +00002905 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002906 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002907}
bellard9fddaa02004-05-21 12:59:32 +00002908
blueswir18662d652008-10-02 18:32:44 +00002909static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002910{
bellard6a00d602005-11-21 23:25:50 +00002911 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002912 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002913}
2914
blueswir18662d652008-10-02 18:32:44 +00002915static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002916{
bellard6a00d602005-11-21 23:25:50 +00002917 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002918 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002919}
2920
blueswir18662d652008-10-02 18:32:44 +00002921static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002922{
bellard6a00d602005-11-21 23:25:50 +00002923 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002924 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002925}
bellarda541f292004-04-12 20:39:29 +00002926#endif
2927
bellarde95c8d52004-09-30 22:22:08 +00002928#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002929#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002930static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002931{
bellard6a00d602005-11-21 23:25:50 +00002932 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002933 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002934}
bellard7b936c02005-10-30 17:05:13 +00002935#endif
bellarde95c8d52004-09-30 22:22:08 +00002936
blueswir18662d652008-10-02 18:32:44 +00002937static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002938{
bellard6a00d602005-11-21 23:25:50 +00002939 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002940 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002941}
2942#endif
2943
blueswir18662d652008-10-02 18:32:44 +00002944static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002945#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002946
2947#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002948 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002949 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002950 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002951
bellard9307c4c2004-04-04 12:57:25 +00002952 { "eax", offsetof(CPUState, regs[0]) },
2953 { "ecx", offsetof(CPUState, regs[1]) },
2954 { "edx", offsetof(CPUState, regs[2]) },
2955 { "ebx", offsetof(CPUState, regs[3]) },
2956 { "esp|sp", offsetof(CPUState, regs[4]) },
2957 { "ebp|fp", offsetof(CPUState, regs[5]) },
2958 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002959 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002960#ifdef TARGET_X86_64
2961 { "r8", offsetof(CPUState, regs[8]) },
2962 { "r9", offsetof(CPUState, regs[9]) },
2963 { "r10", offsetof(CPUState, regs[10]) },
2964 { "r11", offsetof(CPUState, regs[11]) },
2965 { "r12", offsetof(CPUState, regs[12]) },
2966 { "r13", offsetof(CPUState, regs[13]) },
2967 { "r14", offsetof(CPUState, regs[14]) },
2968 { "r15", offsetof(CPUState, regs[15]) },
2969#endif
bellard9307c4c2004-04-04 12:57:25 +00002970 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002971 { "eip", offsetof(CPUState, eip) },
2972 SEG("cs", R_CS)
2973 SEG("ds", R_DS)
2974 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002975 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002976 SEG("fs", R_FS)
2977 SEG("gs", R_GS)
2978 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002979#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002980 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002981 { "r0", offsetof(CPUState, gpr[0]) },
2982 { "r1", offsetof(CPUState, gpr[1]) },
2983 { "r2", offsetof(CPUState, gpr[2]) },
2984 { "r3", offsetof(CPUState, gpr[3]) },
2985 { "r4", offsetof(CPUState, gpr[4]) },
2986 { "r5", offsetof(CPUState, gpr[5]) },
2987 { "r6", offsetof(CPUState, gpr[6]) },
2988 { "r7", offsetof(CPUState, gpr[7]) },
2989 { "r8", offsetof(CPUState, gpr[8]) },
2990 { "r9", offsetof(CPUState, gpr[9]) },
2991 { "r10", offsetof(CPUState, gpr[10]) },
2992 { "r11", offsetof(CPUState, gpr[11]) },
2993 { "r12", offsetof(CPUState, gpr[12]) },
2994 { "r13", offsetof(CPUState, gpr[13]) },
2995 { "r14", offsetof(CPUState, gpr[14]) },
2996 { "r15", offsetof(CPUState, gpr[15]) },
2997 { "r16", offsetof(CPUState, gpr[16]) },
2998 { "r17", offsetof(CPUState, gpr[17]) },
2999 { "r18", offsetof(CPUState, gpr[18]) },
3000 { "r19", offsetof(CPUState, gpr[19]) },
3001 { "r20", offsetof(CPUState, gpr[20]) },
3002 { "r21", offsetof(CPUState, gpr[21]) },
3003 { "r22", offsetof(CPUState, gpr[22]) },
3004 { "r23", offsetof(CPUState, gpr[23]) },
3005 { "r24", offsetof(CPUState, gpr[24]) },
3006 { "r25", offsetof(CPUState, gpr[25]) },
3007 { "r26", offsetof(CPUState, gpr[26]) },
3008 { "r27", offsetof(CPUState, gpr[27]) },
3009 { "r28", offsetof(CPUState, gpr[28]) },
3010 { "r29", offsetof(CPUState, gpr[29]) },
3011 { "r30", offsetof(CPUState, gpr[30]) },
3012 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00003013 /* Floating point registers */
3014 { "f0", offsetof(CPUState, fpr[0]) },
3015 { "f1", offsetof(CPUState, fpr[1]) },
3016 { "f2", offsetof(CPUState, fpr[2]) },
3017 { "f3", offsetof(CPUState, fpr[3]) },
3018 { "f4", offsetof(CPUState, fpr[4]) },
3019 { "f5", offsetof(CPUState, fpr[5]) },
3020 { "f6", offsetof(CPUState, fpr[6]) },
3021 { "f7", offsetof(CPUState, fpr[7]) },
3022 { "f8", offsetof(CPUState, fpr[8]) },
3023 { "f9", offsetof(CPUState, fpr[9]) },
3024 { "f10", offsetof(CPUState, fpr[10]) },
3025 { "f11", offsetof(CPUState, fpr[11]) },
3026 { "f12", offsetof(CPUState, fpr[12]) },
3027 { "f13", offsetof(CPUState, fpr[13]) },
3028 { "f14", offsetof(CPUState, fpr[14]) },
3029 { "f15", offsetof(CPUState, fpr[15]) },
3030 { "f16", offsetof(CPUState, fpr[16]) },
3031 { "f17", offsetof(CPUState, fpr[17]) },
3032 { "f18", offsetof(CPUState, fpr[18]) },
3033 { "f19", offsetof(CPUState, fpr[19]) },
3034 { "f20", offsetof(CPUState, fpr[20]) },
3035 { "f21", offsetof(CPUState, fpr[21]) },
3036 { "f22", offsetof(CPUState, fpr[22]) },
3037 { "f23", offsetof(CPUState, fpr[23]) },
3038 { "f24", offsetof(CPUState, fpr[24]) },
3039 { "f25", offsetof(CPUState, fpr[25]) },
3040 { "f26", offsetof(CPUState, fpr[26]) },
3041 { "f27", offsetof(CPUState, fpr[27]) },
3042 { "f28", offsetof(CPUState, fpr[28]) },
3043 { "f29", offsetof(CPUState, fpr[29]) },
3044 { "f30", offsetof(CPUState, fpr[30]) },
3045 { "f31", offsetof(CPUState, fpr[31]) },
3046 { "fpscr", offsetof(CPUState, fpscr) },
3047 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00003048 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00003049 { "lr", offsetof(CPUState, lr) },
3050 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003051 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003052 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003053 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003054 { "msr", 0, &monitor_get_msr, },
3055 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003056 { "tbu", 0, &monitor_get_tbu, },
3057 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003058#if defined(TARGET_PPC64)
3059 /* Address space register */
3060 { "asr", offsetof(CPUState, asr) },
3061#endif
3062 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00003063 { "sdr1", offsetof(CPUState, sdr1) },
3064 { "sr0", offsetof(CPUState, sr[0]) },
3065 { "sr1", offsetof(CPUState, sr[1]) },
3066 { "sr2", offsetof(CPUState, sr[2]) },
3067 { "sr3", offsetof(CPUState, sr[3]) },
3068 { "sr4", offsetof(CPUState, sr[4]) },
3069 { "sr5", offsetof(CPUState, sr[5]) },
3070 { "sr6", offsetof(CPUState, sr[6]) },
3071 { "sr7", offsetof(CPUState, sr[7]) },
3072 { "sr8", offsetof(CPUState, sr[8]) },
3073 { "sr9", offsetof(CPUState, sr[9]) },
3074 { "sr10", offsetof(CPUState, sr[10]) },
3075 { "sr11", offsetof(CPUState, sr[11]) },
3076 { "sr12", offsetof(CPUState, sr[12]) },
3077 { "sr13", offsetof(CPUState, sr[13]) },
3078 { "sr14", offsetof(CPUState, sr[14]) },
3079 { "sr15", offsetof(CPUState, sr[15]) },
3080 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003081#elif defined(TARGET_SPARC)
3082 { "g0", offsetof(CPUState, gregs[0]) },
3083 { "g1", offsetof(CPUState, gregs[1]) },
3084 { "g2", offsetof(CPUState, gregs[2]) },
3085 { "g3", offsetof(CPUState, gregs[3]) },
3086 { "g4", offsetof(CPUState, gregs[4]) },
3087 { "g5", offsetof(CPUState, gregs[5]) },
3088 { "g6", offsetof(CPUState, gregs[6]) },
3089 { "g7", offsetof(CPUState, gregs[7]) },
3090 { "o0", 0, monitor_get_reg },
3091 { "o1", 1, monitor_get_reg },
3092 { "o2", 2, monitor_get_reg },
3093 { "o3", 3, monitor_get_reg },
3094 { "o4", 4, monitor_get_reg },
3095 { "o5", 5, monitor_get_reg },
3096 { "o6", 6, monitor_get_reg },
3097 { "o7", 7, monitor_get_reg },
3098 { "l0", 8, monitor_get_reg },
3099 { "l1", 9, monitor_get_reg },
3100 { "l2", 10, monitor_get_reg },
3101 { "l3", 11, monitor_get_reg },
3102 { "l4", 12, monitor_get_reg },
3103 { "l5", 13, monitor_get_reg },
3104 { "l6", 14, monitor_get_reg },
3105 { "l7", 15, monitor_get_reg },
3106 { "i0", 16, monitor_get_reg },
3107 { "i1", 17, monitor_get_reg },
3108 { "i2", 18, monitor_get_reg },
3109 { "i3", 19, monitor_get_reg },
3110 { "i4", 20, monitor_get_reg },
3111 { "i5", 21, monitor_get_reg },
3112 { "i6", 22, monitor_get_reg },
3113 { "i7", 23, monitor_get_reg },
3114 { "pc", offsetof(CPUState, pc) },
3115 { "npc", offsetof(CPUState, npc) },
3116 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003117#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003118 { "psr", 0, &monitor_get_psr, },
3119 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003120#endif
bellarde95c8d52004-09-30 22:22:08 +00003121 { "tbr", offsetof(CPUState, tbr) },
3122 { "fsr", offsetof(CPUState, fsr) },
3123 { "f0", offsetof(CPUState, fpr[0]) },
3124 { "f1", offsetof(CPUState, fpr[1]) },
3125 { "f2", offsetof(CPUState, fpr[2]) },
3126 { "f3", offsetof(CPUState, fpr[3]) },
3127 { "f4", offsetof(CPUState, fpr[4]) },
3128 { "f5", offsetof(CPUState, fpr[5]) },
3129 { "f6", offsetof(CPUState, fpr[6]) },
3130 { "f7", offsetof(CPUState, fpr[7]) },
3131 { "f8", offsetof(CPUState, fpr[8]) },
3132 { "f9", offsetof(CPUState, fpr[9]) },
3133 { "f10", offsetof(CPUState, fpr[10]) },
3134 { "f11", offsetof(CPUState, fpr[11]) },
3135 { "f12", offsetof(CPUState, fpr[12]) },
3136 { "f13", offsetof(CPUState, fpr[13]) },
3137 { "f14", offsetof(CPUState, fpr[14]) },
3138 { "f15", offsetof(CPUState, fpr[15]) },
3139 { "f16", offsetof(CPUState, fpr[16]) },
3140 { "f17", offsetof(CPUState, fpr[17]) },
3141 { "f18", offsetof(CPUState, fpr[18]) },
3142 { "f19", offsetof(CPUState, fpr[19]) },
3143 { "f20", offsetof(CPUState, fpr[20]) },
3144 { "f21", offsetof(CPUState, fpr[21]) },
3145 { "f22", offsetof(CPUState, fpr[22]) },
3146 { "f23", offsetof(CPUState, fpr[23]) },
3147 { "f24", offsetof(CPUState, fpr[24]) },
3148 { "f25", offsetof(CPUState, fpr[25]) },
3149 { "f26", offsetof(CPUState, fpr[26]) },
3150 { "f27", offsetof(CPUState, fpr[27]) },
3151 { "f28", offsetof(CPUState, fpr[28]) },
3152 { "f29", offsetof(CPUState, fpr[29]) },
3153 { "f30", offsetof(CPUState, fpr[30]) },
3154 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003155#ifdef TARGET_SPARC64
3156 { "f32", offsetof(CPUState, fpr[32]) },
3157 { "f34", offsetof(CPUState, fpr[34]) },
3158 { "f36", offsetof(CPUState, fpr[36]) },
3159 { "f38", offsetof(CPUState, fpr[38]) },
3160 { "f40", offsetof(CPUState, fpr[40]) },
3161 { "f42", offsetof(CPUState, fpr[42]) },
3162 { "f44", offsetof(CPUState, fpr[44]) },
3163 { "f46", offsetof(CPUState, fpr[46]) },
3164 { "f48", offsetof(CPUState, fpr[48]) },
3165 { "f50", offsetof(CPUState, fpr[50]) },
3166 { "f52", offsetof(CPUState, fpr[52]) },
3167 { "f54", offsetof(CPUState, fpr[54]) },
3168 { "f56", offsetof(CPUState, fpr[56]) },
3169 { "f58", offsetof(CPUState, fpr[58]) },
3170 { "f60", offsetof(CPUState, fpr[60]) },
3171 { "f62", offsetof(CPUState, fpr[62]) },
3172 { "asi", offsetof(CPUState, asi) },
3173 { "pstate", offsetof(CPUState, pstate) },
3174 { "cansave", offsetof(CPUState, cansave) },
3175 { "canrestore", offsetof(CPUState, canrestore) },
3176 { "otherwin", offsetof(CPUState, otherwin) },
3177 { "wstate", offsetof(CPUState, wstate) },
3178 { "cleanwin", offsetof(CPUState, cleanwin) },
3179 { "fprs", offsetof(CPUState, fprs) },
3180#endif
bellard9307c4c2004-04-04 12:57:25 +00003181#endif
3182 { NULL },
3183};
3184
aliguori376253e2009-03-05 23:01:23 +00003185static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003186{
aliguori376253e2009-03-05 23:01:23 +00003187 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003188 longjmp(expr_env, 1);
3189}
3190
Markus Armbruster09b94182010-01-20 13:07:30 +01003191/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003192static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003193{
blueswir18662d652008-10-02 18:32:44 +00003194 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003195 void *ptr;
3196
bellard9307c4c2004-04-04 12:57:25 +00003197 for(md = monitor_defs; md->name != NULL; md++) {
3198 if (compare_cmd(name, md->name)) {
3199 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003200 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003201 } else {
bellard6a00d602005-11-21 23:25:50 +00003202 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003203 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003204 switch(md->type) {
3205 case MD_I32:
3206 *pval = *(int32_t *)ptr;
3207 break;
3208 case MD_TLONG:
3209 *pval = *(target_long *)ptr;
3210 break;
3211 default:
3212 *pval = 0;
3213 break;
3214 }
bellard9307c4c2004-04-04 12:57:25 +00003215 }
3216 return 0;
3217 }
3218 }
3219 return -1;
3220}
3221
3222static void next(void)
3223{
Blue Swirl660f11b2009-07-31 21:16:51 +00003224 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003225 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003226 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003227 pch++;
3228 }
3229}
3230
aliguori376253e2009-03-05 23:01:23 +00003231static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003232
aliguori376253e2009-03-05 23:01:23 +00003233static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003234{
blueswir1c2efc952007-09-25 17:28:42 +00003235 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003236 char *p;
bellard6a00d602005-11-21 23:25:50 +00003237 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003238
3239 switch(*pch) {
3240 case '+':
3241 next();
aliguori376253e2009-03-05 23:01:23 +00003242 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003243 break;
3244 case '-':
3245 next();
aliguori376253e2009-03-05 23:01:23 +00003246 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003247 break;
3248 case '~':
3249 next();
aliguori376253e2009-03-05 23:01:23 +00003250 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003251 break;
3252 case '(':
3253 next();
aliguori376253e2009-03-05 23:01:23 +00003254 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003255 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003256 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003257 }
3258 next();
3259 break;
bellard81d09122004-07-14 17:21:37 +00003260 case '\'':
3261 pch++;
3262 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003263 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003264 n = *pch;
3265 pch++;
3266 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003267 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003268 next();
3269 break;
bellard9307c4c2004-04-04 12:57:25 +00003270 case '$':
3271 {
3272 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003273 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003274
bellard9307c4c2004-04-04 12:57:25 +00003275 pch++;
3276 q = buf;
3277 while ((*pch >= 'a' && *pch <= 'z') ||
3278 (*pch >= 'A' && *pch <= 'Z') ||
3279 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003280 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003281 if ((q - buf) < sizeof(buf) - 1)
3282 *q++ = *pch;
3283 pch++;
3284 }
blueswir1cd390082008-11-16 13:53:32 +00003285 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003286 pch++;
3287 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003288 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003289 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003290 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003291 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003292 }
3293 break;
3294 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003295 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003296 n = 0;
3297 break;
3298 default:
blueswir17743e582007-09-24 18:39:04 +00003299#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003300 n = strtoull(pch, &p, 0);
3301#else
bellard9307c4c2004-04-04 12:57:25 +00003302 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003303#endif
bellard9307c4c2004-04-04 12:57:25 +00003304 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003305 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003306 }
3307 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003308 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003309 pch++;
3310 break;
3311 }
3312 return n;
3313}
3314
3315
aliguori376253e2009-03-05 23:01:23 +00003316static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003317{
blueswir1c2efc952007-09-25 17:28:42 +00003318 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003319 int op;
ths3b46e622007-09-17 08:09:54 +00003320
aliguori376253e2009-03-05 23:01:23 +00003321 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003322 for(;;) {
3323 op = *pch;
3324 if (op != '*' && op != '/' && op != '%')
3325 break;
3326 next();
aliguori376253e2009-03-05 23:01:23 +00003327 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003328 switch(op) {
3329 default:
3330 case '*':
3331 val *= val2;
3332 break;
3333 case '/':
3334 case '%':
ths5fafdf22007-09-16 21:08:06 +00003335 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003336 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003337 if (op == '/')
3338 val /= val2;
3339 else
3340 val %= val2;
3341 break;
3342 }
3343 }
3344 return val;
3345}
3346
aliguori376253e2009-03-05 23:01:23 +00003347static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003348{
blueswir1c2efc952007-09-25 17:28:42 +00003349 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003350 int op;
bellard9307c4c2004-04-04 12:57:25 +00003351
aliguori376253e2009-03-05 23:01:23 +00003352 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003353 for(;;) {
3354 op = *pch;
3355 if (op != '&' && op != '|' && op != '^')
3356 break;
3357 next();
aliguori376253e2009-03-05 23:01:23 +00003358 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003359 switch(op) {
3360 default:
3361 case '&':
3362 val &= val2;
3363 break;
3364 case '|':
3365 val |= val2;
3366 break;
3367 case '^':
3368 val ^= val2;
3369 break;
3370 }
3371 }
3372 return val;
3373}
3374
aliguori376253e2009-03-05 23:01:23 +00003375static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003376{
blueswir1c2efc952007-09-25 17:28:42 +00003377 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003378 int op;
bellard9307c4c2004-04-04 12:57:25 +00003379
aliguori376253e2009-03-05 23:01:23 +00003380 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003381 for(;;) {
3382 op = *pch;
3383 if (op != '+' && op != '-')
3384 break;
3385 next();
aliguori376253e2009-03-05 23:01:23 +00003386 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003387 if (op == '+')
3388 val += val2;
3389 else
3390 val -= val2;
3391 }
3392 return val;
3393}
3394
aliguori376253e2009-03-05 23:01:23 +00003395static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003396{
3397 pch = *pp;
3398 if (setjmp(expr_env)) {
3399 *pp = pch;
3400 return -1;
3401 }
blueswir1cd390082008-11-16 13:53:32 +00003402 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003403 pch++;
aliguori376253e2009-03-05 23:01:23 +00003404 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003405 *pp = pch;
3406 return 0;
3407}
3408
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003409static int get_double(Monitor *mon, double *pval, const char **pp)
3410{
3411 const char *p = *pp;
3412 char *tailp;
3413 double d;
3414
3415 d = strtod(p, &tailp);
3416 if (tailp == p) {
3417 monitor_printf(mon, "Number expected\n");
3418 return -1;
3419 }
3420 if (d != d || d - d != 0) {
3421 /* NaN or infinity */
3422 monitor_printf(mon, "Bad number\n");
3423 return -1;
3424 }
3425 *pval = d;
3426 *pp = tailp;
3427 return 0;
3428}
3429
bellard9307c4c2004-04-04 12:57:25 +00003430static int get_str(char *buf, int buf_size, const char **pp)
3431{
3432 const char *p;
3433 char *q;
3434 int c;
3435
bellard81d09122004-07-14 17:21:37 +00003436 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003437 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003438 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003439 p++;
3440 if (*p == '\0') {
3441 fail:
bellard81d09122004-07-14 17:21:37 +00003442 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003443 *pp = p;
3444 return -1;
3445 }
bellard9307c4c2004-04-04 12:57:25 +00003446 if (*p == '\"') {
3447 p++;
3448 while (*p != '\0' && *p != '\"') {
3449 if (*p == '\\') {
3450 p++;
3451 c = *p++;
3452 switch(c) {
3453 case 'n':
3454 c = '\n';
3455 break;
3456 case 'r':
3457 c = '\r';
3458 break;
3459 case '\\':
3460 case '\'':
3461 case '\"':
3462 break;
3463 default:
3464 qemu_printf("unsupported escape code: '\\%c'\n", c);
3465 goto fail;
3466 }
3467 if ((q - buf) < buf_size - 1) {
3468 *q++ = c;
3469 }
3470 } else {
3471 if ((q - buf) < buf_size - 1) {
3472 *q++ = *p;
3473 }
3474 p++;
3475 }
3476 }
3477 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003478 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003479 goto fail;
3480 }
3481 p++;
3482 } else {
blueswir1cd390082008-11-16 13:53:32 +00003483 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003484 if ((q - buf) < buf_size - 1) {
3485 *q++ = *p;
3486 }
3487 p++;
3488 }
bellard9307c4c2004-04-04 12:57:25 +00003489 }
bellard81d09122004-07-14 17:21:37 +00003490 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003491 *pp = p;
3492 return 0;
3493}
3494
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003495/*
3496 * Store the command-name in cmdname, and return a pointer to
3497 * the remaining of the command string.
3498 */
3499static const char *get_command_name(const char *cmdline,
3500 char *cmdname, size_t nlen)
3501{
3502 size_t len;
3503 const char *p, *pstart;
3504
3505 p = cmdline;
3506 while (qemu_isspace(*p))
3507 p++;
3508 if (*p == '\0')
3509 return NULL;
3510 pstart = p;
3511 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3512 p++;
3513 len = p - pstart;
3514 if (len > nlen - 1)
3515 len = nlen - 1;
3516 memcpy(cmdname, pstart, len);
3517 cmdname[len] = '\0';
3518 return p;
3519}
3520
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003521/**
3522 * Read key of 'type' into 'key' and return the current
3523 * 'type' pointer.
3524 */
3525static char *key_get_info(const char *type, char **key)
3526{
3527 size_t len;
3528 char *p, *str;
3529
3530 if (*type == ',')
3531 type++;
3532
3533 p = strchr(type, ':');
3534 if (!p) {
3535 *key = NULL;
3536 return NULL;
3537 }
3538 len = p - type;
3539
3540 str = qemu_malloc(len + 1);
3541 memcpy(str, type, len);
3542 str[len] = '\0';
3543
3544 *key = str;
3545 return ++p;
3546}
3547
bellard9307c4c2004-04-04 12:57:25 +00003548static int default_fmt_format = 'x';
3549static int default_fmt_size = 4;
3550
3551#define MAX_ARGS 16
3552
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003553static int is_valid_option(const char *c, const char *typestr)
3554{
3555 char option[3];
3556
3557 option[0] = '-';
3558 option[1] = *c;
3559 option[2] = '\0';
3560
3561 typestr = strstr(typestr, option);
3562 return (typestr != NULL);
3563}
3564
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003565static const mon_cmd_t *monitor_find_command(const char *cmdname)
3566{
3567 const mon_cmd_t *cmd;
3568
3569 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3570 if (compare_cmd(cmdname, cmd->name)) {
3571 return cmd;
3572 }
3573 }
3574
3575 return NULL;
3576}
3577
Anthony Liguoric227f092009-10-01 16:12:16 -05003578static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003579 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003580 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003581{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003582 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003583 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003584 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003585 char cmdname[256];
3586 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003587 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003588
3589#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003590 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003591#endif
ths3b46e622007-09-17 08:09:54 +00003592
bellard9307c4c2004-04-04 12:57:25 +00003593 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003594 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3595 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003596 return NULL;
ths3b46e622007-09-17 08:09:54 +00003597
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003598 cmd = monitor_find_command(cmdname);
3599 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003600 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003601 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003602 }
bellard9307c4c2004-04-04 12:57:25 +00003603
bellard9307c4c2004-04-04 12:57:25 +00003604 /* parse the parameters */
3605 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003606 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003607 typestr = key_get_info(typestr, &key);
3608 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003609 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003610 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003611 typestr++;
3612 switch(c) {
3613 case 'F':
bellard81d09122004-07-14 17:21:37 +00003614 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003615 case 's':
3616 {
3617 int ret;
ths3b46e622007-09-17 08:09:54 +00003618
blueswir1cd390082008-11-16 13:53:32 +00003619 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003620 p++;
3621 if (*typestr == '?') {
3622 typestr++;
3623 if (*p == '\0') {
3624 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003625 break;
bellard9307c4c2004-04-04 12:57:25 +00003626 }
3627 }
3628 ret = get_str(buf, sizeof(buf), &p);
3629 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003630 switch(c) {
3631 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003632 monitor_printf(mon, "%s: filename expected\n",
3633 cmdname);
bellard81d09122004-07-14 17:21:37 +00003634 break;
3635 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003636 monitor_printf(mon, "%s: block device name expected\n",
3637 cmdname);
bellard81d09122004-07-14 17:21:37 +00003638 break;
3639 default:
aliguori376253e2009-03-05 23:01:23 +00003640 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003641 break;
3642 }
bellard9307c4c2004-04-04 12:57:25 +00003643 goto fail;
3644 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003645 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003646 }
3647 break;
3648 case '/':
3649 {
3650 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003651
blueswir1cd390082008-11-16 13:53:32 +00003652 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003653 p++;
3654 if (*p == '/') {
3655 /* format found */
3656 p++;
3657 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003658 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003659 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003660 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003661 count = count * 10 + (*p - '0');
3662 p++;
3663 }
3664 }
3665 size = -1;
3666 format = -1;
3667 for(;;) {
3668 switch(*p) {
3669 case 'o':
3670 case 'd':
3671 case 'u':
3672 case 'x':
3673 case 'i':
3674 case 'c':
3675 format = *p++;
3676 break;
3677 case 'b':
3678 size = 1;
3679 p++;
3680 break;
3681 case 'h':
3682 size = 2;
3683 p++;
3684 break;
3685 case 'w':
3686 size = 4;
3687 p++;
3688 break;
3689 case 'g':
3690 case 'L':
3691 size = 8;
3692 p++;
3693 break;
3694 default:
3695 goto next;
3696 }
3697 }
3698 next:
blueswir1cd390082008-11-16 13:53:32 +00003699 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003700 monitor_printf(mon, "invalid char in format: '%c'\n",
3701 *p);
bellard9307c4c2004-04-04 12:57:25 +00003702 goto fail;
3703 }
bellard9307c4c2004-04-04 12:57:25 +00003704 if (format < 0)
3705 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003706 if (format != 'i') {
3707 /* for 'i', not specifying a size gives -1 as size */
3708 if (size < 0)
3709 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003710 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003711 }
bellard9307c4c2004-04-04 12:57:25 +00003712 default_fmt_format = format;
3713 } else {
3714 count = 1;
3715 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003716 if (format != 'i') {
3717 size = default_fmt_size;
3718 } else {
3719 size = -1;
3720 }
bellard9307c4c2004-04-04 12:57:25 +00003721 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003722 qdict_put(qdict, "count", qint_from_int(count));
3723 qdict_put(qdict, "format", qint_from_int(format));
3724 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003725 }
3726 break;
3727 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003728 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003729 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003730 {
blueswir1c2efc952007-09-25 17:28:42 +00003731 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003732
blueswir1cd390082008-11-16 13:53:32 +00003733 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003734 p++;
bellard34405572004-06-08 00:55:58 +00003735 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003736 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003737 if (*p == '\0') {
3738 typestr++;
3739 break;
3740 }
bellard34405572004-06-08 00:55:58 +00003741 } else {
3742 if (*p == '.') {
3743 p++;
blueswir1cd390082008-11-16 13:53:32 +00003744 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003745 p++;
bellard34405572004-06-08 00:55:58 +00003746 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003747 typestr++;
3748 break;
bellard34405572004-06-08 00:55:58 +00003749 }
3750 }
bellard13224a82006-07-14 22:03:35 +00003751 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003752 }
aliguori376253e2009-03-05 23:01:23 +00003753 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003754 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003755 /* Check if 'i' is greater than 32-bit */
3756 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3757 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3758 monitor_printf(mon, "integer is for 32-bit values\n");
3759 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003760 } else if (c == 'M') {
3761 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003762 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003763 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003764 }
3765 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003766 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003767 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003768 {
3769 double val;
3770
3771 while (qemu_isspace(*p))
3772 p++;
3773 if (*typestr == '?') {
3774 typestr++;
3775 if (*p == '\0') {
3776 break;
3777 }
3778 }
3779 if (get_double(mon, &val, &p) < 0) {
3780 goto fail;
3781 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003782 if (c == 'b' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003783 switch (*p) {
3784 case 'K': case 'k':
3785 val *= 1 << 10; p++; break;
3786 case 'M': case 'm':
3787 val *= 1 << 20; p++; break;
3788 case 'G': case 'g':
3789 val *= 1 << 30; p++; break;
3790 }
3791 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003792 if (c == 'T' && p[0] && p[1] == 's') {
3793 switch (*p) {
3794 case 'm':
3795 val /= 1e3; p += 2; break;
3796 case 'u':
3797 val /= 1e6; p += 2; break;
3798 case 'n':
3799 val /= 1e9; p += 2; break;
3800 }
3801 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003802 if (*p && !qemu_isspace(*p)) {
3803 monitor_printf(mon, "Unknown unit suffix\n");
3804 goto fail;
3805 }
3806 qdict_put(qdict, key, qfloat_from_double(val));
3807 }
3808 break;
bellard9307c4c2004-04-04 12:57:25 +00003809 case '-':
3810 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003811 const char *tmp = p;
3812 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003813 /* option */
ths3b46e622007-09-17 08:09:54 +00003814
bellard9307c4c2004-04-04 12:57:25 +00003815 c = *typestr++;
3816 if (c == '\0')
3817 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003818 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003819 p++;
3820 has_option = 0;
3821 if (*p == '-') {
3822 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003823 if(c != *p) {
3824 if(!is_valid_option(p, typestr)) {
3825
3826 monitor_printf(mon, "%s: unsupported option -%c\n",
3827 cmdname, *p);
3828 goto fail;
3829 } else {
3830 skip_key = 1;
3831 }
bellard9307c4c2004-04-04 12:57:25 +00003832 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003833 if(skip_key) {
3834 p = tmp;
3835 } else {
3836 p++;
3837 has_option = 1;
3838 }
bellard9307c4c2004-04-04 12:57:25 +00003839 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003840 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003841 }
3842 break;
3843 default:
3844 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003845 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003846 goto fail;
3847 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003848 qemu_free(key);
3849 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003850 }
3851 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003852 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003853 p++;
3854 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003855 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3856 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003857 goto fail;
3858 }
3859
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003860 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003861
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003862fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003863 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003864 return NULL;
3865}
3866
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003867void monitor_set_error(Monitor *mon, QError *qerror)
3868{
3869 /* report only the first error */
3870 if (!mon->error) {
3871 mon->error = qerror;
3872 } else {
3873 MON_DEBUG("Additional error report at %s:%d\n",
3874 qerror->file, qerror->linenr);
3875 QDECREF(qerror);
3876 }
3877}
3878
Luiz Capitulino8204a912009-11-18 23:05:31 -02003879static void monitor_print_error(Monitor *mon)
3880{
3881 qerror_print(mon->error);
3882 QDECREF(mon->error);
3883 mon->error = NULL;
3884}
3885
Adam Litke940cc302010-01-25 12:18:44 -06003886static int is_async_return(const QObject *data)
3887{
Luiz Capitulino82617d72010-01-27 18:01:17 -02003888 if (data && qobject_type(data) == QTYPE_QDICT) {
3889 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3890 }
3891
3892 return 0;
Adam Litke940cc302010-01-25 12:18:44 -06003893}
3894
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003895static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3896{
3897 if (ret && !monitor_has_error(mon)) {
3898 /*
3899 * If it returns failure, it must have passed on error.
3900 *
3901 * Action: Report an internal error to the client if in QMP.
3902 */
3903 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003904 qerror_report(QERR_UNDEFINED_ERROR);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003905 }
3906 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3907 cmd->name);
3908 }
3909
3910#ifdef CONFIG_DEBUG_MONITOR
3911 if (!ret && monitor_has_error(mon)) {
3912 /*
3913 * If it returns success, it must not have passed an error.
3914 *
3915 * Action: Report the passed error to the client.
3916 */
3917 MON_DEBUG("command '%s' returned success but passed an error\n",
3918 cmd->name);
3919 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003920
3921 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3922 /*
3923 * Handlers should not call Monitor print functions.
3924 *
3925 * Action: Ignore them in QMP.
3926 *
3927 * (XXX: we don't check any 'info' or 'query' command here
3928 * because the user print function _is_ called by do_info(), hence
3929 * we will trigger this check. This problem will go away when we
3930 * make 'query' commands real and kill do_info())
3931 */
3932 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3933 cmd->name, mon_print_count_get(mon));
3934 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003935#endif
3936}
3937
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003938static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3939 const QDict *params)
3940{
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003941 int ret;
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003942 QObject *data = NULL;
3943
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003944 mon_print_count_init(mon);
3945
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003946 ret = cmd->mhandler.cmd_new(mon, params, &data);
3947 handler_audit(mon, cmd, ret);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003948
Adam Litke940cc302010-01-25 12:18:44 -06003949 if (is_async_return(data)) {
3950 /*
3951 * Asynchronous commands have no initial return data but they can
3952 * generate errors. Data is returned via the async completion handler.
3953 */
3954 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3955 monitor_protocol_emitter(mon, NULL);
3956 }
3957 } else if (monitor_ctrl_mode(mon)) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003958 /* Monitor Protocol */
3959 monitor_protocol_emitter(mon, data);
3960 } else {
3961 /* User Protocol */
3962 if (data)
3963 cmd->user_print(mon, data);
3964 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003965
3966 qobject_decref(data);
3967}
3968
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003969static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003970{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003971 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003972 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003973
3974 qdict = qdict_new();
3975
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003976 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003977 if (!cmd)
3978 goto out;
3979
Adam Litke940cc302010-01-25 12:18:44 -06003980 if (monitor_handler_is_async(cmd)) {
3981 user_async_cmd_handler(mon, cmd, qdict);
3982 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003983 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003984 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003985 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003986 }
3987
Luiz Capitulino8204a912009-11-18 23:05:31 -02003988 if (monitor_has_error(mon))
3989 monitor_print_error(mon);
3990
Luiz Capitulino13917be2009-10-07 13:41:54 -03003991out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003992 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003993}
3994
bellard81d09122004-07-14 17:21:37 +00003995static void cmd_completion(const char *name, const char *list)
3996{
3997 const char *p, *pstart;
3998 char cmd[128];
3999 int len;
4000
4001 p = list;
4002 for(;;) {
4003 pstart = p;
4004 p = strchr(p, '|');
4005 if (!p)
4006 p = pstart + strlen(pstart);
4007 len = p - pstart;
4008 if (len > sizeof(cmd) - 2)
4009 len = sizeof(cmd) - 2;
4010 memcpy(cmd, pstart, len);
4011 cmd[len] = '\0';
4012 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00004013 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004014 }
4015 if (*p == '\0')
4016 break;
4017 p++;
4018 }
4019}
4020
4021static void file_completion(const char *input)
4022{
4023 DIR *ffs;
4024 struct dirent *d;
4025 char path[1024];
4026 char file[1024], file_prefix[1024];
4027 int input_path_len;
4028 const char *p;
4029
ths5fafdf22007-09-16 21:08:06 +00004030 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004031 if (!p) {
4032 input_path_len = 0;
4033 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004034 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004035 } else {
4036 input_path_len = p - input + 1;
4037 memcpy(path, input, input_path_len);
4038 if (input_path_len > sizeof(path) - 1)
4039 input_path_len = sizeof(path) - 1;
4040 path[input_path_len] = '\0';
4041 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4042 }
4043#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004044 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4045 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004046#endif
4047 ffs = opendir(path);
4048 if (!ffs)
4049 return;
4050 for(;;) {
4051 struct stat sb;
4052 d = readdir(ffs);
4053 if (!d)
4054 break;
4055 if (strstart(d->d_name, file_prefix, NULL)) {
4056 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004057 if (input_path_len < sizeof(file))
4058 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4059 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004060 /* stat the file to find out if it's a directory.
4061 * In that case add a slash to speed up typing long paths
4062 */
4063 stat(file, &sb);
4064 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004065 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004066 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004067 }
4068 }
4069 closedir(ffs);
4070}
4071
aliguori51de9762009-03-05 23:00:43 +00004072static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004073{
aliguori51de9762009-03-05 23:00:43 +00004074 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004075 const char *input = opaque;
4076
4077 if (input[0] == '\0' ||
4078 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004079 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004080 }
4081}
4082
4083/* NOTE: this parser is an approximate form of the real command parser */
4084static void parse_cmdline(const char *cmdline,
4085 int *pnb_args, char **args)
4086{
4087 const char *p;
4088 int nb_args, ret;
4089 char buf[1024];
4090
4091 p = cmdline;
4092 nb_args = 0;
4093 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004094 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004095 p++;
4096 if (*p == '\0')
4097 break;
4098 if (nb_args >= MAX_ARGS)
4099 break;
4100 ret = get_str(buf, sizeof(buf), &p);
4101 args[nb_args] = qemu_strdup(buf);
4102 nb_args++;
4103 if (ret < 0)
4104 break;
4105 }
4106 *pnb_args = nb_args;
4107}
4108
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004109static const char *next_arg_type(const char *typestr)
4110{
4111 const char *p = strchr(typestr, ':');
4112 return (p != NULL ? ++p : typestr);
4113}
4114
aliguori4c36ba32009-03-05 23:01:37 +00004115static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004116{
4117 const char *cmdname;
4118 char *args[MAX_ARGS];
4119 int nb_args, i, len;
4120 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004121 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004122 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004123
4124 parse_cmdline(cmdline, &nb_args, args);
4125#ifdef DEBUG_COMPLETION
4126 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004127 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004128 }
4129#endif
4130
4131 /* if the line ends with a space, it means we want to complete the
4132 next arg */
4133 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004134 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00004135 if (nb_args >= MAX_ARGS)
4136 return;
4137 args[nb_args++] = qemu_strdup("");
4138 }
4139 if (nb_args <= 1) {
4140 /* command completion */
4141 if (nb_args == 0)
4142 cmdname = "";
4143 else
4144 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004145 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004146 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004147 cmd_completion(cmdname, cmd->name);
4148 }
4149 } else {
4150 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00004151 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004152 if (compare_cmd(args[0], cmd->name))
4153 goto found;
4154 }
4155 return;
4156 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004157 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004158 for(i = 0; i < nb_args - 2; i++) {
4159 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004160 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004161 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004162 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004163 }
4164 }
4165 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004166 if (*ptype == '-' && ptype[1] != '\0') {
4167 ptype += 2;
4168 }
bellard81d09122004-07-14 17:21:37 +00004169 switch(*ptype) {
4170 case 'F':
4171 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004172 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004173 file_completion(str);
4174 break;
4175 case 'B':
4176 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004177 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004178 bdrv_iterate(block_completion_it, (void *)str);
4179 break;
bellard7fe48482004-10-09 18:08:01 +00004180 case 's':
4181 /* XXX: more generic ? */
4182 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004183 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004184 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4185 cmd_completion(str, cmd->name);
4186 }
bellard64866c32006-05-07 18:03:31 +00004187 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004188 char *sep = strrchr(str, '-');
4189 if (sep)
4190 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004191 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004192 for(key = key_defs; key->name != NULL; key++) {
4193 cmd_completion(str, key->name);
4194 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004195 } else if (!strcmp(cmd->name, "help|?")) {
4196 readline_set_completion_index(cur_mon->rs, strlen(str));
4197 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4198 cmd_completion(str, cmd->name);
4199 }
bellard7fe48482004-10-09 18:08:01 +00004200 }
4201 break;
bellard81d09122004-07-14 17:21:37 +00004202 default:
4203 break;
4204 }
4205 }
4206 for(i = 0; i < nb_args; i++)
4207 qemu_free(args[i]);
4208}
4209
aliguori731b0362009-03-05 23:01:42 +00004210static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004211{
aliguori731b0362009-03-05 23:01:42 +00004212 Monitor *mon = opaque;
4213
Jan Kiszkac62313b2009-12-04 14:05:29 +01004214 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004215}
4216
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004217typedef struct CmdArgs {
4218 QString *name;
4219 int type;
4220 int flag;
4221 int optional;
4222} CmdArgs;
4223
4224static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
4225{
4226 if (!cmd_args->optional) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004227 qerror_report(QERR_MISSING_PARAMETER, name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004228 return -1;
4229 }
4230
4231 if (cmd_args->type == '-') {
4232 /* handlers expect a value, they need to be changed */
4233 qdict_put(args, name, qint_from_int(0));
4234 }
4235
4236 return 0;
4237}
4238
4239static int check_arg(const CmdArgs *cmd_args, QDict *args)
4240{
4241 QObject *value;
4242 const char *name;
4243
4244 name = qstring_get_str(cmd_args->name);
4245
4246 if (!args) {
4247 return check_opt(cmd_args, name, args);
4248 }
4249
4250 value = qdict_get(args, name);
4251 if (!value) {
4252 return check_opt(cmd_args, name, args);
4253 }
4254
4255 switch (cmd_args->type) {
4256 case 'F':
4257 case 'B':
4258 case 's':
4259 if (qobject_type(value) != QTYPE_QSTRING) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004260 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "string");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004261 return -1;
4262 }
4263 break;
4264 case '/': {
4265 int i;
4266 const char *keys[] = { "count", "format", "size", NULL };
4267
4268 for (i = 0; keys[i]; i++) {
4269 QObject *obj = qdict_get(args, keys[i]);
4270 if (!obj) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004271 qerror_report(QERR_MISSING_PARAMETER, name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004272 return -1;
4273 }
4274 if (qobject_type(obj) != QTYPE_QINT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004275 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "int");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004276 return -1;
4277 }
4278 }
4279 break;
4280 }
4281 case 'i':
4282 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004283 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004284 if (qobject_type(value) != QTYPE_QINT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004285 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "int");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004286 return -1;
4287 }
4288 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004289 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004290 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004291 if (qobject_type(value) != QTYPE_QINT && qobject_type(value) != QTYPE_QFLOAT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004292 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "number");
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004293 return -1;
4294 }
4295 break;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004296 case '-':
4297 if (qobject_type(value) != QTYPE_QINT &&
4298 qobject_type(value) != QTYPE_QBOOL) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004299 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "bool");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004300 return -1;
4301 }
4302 if (qobject_type(value) == QTYPE_QBOOL) {
4303 /* handlers expect a QInt, they need to be changed */
4304 qdict_put(args, name,
4305 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
4306 }
4307 break;
4308 default:
4309 /* impossible */
4310 abort();
4311 }
4312
4313 return 0;
4314}
4315
4316static void cmd_args_init(CmdArgs *cmd_args)
4317{
4318 cmd_args->name = qstring_new();
4319 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
4320}
4321
4322/*
4323 * This is not trivial, we have to parse Monitor command's argument
4324 * type syntax to be able to check the arguments provided by clients.
4325 *
4326 * In the near future we will be using an array for that and will be
4327 * able to drop all this parsing...
4328 */
4329static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
4330{
4331 int err;
4332 const char *p;
4333 CmdArgs cmd_args;
4334
Blue Swirldd5121b2009-12-04 20:52:02 +00004335 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004336 return (qdict_size(args) == 0 ? 0 : -1);
4337 }
4338
4339 err = 0;
4340 cmd_args_init(&cmd_args);
4341
4342 for (p = cmd->args_type;; p++) {
4343 if (*p == ':') {
4344 cmd_args.type = *++p;
4345 p++;
4346 if (cmd_args.type == '-') {
4347 cmd_args.flag = *p++;
4348 cmd_args.optional = 1;
4349 } else if (*p == '?') {
4350 cmd_args.optional = 1;
4351 p++;
4352 }
4353
4354 assert(*p == ',' || *p == '\0');
4355 err = check_arg(&cmd_args, args);
4356
4357 QDECREF(cmd_args.name);
4358 cmd_args_init(&cmd_args);
4359
4360 if (err < 0) {
4361 break;
4362 }
4363 } else {
4364 qstring_append_chr(cmd_args.name, *p);
4365 }
4366
4367 if (*p == '\0') {
4368 break;
4369 }
4370 }
4371
4372 QDECREF(cmd_args.name);
4373 return err;
4374}
4375
Luiz Capitulino09069b12010-02-04 18:10:06 -02004376static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4377{
4378 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4379 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4380}
4381
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004382static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4383{
4384 int err;
4385 QObject *obj;
4386 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004387 const mon_cmd_t *cmd;
4388 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004389 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004390
4391 args = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004392
4393 obj = json_parser_parse(tokens, NULL);
4394 if (!obj) {
4395 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004396 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004397 goto err_out;
4398 } else if (qobject_type(obj) != QTYPE_QDICT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004399 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004400 qobject_decref(obj);
4401 goto err_out;
4402 }
4403
4404 input = qobject_to_qdict(obj);
4405
4406 mon->mc->id = qdict_get(input, "id");
4407 qobject_incref(mon->mc->id);
4408
4409 obj = qdict_get(input, "execute");
4410 if (!obj) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004411 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004412 goto err_input;
4413 } else if (qobject_type(obj) != QTYPE_QSTRING) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004414 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "string");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004415 goto err_input;
4416 }
4417
4418 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004419
Luiz Capitulino09069b12010-02-04 18:10:06 -02004420 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004421 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004422 goto err_input;
4423 }
4424
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004425 /*
4426 * XXX: We need this special case until we get info handlers
4427 * converted into 'query-' commands
4428 */
4429 if (compare_cmd(cmd_name, "info")) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004430 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004431 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004432 } else if (strstart(cmd_name, "query-", &info_item)) {
4433 cmd = monitor_find_command("info");
4434 qdict_put_obj(input, "arguments",
4435 qobject_from_jsonf("{ 'item': %s }", info_item));
4436 } else {
4437 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004438 if (!cmd || !monitor_handler_ported(cmd)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004439 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004440 goto err_input;
4441 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004442 }
4443
4444 obj = qdict_get(input, "arguments");
4445 if (!obj) {
4446 args = qdict_new();
4447 } else {
4448 args = qobject_to_qdict(obj);
4449 QINCREF(args);
4450 }
4451
4452 QDECREF(input);
4453
4454 err = monitor_check_qmp_args(cmd, args);
4455 if (err < 0) {
4456 goto err_out;
4457 }
4458
Adam Litke940cc302010-01-25 12:18:44 -06004459 if (monitor_handler_is_async(cmd)) {
4460 qmp_async_cmd_handler(mon, cmd, args);
4461 } else {
4462 monitor_call_handler(mon, cmd, args);
4463 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004464 goto out;
4465
4466err_input:
4467 QDECREF(input);
4468err_out:
4469 monitor_protocol_emitter(mon, NULL);
4470out:
4471 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004472}
4473
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004474/**
4475 * monitor_control_read(): Read and handle QMP input
4476 */
4477static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4478{
4479 Monitor *old_mon = cur_mon;
4480
4481 cur_mon = opaque;
4482
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004483 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004484
4485 cur_mon = old_mon;
4486}
4487
aliguori731b0362009-03-05 23:01:42 +00004488static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004489{
aliguori731b0362009-03-05 23:01:42 +00004490 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004491 int i;
aliguori376253e2009-03-05 23:01:23 +00004492
aliguori731b0362009-03-05 23:01:42 +00004493 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004494
aliguoricde76ee2009-03-05 23:01:51 +00004495 if (cur_mon->rs) {
4496 for (i = 0; i < size; i++)
4497 readline_handle_byte(cur_mon->rs, buf[i]);
4498 } else {
4499 if (size == 0 || buf[size - 1] != 0)
4500 monitor_printf(cur_mon, "corrupted command\n");
4501 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004502 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004503 }
aliguori731b0362009-03-05 23:01:42 +00004504
4505 cur_mon = old_mon;
4506}
aliguorid8f44602008-10-06 13:52:44 +00004507
aliguori376253e2009-03-05 23:01:23 +00004508static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004509{
aliguori731b0362009-03-05 23:01:42 +00004510 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004511 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004512 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004513}
4514
aliguoricde76ee2009-03-05 23:01:51 +00004515int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004516{
aliguoricde76ee2009-03-05 23:01:51 +00004517 if (!mon->rs)
4518 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004519 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004520 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004521}
4522
aliguori376253e2009-03-05 23:01:23 +00004523void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004524{
aliguoricde76ee2009-03-05 23:01:51 +00004525 if (!mon->rs)
4526 return;
aliguori731b0362009-03-05 23:01:42 +00004527 if (--mon->suspend_cnt == 0)
4528 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004529}
4530
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004531static QObject *get_qmp_greeting(void)
4532{
4533 QObject *ver;
4534
4535 do_info_version(NULL, &ver);
4536 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4537}
4538
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004539/**
4540 * monitor_control_event(): Print QMP gretting
4541 */
4542static void monitor_control_event(void *opaque, int event)
4543{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004544 QObject *data;
4545 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004546
Luiz Capitulino47116d12010-02-08 17:01:30 -02004547 switch (event) {
4548 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004549 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004550 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004551 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004552 monitor_json_emitter(mon, data);
4553 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004554 break;
4555 case CHR_EVENT_CLOSED:
4556 json_message_parser_destroy(&mon->mc->parser);
4557 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004558 }
4559}
4560
aliguori731b0362009-03-05 23:01:42 +00004561static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004562{
aliguori376253e2009-03-05 23:01:23 +00004563 Monitor *mon = opaque;
4564
aliguori2724b182009-03-05 23:01:47 +00004565 switch (event) {
4566 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004567 mon->mux_out = 0;
4568 if (mon->reset_seen) {
4569 readline_restart(mon->rs);
4570 monitor_resume(mon);
4571 monitor_flush(mon);
4572 } else {
4573 mon->suspend_cnt = 0;
4574 }
aliguori2724b182009-03-05 23:01:47 +00004575 break;
ths86e94de2007-01-05 22:01:59 +00004576
aliguori2724b182009-03-05 23:01:47 +00004577 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004578 if (mon->reset_seen) {
4579 if (mon->suspend_cnt == 0) {
4580 monitor_printf(mon, "\n");
4581 }
4582 monitor_flush(mon);
4583 monitor_suspend(mon);
4584 } else {
4585 mon->suspend_cnt++;
4586 }
4587 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004588 break;
4589
Amit Shahb6b8df52009-10-07 18:31:16 +05304590 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004591 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4592 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004593 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004594 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004595 }
4596 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004597 break;
4598 }
ths86e94de2007-01-05 22:01:59 +00004599}
4600
aliguori76655d62009-03-06 20:27:37 +00004601
4602/*
4603 * Local variables:
4604 * c-indent-level: 4
4605 * c-basic-offset: 4
4606 * tab-width: 8
4607 * End:
4608 */
4609
aliguori731b0362009-03-05 23:01:42 +00004610void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004611{
aliguori731b0362009-03-05 23:01:42 +00004612 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004613 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004614
4615 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004616 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004617 is_first_init = 0;
4618 }
aliguori87127162009-03-05 23:01:29 +00004619
4620 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004621
aliguori87127162009-03-05 23:01:29 +00004622 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004623 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004624 if (flags & MONITOR_USE_READLINE) {
4625 mon->rs = readline_init(mon, monitor_find_completion);
4626 monitor_read_command(mon, 0);
4627 }
aliguori87127162009-03-05 23:01:29 +00004628
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004629 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004630 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004631 /* Control mode requires special handlers */
4632 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4633 monitor_control_event, mon);
4634 } else {
4635 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4636 monitor_event, mon);
4637 }
aliguori87127162009-03-05 23:01:29 +00004638
Blue Swirl72cf2d42009-09-12 07:36:22 +00004639 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004640 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4641 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004642}
4643
aliguori376253e2009-03-05 23:01:23 +00004644static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004645{
aliguoribb5fc202009-03-05 23:01:15 +00004646 BlockDriverState *bs = opaque;
4647 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004648
aliguoribb5fc202009-03-05 23:01:15 +00004649 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004650 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004651 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004652 }
aliguori731b0362009-03-05 23:01:42 +00004653 if (mon->password_completion_cb)
4654 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004655
aliguori731b0362009-03-05 23:01:42 +00004656 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004657}
aliguoric0f4ce72009-03-05 23:01:01 +00004658
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004659int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4660 BlockDriverCompletionFunc *completion_cb,
4661 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004662{
aliguoricde76ee2009-03-05 23:01:51 +00004663 int err;
4664
aliguoribb5fc202009-03-05 23:01:15 +00004665 if (!bdrv_key_required(bs)) {
4666 if (completion_cb)
4667 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004668 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004669 }
aliguoric0f4ce72009-03-05 23:01:01 +00004670
Luiz Capitulino94171e12009-12-07 21:37:00 +01004671 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004672 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004673 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004674 }
4675
aliguori376253e2009-03-05 23:01:23 +00004676 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4677 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004678
aliguori731b0362009-03-05 23:01:42 +00004679 mon->password_completion_cb = completion_cb;
4680 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004681
aliguoricde76ee2009-03-05 23:01:51 +00004682 err = monitor_read_password(mon, bdrv_password_cb, bs);
4683
4684 if (err && completion_cb)
4685 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004686
4687 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004688}