blob: eacef6183b3b6ab76818554bb1f2b5b547e8452f [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"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +010026#include "monitor/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010029#include "hw/i386/pc.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020030#include "hw/pci/pci.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010031#include "sysemu/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010033#include "exec/gdbstub.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020034#include "net/net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000035#include "net/slirp.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020036#include "sysemu/char.h"
Gerd Hoffmann75721502010-10-07 12:22:54 +020037#include "ui/qemu-spice.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010038#include "sysemu/sysemu.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010039#include "monitor/monitor.h"
Stefan Hajnoczi0150cd82013-11-14 11:54:15 +010040#include "qemu/readline.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010041#include "ui/console.h"
Gerd Hoffmannc751a742013-12-04 15:02:28 +010042#include "ui/input.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010043#include "sysemu/blockdev.h"
pbrook87ecb682007-11-17 17:14:51 +000044#include "audio/audio.h"
Paolo Bonzini76cad712012-10-24 11:12:21 +020045#include "disas/disas.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010046#include "sysemu/balloon.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010047#include "qemu/timer.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +010048#include "migration/migration.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010049#include "sysemu/kvm.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010050#include "qemu/acl.h"
Paolo Bonzinibdee56f2013-04-02 18:28:41 +020051#include "sysemu/tpm.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010052#include "qapi/qmp/qint.h"
53#include "qapi/qmp/qfloat.h"
54#include "qapi/qmp/qlist.h"
55#include "qapi/qmp/qbool.h"
56#include "qapi/qmp/qstring.h"
57#include "qapi/qmp/qjson.h"
58#include "qapi/qmp/json-streamer.h"
59#include "qapi/qmp/json-parser.h"
Hani Benhabiles1094fd32014-02-06 23:30:13 +010060#include <qom/object_interfaces.h>
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010061#include "qemu/osdep.h"
Blue Swirl2b41f102011-06-19 20:38:22 +000062#include "cpu.h"
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +010063#include "trace.h"
Lluís31965ae2011-08-31 20:31:24 +020064#include "trace/control.h"
Lluís6d8a7642011-08-31 20:30:43 +020065#ifdef CONFIG_TRACE_SIMPLE
Lluís31965ae2011-08-31 20:31:24 +020066#include "trace/simple.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053067#endif
Paolo Bonzini022c62c2012-12-17 18:19:49 +010068#include "exec/memory.h"
Paolo Bonzinif08b6172014-03-28 19:42:10 +010069#include "exec/cpu_ldst.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050070#include "qmp-commands.h"
71#include "hmp.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010072#include "qemu/thread.h"
Hani Benhabilesb21631f2014-05-27 23:39:37 +010073#include "block/qapi.h"
Wenchao Xia43a14cf2014-06-18 08:43:31 +020074#include "qapi/qmp-event.h"
75#include "qapi-event.h"
ths6a5bd302007-12-03 17:05:38 +000076
Jan Kiszka661f1922011-10-16 11:53:13 +020077/* for pic/irq_info */
78#if defined(TARGET_SPARC)
Paolo Bonzini0d09e412013-02-05 17:06:20 +010079#include "hw/sparc/sun4m.h"
Jan Kiszka661f1922011-10-16 11:53:13 +020080#endif
Paolo Bonzini0d09e412013-02-05 17:06:20 +010081#include "hw/lm32/lm32_pic.h"
Jan Kiszka661f1922011-10-16 11:53:13 +020082
bellard9dc39cb2004-03-14 21:38:27 +000083//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000084//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000085
bellard9307c4c2004-04-04 12:57:25 +000086/*
87 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000088 *
bellard9307c4c2004-04-04 12:57:25 +000089 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000090 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000091 * 's' string (accept optional quote)
Wenchao Xia129be002013-08-27 20:38:26 +080092 * 'S' it just appends the rest of the string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010093 * 'O' option string of the form NAME=VALUE,...
94 * parsed according to QemuOptsList given by its name
95 * Example: 'device:O' uses qemu_device_opts.
96 * Restriction: only lists with empty desc are supported
97 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000098 * 'i' 32 bit integer
99 * 'l' target long (32 or 64 bit)
Luiz Capitulino91162842012-04-26 17:34:30 -0300100 * 'M' Non-negative target long (32 or 64 bit), in user mode the
101 * value is multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +0200102 * 'o' octets (aka bytes)
Kevin Wolf5e009842013-06-05 14:19:27 +0200103 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
104 * K, k suffix, which multiplies the value by 2^60 for suffixes E
105 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
106 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +0100107 * 'T' double
108 * user mode accepts an optional ms, us, ns suffix,
109 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +0000110 * '/' optional gdb-like print format (like "/10x")
111 *
Luiz Capitulinofb466602009-08-28 15:27:27 -0300112 * '?' optional type (for all types, except '/')
113 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100114 * 'b' boolean
115 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300116 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000117 *
118 */
119
Adam Litke940cc302010-01-25 12:18:44 -0600120typedef struct MonitorCompletionData MonitorCompletionData;
121struct MonitorCompletionData {
122 Monitor *mon;
123 void (*user_print)(Monitor *mon, const QObject *data);
124};
125
Anthony Liguoric227f092009-10-01 16:12:16 -0500126typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000127 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000128 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000129 const char *params;
130 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300131 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300132 union {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300133 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200134 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600135 int (*cmd_async)(Monitor *mon, const QDict *params,
136 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300137 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200138 int flags;
Wenchao Xia5f3d3352013-01-14 14:06:27 +0800139 /* @sub_table is a list of 2nd level of commands. If it do not exist,
140 * mhandler should be used. If it exist, sub_table[?].mhandler should be
141 * used, and mhandler of 1st level plays the role of help function.
142 */
143 struct mon_cmd_t *sub_table;
Hani Benhabilesbfa40f72014-04-13 16:25:06 +0100144 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
Anthony Liguoric227f092009-10-01 16:12:16 -0500145} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000146
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100147/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500148typedef struct mon_fd_t mon_fd_t;
149struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100150 char *name;
151 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500152 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100153};
154
Corey Bryantba1c0482012-08-14 16:43:43 -0400155/* file descriptor associated with a file descriptor set */
156typedef struct MonFdsetFd MonFdsetFd;
157struct MonFdsetFd {
158 int fd;
159 bool removed;
160 char *opaque;
161 QLIST_ENTRY(MonFdsetFd) next;
162};
163
164/* file descriptor set containing fds passed via SCM_RIGHTS */
165typedef struct MonFdset MonFdset;
166struct MonFdset {
167 int64_t id;
168 QLIST_HEAD(, MonFdsetFd) fds;
Corey Bryantadb696f2012-08-14 16:43:47 -0400169 QLIST_HEAD(, MonFdsetFd) dup_fds;
Corey Bryantba1c0482012-08-14 16:43:43 -0400170 QLIST_ENTRY(MonFdset) next;
171};
172
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200173typedef struct MonitorControl {
174 QObject *id;
175 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200176 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200177} MonitorControl;
178
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100179/*
180 * To prevent flooding clients, events can be throttled. The
181 * throttling is calculated globally, rather than per-Monitor
182 * instance.
183 */
184typedef struct MonitorEventState {
185 MonitorEvent event; /* Event being tracked */
186 int64_t rate; /* Period over which to throttle. 0 to disable */
187 int64_t last; /* Time at which event was last emitted */
188 QEMUTimer *timer; /* Timer for handling delayed events */
189 QObject *data; /* Event pending delayed dispatch */
190} MonitorEventState;
191
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200192typedef struct MonitorQAPIEventState {
193 QAPIEvent event; /* Event being tracked */
194 int64_t rate; /* Minimum time (in ns) between two events */
195 int64_t last; /* QEMU_CLOCK_REALTIME value at last emission */
196 QEMUTimer *timer; /* Timer for handling delayed events */
197 QObject *data; /* Event pending delayed dispatch */
198} MonitorQAPIEventState;
199
aliguori87127162009-03-05 23:01:29 +0000200struct Monitor {
201 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200202 int mux_out;
203 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000204 int flags;
205 int suspend_cnt;
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400206 bool skip_flush;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400207 QString *outbuf;
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200208 guint watch;
aliguori731b0362009-03-05 23:01:42 +0000209 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200210 MonitorControl *mc;
Andreas Färbercb446ec2013-05-01 14:24:52 +0200211 CPUState *mon_cpu;
aliguori731b0362009-03-05 23:01:42 +0000212 BlockDriverCompletionFunc *password_completion_cb;
213 void *password_opaque;
Wenchao Xia77172392013-08-27 20:38:20 +0800214 mon_cmd_t *cmd_table;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200215 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500216 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000217 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000218};
219
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300220/* QMP checker flags */
221#define QMP_ACCEPT_UNKNOWNS 1
222
Blue Swirl72cf2d42009-09-12 07:36:22 +0000223static QLIST_HEAD(mon_list, Monitor) mon_list;
Corey Bryantba1c0482012-08-14 16:43:43 -0400224static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
Corey Bryantefb87c12012-08-14 16:43:48 -0400225static int mon_refcount;
bellard7e2515e2004-08-01 21:52:19 +0000226
Wayne Xia816f8922011-10-12 11:32:41 +0800227static mon_cmd_t mon_cmds[];
228static mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000229
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300230static const mon_cmd_t qmp_cmds[];
231
Markus Armbruster8631b602010-02-18 11:41:55 +0100232Monitor *cur_mon;
233Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000234
Stefan Hajnoczic60bf332013-11-14 11:54:14 +0100235static void monitor_command_cb(void *opaque, const char *cmdline,
236 void *readline_opaque);
aliguori83ab7952008-08-19 14:44:22 +0000237
Luiz Capitulino09069b12010-02-04 18:10:06 -0200238static inline int qmp_cmd_mode(const Monitor *mon)
239{
240 return (mon->mc ? mon->mc->command_mode : 0);
241}
242
Luiz Capitulino418173c2009-11-26 22:58:51 -0200243/* Return true if in control mode, false otherwise */
244static inline int monitor_ctrl_mode(const Monitor *mon)
245{
246 return (mon->flags & MONITOR_USE_CONTROL);
247}
248
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100249/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
250int monitor_cur_is_qmp(void)
251{
252 return cur_mon && monitor_ctrl_mode(cur_mon);
253}
254
Anthony Liguori7060b472011-09-02 12:34:50 -0500255void monitor_read_command(Monitor *mon, int show_prompt)
aliguori731b0362009-03-05 23:01:42 +0000256{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200257 if (!mon->rs)
258 return;
259
aliguori731b0362009-03-05 23:01:42 +0000260 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
261 if (show_prompt)
262 readline_show_prompt(mon->rs);
263}
bellard6a00d602005-11-21 23:25:50 +0000264
Anthony Liguori7060b472011-09-02 12:34:50 -0500265int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
266 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000267{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100268 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100269 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100270 return -EINVAL;
271 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000272 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
273 /* prompt is printed on return from the command handler */
274 return 0;
275 } else {
276 monitor_printf(mon, "terminal does not support password prompting\n");
277 return -ENOTTY;
278 }
aliguoribb5fc202009-03-05 23:01:15 +0000279}
280
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100281static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
282 void *opaque)
283{
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200284 Monitor *mon = opaque;
285
286 mon->watch = 0;
287 monitor_flush(mon);
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100288 return FALSE;
289}
290
aliguori376253e2009-03-05 23:01:23 +0000291void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000292{
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100293 int rc;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400294 size_t len;
295 const char *buf;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100296
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400297 if (mon->skip_flush) {
298 return;
299 }
300
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400301 buf = qstring_get_str(mon->outbuf);
302 len = qstring_get_length(mon->outbuf);
303
Paolo Bonzinia4cc73d2013-05-31 14:00:27 +0200304 if (len && !mon->mux_out) {
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400305 rc = qemu_chr_fe_write(mon->chr, (const uint8_t *) buf, len);
Stratos Psomadakis056f49f2014-01-27 12:30:15 +0200306 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
307 /* all flushed or error */
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400308 QDECREF(mon->outbuf);
309 mon->outbuf = qstring_new();
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100310 return;
311 }
312 if (rc > 0) {
313 /* partinal write */
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400314 QString *tmp = qstring_from_str(buf + rc);
315 QDECREF(mon->outbuf);
316 mon->outbuf = tmp;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100317 }
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200318 if (mon->watch == 0) {
319 mon->watch = qemu_chr_fe_add_watch(mon->chr, G_IO_OUT,
320 monitor_unblocked, mon);
321 }
bellard7e2515e2004-08-01 21:52:19 +0000322 }
323}
324
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400325/* flush at every end of line */
aliguori376253e2009-03-05 23:01:23 +0000326static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000327{
ths60fe76f2007-12-16 03:02:09 +0000328 char c;
aliguori731b0362009-03-05 23:01:42 +0000329
bellard7e2515e2004-08-01 21:52:19 +0000330 for(;;) {
331 c = *str++;
332 if (c == '\0')
333 break;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400334 if (c == '\n') {
335 qstring_append_chr(mon->outbuf, '\r');
336 }
337 qstring_append_chr(mon->outbuf, c);
338 if (c == '\n') {
aliguori376253e2009-03-05 23:01:23 +0000339 monitor_flush(mon);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400340 }
bellard7e2515e2004-08-01 21:52:19 +0000341 }
342}
343
aliguori376253e2009-03-05 23:01:23 +0000344void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000345{
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400346 char *buf;
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200347
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200348 if (!mon)
349 return;
350
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200351 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200352 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200353 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200354
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400355 buf = g_strdup_vprintf(fmt, ap);
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200356 monitor_puts(mon, buf);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400357 g_free(buf);
bellard7e2515e2004-08-01 21:52:19 +0000358}
359
aliguori376253e2009-03-05 23:01:23 +0000360void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000361{
362 va_list ap;
363 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000364 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000365 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000366}
367
Stefan Weil8b7968f2010-09-23 21:28:05 +0200368static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
369 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000370{
371 va_list ap;
372 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000373 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000374 va_end(ap);
375 return 0;
376}
377
Luiz Capitulino13c74252009-10-07 13:41:55 -0300378static void monitor_user_noop(Monitor *mon, const QObject *data) { }
379
Luiz Capitulino9e807212010-09-16 10:58:59 -0300380static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300381{
382 return cmd->user_print != NULL;
383}
384
Luiz Capitulino4903de02010-09-16 11:01:32 -0300385static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600386{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200387 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600388}
389
Luiz Capitulino8204a912009-11-18 23:05:31 -0200390static inline int monitor_has_error(const Monitor *mon)
391{
392 return mon->error != NULL;
393}
394
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200395static void monitor_json_emitter(Monitor *mon, const QObject *data)
396{
397 QString *json;
398
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200399 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
400 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200401 assert(json != NULL);
402
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200403 qstring_append_chr(json, '\n');
404 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200405
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200406 QDECREF(json);
407}
408
Luiz Capitulinode253f12012-07-27 16:18:16 -0300409static QDict *build_qmp_error_dict(const QError *err)
410{
411 QObject *obj;
412
413 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %p } }",
414 ErrorClass_lookup[err->err_class],
415 qerror_human(err));
416
417 return qobject_to_qdict(obj);
418}
419
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200420static void monitor_protocol_emitter(Monitor *mon, QObject *data)
421{
422 QDict *qmp;
423
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +0100424 trace_monitor_protocol_emitter(mon);
425
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200426 if (!monitor_has_error(mon)) {
427 /* success response */
Luiz Capitulinode253f12012-07-27 16:18:16 -0300428 qmp = qdict_new();
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200429 if (data) {
430 qobject_incref(data);
431 qdict_put_obj(qmp, "return", data);
432 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200433 /* return an empty QDict by default */
434 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200435 }
436 } else {
437 /* error response */
Luiz Capitulinode253f12012-07-27 16:18:16 -0300438 qmp = build_qmp_error_dict(mon->error);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200439 QDECREF(mon->error);
440 mon->error = NULL;
441 }
442
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200443 if (mon->mc->id) {
444 qdict_put_obj(qmp, "id", mon->mc->id);
445 mon->mc->id = NULL;
446 }
447
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200448 monitor_json_emitter(mon, QOBJECT(qmp));
449 QDECREF(qmp);
450}
451
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200452static void timestamp_put(QDict *qdict)
453{
454 int err;
455 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000456 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200457
Blue Swirld08d6f02009-12-04 18:06:39 +0000458 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200459 if (err < 0)
460 return;
461
462 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
463 "'microseconds': %" PRId64 " }",
464 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200465 qdict_put_obj(qdict, "timestamp", obj);
466}
467
Daniel P. Berrange48608532012-05-21 17:59:51 +0100468
469static const char *monitor_event_names[] = {
470 [QEVENT_SHUTDOWN] = "SHUTDOWN",
471 [QEVENT_RESET] = "RESET",
472 [QEVENT_POWERDOWN] = "POWERDOWN",
473 [QEVENT_STOP] = "STOP",
474 [QEVENT_RESUME] = "RESUME",
475 [QEVENT_VNC_CONNECTED] = "VNC_CONNECTED",
476 [QEVENT_VNC_INITIALIZED] = "VNC_INITIALIZED",
477 [QEVENT_VNC_DISCONNECTED] = "VNC_DISCONNECTED",
478 [QEVENT_BLOCK_IO_ERROR] = "BLOCK_IO_ERROR",
479 [QEVENT_RTC_CHANGE] = "RTC_CHANGE",
480 [QEVENT_WATCHDOG] = "WATCHDOG",
481 [QEVENT_SPICE_CONNECTED] = "SPICE_CONNECTED",
482 [QEVENT_SPICE_INITIALIZED] = "SPICE_INITIALIZED",
483 [QEVENT_SPICE_DISCONNECTED] = "SPICE_DISCONNECTED",
484 [QEVENT_BLOCK_JOB_COMPLETED] = "BLOCK_JOB_COMPLETED",
485 [QEVENT_BLOCK_JOB_CANCELLED] = "BLOCK_JOB_CANCELLED",
Paolo Bonzini32c81a42012-09-28 17:22:58 +0200486 [QEVENT_BLOCK_JOB_ERROR] = "BLOCK_JOB_ERROR",
Paolo Bonzinia66a2a32012-07-23 15:15:47 +0200487 [QEVENT_BLOCK_JOB_READY] = "BLOCK_JOB_READY",
Michael S. Tsirkin0402a5d2013-03-06 14:58:59 +0200488 [QEVENT_DEVICE_DELETED] = "DEVICE_DELETED",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100489 [QEVENT_DEVICE_TRAY_MOVED] = "DEVICE_TRAY_MOVED",
Amos Kongb1be4282013-06-14 15:45:52 +0800490 [QEVENT_NIC_RX_FILTER_CHANGED] = "NIC_RX_FILTER_CHANGED",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100491 [QEVENT_SUSPEND] = "SUSPEND",
Luiz Capitulino25df49f2012-08-08 17:03:01 -0300492 [QEVENT_SUSPEND_DISK] = "SUSPEND_DISK",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100493 [QEVENT_WAKEUP] = "WAKEUP",
Daniel P. Berrange973603a2012-06-14 18:12:56 +0100494 [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE",
Yonit Halperin2fdd16e2012-08-21 11:51:57 +0300495 [QEVENT_SPICE_MIGRATE_COMPLETED] = "SPICE_MIGRATE_COMPLETED",
Hu Taoc401a8a2013-04-26 11:24:41 +0800496 [QEVENT_GUEST_PANICKED] = "GUEST_PANICKED",
Max Reitza40f1c22013-08-30 14:34:25 +0200497 [QEVENT_BLOCK_IMAGE_CORRUPTED] = "BLOCK_IMAGE_CORRUPTED",
Benoît Canet95c6bff2014-02-21 22:21:15 +0100498 [QEVENT_QUORUM_FAILURE] = "QUORUM_FAILURE",
499 [QEVENT_QUORUM_REPORT_BAD] = "QUORUM_REPORT_BAD",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100500};
501QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
502
Stefan Weil79f32022014-05-02 22:43:57 +0200503static MonitorEventState monitor_event_state[QEVENT_MAX];
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200504static MonitorQAPIEventState monitor_qapi_event_state[QAPI_EVENT_MAX];
505
506/*
507 * Emits the event to every monitor instance, @event is only used for trace
508 */
509static void monitor_qapi_event_emit(QAPIEvent event, QObject *data)
510{
511 Monitor *mon;
512
513 trace_monitor_protocol_event_emit(event, data);
514 QLIST_FOREACH(mon, &mon_list, entry) {
515 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
516 monitor_json_emitter(mon, data);
517 }
518 }
519}
520
521/*
522 * Queue a new event for emission to Monitor instances,
523 * applying any rate limiting if required.
524 */
525static void
526monitor_qapi_event_queue(QAPIEvent event, QDict *data, Error **errp)
527{
528 MonitorQAPIEventState *evstate;
529 assert(event < QAPI_EVENT_MAX);
530 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
531
532 evstate = &(monitor_qapi_event_state[event]);
533 trace_monitor_protocol_event_queue(event,
534 data,
535 evstate->rate,
536 evstate->last,
537 now);
538
539 /* Rate limit of 0 indicates no throttling */
540 if (!evstate->rate) {
541 monitor_qapi_event_emit(event, QOBJECT(data));
542 evstate->last = now;
543 } else {
544 int64_t delta = now - evstate->last;
545 if (evstate->data ||
546 delta < evstate->rate) {
547 /* If there's an existing event pending, replace
548 * it with the new event, otherwise schedule a
549 * timer for delayed emission
550 */
551 if (evstate->data) {
552 qobject_decref(evstate->data);
553 } else {
554 int64_t then = evstate->last + evstate->rate;
555 timer_mod_ns(evstate->timer, then);
556 }
557 evstate->data = QOBJECT(data);
558 qobject_incref(evstate->data);
559 } else {
560 monitor_qapi_event_emit(event, QOBJECT(data));
561 evstate->last = now;
562 }
563 }
564}
565
566/*
567 * The callback invoked by QemuTimer when a delayed
568 * event is ready to be emitted
569 */
570static void monitor_qapi_event_handler(void *opaque)
571{
572 MonitorQAPIEventState *evstate = opaque;
573 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
574
575 trace_monitor_protocol_event_handler(evstate->event,
576 evstate->data,
577 evstate->last,
578 now);
579 if (evstate->data) {
580 monitor_qapi_event_emit(evstate->event, evstate->data);
581 qobject_decref(evstate->data);
582 evstate->data = NULL;
583 }
584 evstate->last = now;
585}
586
587/*
588 * @event: the event ID to be limited
589 * @rate: the rate limit in milliseconds
590 *
591 * Sets a rate limit on a particular event, so no
592 * more than 1 event will be emitted within @rate
593 * milliseconds
594 */
595static void __attribute__((__unused__))
596monitor_qapi_event_throttle(QAPIEvent event, int64_t rate)
597{
598 MonitorQAPIEventState *evstate;
599 assert(event < QAPI_EVENT_MAX);
600
601 evstate = &(monitor_qapi_event_state[event]);
602
603 trace_monitor_protocol_event_throttle(event, rate);
604 evstate->event = event;
605 evstate->rate = rate * SCALE_MS;
606 evstate->last = 0;
607 evstate->data = NULL;
608 evstate->timer = timer_new(QEMU_CLOCK_REALTIME,
609 SCALE_MS,
610 monitor_qapi_event_handler,
611 evstate);
612}
613
614static void monitor_qapi_event_init(void)
615{
Wenchao Xiae010ad82014-06-18 08:43:41 +0200616 /* Limit guest-triggerable events to 1 per second */
617 monitor_qapi_event_throttle(QAPI_EVENT_RTC_CHANGE, 1000);
Wenchao Xia99eaf092014-06-18 08:43:42 +0200618 monitor_qapi_event_throttle(QAPI_EVENT_WATCHDOG, 1000);
Wenchao Xiaaef9d312014-06-18 08:43:51 +0200619 monitor_qapi_event_throttle(QAPI_EVENT_BALLOON_CHANGE, 1000);
Wenchao Xiae010ad82014-06-18 08:43:41 +0200620
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200621 qmp_event_set_func_emit(monitor_qapi_event_queue);
622}
623
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100624
625/*
626 * Emits the event to every monitor instance
627 */
628static void
629monitor_protocol_event_emit(MonitorEvent event,
630 QObject *data)
631{
632 Monitor *mon;
633
634 trace_monitor_protocol_event_emit(event, data);
635 QLIST_FOREACH(mon, &mon_list, entry) {
636 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
637 monitor_json_emitter(mon, data);
638 }
639 }
640}
641
642
643/*
644 * Queue a new event for emission to Monitor instances,
645 * applying any rate limiting if required.
646 */
647static void
648monitor_protocol_event_queue(MonitorEvent event,
649 QObject *data)
650{
651 MonitorEventState *evstate;
Alex Blighbc72ad62013-08-21 16:03:08 +0100652 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100653 assert(event < QEVENT_MAX);
654
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100655 evstate = &(monitor_event_state[event]);
656 trace_monitor_protocol_event_queue(event,
657 data,
658 evstate->rate,
659 evstate->last,
660 now);
661
662 /* Rate limit of 0 indicates no throttling */
663 if (!evstate->rate) {
664 monitor_protocol_event_emit(event, data);
665 evstate->last = now;
666 } else {
667 int64_t delta = now - evstate->last;
668 if (evstate->data ||
669 delta < evstate->rate) {
670 /* If there's an existing event pending, replace
671 * it with the new event, otherwise schedule a
672 * timer for delayed emission
673 */
674 if (evstate->data) {
675 qobject_decref(evstate->data);
676 } else {
677 int64_t then = evstate->last + evstate->rate;
Alex Blighbc72ad62013-08-21 16:03:08 +0100678 timer_mod_ns(evstate->timer, then);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100679 }
680 evstate->data = data;
681 qobject_incref(evstate->data);
682 } else {
683 monitor_protocol_event_emit(event, data);
684 evstate->last = now;
685 }
686 }
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100687}
688
689
690/*
691 * The callback invoked by QemuTimer when a delayed
692 * event is ready to be emitted
693 */
694static void monitor_protocol_event_handler(void *opaque)
695{
696 MonitorEventState *evstate = opaque;
Alex Blighbc72ad62013-08-21 16:03:08 +0100697 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100698
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100699
700 trace_monitor_protocol_event_handler(evstate->event,
701 evstate->data,
702 evstate->last,
703 now);
704 if (evstate->data) {
705 monitor_protocol_event_emit(evstate->event, evstate->data);
706 qobject_decref(evstate->data);
707 evstate->data = NULL;
708 }
709 evstate->last = now;
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100710}
711
712
713/*
714 * @event: the event ID to be limited
715 * @rate: the rate limit in milliseconds
716 *
717 * Sets a rate limit on a particular event, so no
718 * more than 1 event will be emitted within @rate
719 * milliseconds
720 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200721static void __attribute__((__unused__))
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100722monitor_protocol_event_throttle(MonitorEvent event,
723 int64_t rate)
724{
725 MonitorEventState *evstate;
726 assert(event < QEVENT_MAX);
727
728 evstate = &(monitor_event_state[event]);
729
730 trace_monitor_protocol_event_throttle(event, rate);
731 evstate->event = event;
732 evstate->rate = rate * SCALE_MS;
Alex Blighbc72ad62013-08-21 16:03:08 +0100733 evstate->timer = timer_new(QEMU_CLOCK_REALTIME,
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100734 SCALE_MS,
735 monitor_protocol_event_handler,
736 evstate);
737 evstate->last = 0;
738 evstate->data = NULL;
739}
740
741
742/* Global, one-time initializer to configure the rate limiting
743 * and initialize state */
744static void monitor_protocol_event_init(void)
745{
Benoît Canetc88a1de2014-02-21 22:21:20 +0100746 /* limit the rate of quorum events to avoid hammering the management */
747 monitor_protocol_event_throttle(QEVENT_QUORUM_REPORT_BAD, 1000);
748 monitor_protocol_event_throttle(QEVENT_QUORUM_FAILURE, 1000);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100749}
750
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200751/**
752 * monitor_protocol_event(): Generate a Monitor event
753 *
754 * Event-specific data can be emitted through the (optional) 'data' parameter.
755 */
756void monitor_protocol_event(MonitorEvent event, QObject *data)
757{
758 QDict *qmp;
759 const char *event_name;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200760
Blue Swirl242cd002009-12-04 18:05:45 +0000761 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200762
Daniel P. Berrange48608532012-05-21 17:59:51 +0100763 event_name = monitor_event_names[event];
764 assert(event_name != NULL);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200765
766 qmp = qdict_new();
767 timestamp_put(qmp);
768 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200769 if (data) {
770 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200771 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200772 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200773
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100774 trace_monitor_protocol_event(event, event_name, qmp);
775 monitor_protocol_event_queue(event, QOBJECT(qmp));
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200776 QDECREF(qmp);
777}
778
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200779static int do_qmp_capabilities(Monitor *mon, const QDict *params,
780 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200781{
782 /* Will setup QMP capabilities in the future */
783 if (monitor_ctrl_mode(mon)) {
784 mon->mc->command_mode = 1;
785 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200786
787 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200788}
789
Luiz Capitulino0268d972010-10-22 10:08:02 -0200790static void handle_user_command(Monitor *mon, const char *cmdline);
791
Wenchao Xiab01fe892013-08-27 20:38:19 +0800792static void monitor_data_init(Monitor *mon)
793{
794 memset(mon, 0, sizeof(Monitor));
795 mon->outbuf = qstring_new();
Wenchao Xia77172392013-08-27 20:38:20 +0800796 /* Use *mon_cmds by default. */
797 mon->cmd_table = mon_cmds;
Wenchao Xiab01fe892013-08-27 20:38:19 +0800798}
799
800static void monitor_data_destroy(Monitor *mon)
801{
802 QDECREF(mon->outbuf);
803}
804
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200805char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
806 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200807{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200808 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200809 Monitor *old_mon, hmp;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200810
Wenchao Xiab01fe892013-08-27 20:38:19 +0800811 monitor_data_init(&hmp);
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400812 hmp.skip_flush = true;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200813
814 old_mon = cur_mon;
815 cur_mon = &hmp;
816
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200817 if (has_cpu_index) {
818 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200819 if (ret < 0) {
820 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200821 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
822 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200823 goto out;
824 }
825 }
826
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200827 handle_user_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200828 cur_mon = old_mon;
829
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400830 if (qstring_get_length(hmp.outbuf) > 0) {
831 output = g_strdup(qstring_get_str(hmp.outbuf));
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200832 } else {
833 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200834 }
835
836out:
Wenchao Xiab01fe892013-08-27 20:38:19 +0800837 monitor_data_destroy(&hmp);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200838 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200839}
840
bellard9dc39cb2004-03-14 21:38:27 +0000841static int compare_cmd(const char *name, const char *list)
842{
843 const char *p, *pstart;
844 int len;
845 len = strlen(name);
846 p = list;
847 for(;;) {
848 pstart = p;
849 p = strchr(p, '|');
850 if (!p)
851 p = pstart + strlen(pstart);
852 if ((p - pstart) == len && !memcmp(pstart, name, len))
853 return 1;
854 if (*p == '\0')
855 break;
856 p++;
857 }
858 return 0;
859}
860
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800861static int get_str(char *buf, int buf_size, const char **pp)
862{
863 const char *p;
864 char *q;
865 int c;
866
867 q = buf;
868 p = *pp;
869 while (qemu_isspace(*p)) {
870 p++;
871 }
872 if (*p == '\0') {
873 fail:
874 *q = '\0';
875 *pp = p;
876 return -1;
877 }
878 if (*p == '\"') {
879 p++;
880 while (*p != '\0' && *p != '\"') {
881 if (*p == '\\') {
882 p++;
883 c = *p++;
884 switch (c) {
885 case 'n':
886 c = '\n';
887 break;
888 case 'r':
889 c = '\r';
890 break;
891 case '\\':
892 case '\'':
893 case '\"':
894 break;
895 default:
896 qemu_printf("unsupported escape code: '\\%c'\n", c);
897 goto fail;
898 }
899 if ((q - buf) < buf_size - 1) {
900 *q++ = c;
901 }
902 } else {
903 if ((q - buf) < buf_size - 1) {
904 *q++ = *p;
905 }
906 p++;
907 }
908 }
909 if (*p != '\"') {
910 qemu_printf("unterminated string\n");
911 goto fail;
912 }
913 p++;
914 } else {
915 while (*p != '\0' && !qemu_isspace(*p)) {
916 if ((q - buf) < buf_size - 1) {
917 *q++ = *p;
918 }
919 p++;
920 }
921 }
922 *q = '\0';
923 *pp = p;
924 return 0;
925}
926
927#define MAX_ARGS 16
928
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800929static void free_cmdline_args(char **args, int nb_args)
930{
931 int i;
932
933 assert(nb_args <= MAX_ARGS);
934
935 for (i = 0; i < nb_args; i++) {
936 g_free(args[i]);
937 }
938
939}
940
941/*
942 * Parse the command line to get valid args.
943 * @cmdline: command line to be parsed.
944 * @pnb_args: location to store the number of args, must NOT be NULL.
945 * @args: location to store the args, which should be freed by caller, must
946 * NOT be NULL.
947 *
948 * Returns 0 on success, negative on failure.
949 *
950 * NOTE: this parser is an approximate form of the real command parser. Number
951 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
952 * return with failure.
953 */
954static int parse_cmdline(const char *cmdline,
955 int *pnb_args, char **args)
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800956{
957 const char *p;
958 int nb_args, ret;
959 char buf[1024];
960
961 p = cmdline;
962 nb_args = 0;
963 for (;;) {
964 while (qemu_isspace(*p)) {
965 p++;
966 }
967 if (*p == '\0') {
968 break;
969 }
970 if (nb_args >= MAX_ARGS) {
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800971 goto fail;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800972 }
973 ret = get_str(buf, sizeof(buf), &p);
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800974 if (ret < 0) {
975 goto fail;
976 }
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800977 args[nb_args] = g_strdup(buf);
978 nb_args++;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800979 }
980 *pnb_args = nb_args;
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800981 return 0;
982
983 fail:
984 free_cmdline_args(args, nb_args);
985 return -1;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800986}
987
Wenchao Xia66855492013-08-27 20:38:23 +0800988static void help_cmd_dump_one(Monitor *mon,
989 const mon_cmd_t *cmd,
990 char **prefix_args,
991 int prefix_args_nb)
992{
993 int i;
994
995 for (i = 0; i < prefix_args_nb; i++) {
996 monitor_printf(mon, "%s ", prefix_args[i]);
997 }
998 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
999}
1000
1001/* @args[@arg_index] is the valid command need to find in @cmds */
Anthony Liguoric227f092009-10-01 16:12:16 -05001002static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
Wenchao Xia66855492013-08-27 20:38:23 +08001003 char **args, int nb_args, int arg_index)
bellard9dc39cb2004-03-14 21:38:27 +00001004{
Anthony Liguoric227f092009-10-01 16:12:16 -05001005 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +00001006
Wenchao Xia66855492013-08-27 20:38:23 +08001007 /* No valid arg need to compare with, dump all in *cmds */
1008 if (arg_index >= nb_args) {
1009 for (cmd = cmds; cmd->name != NULL; cmd++) {
1010 help_cmd_dump_one(mon, cmd, args, arg_index);
1011 }
1012 return;
1013 }
1014
1015 /* Find one entry to dump */
1016 for (cmd = cmds; cmd->name != NULL; cmd++) {
1017 if (compare_cmd(args[arg_index], cmd->name)) {
1018 if (cmd->sub_table) {
1019 /* continue with next arg */
1020 help_cmd_dump(mon, cmd->sub_table,
1021 args, nb_args, arg_index + 1);
1022 } else {
1023 help_cmd_dump_one(mon, cmd, args, arg_index);
1024 }
1025 break;
1026 }
bellard9dc39cb2004-03-14 21:38:27 +00001027 }
1028}
1029
aliguori376253e2009-03-05 23:01:23 +00001030static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +00001031{
Wenchao Xia66855492013-08-27 20:38:23 +08001032 char *args[MAX_ARGS];
1033 int nb_args = 0;
1034
1035 /* 1. parse user input */
1036 if (name) {
1037 /* special case for log, directly dump and return */
1038 if (!strcmp(name, "log")) {
Peter Maydell38dad9e2013-02-11 16:41:25 +00001039 const QEMULogItem *item;
aliguori376253e2009-03-05 23:01:23 +00001040 monitor_printf(mon, "Log items (comma separated):\n");
1041 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
Peter Maydell38dad9e2013-02-11 16:41:25 +00001042 for (item = qemu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +00001043 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +00001044 }
Wenchao Xia66855492013-08-27 20:38:23 +08001045 return;
1046 }
1047
1048 if (parse_cmdline(name, &nb_args, args) < 0) {
1049 return;
bellardf193c792004-03-21 17:06:25 +00001050 }
bellard9dc39cb2004-03-14 21:38:27 +00001051 }
Wenchao Xia66855492013-08-27 20:38:23 +08001052
1053 /* 2. dump the contents according to parsed args */
1054 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
1055
1056 free_cmdline_args(args, nb_args);
bellard9dc39cb2004-03-14 21:38:27 +00001057}
1058
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001059static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -03001060{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001061 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -03001062}
1063
Lluísfc764102011-08-31 20:31:18 +02001064static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +05301065{
1066 const char *tp_name = qdict_get_str(qdict, "name");
1067 bool new_state = qdict_get_bool(qdict, "option");
Blue Swirlf871d682010-10-13 19:14:29 +00001068
Lluís Vilanovaca285c32013-03-05 14:47:43 +01001069 bool found = false;
1070 TraceEvent *ev = NULL;
1071 while ((ev = trace_event_pattern(tp_name, ev)) != NULL) {
1072 found = true;
1073 if (!trace_event_get_state_static(ev)) {
1074 monitor_printf(mon, "event \"%s\" is not traceable\n", tp_name);
1075 } else {
1076 trace_event_set_state_dynamic(ev, new_state);
1077 }
1078 }
1079 if (!trace_event_is_pattern(tp_name) && !found) {
Blue Swirlf871d682010-10-13 19:14:29 +00001080 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
1081 }
Prerna Saxena22890ab2010-06-24 17:04:53 +05301082}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +01001083
Michael Rothc45a8162011-10-02 08:44:37 -05001084#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +01001085static void do_trace_file(Monitor *mon, const QDict *qdict)
1086{
1087 const char *op = qdict_get_try_str(qdict, "op");
1088 const char *arg = qdict_get_try_str(qdict, "arg");
1089
1090 if (!op) {
1091 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
1092 } else if (!strcmp(op, "on")) {
1093 st_set_trace_file_enabled(true);
1094 } else if (!strcmp(op, "off")) {
1095 st_set_trace_file_enabled(false);
1096 } else if (!strcmp(op, "flush")) {
1097 st_flush_trace_buffer();
1098 } else if (!strcmp(op, "set")) {
1099 if (arg) {
1100 st_set_trace_file(arg);
1101 }
1102 } else {
1103 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
1104 help_cmd(mon, "trace-file");
1105 }
1106}
Prerna Saxena22890ab2010-06-24 17:04:53 +05301107#endif
1108
Adam Litke940cc302010-01-25 12:18:44 -06001109static void user_monitor_complete(void *opaque, QObject *ret_data)
1110{
1111 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
1112
1113 if (ret_data) {
1114 data->user_print(data->mon, ret_data);
1115 }
1116 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -05001117 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -06001118}
1119
1120static void qmp_monitor_complete(void *opaque, QObject *ret_data)
1121{
1122 monitor_protocol_emitter(opaque, ret_data);
1123}
1124
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03001125static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
1126 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -06001127{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03001128 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -06001129}
1130
Adam Litke940cc302010-01-25 12:18:44 -06001131static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
1132 const QDict *params)
1133{
1134 int ret;
1135
Anthony Liguori7267c092011-08-20 22:09:37 -05001136 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -06001137 cb_data->mon = mon;
1138 cb_data->user_print = cmd->user_print;
1139 monitor_suspend(mon);
1140 ret = cmd->mhandler.cmd_async(mon, params,
1141 user_monitor_complete, cb_data);
1142 if (ret < 0) {
1143 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -05001144 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -06001145 }
1146}
1147
Wenchao Xia84c44612013-01-14 14:06:29 +08001148static void do_info_help(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +00001149{
Luiz Capitulino13c74252009-10-07 13:41:55 -03001150 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +00001151}
1152
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001153CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +00001154{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001155 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02001156 const mon_cmd_t *cmd;
1157
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03001158 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -02001159 info = g_malloc0(sizeof(*info));
1160 info->value = g_malloc0(sizeof(*info->value));
1161 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02001162
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001163 info->next = cmd_list;
1164 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02001165 }
1166
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001167 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +00001168}
1169
Daniel P. Berrange48608532012-05-21 17:59:51 +01001170EventInfoList *qmp_query_events(Error **errp)
1171{
1172 EventInfoList *info, *ev_list = NULL;
1173 MonitorEvent e;
1174
1175 for (e = 0 ; e < QEVENT_MAX ; e++) {
1176 const char *event_name = monitor_event_names[e];
1177 assert(event_name != NULL);
1178 info = g_malloc0(sizeof(*info));
1179 info->value = g_malloc0(sizeof(*info->value));
1180 info->value->name = g_strdup(event_name);
1181
1182 info->next = ev_list;
1183 ev_list = info;
1184 }
1185
1186 return ev_list;
1187}
1188
Luiz Capitulinob025c8b2011-10-06 14:02:57 -03001189/* set the current CPU defined by the user */
1190int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +00001191{
Andreas Färber55e5c282012-12-17 06:18:02 +01001192 CPUState *cpu;
bellard6a00d602005-11-21 23:25:50 +00001193
Andreas Färber1c8bb3c2013-02-15 17:01:09 +01001194 cpu = qemu_get_cpu(cpu_index);
1195 if (cpu == NULL) {
1196 return -1;
bellard6a00d602005-11-21 23:25:50 +00001197 }
Andreas Färbercb446ec2013-05-01 14:24:52 +02001198 cur_mon->mon_cpu = cpu;
Andreas Färber1c8bb3c2013-02-15 17:01:09 +01001199 return 0;
bellard6a00d602005-11-21 23:25:50 +00001200}
1201
Andreas Färber9349b4f2012-03-14 01:38:32 +01001202static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +00001203{
aliguori731b0362009-03-05 23:01:42 +00001204 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -03001205 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +00001206 }
Avi Kivity4c0960c2009-08-17 23:19:53 +03001207 cpu_synchronize_state(cur_mon->mon_cpu);
Andreas Färbercb446ec2013-05-01 14:24:52 +02001208 return cur_mon->mon_cpu->env_ptr;
bellard6a00d602005-11-21 23:25:50 +00001209}
1210
Luiz Capitulino99b77962011-10-24 10:53:44 -02001211int monitor_get_cpu_index(void)
1212{
Andreas Färber55e5c282012-12-17 06:18:02 +01001213 CPUState *cpu = ENV_GET_CPU(mon_get_cpu());
1214 return cpu->cpu_index;
Luiz Capitulino99b77962011-10-24 10:53:44 -02001215}
1216
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001217static void do_info_registers(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001218{
Andreas Färber878096e2013-05-27 01:33:50 +02001219 CPUState *cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001220 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +00001221 env = mon_get_cpu();
Andreas Färber878096e2013-05-27 01:33:50 +02001222 cpu = ENV_GET_CPU(env);
1223 cpu_dump_state(cpu, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +00001224}
1225
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001226static void do_info_jit(Monitor *mon, const QDict *qdict)
bellarde3db7222005-01-26 22:00:47 +00001227{
aliguori376253e2009-03-05 23:01:23 +00001228 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +00001229}
1230
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001231static void do_info_history(Monitor *mon, const QDict *qdict)
bellardaa455482004-04-04 13:07:25 +00001232{
1233 int i;
bellard7e2515e2004-08-01 21:52:19 +00001234 const char *str;
ths3b46e622007-09-17 08:09:54 +00001235
aliguoricde76ee2009-03-05 23:01:51 +00001236 if (!mon->rs)
1237 return;
bellard7e2515e2004-08-01 21:52:19 +00001238 i = 0;
1239 for(;;) {
aliguori731b0362009-03-05 23:01:42 +00001240 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +00001241 if (!str)
1242 break;
aliguori376253e2009-03-05 23:01:23 +00001243 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +00001244 i++;
bellardaa455482004-04-04 13:07:25 +00001245 }
1246}
1247
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001248static void do_info_cpu_stats(Monitor *mon, const QDict *qdict)
j_mayer76a66252007-03-07 08:32:30 +00001249{
Andreas Färber878096e2013-05-27 01:33:50 +02001250 CPUState *cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001251 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +00001252
1253 env = mon_get_cpu();
Andreas Färber878096e2013-05-27 01:33:50 +02001254 cpu = ENV_GET_CPU(env);
1255 cpu_dump_statistics(cpu, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +00001256}
j_mayer76a66252007-03-07 08:32:30 +00001257
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001258static void do_trace_print_events(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +05301259{
Lluísfc764102011-08-31 20:31:18 +02001260 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +05301261}
Prerna Saxena22890ab2010-06-24 17:04:53 +05301262
Yonit Halperinedc5cb12011-10-17 10:03:18 +02001263static int client_migrate_info(Monitor *mon, const QDict *qdict,
1264 MonitorCompletion cb, void *opaque)
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001265{
1266 const char *protocol = qdict_get_str(qdict, "protocol");
1267 const char *hostname = qdict_get_str(qdict, "hostname");
1268 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1269 int port = qdict_get_try_int(qdict, "port", -1);
1270 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1271 int ret;
1272
1273 if (strcmp(protocol, "spice") == 0) {
1274 if (!using_spice) {
1275 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1276 return -1;
1277 }
1278
Yonit Halperin6ec5dae2012-03-18 09:42:39 +02001279 if (port == -1 && tls_port == -1) {
1280 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
1281 return -1;
1282 }
1283
Yonit Halperinedc5cb12011-10-17 10:03:18 +02001284 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
1285 cb, opaque);
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001286 if (ret != 0) {
1287 qerror_report(QERR_UNDEFINED_ERROR);
1288 return -1;
1289 }
1290 return 0;
1291 }
1292
1293 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1294 return -1;
1295}
1296
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001297static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001298{
Peter Maydell9a7e5422013-02-11 16:41:20 +00001299 qemu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001300}
1301
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001302static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001303{
1304 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001305 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001306
bellard9307c4c2004-04-04 12:57:25 +00001307 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001308 mask = 0;
1309 } else {
Peter Maydell4fde1eb2013-02-11 16:41:22 +00001310 mask = qemu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001311 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001312 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001313 return;
1314 }
1315 }
Peter Maydell24537a02013-02-11 16:41:23 +00001316 qemu_set_log(mask);
bellardf193c792004-03-21 17:06:25 +00001317}
1318
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001319static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001320{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001321 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001322 if (!option || !strcmp(option, "on")) {
1323 singlestep = 1;
1324 } else if (!strcmp(option, "off")) {
1325 singlestep = 0;
1326 } else {
1327 monitor_printf(mon, "unexpected option %s\n", option);
1328 }
1329}
1330
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001331static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001332{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001333 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001334 if (!device)
1335 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1336 if (gdbserver_start(device) < 0) {
1337 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1338 device);
1339 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001340 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001341 } else {
aliguori59030a82009-04-05 18:43:41 +00001342 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1343 device);
bellard8a7ddc32004-03-31 19:00:16 +00001344 }
1345}
1346
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001347static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001348{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001349 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001350 if (select_watchdog_action(action) == -1) {
1351 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1352 }
1353}
1354
aliguori376253e2009-03-05 23:01:23 +00001355static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001356{
aliguori376253e2009-03-05 23:01:23 +00001357 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001358 switch(c) {
1359 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001360 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001361 break;
1362 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001363 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001364 break;
1365 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001366 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001367 break;
1368 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001369 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001370 break;
1371 default:
1372 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001373 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001374 } else {
aliguori376253e2009-03-05 23:01:23 +00001375 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001376 }
1377 break;
1378 }
aliguori376253e2009-03-05 23:01:23 +00001379 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001380}
1381
aliguori376253e2009-03-05 23:01:23 +00001382static void memory_dump(Monitor *mon, int count, int format, int wsize,
Avi Kivitya8170e52012-10-23 12:30:10 +02001383 hwaddr addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001384{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001385 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001386 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001387 uint8_t buf[16];
1388 uint64_t v;
1389
1390 if (format == 'i') {
1391 int flags;
1392 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001393 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001394#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001395 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001396 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001397 } else if (wsize == 4) {
1398 flags = 0;
1399 } else {
bellard6a15fd12006-04-12 21:07:07 +00001400 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001401 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001402 if (env) {
1403#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001404 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001405 (env->segs[R_CS].flags & DESC_L_MASK))
1406 flags = 2;
1407 else
1408#endif
1409 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1410 flags = 1;
1411 }
bellard4c27ba22004-04-25 18:05:08 +00001412 }
1413#endif
Tom Musta1c38f842014-04-09 14:53:24 -05001414#ifdef TARGET_PPC
1415 flags = msr_le << 16;
1416 flags |= env->bfd_mach;
1417#endif
aliguori376253e2009-03-05 23:01:23 +00001418 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001419 return;
1420 }
1421
1422 len = wsize * count;
1423 if (wsize == 1)
1424 line_size = 8;
1425 else
1426 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001427 max_digits = 0;
1428
1429 switch(format) {
1430 case 'o':
1431 max_digits = (wsize * 8 + 2) / 3;
1432 break;
1433 default:
1434 case 'x':
1435 max_digits = (wsize * 8) / 4;
1436 break;
1437 case 'u':
1438 case 'd':
1439 max_digits = (wsize * 8 * 10 + 32) / 33;
1440 break;
1441 case 'c':
1442 wsize = 1;
1443 break;
1444 }
1445
1446 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001447 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001448 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001449 else
aliguori376253e2009-03-05 23:01:23 +00001450 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001451 l = len;
1452 if (l > line_size)
1453 l = line_size;
1454 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001455 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001456 } else {
bellard6a00d602005-11-21 23:25:50 +00001457 env = mon_get_cpu();
Andreas Färberf17ec442013-06-29 19:40:58 +02001458 if (cpu_memory_rw_debug(ENV_GET_CPU(env), addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001459 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001460 break;
1461 }
bellard9307c4c2004-04-04 12:57:25 +00001462 }
ths5fafdf22007-09-16 21:08:06 +00001463 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001464 while (i < l) {
1465 switch(wsize) {
1466 default:
1467 case 1:
1468 v = ldub_raw(buf + i);
1469 break;
1470 case 2:
1471 v = lduw_raw(buf + i);
1472 break;
1473 case 4:
bellard92a31b12005-02-10 22:00:52 +00001474 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001475 break;
1476 case 8:
1477 v = ldq_raw(buf + i);
1478 break;
1479 }
aliguori376253e2009-03-05 23:01:23 +00001480 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001481 switch(format) {
1482 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001483 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001484 break;
1485 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001486 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001487 break;
1488 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001489 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001490 break;
1491 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001492 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001493 break;
1494 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001495 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001496 break;
1497 }
1498 i += wsize;
1499 }
aliguori376253e2009-03-05 23:01:23 +00001500 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001501 addr += l;
1502 len -= l;
1503 }
1504}
1505
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001506static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001507{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001508 int count = qdict_get_int(qdict, "count");
1509 int format = qdict_get_int(qdict, "format");
1510 int size = qdict_get_int(qdict, "size");
1511 target_long addr = qdict_get_int(qdict, "addr");
1512
aliguori376253e2009-03-05 23:01:23 +00001513 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001514}
1515
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001516static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001517{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001518 int count = qdict_get_int(qdict, "count");
1519 int format = qdict_get_int(qdict, "format");
1520 int size = qdict_get_int(qdict, "size");
Avi Kivitya8170e52012-10-23 12:30:10 +02001521 hwaddr addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001522
aliguori376253e2009-03-05 23:01:23 +00001523 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001524}
1525
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001526static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001527{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001528 int format = qdict_get_int(qdict, "format");
Avi Kivitya8170e52012-10-23 12:30:10 +02001529 hwaddr val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001530
bellard9307c4c2004-04-04 12:57:25 +00001531 switch(format) {
1532 case 'o':
Avi Kivitya8170e52012-10-23 12:30:10 +02001533 monitor_printf(mon, "%#" HWADDR_PRIo, val);
bellard9307c4c2004-04-04 12:57:25 +00001534 break;
1535 case 'x':
Avi Kivitya8170e52012-10-23 12:30:10 +02001536 monitor_printf(mon, "%#" HWADDR_PRIx, val);
bellard9307c4c2004-04-04 12:57:25 +00001537 break;
1538 case 'u':
Avi Kivitya8170e52012-10-23 12:30:10 +02001539 monitor_printf(mon, "%" HWADDR_PRIu, val);
bellard9307c4c2004-04-04 12:57:25 +00001540 break;
1541 default:
1542 case 'd':
Avi Kivitya8170e52012-10-23 12:30:10 +02001543 monitor_printf(mon, "%" HWADDR_PRId, val);
bellard9307c4c2004-04-04 12:57:25 +00001544 break;
1545 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001546 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001547 break;
1548 }
aliguori376253e2009-03-05 23:01:23 +00001549 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001550}
1551
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001552static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001553{
1554 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001555 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001556 uint32_t start = qdict_get_int(qdict, "start");
1557 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001558
1559 sum = 0;
1560 for(addr = start; addr < (start + size); addr++) {
Edgar E. Iglesias2c174492013-12-17 14:05:40 +10001561 uint8_t val = ldub_phys(&address_space_memory, addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001562 /* BSD sum algorithm ('sum' Unix command) */
1563 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001564 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001565 }
aliguori376253e2009-03-05 23:01:23 +00001566 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001567}
1568
bellard13224a82006-07-14 22:03:35 +00001569static int mouse_button_state;
1570
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001571static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001572{
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001573 int dx, dy, dz, button;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001574 const char *dx_str = qdict_get_str(qdict, "dx_str");
1575 const char *dy_str = qdict_get_str(qdict, "dy_str");
1576 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001577
bellard13224a82006-07-14 22:03:35 +00001578 dx = strtol(dx_str, NULL, 0);
1579 dy = strtol(dy_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001580 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1581 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1582
1583 if (dz_str) {
bellard13224a82006-07-14 22:03:35 +00001584 dz = strtol(dz_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001585 if (dz != 0) {
1586 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1587 qemu_input_queue_btn(NULL, button, true);
1588 qemu_input_event_sync();
1589 qemu_input_queue_btn(NULL, button, false);
1590 }
1591 }
1592 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001593}
1594
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001595static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001596{
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001597 static uint32_t bmap[INPUT_BUTTON_MAX] = {
1598 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1599 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1600 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1601 };
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001602 int button_state = qdict_get_int(qdict, "button_state");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001603
1604 if (mouse_button_state == button_state) {
1605 return;
1606 }
1607 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1608 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001609 mouse_button_state = button_state;
bellard13224a82006-07-14 22:03:35 +00001610}
1611
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001612static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001613{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001614 int size = qdict_get_int(qdict, "size");
1615 int addr = qdict_get_int(qdict, "addr");
1616 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001617 uint32_t val;
1618 int suffix;
1619
1620 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001621 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001622 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001623 addr++;
1624 }
1625 addr &= 0xffff;
1626
1627 switch(size) {
1628 default:
1629 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001630 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001631 suffix = 'b';
1632 break;
1633 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001634 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001635 suffix = 'w';
1636 break;
1637 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001638 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001639 suffix = 'l';
1640 break;
1641 }
aliguori376253e2009-03-05 23:01:23 +00001642 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1643 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001644}
bellarda3a91a32004-06-04 11:06:21 +00001645
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001646static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001647{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001648 int size = qdict_get_int(qdict, "size");
1649 int addr = qdict_get_int(qdict, "addr");
1650 int val = qdict_get_int(qdict, "val");
1651
Jan Kiszkaf1147842009-07-14 10:20:11 +02001652 addr &= IOPORTS_MASK;
1653
1654 switch (size) {
1655 default:
1656 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001657 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001658 break;
1659 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001660 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001661 break;
1662 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001663 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001664 break;
1665 }
1666}
1667
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001668static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001669{
1670 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001671 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001672
Jan Kiszka76e30d02009-07-02 00:19:02 +02001673 res = qemu_boot_set(bootdevice);
1674 if (res == 0) {
1675 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1676 } else if (res > 0) {
1677 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001678 } else {
aliguori376253e2009-03-05 23:01:23 +00001679 monitor_printf(mon, "no function defined to set boot device list for "
1680 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001681 }
1682}
1683
bellardb86bda52004-09-18 19:32:46 +00001684#if defined(TARGET_I386)
Avi Kivitya8170e52012-10-23 12:30:10 +02001685static void print_pte(Monitor *mon, hwaddr addr,
1686 hwaddr pte,
1687 hwaddr mask)
bellardb86bda52004-09-18 19:32:46 +00001688{
Blue Swirld65aaf32010-12-11 18:56:24 +00001689#ifdef TARGET_X86_64
1690 if (addr & (1ULL << 47)) {
1691 addr |= -1LL << 48;
1692 }
1693#endif
1694 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1695 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001696 addr,
1697 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001698 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001699 pte & PG_GLOBAL_MASK ? 'G' : '-',
1700 pte & PG_PSE_MASK ? 'P' : '-',
1701 pte & PG_DIRTY_MASK ? 'D' : '-',
1702 pte & PG_ACCESSED_MASK ? 'A' : '-',
1703 pte & PG_PCD_MASK ? 'C' : '-',
1704 pte & PG_PWT_MASK ? 'T' : '-',
1705 pte & PG_USER_MASK ? 'U' : '-',
1706 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001707}
1708
Andreas Färber9349b4f2012-03-14 01:38:32 +01001709static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001710{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001711 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001712 uint32_t pgd, pde, pte;
1713
bellardb86bda52004-09-18 19:32:46 +00001714 pgd = env->cr[3] & ~0xfff;
1715 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001716 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001717 pde = le32_to_cpu(pde);
1718 if (pde & PG_PRESENT_MASK) {
1719 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001720 /* 4M pages */
1721 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001722 } else {
1723 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001724 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001725 pte = le32_to_cpu(pte);
1726 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001727 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001728 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001729 ~0xfff);
1730 }
1731 }
1732 }
1733 }
1734 }
1735}
1736
Andreas Färber9349b4f2012-03-14 01:38:32 +01001737static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001738{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001739 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001740 uint64_t pdpe, pde, pte;
1741 uint64_t pdp_addr, pd_addr, pt_addr;
1742
1743 pdp_addr = env->cr[3] & ~0x1f;
1744 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001745 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001746 pdpe = le64_to_cpu(pdpe);
1747 if (pdpe & PG_PRESENT_MASK) {
1748 pd_addr = pdpe & 0x3fffffffff000ULL;
1749 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001750 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001751 pde = le64_to_cpu(pde);
1752 if (pde & PG_PRESENT_MASK) {
1753 if (pde & PG_PSE_MASK) {
1754 /* 2M pages with PAE, CR4.PSE is ignored */
1755 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
Avi Kivitya8170e52012-10-23 12:30:10 +02001756 ~((hwaddr)(1 << 20) - 1));
Blue Swirld65aaf32010-12-11 18:56:24 +00001757 } else {
1758 pt_addr = pde & 0x3fffffffff000ULL;
1759 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001760 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001761 pte = le64_to_cpu(pte);
1762 if (pte & PG_PRESENT_MASK) {
1763 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1764 + (l3 << 12),
1765 pte & ~PG_PSE_MASK,
Avi Kivitya8170e52012-10-23 12:30:10 +02001766 ~(hwaddr)0xfff);
Blue Swirld65aaf32010-12-11 18:56:24 +00001767 }
1768 }
1769 }
1770 }
1771 }
1772 }
1773 }
1774}
1775
1776#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001777static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001778{
1779 uint64_t l1, l2, l3, l4;
1780 uint64_t pml4e, pdpe, pde, pte;
1781 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1782
1783 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1784 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001785 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001786 pml4e = le64_to_cpu(pml4e);
1787 if (pml4e & PG_PRESENT_MASK) {
1788 pdp_addr = pml4e & 0x3fffffffff000ULL;
1789 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001790 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001791 pdpe = le64_to_cpu(pdpe);
1792 if (pdpe & PG_PRESENT_MASK) {
1793 if (pdpe & PG_PSE_MASK) {
1794 /* 1G pages, CR4.PSE is ignored */
1795 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1796 0x3ffffc0000000ULL);
1797 } else {
1798 pd_addr = pdpe & 0x3fffffffff000ULL;
1799 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001800 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001801 pde = le64_to_cpu(pde);
1802 if (pde & PG_PRESENT_MASK) {
1803 if (pde & PG_PSE_MASK) {
1804 /* 2M pages, CR4.PSE is ignored */
1805 print_pte(mon, (l1 << 39) + (l2 << 30) +
1806 (l3 << 21), pde,
1807 0x3ffffffe00000ULL);
1808 } else {
1809 pt_addr = pde & 0x3fffffffff000ULL;
1810 for (l4 = 0; l4 < 512; l4++) {
1811 cpu_physical_memory_read(pt_addr
1812 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001813 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001814 pte = le64_to_cpu(pte);
1815 if (pte & PG_PRESENT_MASK) {
1816 print_pte(mon, (l1 << 39) +
1817 (l2 << 30) +
1818 (l3 << 21) + (l4 << 12),
1819 pte & ~PG_PSE_MASK,
1820 0x3fffffffff000ULL);
1821 }
1822 }
1823 }
1824 }
1825 }
1826 }
1827 }
1828 }
1829 }
1830 }
1831}
1832#endif
1833
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001834static void tlb_info(Monitor *mon, const QDict *qdict)
Blue Swirld65aaf32010-12-11 18:56:24 +00001835{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001836 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001837
1838 env = mon_get_cpu();
1839
1840 if (!(env->cr[0] & CR0_PG_MASK)) {
1841 monitor_printf(mon, "PG disabled\n");
1842 return;
1843 }
1844 if (env->cr[4] & CR4_PAE_MASK) {
1845#ifdef TARGET_X86_64
1846 if (env->hflags & HF_LMA_MASK) {
1847 tlb_info_64(mon, env);
1848 } else
1849#endif
1850 {
1851 tlb_info_pae32(mon, env);
1852 }
1853 } else {
1854 tlb_info_32(mon, env);
1855 }
1856}
1857
Avi Kivitya8170e52012-10-23 12:30:10 +02001858static void mem_print(Monitor *mon, hwaddr *pstart,
Blue Swirl1b3cba62010-12-11 18:56:27 +00001859 int *plast_prot,
Avi Kivitya8170e52012-10-23 12:30:10 +02001860 hwaddr end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001861{
bellard9746b152004-11-11 18:30:24 +00001862 int prot1;
1863 prot1 = *plast_prot;
1864 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001865 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001866 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1867 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001868 *pstart, end, end - *pstart,
1869 prot1 & PG_USER_MASK ? 'u' : '-',
1870 'r',
1871 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001872 }
1873 if (prot != 0)
1874 *pstart = end;
1875 else
1876 *pstart = -1;
1877 *plast_prot = prot;
1878 }
1879}
1880
Andreas Färber9349b4f2012-03-14 01:38:32 +01001881static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001882{
Austin Clementsb49ca722011-08-14 23:19:21 -04001883 unsigned int l1, l2;
1884 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001885 uint32_t pgd, pde, pte;
Avi Kivitya8170e52012-10-23 12:30:10 +02001886 hwaddr start, end;
bellardb86bda52004-09-18 19:32:46 +00001887
bellardb86bda52004-09-18 19:32:46 +00001888 pgd = env->cr[3] & ~0xfff;
1889 last_prot = 0;
1890 start = -1;
1891 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001892 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001893 pde = le32_to_cpu(pde);
1894 end = l1 << 22;
1895 if (pde & PG_PRESENT_MASK) {
1896 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1897 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001898 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001899 } else {
1900 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001901 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001902 pte = le32_to_cpu(pte);
1903 end = (l1 << 22) + (l2 << 12);
1904 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001905 prot = pte & pde &
1906 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001907 } else {
1908 prot = 0;
1909 }
aliguori376253e2009-03-05 23:01:23 +00001910 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001911 }
1912 }
1913 } else {
1914 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001915 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001916 }
1917 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001918 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02001919 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001920}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001921
Andreas Färber9349b4f2012-03-14 01:38:32 +01001922static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001923{
Austin Clementsb49ca722011-08-14 23:19:21 -04001924 unsigned int l1, l2, l3;
1925 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001926 uint64_t pdpe, pde, pte;
1927 uint64_t pdp_addr, pd_addr, pt_addr;
Avi Kivitya8170e52012-10-23 12:30:10 +02001928 hwaddr start, end;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001929
1930 pdp_addr = env->cr[3] & ~0x1f;
1931 last_prot = 0;
1932 start = -1;
1933 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001934 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001935 pdpe = le64_to_cpu(pdpe);
1936 end = l1 << 30;
1937 if (pdpe & PG_PRESENT_MASK) {
1938 pd_addr = pdpe & 0x3fffffffff000ULL;
1939 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001940 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001941 pde = le64_to_cpu(pde);
1942 end = (l1 << 30) + (l2 << 21);
1943 if (pde & PG_PRESENT_MASK) {
1944 if (pde & PG_PSE_MASK) {
1945 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1946 PG_PRESENT_MASK);
1947 mem_print(mon, &start, &last_prot, end, prot);
1948 } else {
1949 pt_addr = pde & 0x3fffffffff000ULL;
1950 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001951 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001952 pte = le64_to_cpu(pte);
1953 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1954 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001955 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1956 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001957 } else {
1958 prot = 0;
1959 }
1960 mem_print(mon, &start, &last_prot, end, prot);
1961 }
1962 }
1963 } else {
1964 prot = 0;
1965 mem_print(mon, &start, &last_prot, end, prot);
1966 }
1967 }
1968 } else {
1969 prot = 0;
1970 mem_print(mon, &start, &last_prot, end, prot);
1971 }
1972 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001973 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02001974 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001975}
1976
1977
1978#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001979static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001980{
1981 int prot, last_prot;
1982 uint64_t l1, l2, l3, l4;
1983 uint64_t pml4e, pdpe, pde, pte;
1984 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1985
1986 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1987 last_prot = 0;
1988 start = -1;
1989 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001990 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001991 pml4e = le64_to_cpu(pml4e);
1992 end = l1 << 39;
1993 if (pml4e & PG_PRESENT_MASK) {
1994 pdp_addr = pml4e & 0x3fffffffff000ULL;
1995 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001996 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001997 pdpe = le64_to_cpu(pdpe);
1998 end = (l1 << 39) + (l2 << 30);
1999 if (pdpe & PG_PRESENT_MASK) {
2000 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00002001 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2002 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002003 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002004 mem_print(mon, &start, &last_prot, end, prot);
2005 } else {
2006 pd_addr = pdpe & 0x3fffffffff000ULL;
2007 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002008 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002009 pde = le64_to_cpu(pde);
2010 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2011 if (pde & PG_PRESENT_MASK) {
2012 if (pde & PG_PSE_MASK) {
2013 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2014 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002015 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002016 mem_print(mon, &start, &last_prot, end, prot);
2017 } else {
2018 pt_addr = pde & 0x3fffffffff000ULL;
2019 for (l4 = 0; l4 < 512; l4++) {
2020 cpu_physical_memory_read(pt_addr
2021 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01002022 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002023 pte = le64_to_cpu(pte);
2024 end = (l1 << 39) + (l2 << 30) +
2025 (l3 << 21) + (l4 << 12);
2026 if (pte & PG_PRESENT_MASK) {
2027 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2028 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002029 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002030 } else {
2031 prot = 0;
2032 }
2033 mem_print(mon, &start, &last_prot, end, prot);
2034 }
2035 }
2036 } else {
2037 prot = 0;
2038 mem_print(mon, &start, &last_prot, end, prot);
2039 }
2040 }
2041 }
2042 } else {
2043 prot = 0;
2044 mem_print(mon, &start, &last_prot, end, prot);
2045 }
2046 }
2047 } else {
2048 prot = 0;
2049 mem_print(mon, &start, &last_prot, end, prot);
2050 }
2051 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002052 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02002053 mem_print(mon, &start, &last_prot, (hwaddr)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002054}
2055#endif
2056
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002057static void mem_info(Monitor *mon, const QDict *qdict)
Blue Swirl1b3cba62010-12-11 18:56:27 +00002058{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002059 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002060
2061 env = mon_get_cpu();
2062
2063 if (!(env->cr[0] & CR0_PG_MASK)) {
2064 monitor_printf(mon, "PG disabled\n");
2065 return;
2066 }
2067 if (env->cr[4] & CR4_PAE_MASK) {
2068#ifdef TARGET_X86_64
2069 if (env->hflags & HF_LMA_MASK) {
2070 mem_info_64(mon, env);
2071 } else
2072#endif
2073 {
2074 mem_info_pae32(mon, env);
2075 }
2076 } else {
2077 mem_info_32(mon, env);
2078 }
2079}
bellardb86bda52004-09-18 19:32:46 +00002080#endif
2081
aurel327c664e22009-03-03 06:12:22 +00002082#if defined(TARGET_SH4)
2083
aliguori376253e2009-03-05 23:01:23 +00002084static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00002085{
aliguori376253e2009-03-05 23:01:23 +00002086 monitor_printf(mon, " tlb%i:\t"
2087 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2088 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2089 "dirty=%hhu writethrough=%hhu\n",
2090 idx,
2091 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2092 tlb->v, tlb->sh, tlb->c, tlb->pr,
2093 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00002094}
2095
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002096static void tlb_info(Monitor *mon, const QDict *qdict)
aurel327c664e22009-03-03 06:12:22 +00002097{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002098 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00002099 int i;
2100
aliguori376253e2009-03-05 23:01:23 +00002101 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002102 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002103 print_tlb (mon, i, &env->itlb[i]);
2104 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002105 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002106 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002107}
2108
2109#endif
2110
Max Filippov692f7372012-01-07 20:02:40 +04002111#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002112static void tlb_info(Monitor *mon, const QDict *qdict)
Blue Swirld41160a2010-12-19 13:42:56 +00002113{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002114 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00002115
2116 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2117}
2118#endif
2119
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002120static void do_info_mtree(Monitor *mon, const QDict *qdict)
Blue Swirl314e2982011-09-11 20:22:05 +00002121{
2122 mtree_info((fprintf_function)monitor_printf, mon);
2123}
2124
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002125static void do_info_numa(Monitor *mon, const QDict *qdict)
aliguori030ea372009-04-21 22:30:47 +00002126{
aliguorib28b6232009-04-22 20:20:29 +00002127 int i;
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01002128 CPUState *cpu;
aliguori030ea372009-04-21 22:30:47 +00002129
2130 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2131 for (i = 0; i < nb_numa_nodes; i++) {
2132 monitor_printf(mon, "node %d cpus:", i);
Andreas Färberbdc44642013-06-24 23:50:24 +02002133 CPU_FOREACH(cpu) {
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01002134 if (cpu->numa_node == i) {
Andreas Färber55e5c282012-12-17 06:18:02 +01002135 monitor_printf(mon, " %d", cpu->cpu_index);
aliguori030ea372009-04-21 22:30:47 +00002136 }
2137 }
2138 monitor_printf(mon, "\n");
2139 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
Wanlong Gao8c859012014-05-14 17:43:07 +08002140 numa_info[i].node_mem >> 20);
aliguori030ea372009-04-21 22:30:47 +00002141 }
2142}
2143
bellard5f1ce942006-02-08 22:40:15 +00002144#ifdef CONFIG_PROFILER
2145
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002146int64_t qemu_time;
2147int64_t dev_time;
2148
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002149static void do_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00002150{
aliguori376253e2009-03-05 23:01:23 +00002151 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002152 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002153 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002154 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002155 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002156 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002157}
2158#else
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002159static void do_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00002160{
aliguori376253e2009-03-05 23:01:23 +00002161 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002162}
2163#endif
2164
bellardec36b692006-07-16 18:57:03 +00002165/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002166static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002167
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002168static void do_info_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002169{
2170 int i;
2171 CaptureState *s;
2172
2173 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002174 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002175 s->ops.info (s->opaque);
2176 }
2177}
2178
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002179static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002180{
2181 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002182 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002183 CaptureState *s;
2184
2185 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2186 if (i == n) {
2187 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002188 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002189 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002190 return;
2191 }
2192 }
2193}
2194
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002195static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002196{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002197 const char *path = qdict_get_str(qdict, "path");
2198 int has_freq = qdict_haskey(qdict, "freq");
2199 int freq = qdict_get_try_int(qdict, "freq", -1);
2200 int has_bits = qdict_haskey(qdict, "bits");
2201 int bits = qdict_get_try_int(qdict, "bits", -1);
2202 int has_channels = qdict_haskey(qdict, "nchannels");
2203 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002204 CaptureState *s;
2205
Anthony Liguori7267c092011-08-20 22:09:37 -05002206 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002207
2208 freq = has_freq ? freq : 44100;
2209 bits = has_bits ? bits : 16;
2210 nchannels = has_channels ? nchannels : 2;
2211
2212 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002213 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002214 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002215 return;
bellardec36b692006-07-16 18:57:03 +00002216 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002217 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002218}
bellardec36b692006-07-16 18:57:03 +00002219
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002220static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002221{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002222 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002223
aliguori76655d62009-03-06 20:27:37 +00002224 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002225 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002226 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002227 return acl;
2228}
aliguori76655d62009-03-06 20:27:37 +00002229
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002230static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002231{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002232 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002233 qemu_acl *acl = find_acl(mon, aclname);
2234 qemu_acl_entry *entry;
2235 int i = 0;
2236
2237 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002238 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002239 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002240 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002241 i++;
2242 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002243 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002244 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002245 }
2246}
2247
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002248static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002249{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002250 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002251 qemu_acl *acl = find_acl(mon, aclname);
2252
2253 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002254 qemu_acl_reset(acl);
2255 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002256 }
2257}
aliguori76655d62009-03-06 20:27:37 +00002258
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002259static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002260{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002261 const char *aclname = qdict_get_str(qdict, "aclname");
2262 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002263 qemu_acl *acl = find_acl(mon, aclname);
2264
2265 if (acl) {
2266 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002267 acl->defaultDeny = 0;
2268 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002269 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002270 acl->defaultDeny = 1;
2271 monitor_printf(mon, "acl: policy set to 'deny'\n");
2272 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002273 monitor_printf(mon, "acl: unknown policy '%s', "
2274 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002275 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002276 }
2277}
aliguori76655d62009-03-06 20:27:37 +00002278
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002279static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002280{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002281 const char *aclname = qdict_get_str(qdict, "aclname");
2282 const char *match = qdict_get_str(qdict, "match");
2283 const char *policy = qdict_get_str(qdict, "policy");
2284 int has_index = qdict_haskey(qdict, "index");
2285 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002286 qemu_acl *acl = find_acl(mon, aclname);
2287 int deny, ret;
2288
2289 if (acl) {
2290 if (strcmp(policy, "allow") == 0) {
2291 deny = 0;
2292 } else if (strcmp(policy, "deny") == 0) {
2293 deny = 1;
2294 } else {
2295 monitor_printf(mon, "acl: unknown policy '%s', "
2296 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002297 return;
2298 }
aliguori28a76be2009-03-06 20:27:40 +00002299 if (has_index)
2300 ret = qemu_acl_insert(acl, deny, match, index);
2301 else
2302 ret = qemu_acl_append(acl, deny, match);
2303 if (ret < 0)
2304 monitor_printf(mon, "acl: unable to add acl entry\n");
2305 else
2306 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002307 }
2308}
aliguori76655d62009-03-06 20:27:37 +00002309
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002310static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002311{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002312 const char *aclname = qdict_get_str(qdict, "aclname");
2313 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002314 qemu_acl *acl = find_acl(mon, aclname);
2315 int ret;
aliguori76655d62009-03-06 20:27:37 +00002316
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002317 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002318 ret = qemu_acl_remove(acl, match);
2319 if (ret < 0)
2320 monitor_printf(mon, "acl: no matching acl entry\n");
2321 else
2322 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002323 }
2324}
2325
Huang Ying79c4f6b2009-06-23 10:05:14 +08002326#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002327static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002328{
Andreas Färber8c5cf3b2012-05-03 15:22:54 +02002329 X86CPU *cpu;
Andreas Färber55e5c282012-12-17 06:18:02 +01002330 CPUState *cs;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002331 int cpu_index = qdict_get_int(qdict, "cpu_index");
2332 int bank = qdict_get_int(qdict, "bank");
2333 uint64_t status = qdict_get_int(qdict, "status");
2334 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2335 uint64_t addr = qdict_get_int(qdict, "addr");
2336 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002337 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002338
Jan Kiszka747461c2011-03-02 08:56:10 +01002339 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2340 flags |= MCE_INJECT_BROADCAST;
2341 }
Andreas Färberc51a9442013-05-17 16:57:52 +02002342 cs = qemu_get_cpu(cpu_index);
2343 if (cs != NULL) {
2344 cpu = X86_CPU(cs);
2345 cpu_x86_inject_mce(mon, cpu, bank, status, mcg_status, addr, misc,
2346 flags);
Jin Dongming31ce5e02010-12-10 17:21:02 +09002347 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002348}
2349#endif
2350
Corey Bryant208c9d12012-06-22 14:36:09 -04002351void qmp_getfd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002352{
Anthony Liguoric227f092009-10-01 16:12:16 -05002353 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002354 int fd;
2355
Corey Bryant208c9d12012-06-22 14:36:09 -04002356 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002357 if (fd == -1) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002358 error_set(errp, QERR_FD_NOT_SUPPLIED);
2359 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002360 }
2361
2362 if (qemu_isdigit(fdname[0])) {
Stefan Hajnoczi0b9f0e22014-04-24 13:58:18 +02002363 close(fd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002364 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2365 "a name not starting with a digit");
2366 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002367 }
2368
Corey Bryant208c9d12012-06-22 14:36:09 -04002369 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002370 if (strcmp(monfd->name, fdname) != 0) {
2371 continue;
2372 }
2373
2374 close(monfd->fd);
2375 monfd->fd = fd;
Corey Bryant208c9d12012-06-22 14:36:09 -04002376 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002377 }
2378
Anthony Liguori7267c092011-08-20 22:09:37 -05002379 monfd = g_malloc0(sizeof(mon_fd_t));
2380 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002381 monfd->fd = fd;
2382
Corey Bryant208c9d12012-06-22 14:36:09 -04002383 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002384}
2385
Corey Bryant208c9d12012-06-22 14:36:09 -04002386void qmp_closefd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002387{
Anthony Liguoric227f092009-10-01 16:12:16 -05002388 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002389
Corey Bryant208c9d12012-06-22 14:36:09 -04002390 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002391 if (strcmp(monfd->name, fdname) != 0) {
2392 continue;
2393 }
2394
Blue Swirl72cf2d42009-09-12 07:36:22 +00002395 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002396 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002397 g_free(monfd->name);
2398 g_free(monfd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002399 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002400 }
2401
Corey Bryant208c9d12012-06-22 14:36:09 -04002402 error_set(errp, QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002403}
2404
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002405static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002406{
Luiz Capitulino13548692011-07-29 15:36:43 -03002407 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002408 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002409
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002410 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002411
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002412 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002413 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002414 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002415}
2416
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002417int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
Mark McLoughlin7768e042009-07-22 09:11:41 +01002418{
Anthony Liguoric227f092009-10-01 16:12:16 -05002419 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002420
Blue Swirl72cf2d42009-09-12 07:36:22 +00002421 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002422 int fd;
2423
2424 if (strcmp(monfd->name, fdname) != 0) {
2425 continue;
2426 }
2427
2428 fd = monfd->fd;
2429
2430 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002431 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002432 g_free(monfd->name);
2433 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002434
2435 return fd;
2436 }
2437
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002438 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002439 return -1;
2440}
2441
Corey Bryantba1c0482012-08-14 16:43:43 -04002442static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2443{
2444 MonFdsetFd *mon_fdset_fd;
2445 MonFdsetFd *mon_fdset_fd_next;
2446
2447 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
Corey Bryantebe52b52012-10-18 15:19:33 -04002448 if ((mon_fdset_fd->removed ||
2449 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2450 runstate_is_running()) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002451 close(mon_fdset_fd->fd);
2452 g_free(mon_fdset_fd->opaque);
2453 QLIST_REMOVE(mon_fdset_fd, next);
2454 g_free(mon_fdset_fd);
2455 }
2456 }
2457
Corey Bryantadb696f2012-08-14 16:43:47 -04002458 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002459 QLIST_REMOVE(mon_fdset, next);
2460 g_free(mon_fdset);
2461 }
2462}
2463
Corey Bryantefb87c12012-08-14 16:43:48 -04002464static void monitor_fdsets_cleanup(void)
2465{
2466 MonFdset *mon_fdset;
2467 MonFdset *mon_fdset_next;
2468
2469 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2470 monitor_fdset_cleanup(mon_fdset);
2471 }
2472}
2473
Corey Bryantba1c0482012-08-14 16:43:43 -04002474AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2475 const char *opaque, Error **errp)
2476{
2477 int fd;
2478 Monitor *mon = cur_mon;
Corey Bryantba1c0482012-08-14 16:43:43 -04002479 AddfdInfo *fdinfo;
2480
2481 fd = qemu_chr_fe_get_msgfd(mon->chr);
2482 if (fd == -1) {
2483 error_set(errp, QERR_FD_NOT_SUPPLIED);
2484 goto error;
2485 }
2486
Corey Bryante446f702012-10-18 15:19:32 -04002487 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2488 has_opaque, opaque, errp);
2489 if (fdinfo) {
2490 return fdinfo;
Corey Bryant9ac54af2012-10-18 15:19:31 -04002491 }
2492
Corey Bryantba1c0482012-08-14 16:43:43 -04002493error:
2494 if (fd != -1) {
2495 close(fd);
2496 }
2497 return NULL;
2498}
2499
2500void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2501{
2502 MonFdset *mon_fdset;
2503 MonFdsetFd *mon_fdset_fd;
2504 char fd_str[60];
2505
2506 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2507 if (mon_fdset->id != fdset_id) {
2508 continue;
2509 }
2510 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2511 if (has_fd) {
2512 if (mon_fdset_fd->fd != fd) {
2513 continue;
2514 }
2515 mon_fdset_fd->removed = true;
2516 break;
2517 } else {
2518 mon_fdset_fd->removed = true;
2519 }
2520 }
2521 if (has_fd && !mon_fdset_fd) {
2522 goto error;
2523 }
2524 monitor_fdset_cleanup(mon_fdset);
2525 return;
2526 }
2527
2528error:
2529 if (has_fd) {
2530 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2531 fdset_id, fd);
2532 } else {
2533 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2534 }
2535 error_set(errp, QERR_FD_NOT_FOUND, fd_str);
2536}
2537
2538FdsetInfoList *qmp_query_fdsets(Error **errp)
2539{
2540 MonFdset *mon_fdset;
2541 MonFdsetFd *mon_fdset_fd;
2542 FdsetInfoList *fdset_list = NULL;
2543
2544 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2545 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2546 FdsetFdInfoList *fdsetfd_list = NULL;
2547
2548 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2549 fdset_info->value->fdset_id = mon_fdset->id;
2550
2551 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2552 FdsetFdInfoList *fdsetfd_info;
2553
2554 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2555 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2556 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2557 if (mon_fdset_fd->opaque) {
2558 fdsetfd_info->value->has_opaque = true;
2559 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2560 } else {
2561 fdsetfd_info->value->has_opaque = false;
2562 }
2563
2564 fdsetfd_info->next = fdsetfd_list;
2565 fdsetfd_list = fdsetfd_info;
2566 }
2567
2568 fdset_info->value->fds = fdsetfd_list;
2569
2570 fdset_info->next = fdset_list;
2571 fdset_list = fdset_info;
2572 }
2573
2574 return fdset_list;
2575}
2576
Corey Bryante446f702012-10-18 15:19:32 -04002577AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2578 bool has_opaque, const char *opaque,
2579 Error **errp)
2580{
2581 MonFdset *mon_fdset = NULL;
2582 MonFdsetFd *mon_fdset_fd;
2583 AddfdInfo *fdinfo;
2584
2585 if (has_fdset_id) {
2586 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2587 /* Break if match found or match impossible due to ordering by ID */
2588 if (fdset_id <= mon_fdset->id) {
2589 if (fdset_id < mon_fdset->id) {
2590 mon_fdset = NULL;
2591 }
2592 break;
2593 }
2594 }
2595 }
2596
2597 if (mon_fdset == NULL) {
2598 int64_t fdset_id_prev = -1;
2599 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2600
2601 if (has_fdset_id) {
2602 if (fdset_id < 0) {
2603 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2604 "a non-negative value");
2605 return NULL;
2606 }
2607 /* Use specified fdset ID */
2608 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2609 mon_fdset_cur = mon_fdset;
2610 if (fdset_id < mon_fdset_cur->id) {
2611 break;
2612 }
2613 }
2614 } else {
2615 /* Use first available fdset ID */
2616 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2617 mon_fdset_cur = mon_fdset;
2618 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2619 fdset_id_prev = mon_fdset_cur->id;
2620 continue;
2621 }
2622 break;
2623 }
2624 }
2625
2626 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2627 if (has_fdset_id) {
2628 mon_fdset->id = fdset_id;
2629 } else {
2630 mon_fdset->id = fdset_id_prev + 1;
2631 }
2632
2633 /* The fdset list is ordered by fdset ID */
2634 if (!mon_fdset_cur) {
2635 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2636 } else if (mon_fdset->id < mon_fdset_cur->id) {
2637 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2638 } else {
2639 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2640 }
2641 }
2642
2643 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2644 mon_fdset_fd->fd = fd;
2645 mon_fdset_fd->removed = false;
2646 if (has_opaque) {
2647 mon_fdset_fd->opaque = g_strdup(opaque);
2648 }
2649 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2650
2651 fdinfo = g_malloc0(sizeof(*fdinfo));
2652 fdinfo->fdset_id = mon_fdset->id;
2653 fdinfo->fd = mon_fdset_fd->fd;
2654
2655 return fdinfo;
2656}
2657
Corey Bryantadb696f2012-08-14 16:43:47 -04002658int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2659{
Blue Swirlb2dc64c2012-08-18 20:14:54 +00002660#ifndef _WIN32
Corey Bryantadb696f2012-08-14 16:43:47 -04002661 MonFdset *mon_fdset;
2662 MonFdsetFd *mon_fdset_fd;
2663 int mon_fd_flags;
2664
Corey Bryantadb696f2012-08-14 16:43:47 -04002665 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2666 if (mon_fdset->id != fdset_id) {
2667 continue;
2668 }
2669 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2670 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2671 if (mon_fd_flags == -1) {
2672 return -1;
2673 }
2674
2675 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2676 return mon_fdset_fd->fd;
2677 }
2678 }
2679 errno = EACCES;
2680 return -1;
2681 }
2682#endif
2683
2684 errno = ENOENT;
2685 return -1;
2686}
2687
2688int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2689{
2690 MonFdset *mon_fdset;
2691 MonFdsetFd *mon_fdset_fd_dup;
2692
2693 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2694 if (mon_fdset->id != fdset_id) {
2695 continue;
2696 }
2697 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2698 if (mon_fdset_fd_dup->fd == dup_fd) {
2699 return -1;
2700 }
2701 }
2702 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2703 mon_fdset_fd_dup->fd = dup_fd;
2704 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2705 return 0;
2706 }
2707 return -1;
2708}
2709
2710static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2711{
2712 MonFdset *mon_fdset;
2713 MonFdsetFd *mon_fdset_fd_dup;
2714
2715 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2716 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2717 if (mon_fdset_fd_dup->fd == dup_fd) {
2718 if (remove) {
2719 QLIST_REMOVE(mon_fdset_fd_dup, next);
2720 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2721 monitor_fdset_cleanup(mon_fdset);
2722 }
2723 }
2724 return mon_fdset->id;
2725 }
2726 }
2727 }
2728 return -1;
2729}
2730
2731int monitor_fdset_dup_fd_find(int dup_fd)
2732{
2733 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2734}
2735
2736int monitor_fdset_dup_fd_remove(int dup_fd)
2737{
2738 return monitor_fdset_dup_fd_find_remove(dup_fd, true);
2739}
2740
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002741int monitor_handle_fd_param(Monitor *mon, const char *fdname)
2742{
2743 int fd;
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002744 Error *local_err = NULL;
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002745
Laszlo Ersek59063662014-04-10 10:24:31 +02002746 fd = monitor_handle_fd_param2(mon, fdname, &local_err);
2747 if (local_err) {
2748 qerror_report_err(local_err);
2749 error_free(local_err);
2750 }
2751 return fd;
2752}
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002753
Laszlo Ersek59063662014-04-10 10:24:31 +02002754int monitor_handle_fd_param2(Monitor *mon, const char *fdname, Error **errp)
2755{
2756 int fd;
2757 Error *local_err = NULL;
2758
2759 if (!qemu_isdigit(fdname[0]) && mon) {
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002760 fd = monitor_get_fd(mon, fdname, &local_err);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002761 } else {
2762 fd = qemu_parse_fd(fdname);
Laszlo Ersek59063662014-04-10 10:24:31 +02002763 if (fd == -1) {
2764 error_setg(&local_err, "Invalid file descriptor number '%s'",
2765 fdname);
2766 }
2767 }
2768 if (local_err) {
2769 error_propagate(errp, local_err);
2770 assert(fd == -1);
2771 } else {
2772 assert(fd != -1);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002773 }
2774
2775 return fd;
2776}
2777
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002778/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002779static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002780 {
2781 .name = "version",
2782 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002783 .params = "",
2784 .help = "show the version of QEMU",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002785 .mhandler.cmd = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002786 },
2787 {
2788 .name = "network",
2789 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002790 .params = "",
2791 .help = "show the network state",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002792 .mhandler.cmd = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002793 },
2794 {
2795 .name = "chardev",
2796 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002797 .params = "",
2798 .help = "show the character devices",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002799 .mhandler.cmd = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002800 },
2801 {
2802 .name = "block",
Wenchao Xiae73fe2b2013-06-06 12:28:01 +08002803 .args_type = "verbose:-v,device:B?",
2804 .params = "[-v] [device]",
2805 .help = "show info of one block device or all block devices "
2806 "(and details of images with -v option)",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002807 .mhandler.cmd = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002808 },
2809 {
2810 .name = "blockstats",
2811 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002812 .params = "",
2813 .help = "show block device statistics",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002814 .mhandler.cmd = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002815 },
2816 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002817 .name = "block-jobs",
2818 .args_type = "",
2819 .params = "",
2820 .help = "show progress of ongoing block device operations",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002821 .mhandler.cmd = hmp_info_block_jobs,
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002822 },
2823 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002824 .name = "registers",
2825 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002826 .params = "",
2827 .help = "show the cpu registers",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002828 .mhandler.cmd = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002829 },
2830 {
2831 .name = "cpus",
2832 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002833 .params = "",
2834 .help = "show infos for each CPU",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002835 .mhandler.cmd = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002836 },
2837 {
2838 .name = "history",
2839 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002840 .params = "",
2841 .help = "show the command line history",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002842 .mhandler.cmd = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002843 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002844#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2845 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002846 {
2847 .name = "irq",
2848 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002849 .params = "",
2850 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002851#ifdef TARGET_SPARC
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002852 .mhandler.cmd = sun4m_irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002853#elif defined(TARGET_LM32)
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002854 .mhandler.cmd = lm32_irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002855#else
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002856 .mhandler.cmd = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002857#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002858 },
2859 {
2860 .name = "pic",
2861 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002862 .params = "",
2863 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002864#ifdef TARGET_SPARC
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002865 .mhandler.cmd = sun4m_pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002866#elif defined(TARGET_LM32)
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002867 .mhandler.cmd = lm32_do_pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002868#else
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002869 .mhandler.cmd = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002870#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002871 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002872#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002873 {
2874 .name = "pci",
2875 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002876 .params = "",
2877 .help = "show PCI info",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002878 .mhandler.cmd = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002879 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002880#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002881 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002882 {
2883 .name = "tlb",
2884 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002885 .params = "",
2886 .help = "show virtual to physical memory mappings",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002887 .mhandler.cmd = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002888 },
aurel327c664e22009-03-03 06:12:22 +00002889#endif
2890#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002891 {
2892 .name = "mem",
2893 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002894 .params = "",
2895 .help = "show the active virtual memory mappings",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002896 .mhandler.cmd = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002897 },
bellardb86bda52004-09-18 19:32:46 +00002898#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002899 {
Blue Swirl314e2982011-09-11 20:22:05 +00002900 .name = "mtree",
2901 .args_type = "",
2902 .params = "",
2903 .help = "show memory tree",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002904 .mhandler.cmd = do_info_mtree,
Blue Swirl314e2982011-09-11 20:22:05 +00002905 },
2906 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002907 .name = "jit",
2908 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002909 .params = "",
2910 .help = "show dynamic compiler info",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002911 .mhandler.cmd = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002912 },
2913 {
2914 .name = "kvm",
2915 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002916 .params = "",
2917 .help = "show KVM information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002918 .mhandler.cmd = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002919 },
2920 {
2921 .name = "numa",
2922 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002923 .params = "",
2924 .help = "show NUMA information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002925 .mhandler.cmd = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002926 },
2927 {
2928 .name = "usb",
2929 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002930 .params = "",
2931 .help = "show guest USB devices",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002932 .mhandler.cmd = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002933 },
2934 {
2935 .name = "usbhost",
2936 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002937 .params = "",
2938 .help = "show host USB devices",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002939 .mhandler.cmd = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002940 },
2941 {
2942 .name = "profile",
2943 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002944 .params = "",
2945 .help = "show profiling information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002946 .mhandler.cmd = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002947 },
2948 {
2949 .name = "capture",
2950 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002951 .params = "",
2952 .help = "show capture information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002953 .mhandler.cmd = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002954 },
2955 {
2956 .name = "snapshots",
2957 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002958 .params = "",
2959 .help = "show the currently saved VM snapshots",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002960 .mhandler.cmd = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002961 },
2962 {
2963 .name = "status",
2964 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002965 .params = "",
2966 .help = "show the current VM status (running|paused)",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002967 .mhandler.cmd = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002968 },
2969 {
2970 .name = "pcmcia",
2971 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002972 .params = "",
2973 .help = "show guest PCMCIA status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002974 .mhandler.cmd = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002975 },
2976 {
2977 .name = "mice",
2978 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002979 .params = "",
2980 .help = "show which guest mouse is receiving events",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002981 .mhandler.cmd = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002982 },
2983 {
2984 .name = "vnc",
2985 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002986 .params = "",
2987 .help = "show the vnc server status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002988 .mhandler.cmd = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002989 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002990#if defined(CONFIG_SPICE)
2991 {
2992 .name = "spice",
2993 .args_type = "",
2994 .params = "",
2995 .help = "show the spice server status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002996 .mhandler.cmd = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002997 },
2998#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002999 {
3000 .name = "name",
3001 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003002 .params = "",
3003 .help = "show the current VM name",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003004 .mhandler.cmd = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003005 },
3006 {
3007 .name = "uuid",
3008 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003009 .params = "",
3010 .help = "show the current VM UUID",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003011 .mhandler.cmd = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003012 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003013 {
3014 .name = "cpustats",
3015 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003016 .params = "",
3017 .help = "show CPU statistics",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003018 .mhandler.cmd = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003019 },
blueswir131a60e22007-10-26 18:42:59 +00003020#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003021 {
3022 .name = "usernet",
3023 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003024 .params = "",
3025 .help = "show user network stack connection states",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003026 .mhandler.cmd = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003027 },
blueswir131a60e22007-10-26 18:42:59 +00003028#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003029 {
3030 .name = "migrate",
3031 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003032 .params = "",
3033 .help = "show migration status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003034 .mhandler.cmd = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003035 },
3036 {
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003037 .name = "migrate_capabilities",
3038 .args_type = "",
3039 .params = "",
3040 .help = "show current migration capabilities",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003041 .mhandler.cmd = hmp_info_migrate_capabilities,
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003042 },
3043 {
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03003044 .name = "migrate_cache_size",
3045 .args_type = "",
3046 .params = "",
3047 .help = "show current migration xbzrle cache size",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003048 .mhandler.cmd = hmp_info_migrate_cache_size,
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03003049 },
3050 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003051 .name = "balloon",
3052 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003053 .params = "",
3054 .help = "show balloon information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003055 .mhandler.cmd = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003056 },
3057 {
3058 .name = "qtree",
3059 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003060 .params = "",
3061 .help = "show device tree",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003062 .mhandler.cmd = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003063 },
3064 {
3065 .name = "qdm",
3066 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003067 .params = "",
3068 .help = "show qdev device model list",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003069 .mhandler.cmd = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003070 },
3071 {
3072 .name = "roms",
3073 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003074 .params = "",
3075 .help = "show roms",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003076 .mhandler.cmd = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003077 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05303078 {
3079 .name = "trace-events",
3080 .args_type = "",
3081 .params = "",
3082 .help = "show available trace-events & their state",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08003083 .mhandler.cmd = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05303084 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003085 {
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003086 .name = "tpm",
3087 .args_type = "",
3088 .params = "",
3089 .help = "show the TPM device",
3090 .mhandler.cmd = hmp_info_tpm,
3091 },
3092 {
Hu Taoeb1539b2014-05-14 17:43:35 +08003093 .name = "memdev",
3094 .args_type = "",
3095 .params = "",
3096 .help = "show the memory device",
3097 .mhandler.cmd = hmp_info_memdev,
3098 },
3099 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003100 .name = NULL,
3101 },
bellard9dc39cb2004-03-14 21:38:27 +00003102};
3103
Wenchao Xiaa13ced52013-01-14 14:06:28 +08003104/* mon_cmds and info_cmds would be sorted at runtime */
3105static mon_cmd_t mon_cmds[] = {
3106#include "hmp-commands.h"
3107 { NULL, NULL, },
3108};
3109
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003110static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05003111#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003112 { /* NULL */ },
3113};
3114
bellard9307c4c2004-04-04 12:57:25 +00003115/*******************************************************************/
3116
3117static const char *pch;
Peter Maydell6ab7e542013-02-20 15:21:09 +00003118static sigjmp_buf expr_env;
bellard9307c4c2004-04-04 12:57:25 +00003119
bellard92a31b12005-02-10 22:00:52 +00003120#define MD_TLONG 0
3121#define MD_I32 1
3122
bellard9307c4c2004-04-04 12:57:25 +00003123typedef struct MonitorDef {
3124 const char *name;
3125 int offset;
blueswir18662d652008-10-02 18:32:44 +00003126 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00003127 int type;
bellard9307c4c2004-04-04 12:57:25 +00003128} MonitorDef;
3129
bellard57206fd2004-04-25 18:54:52 +00003130#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00003131static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00003132{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003133 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003134 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00003135}
3136#endif
3137
bellarda541f292004-04-12 20:39:29 +00003138#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00003139static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003140{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003141 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00003142 unsigned int u;
3143 int i;
3144
3145 u = 0;
3146 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00003147 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00003148
3149 return u;
3150}
3151
blueswir18662d652008-10-02 18:32:44 +00003152static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003153{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003154 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00003155 return env->msr;
bellarda541f292004-04-12 20:39:29 +00003156}
3157
blueswir18662d652008-10-02 18:32:44 +00003158static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003159{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003160 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00003161 return env->xer;
bellarda541f292004-04-12 20:39:29 +00003162}
bellard9fddaa02004-05-21 12:59:32 +00003163
blueswir18662d652008-10-02 18:32:44 +00003164static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003165{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003166 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003167 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00003168}
3169
blueswir18662d652008-10-02 18:32:44 +00003170static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003171{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003172 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003173 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00003174}
3175
blueswir18662d652008-10-02 18:32:44 +00003176static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003177{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003178 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003179 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00003180}
bellarda541f292004-04-12 20:39:29 +00003181#endif
3182
bellarde95c8d52004-09-30 22:22:08 +00003183#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00003184#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00003185static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003186{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003187 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00003188
3189 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00003190}
bellard7b936c02005-10-30 17:05:13 +00003191#endif
bellarde95c8d52004-09-30 22:22:08 +00003192
blueswir18662d652008-10-02 18:32:44 +00003193static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003194{
Andreas Färber9349b4f2012-03-14 01:38:32 +01003195 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003196 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00003197}
3198#endif
3199
blueswir18662d652008-10-02 18:32:44 +00003200static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00003201#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00003202
3203#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01003204 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
3205 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
3206 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00003207
Andreas Färbere59d1672012-02-16 00:40:47 +01003208 { "eax", offsetof(CPUX86State, regs[0]) },
3209 { "ecx", offsetof(CPUX86State, regs[1]) },
3210 { "edx", offsetof(CPUX86State, regs[2]) },
3211 { "ebx", offsetof(CPUX86State, regs[3]) },
3212 { "esp|sp", offsetof(CPUX86State, regs[4]) },
3213 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
3214 { "esi", offsetof(CPUX86State, regs[6]) },
3215 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00003216#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01003217 { "r8", offsetof(CPUX86State, regs[8]) },
3218 { "r9", offsetof(CPUX86State, regs[9]) },
3219 { "r10", offsetof(CPUX86State, regs[10]) },
3220 { "r11", offsetof(CPUX86State, regs[11]) },
3221 { "r12", offsetof(CPUX86State, regs[12]) },
3222 { "r13", offsetof(CPUX86State, regs[13]) },
3223 { "r14", offsetof(CPUX86State, regs[14]) },
3224 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00003225#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003226 { "eflags", offsetof(CPUX86State, eflags) },
3227 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00003228 SEG("cs", R_CS)
3229 SEG("ds", R_DS)
3230 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00003231 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00003232 SEG("fs", R_FS)
3233 SEG("gs", R_GS)
3234 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00003235#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00003236 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003237 { "r0", offsetof(CPUPPCState, gpr[0]) },
3238 { "r1", offsetof(CPUPPCState, gpr[1]) },
3239 { "r2", offsetof(CPUPPCState, gpr[2]) },
3240 { "r3", offsetof(CPUPPCState, gpr[3]) },
3241 { "r4", offsetof(CPUPPCState, gpr[4]) },
3242 { "r5", offsetof(CPUPPCState, gpr[5]) },
3243 { "r6", offsetof(CPUPPCState, gpr[6]) },
3244 { "r7", offsetof(CPUPPCState, gpr[7]) },
3245 { "r8", offsetof(CPUPPCState, gpr[8]) },
3246 { "r9", offsetof(CPUPPCState, gpr[9]) },
3247 { "r10", offsetof(CPUPPCState, gpr[10]) },
3248 { "r11", offsetof(CPUPPCState, gpr[11]) },
3249 { "r12", offsetof(CPUPPCState, gpr[12]) },
3250 { "r13", offsetof(CPUPPCState, gpr[13]) },
3251 { "r14", offsetof(CPUPPCState, gpr[14]) },
3252 { "r15", offsetof(CPUPPCState, gpr[15]) },
3253 { "r16", offsetof(CPUPPCState, gpr[16]) },
3254 { "r17", offsetof(CPUPPCState, gpr[17]) },
3255 { "r18", offsetof(CPUPPCState, gpr[18]) },
3256 { "r19", offsetof(CPUPPCState, gpr[19]) },
3257 { "r20", offsetof(CPUPPCState, gpr[20]) },
3258 { "r21", offsetof(CPUPPCState, gpr[21]) },
3259 { "r22", offsetof(CPUPPCState, gpr[22]) },
3260 { "r23", offsetof(CPUPPCState, gpr[23]) },
3261 { "r24", offsetof(CPUPPCState, gpr[24]) },
3262 { "r25", offsetof(CPUPPCState, gpr[25]) },
3263 { "r26", offsetof(CPUPPCState, gpr[26]) },
3264 { "r27", offsetof(CPUPPCState, gpr[27]) },
3265 { "r28", offsetof(CPUPPCState, gpr[28]) },
3266 { "r29", offsetof(CPUPPCState, gpr[29]) },
3267 { "r30", offsetof(CPUPPCState, gpr[30]) },
3268 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00003269 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003270 { "f0", offsetof(CPUPPCState, fpr[0]) },
3271 { "f1", offsetof(CPUPPCState, fpr[1]) },
3272 { "f2", offsetof(CPUPPCState, fpr[2]) },
3273 { "f3", offsetof(CPUPPCState, fpr[3]) },
3274 { "f4", offsetof(CPUPPCState, fpr[4]) },
3275 { "f5", offsetof(CPUPPCState, fpr[5]) },
3276 { "f6", offsetof(CPUPPCState, fpr[6]) },
3277 { "f7", offsetof(CPUPPCState, fpr[7]) },
3278 { "f8", offsetof(CPUPPCState, fpr[8]) },
3279 { "f9", offsetof(CPUPPCState, fpr[9]) },
3280 { "f10", offsetof(CPUPPCState, fpr[10]) },
3281 { "f11", offsetof(CPUPPCState, fpr[11]) },
3282 { "f12", offsetof(CPUPPCState, fpr[12]) },
3283 { "f13", offsetof(CPUPPCState, fpr[13]) },
3284 { "f14", offsetof(CPUPPCState, fpr[14]) },
3285 { "f15", offsetof(CPUPPCState, fpr[15]) },
3286 { "f16", offsetof(CPUPPCState, fpr[16]) },
3287 { "f17", offsetof(CPUPPCState, fpr[17]) },
3288 { "f18", offsetof(CPUPPCState, fpr[18]) },
3289 { "f19", offsetof(CPUPPCState, fpr[19]) },
3290 { "f20", offsetof(CPUPPCState, fpr[20]) },
3291 { "f21", offsetof(CPUPPCState, fpr[21]) },
3292 { "f22", offsetof(CPUPPCState, fpr[22]) },
3293 { "f23", offsetof(CPUPPCState, fpr[23]) },
3294 { "f24", offsetof(CPUPPCState, fpr[24]) },
3295 { "f25", offsetof(CPUPPCState, fpr[25]) },
3296 { "f26", offsetof(CPUPPCState, fpr[26]) },
3297 { "f27", offsetof(CPUPPCState, fpr[27]) },
3298 { "f28", offsetof(CPUPPCState, fpr[28]) },
3299 { "f29", offsetof(CPUPPCState, fpr[29]) },
3300 { "f30", offsetof(CPUPPCState, fpr[30]) },
3301 { "f31", offsetof(CPUPPCState, fpr[31]) },
3302 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00003303 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01003304 { "nip|pc", offsetof(CPUPPCState, nip) },
3305 { "lr", offsetof(CPUPPCState, lr) },
3306 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003307 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003308 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003309 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003310 { "msr", 0, &monitor_get_msr, },
3311 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003312 { "tbu", 0, &monitor_get_tbu, },
3313 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003314 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003315 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
3316 { "sr0", offsetof(CPUPPCState, sr[0]) },
3317 { "sr1", offsetof(CPUPPCState, sr[1]) },
3318 { "sr2", offsetof(CPUPPCState, sr[2]) },
3319 { "sr3", offsetof(CPUPPCState, sr[3]) },
3320 { "sr4", offsetof(CPUPPCState, sr[4]) },
3321 { "sr5", offsetof(CPUPPCState, sr[5]) },
3322 { "sr6", offsetof(CPUPPCState, sr[6]) },
3323 { "sr7", offsetof(CPUPPCState, sr[7]) },
3324 { "sr8", offsetof(CPUPPCState, sr[8]) },
3325 { "sr9", offsetof(CPUPPCState, sr[9]) },
3326 { "sr10", offsetof(CPUPPCState, sr[10]) },
3327 { "sr11", offsetof(CPUPPCState, sr[11]) },
3328 { "sr12", offsetof(CPUPPCState, sr[12]) },
3329 { "sr13", offsetof(CPUPPCState, sr[13]) },
3330 { "sr14", offsetof(CPUPPCState, sr[14]) },
3331 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003332 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01003333 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003334
Andreas Färbere59d1672012-02-16 00:40:47 +01003335 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
3336 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
Tom Musta04f1f782013-09-25 17:41:13 +10003337 { "dar", offsetof(CPUPPCState, spr[SPR_DAR]) },
3338 { "dsisr", offsetof(CPUPPCState, spr[SPR_DSISR]) },
3339 { "cfar", offsetof(CPUPPCState, spr[SPR_CFAR]) },
Andreas Färbere59d1672012-02-16 00:40:47 +01003340 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
3341 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
3342 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
3343 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
3344 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
3345 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
3346 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
3347 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
3348 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
3349 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
3350 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
3351 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
3352 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
3353 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
3354 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
3355 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
3356 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
3357 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
3358 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
3359 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
3360 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
3361 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
3362 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
3363 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
3364 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
3365 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
3366 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
3367 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
3368 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
3369 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
3370 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
3371 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
3372 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
3373 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
3374 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
3375 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
3376 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
3377 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
3378 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
3379 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
3380 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
3381 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3382 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3383 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3384 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3385 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3386 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3387 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3388 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3389 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3390 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3391 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3392 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3393 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3394 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3395 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3396 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3397 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3398 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3399 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3400 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3401 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3402 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3403 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003404
bellarde95c8d52004-09-30 22:22:08 +00003405#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01003406 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3407 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3408 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3409 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3410 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3411 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3412 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3413 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00003414 { "o0", 0, monitor_get_reg },
3415 { "o1", 1, monitor_get_reg },
3416 { "o2", 2, monitor_get_reg },
3417 { "o3", 3, monitor_get_reg },
3418 { "o4", 4, monitor_get_reg },
3419 { "o5", 5, monitor_get_reg },
3420 { "o6", 6, monitor_get_reg },
3421 { "o7", 7, monitor_get_reg },
3422 { "l0", 8, monitor_get_reg },
3423 { "l1", 9, monitor_get_reg },
3424 { "l2", 10, monitor_get_reg },
3425 { "l3", 11, monitor_get_reg },
3426 { "l4", 12, monitor_get_reg },
3427 { "l5", 13, monitor_get_reg },
3428 { "l6", 14, monitor_get_reg },
3429 { "l7", 15, monitor_get_reg },
3430 { "i0", 16, monitor_get_reg },
3431 { "i1", 17, monitor_get_reg },
3432 { "i2", 18, monitor_get_reg },
3433 { "i3", 19, monitor_get_reg },
3434 { "i4", 20, monitor_get_reg },
3435 { "i5", 21, monitor_get_reg },
3436 { "i6", 22, monitor_get_reg },
3437 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01003438 { "pc", offsetof(CPUSPARCState, pc) },
3439 { "npc", offsetof(CPUSPARCState, npc) },
3440 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00003441#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003442 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01003443 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003444#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003445 { "tbr", offsetof(CPUSPARCState, tbr) },
3446 { "fsr", offsetof(CPUSPARCState, fsr) },
3447 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3448 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3449 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3450 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3451 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3452 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3453 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3454 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3455 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3456 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3457 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3458 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3459 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3460 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3461 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3462 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3463 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3464 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3465 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3466 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3467 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3468 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3469 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3470 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3471 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3472 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3473 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3474 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3475 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3476 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3477 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3478 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00003479#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01003480 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3481 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3482 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3483 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3484 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3485 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3486 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3487 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3488 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3489 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3490 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3491 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3492 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3493 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3494 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3495 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3496 { "asi", offsetof(CPUSPARCState, asi) },
3497 { "pstate", offsetof(CPUSPARCState, pstate) },
3498 { "cansave", offsetof(CPUSPARCState, cansave) },
3499 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3500 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3501 { "wstate", offsetof(CPUSPARCState, wstate) },
3502 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3503 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00003504#endif
bellard9307c4c2004-04-04 12:57:25 +00003505#endif
3506 { NULL },
3507};
3508
Stefan Weil9c3175c2013-08-22 21:30:09 +02003509static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
3510expr_error(Monitor *mon, const char *fmt, ...)
bellard9dc39cb2004-03-14 21:38:27 +00003511{
Fam Zheng277acfe2013-08-20 10:58:21 +08003512 va_list ap;
3513 va_start(ap, fmt);
3514 monitor_vprintf(mon, fmt, ap);
3515 monitor_printf(mon, "\n");
3516 va_end(ap);
Peter Maydell6ab7e542013-02-20 15:21:09 +00003517 siglongjmp(expr_env, 1);
bellard9307c4c2004-04-04 12:57:25 +00003518}
3519
Markus Armbruster09b94182010-01-20 13:07:30 +01003520/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003521static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003522{
blueswir18662d652008-10-02 18:32:44 +00003523 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003524 void *ptr;
3525
bellard9307c4c2004-04-04 12:57:25 +00003526 for(md = monitor_defs; md->name != NULL; md++) {
3527 if (compare_cmd(name, md->name)) {
3528 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003529 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003530 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003531 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003532 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003533 switch(md->type) {
3534 case MD_I32:
3535 *pval = *(int32_t *)ptr;
3536 break;
3537 case MD_TLONG:
3538 *pval = *(target_long *)ptr;
3539 break;
3540 default:
3541 *pval = 0;
3542 break;
3543 }
bellard9307c4c2004-04-04 12:57:25 +00003544 }
3545 return 0;
3546 }
3547 }
3548 return -1;
3549}
3550
3551static void next(void)
3552{
Blue Swirl660f11b2009-07-31 21:16:51 +00003553 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003554 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003555 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003556 pch++;
3557 }
3558}
3559
aliguori376253e2009-03-05 23:01:23 +00003560static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003561
aliguori376253e2009-03-05 23:01:23 +00003562static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003563{
blueswir1c2efc952007-09-25 17:28:42 +00003564 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003565 char *p;
bellard6a00d602005-11-21 23:25:50 +00003566 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003567
3568 switch(*pch) {
3569 case '+':
3570 next();
aliguori376253e2009-03-05 23:01:23 +00003571 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003572 break;
3573 case '-':
3574 next();
aliguori376253e2009-03-05 23:01:23 +00003575 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003576 break;
3577 case '~':
3578 next();
aliguori376253e2009-03-05 23:01:23 +00003579 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003580 break;
3581 case '(':
3582 next();
aliguori376253e2009-03-05 23:01:23 +00003583 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003584 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003585 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003586 }
3587 next();
3588 break;
bellard81d09122004-07-14 17:21:37 +00003589 case '\'':
3590 pch++;
3591 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003592 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003593 n = *pch;
3594 pch++;
3595 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003596 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003597 next();
3598 break;
bellard9307c4c2004-04-04 12:57:25 +00003599 case '$':
3600 {
3601 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003602 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003603
bellard9307c4c2004-04-04 12:57:25 +00003604 pch++;
3605 q = buf;
3606 while ((*pch >= 'a' && *pch <= 'z') ||
3607 (*pch >= 'A' && *pch <= 'Z') ||
3608 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003609 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003610 if ((q - buf) < sizeof(buf) - 1)
3611 *q++ = *pch;
3612 pch++;
3613 }
blueswir1cd390082008-11-16 13:53:32 +00003614 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003615 pch++;
3616 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003617 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003618 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003619 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003620 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003621 }
3622 break;
3623 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003624 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003625 n = 0;
3626 break;
3627 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003628 errno = 0;
bellard4f4fbf72006-06-25 18:28:12 +00003629 n = strtoull(pch, &p, 0);
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003630 if (errno == ERANGE) {
3631 expr_error(mon, "number too large");
3632 }
bellard9307c4c2004-04-04 12:57:25 +00003633 if (pch == p) {
Fam Zheng277acfe2013-08-20 10:58:21 +08003634 expr_error(mon, "invalid char '%c' in expression", *p);
bellard9307c4c2004-04-04 12:57:25 +00003635 }
3636 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003637 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003638 pch++;
3639 break;
3640 }
3641 return n;
3642}
3643
3644
aliguori376253e2009-03-05 23:01:23 +00003645static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003646{
blueswir1c2efc952007-09-25 17:28:42 +00003647 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003648 int op;
ths3b46e622007-09-17 08:09:54 +00003649
aliguori376253e2009-03-05 23:01:23 +00003650 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003651 for(;;) {
3652 op = *pch;
3653 if (op != '*' && op != '/' && op != '%')
3654 break;
3655 next();
aliguori376253e2009-03-05 23:01:23 +00003656 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003657 switch(op) {
3658 default:
3659 case '*':
3660 val *= val2;
3661 break;
3662 case '/':
3663 case '%':
ths5fafdf22007-09-16 21:08:06 +00003664 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003665 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003666 if (op == '/')
3667 val /= val2;
3668 else
3669 val %= val2;
3670 break;
3671 }
3672 }
3673 return val;
3674}
3675
aliguori376253e2009-03-05 23:01:23 +00003676static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003677{
blueswir1c2efc952007-09-25 17:28:42 +00003678 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003679 int op;
bellard9307c4c2004-04-04 12:57:25 +00003680
aliguori376253e2009-03-05 23:01:23 +00003681 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003682 for(;;) {
3683 op = *pch;
3684 if (op != '&' && op != '|' && op != '^')
3685 break;
3686 next();
aliguori376253e2009-03-05 23:01:23 +00003687 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003688 switch(op) {
3689 default:
3690 case '&':
3691 val &= val2;
3692 break;
3693 case '|':
3694 val |= val2;
3695 break;
3696 case '^':
3697 val ^= val2;
3698 break;
3699 }
3700 }
3701 return val;
3702}
3703
aliguori376253e2009-03-05 23:01:23 +00003704static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003705{
blueswir1c2efc952007-09-25 17:28:42 +00003706 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003707 int op;
bellard9307c4c2004-04-04 12:57:25 +00003708
aliguori376253e2009-03-05 23:01:23 +00003709 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003710 for(;;) {
3711 op = *pch;
3712 if (op != '+' && op != '-')
3713 break;
3714 next();
aliguori376253e2009-03-05 23:01:23 +00003715 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003716 if (op == '+')
3717 val += val2;
3718 else
3719 val -= val2;
3720 }
3721 return val;
3722}
3723
aliguori376253e2009-03-05 23:01:23 +00003724static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003725{
3726 pch = *pp;
Peter Maydell6ab7e542013-02-20 15:21:09 +00003727 if (sigsetjmp(expr_env, 0)) {
bellard9307c4c2004-04-04 12:57:25 +00003728 *pp = pch;
3729 return -1;
3730 }
blueswir1cd390082008-11-16 13:53:32 +00003731 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003732 pch++;
aliguori376253e2009-03-05 23:01:23 +00003733 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003734 *pp = pch;
3735 return 0;
3736}
3737
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003738static int get_double(Monitor *mon, double *pval, const char **pp)
3739{
3740 const char *p = *pp;
3741 char *tailp;
3742 double d;
3743
3744 d = strtod(p, &tailp);
3745 if (tailp == p) {
3746 monitor_printf(mon, "Number expected\n");
3747 return -1;
3748 }
3749 if (d != d || d - d != 0) {
3750 /* NaN or infinity */
3751 monitor_printf(mon, "Bad number\n");
3752 return -1;
3753 }
3754 *pval = d;
3755 *pp = tailp;
3756 return 0;
3757}
3758
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003759/*
3760 * Store the command-name in cmdname, and return a pointer to
3761 * the remaining of the command string.
3762 */
3763static const char *get_command_name(const char *cmdline,
3764 char *cmdname, size_t nlen)
3765{
3766 size_t len;
3767 const char *p, *pstart;
3768
3769 p = cmdline;
3770 while (qemu_isspace(*p))
3771 p++;
3772 if (*p == '\0')
3773 return NULL;
3774 pstart = p;
3775 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3776 p++;
3777 len = p - pstart;
3778 if (len > nlen - 1)
3779 len = nlen - 1;
3780 memcpy(cmdname, pstart, len);
3781 cmdname[len] = '\0';
3782 return p;
3783}
3784
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003785/**
3786 * Read key of 'type' into 'key' and return the current
3787 * 'type' pointer.
3788 */
3789static char *key_get_info(const char *type, char **key)
3790{
3791 size_t len;
3792 char *p, *str;
3793
3794 if (*type == ',')
3795 type++;
3796
3797 p = strchr(type, ':');
3798 if (!p) {
3799 *key = NULL;
3800 return NULL;
3801 }
3802 len = p - type;
3803
Anthony Liguori7267c092011-08-20 22:09:37 -05003804 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003805 memcpy(str, type, len);
3806 str[len] = '\0';
3807
3808 *key = str;
3809 return ++p;
3810}
3811
bellard9307c4c2004-04-04 12:57:25 +00003812static int default_fmt_format = 'x';
3813static int default_fmt_size = 4;
3814
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003815static int is_valid_option(const char *c, const char *typestr)
3816{
3817 char option[3];
3818
3819 option[0] = '-';
3820 option[1] = *c;
3821 option[2] = '\0';
3822
3823 typestr = strstr(typestr, option);
3824 return (typestr != NULL);
3825}
3826
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003827static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3828 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003829{
3830 const mon_cmd_t *cmd;
3831
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003832 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003833 if (compare_cmd(cmdname, cmd->name)) {
3834 return cmd;
3835 }
3836 }
3837
3838 return NULL;
3839}
3840
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003841static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3842{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003843 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003844}
3845
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003846/*
3847 * Parse @cmdline according to command table @table.
3848 * If @cmdline is blank, return NULL.
3849 * If it can't be parsed, report to @mon, and return NULL.
3850 * Else, insert command arguments into @qdict, and return the command.
Peter Maydell085d8132013-03-18 17:20:07 +00003851 * If a sub-command table exists, and if @cmdline contains an additional string
3852 * for a sub-command, this function will try to search the sub-command table.
3853 * If no additional string for a sub-command is present, this function will
3854 * return the command found in @table.
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003855 * Do not assume the returned command points into @table! It doesn't
3856 * when the command is a sub-command.
3857 */
Anthony Liguoric227f092009-10-01 16:12:16 -05003858static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003859 const char *cmdline,
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003860 int start,
3861 mon_cmd_t *table,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003862 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003863{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003864 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003865 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003866 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003867 char cmdname[256];
3868 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003869 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003870
3871#ifdef DEBUG
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003872 monitor_printf(mon, "command='%s', start='%d'\n", cmdline, start);
bellard9dc39cb2004-03-14 21:38:27 +00003873#endif
ths3b46e622007-09-17 08:09:54 +00003874
bellard9307c4c2004-04-04 12:57:25 +00003875 /* extract the command name */
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003876 p = get_command_name(cmdline + start, cmdname, sizeof(cmdname));
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003877 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003878 return NULL;
ths3b46e622007-09-17 08:09:54 +00003879
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003880 cmd = search_dispatch_table(table, cmdname);
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003881 if (!cmd) {
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003882 monitor_printf(mon, "unknown command: '%.*s'\n",
3883 (int)(p - cmdline), cmdline);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003884 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003885 }
bellard9307c4c2004-04-04 12:57:25 +00003886
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003887 /* filter out following useless space */
3888 while (qemu_isspace(*p)) {
3889 p++;
3890 }
3891 /* search sub command */
3892 if (cmd->sub_table != NULL) {
3893 /* check if user set additional command */
3894 if (*p == '\0') {
3895 return cmd;
3896 }
3897 return monitor_parse_command(mon, cmdline, p - cmdline,
3898 cmd->sub_table, qdict);
3899 }
3900
bellard9307c4c2004-04-04 12:57:25 +00003901 /* parse the parameters */
3902 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003903 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003904 typestr = key_get_info(typestr, &key);
3905 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003906 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003907 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003908 typestr++;
3909 switch(c) {
3910 case 'F':
bellard81d09122004-07-14 17:21:37 +00003911 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003912 case 's':
3913 {
3914 int ret;
ths3b46e622007-09-17 08:09:54 +00003915
blueswir1cd390082008-11-16 13:53:32 +00003916 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003917 p++;
3918 if (*typestr == '?') {
3919 typestr++;
3920 if (*p == '\0') {
3921 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003922 break;
bellard9307c4c2004-04-04 12:57:25 +00003923 }
3924 }
3925 ret = get_str(buf, sizeof(buf), &p);
3926 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003927 switch(c) {
3928 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003929 monitor_printf(mon, "%s: filename expected\n",
3930 cmdname);
bellard81d09122004-07-14 17:21:37 +00003931 break;
3932 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003933 monitor_printf(mon, "%s: block device name expected\n",
3934 cmdname);
bellard81d09122004-07-14 17:21:37 +00003935 break;
3936 default:
aliguori376253e2009-03-05 23:01:23 +00003937 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003938 break;
3939 }
bellard9307c4c2004-04-04 12:57:25 +00003940 goto fail;
3941 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003942 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003943 }
3944 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003945 case 'O':
3946 {
3947 QemuOptsList *opts_list;
3948 QemuOpts *opts;
3949
3950 opts_list = qemu_find_opts(key);
3951 if (!opts_list || opts_list->desc->name) {
3952 goto bad_type;
3953 }
3954 while (qemu_isspace(*p)) {
3955 p++;
3956 }
3957 if (!*p)
3958 break;
3959 if (get_str(buf, sizeof(buf), &p) < 0) {
3960 goto fail;
3961 }
3962 opts = qemu_opts_parse(opts_list, buf, 1);
3963 if (!opts) {
3964 goto fail;
3965 }
3966 qemu_opts_to_qdict(opts, qdict);
3967 qemu_opts_del(opts);
3968 }
3969 break;
bellard9307c4c2004-04-04 12:57:25 +00003970 case '/':
3971 {
3972 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003973
blueswir1cd390082008-11-16 13:53:32 +00003974 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003975 p++;
3976 if (*p == '/') {
3977 /* format found */
3978 p++;
3979 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003980 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003981 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003982 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003983 count = count * 10 + (*p - '0');
3984 p++;
3985 }
3986 }
3987 size = -1;
3988 format = -1;
3989 for(;;) {
3990 switch(*p) {
3991 case 'o':
3992 case 'd':
3993 case 'u':
3994 case 'x':
3995 case 'i':
3996 case 'c':
3997 format = *p++;
3998 break;
3999 case 'b':
4000 size = 1;
4001 p++;
4002 break;
4003 case 'h':
4004 size = 2;
4005 p++;
4006 break;
4007 case 'w':
4008 size = 4;
4009 p++;
4010 break;
4011 case 'g':
4012 case 'L':
4013 size = 8;
4014 p++;
4015 break;
4016 default:
4017 goto next;
4018 }
4019 }
4020 next:
blueswir1cd390082008-11-16 13:53:32 +00004021 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00004022 monitor_printf(mon, "invalid char in format: '%c'\n",
4023 *p);
bellard9307c4c2004-04-04 12:57:25 +00004024 goto fail;
4025 }
bellard9307c4c2004-04-04 12:57:25 +00004026 if (format < 0)
4027 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004028 if (format != 'i') {
4029 /* for 'i', not specifying a size gives -1 as size */
4030 if (size < 0)
4031 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00004032 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00004033 }
bellard9307c4c2004-04-04 12:57:25 +00004034 default_fmt_format = format;
4035 } else {
4036 count = 1;
4037 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004038 if (format != 'i') {
4039 size = default_fmt_size;
4040 } else {
4041 size = -1;
4042 }
bellard9307c4c2004-04-04 12:57:25 +00004043 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004044 qdict_put(qdict, "count", qint_from_int(count));
4045 qdict_put(qdict, "format", qint_from_int(format));
4046 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00004047 }
4048 break;
4049 case 'i':
bellard92a31b12005-02-10 22:00:52 +00004050 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004051 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00004052 {
blueswir1c2efc952007-09-25 17:28:42 +00004053 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00004054
blueswir1cd390082008-11-16 13:53:32 +00004055 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004056 p++;
bellard34405572004-06-08 00:55:58 +00004057 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00004058 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03004059 if (*p == '\0') {
4060 typestr++;
4061 break;
4062 }
bellard34405572004-06-08 00:55:58 +00004063 } else {
4064 if (*p == '.') {
4065 p++;
blueswir1cd390082008-11-16 13:53:32 +00004066 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00004067 p++;
bellard34405572004-06-08 00:55:58 +00004068 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03004069 typestr++;
4070 break;
bellard34405572004-06-08 00:55:58 +00004071 }
4072 }
bellard13224a82006-07-14 22:03:35 +00004073 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00004074 }
aliguori376253e2009-03-05 23:01:23 +00004075 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00004076 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004077 /* Check if 'i' is greater than 32-bit */
4078 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4079 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4080 monitor_printf(mon, "integer is for 32-bit values\n");
4081 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004082 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03004083 if (val < 0) {
4084 monitor_printf(mon, "enter a positive value\n");
4085 goto fail;
4086 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004087 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004088 }
Luiz Capitulino53773582009-08-28 15:27:25 -03004089 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00004090 }
4091 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004092 case 'o':
4093 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01004094 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004095 char *end;
4096
4097 while (qemu_isspace(*p)) {
4098 p++;
4099 }
4100 if (*typestr == '?') {
4101 typestr++;
4102 if (*p == '\0') {
4103 break;
4104 }
4105 }
4106 val = strtosz(p, &end);
4107 if (val < 0) {
4108 monitor_printf(mon, "invalid size\n");
4109 goto fail;
4110 }
4111 qdict_put(qdict, key, qint_from_int(val));
4112 p = end;
4113 }
4114 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004115 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004116 {
4117 double val;
4118
4119 while (qemu_isspace(*p))
4120 p++;
4121 if (*typestr == '?') {
4122 typestr++;
4123 if (*p == '\0') {
4124 break;
4125 }
4126 }
4127 if (get_double(mon, &val, &p) < 0) {
4128 goto fail;
4129 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02004130 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004131 switch (*p) {
4132 case 'm':
4133 val /= 1e3; p += 2; break;
4134 case 'u':
4135 val /= 1e6; p += 2; break;
4136 case 'n':
4137 val /= 1e9; p += 2; break;
4138 }
4139 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004140 if (*p && !qemu_isspace(*p)) {
4141 monitor_printf(mon, "Unknown unit suffix\n");
4142 goto fail;
4143 }
4144 qdict_put(qdict, key, qfloat_from_double(val));
4145 }
4146 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01004147 case 'b':
4148 {
4149 const char *beg;
4150 int val;
4151
4152 while (qemu_isspace(*p)) {
4153 p++;
4154 }
4155 beg = p;
4156 while (qemu_isgraph(*p)) {
4157 p++;
4158 }
4159 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4160 val = 1;
4161 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4162 val = 0;
4163 } else {
4164 monitor_printf(mon, "Expected 'on' or 'off'\n");
4165 goto fail;
4166 }
4167 qdict_put(qdict, key, qbool_from_int(val));
4168 }
4169 break;
bellard9307c4c2004-04-04 12:57:25 +00004170 case '-':
4171 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004172 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004173 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00004174 /* option */
ths3b46e622007-09-17 08:09:54 +00004175
bellard9307c4c2004-04-04 12:57:25 +00004176 c = *typestr++;
4177 if (c == '\0')
4178 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00004179 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004180 p++;
bellard9307c4c2004-04-04 12:57:25 +00004181 if (*p == '-') {
4182 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004183 if(c != *p) {
4184 if(!is_valid_option(p, typestr)) {
4185
4186 monitor_printf(mon, "%s: unsupported option -%c\n",
4187 cmdname, *p);
4188 goto fail;
4189 } else {
4190 skip_key = 1;
4191 }
bellard9307c4c2004-04-04 12:57:25 +00004192 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004193 if(skip_key) {
4194 p = tmp;
4195 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004196 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004197 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004198 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004199 }
bellard9307c4c2004-04-04 12:57:25 +00004200 }
bellard9307c4c2004-04-04 12:57:25 +00004201 }
4202 break;
Wenchao Xia129be002013-08-27 20:38:26 +08004203 case 'S':
4204 {
4205 /* package all remaining string */
4206 int len;
4207
4208 while (qemu_isspace(*p)) {
4209 p++;
4210 }
4211 if (*typestr == '?') {
4212 typestr++;
4213 if (*p == '\0') {
4214 /* no remaining string: NULL argument */
4215 break;
4216 }
4217 }
4218 len = strlen(p);
4219 if (len <= 0) {
4220 monitor_printf(mon, "%s: string expected\n",
4221 cmdname);
4222 break;
4223 }
4224 qdict_put(qdict, key, qstring_from_str(p));
4225 p += len;
4226 }
4227 break;
bellard9307c4c2004-04-04 12:57:25 +00004228 default:
4229 bad_type:
aliguori376253e2009-03-05 23:01:23 +00004230 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00004231 goto fail;
4232 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004233 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004234 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00004235 }
4236 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00004237 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004238 p++;
4239 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00004240 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4241 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00004242 goto fail;
4243 }
4244
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004245 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004246
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004247fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05004248 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004249 return NULL;
4250}
4251
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004252void monitor_set_error(Monitor *mon, QError *qerror)
4253{
4254 /* report only the first error */
4255 if (!mon->error) {
4256 mon->error = qerror;
4257 } else {
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004258 QDECREF(qerror);
4259 }
4260}
4261
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004262static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4263{
Luiz Capitulino6d441432010-11-22 16:35:09 -02004264 if (ret && !monitor_has_error(mon)) {
4265 /*
4266 * If it returns failure, it must have passed on error.
4267 *
4268 * Action: Report an internal error to the client if in QMP.
4269 */
4270 qerror_report(QERR_UNDEFINED_ERROR);
Luiz Capitulino6d441432010-11-22 16:35:09 -02004271 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004272}
4273
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004274static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004275{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004276 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05004277 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004278
4279 qdict = qdict_new();
4280
Wenchao Xia77172392013-08-27 20:38:20 +08004281 cmd = monitor_parse_command(mon, cmdline, 0, mon->cmd_table, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03004282 if (!cmd)
4283 goto out;
4284
Luiz Capitulino4903de02010-09-16 11:01:32 -03004285 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06004286 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03004287 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03004288 QObject *data = NULL;
4289
4290 /* XXX: ignores the error code */
4291 cmd->mhandler.cmd_new(mon, qdict, &data);
4292 assert(!monitor_has_error(mon));
4293 if (data) {
4294 cmd->user_print(mon, data);
4295 qobject_decref(data);
4296 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03004297 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03004298 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004299 }
4300
Luiz Capitulino13917be2009-10-07 13:41:54 -03004301out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004302 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00004303}
4304
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004305static void cmd_completion(Monitor *mon, const char *name, const char *list)
bellard81d09122004-07-14 17:21:37 +00004306{
4307 const char *p, *pstart;
4308 char cmd[128];
4309 int len;
4310
4311 p = list;
4312 for(;;) {
4313 pstart = p;
4314 p = strchr(p, '|');
4315 if (!p)
4316 p = pstart + strlen(pstart);
4317 len = p - pstart;
4318 if (len > sizeof(cmd) - 2)
4319 len = sizeof(cmd) - 2;
4320 memcpy(cmd, pstart, len);
4321 cmd[len] = '\0';
4322 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004323 readline_add_completion(mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004324 }
4325 if (*p == '\0')
4326 break;
4327 p++;
4328 }
4329}
4330
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004331static void file_completion(Monitor *mon, const char *input)
bellard81d09122004-07-14 17:21:37 +00004332{
4333 DIR *ffs;
4334 struct dirent *d;
4335 char path[1024];
4336 char file[1024], file_prefix[1024];
4337 int input_path_len;
4338 const char *p;
4339
ths5fafdf22007-09-16 21:08:06 +00004340 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004341 if (!p) {
4342 input_path_len = 0;
4343 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004344 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004345 } else {
4346 input_path_len = p - input + 1;
4347 memcpy(path, input, input_path_len);
4348 if (input_path_len > sizeof(path) - 1)
4349 input_path_len = sizeof(path) - 1;
4350 path[input_path_len] = '\0';
4351 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4352 }
4353#ifdef DEBUG_COMPLETION
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004354 monitor_printf(mon, "input='%s' path='%s' prefix='%s'\n",
aliguori376253e2009-03-05 23:01:23 +00004355 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004356#endif
4357 ffs = opendir(path);
4358 if (!ffs)
4359 return;
4360 for(;;) {
4361 struct stat sb;
4362 d = readdir(ffs);
4363 if (!d)
4364 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004365
4366 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4367 continue;
4368 }
4369
bellard81d09122004-07-14 17:21:37 +00004370 if (strstart(d->d_name, file_prefix, NULL)) {
4371 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004372 if (input_path_len < sizeof(file))
4373 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4374 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004375 /* stat the file to find out if it's a directory.
4376 * In that case add a slash to speed up typing long paths
4377 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004378 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00004379 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004380 }
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004381 readline_add_completion(mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004382 }
4383 }
4384 closedir(ffs);
4385}
4386
Wenchao Xia599a9262013-08-27 20:38:15 +08004387typedef struct MonitorBlockComplete {
4388 Monitor *mon;
4389 const char *input;
4390} MonitorBlockComplete;
4391
aliguori51de9762009-03-05 23:00:43 +00004392static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004393{
aliguori51de9762009-03-05 23:00:43 +00004394 const char *name = bdrv_get_device_name(bs);
Wenchao Xia599a9262013-08-27 20:38:15 +08004395 MonitorBlockComplete *mbc = opaque;
4396 Monitor *mon = mbc->mon;
4397 const char *input = mbc->input;
bellard81d09122004-07-14 17:21:37 +00004398
4399 if (input[0] == '\0' ||
4400 !strncmp(name, (char *)input, strlen(input))) {
Wenchao Xia599a9262013-08-27 20:38:15 +08004401 readline_add_completion(mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004402 }
4403}
4404
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004405static const char *next_arg_type(const char *typestr)
4406{
4407 const char *p = strchr(typestr, ':');
4408 return (p != NULL ? ++p : typestr);
4409}
4410
Hani Benhabiles40d19392014-05-07 23:41:30 +01004411static void add_completion_option(ReadLineState *rs, const char *str,
4412 const char *option)
4413{
4414 if (!str || !option) {
4415 return;
4416 }
4417 if (!strncmp(option, str, strlen(str))) {
4418 readline_add_completion(rs, option);
4419 }
4420}
4421
Hani Benhabiles13e315d2014-05-07 23:41:29 +01004422void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4423{
4424 size_t len;
4425 ChardevBackendInfoList *list, *start;
4426
4427 if (nb_args != 2) {
4428 return;
4429 }
4430 len = strlen(str);
4431 readline_set_completion_index(rs, len);
4432
4433 start = list = qmp_query_chardev_backends(NULL);
4434 while (list) {
4435 const char *chr_name = list->value->name;
4436
4437 if (!strncmp(chr_name, str, len)) {
4438 readline_add_completion(rs, chr_name);
4439 }
4440 list = list->next;
4441 }
4442 qapi_free_ChardevBackendInfoList(start);
4443}
4444
Hani Benhabilesb162b492014-05-07 23:41:31 +01004445void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4446{
4447 size_t len;
4448 int i;
4449
4450 if (nb_args != 2) {
4451 return;
4452 }
4453 len = strlen(str);
4454 readline_set_completion_index(rs, len);
4455 for (i = 0; NetClientOptionsKind_lookup[i]; i++) {
4456 add_completion_option(rs, str, NetClientOptionsKind_lookup[i]);
4457 }
4458}
4459
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004460void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004461{
4462 GSList *list, *elt;
4463 size_t len;
4464
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004465 if (nb_args != 2) {
4466 return;
4467 }
4468
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004469 len = strlen(str);
4470 readline_set_completion_index(rs, len);
4471 list = elt = object_class_get_list(TYPE_DEVICE, false);
4472 while (elt) {
4473 const char *name;
4474 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
4475 TYPE_DEVICE);
4476 name = object_class_get_name(OBJECT_CLASS(dc));
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004477
4478 if (!dc->cannot_instantiate_with_device_add_yet
4479 && !strncmp(name, str, len)) {
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004480 readline_add_completion(rs, name);
4481 }
4482 elt = elt->next;
4483 }
4484 g_slist_free(list);
4485}
4486
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004487void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles1094fd32014-02-06 23:30:13 +01004488{
4489 GSList *list, *elt;
4490 size_t len;
4491
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004492 if (nb_args != 2) {
4493 return;
4494 }
4495
Hani Benhabiles1094fd32014-02-06 23:30:13 +01004496 len = strlen(str);
4497 readline_set_completion_index(rs, len);
4498 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
4499 while (elt) {
4500 const char *name;
4501
4502 name = object_class_get_name(OBJECT_CLASS(elt->data));
4503 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
4504 readline_add_completion(rs, name);
4505 }
4506 elt = elt->next;
4507 }
4508 g_slist_free(list);
4509}
4510
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004511static void device_del_bus_completion(ReadLineState *rs, BusState *bus,
4512 const char *str, size_t len)
Hani Benhabilesfca72d92014-02-06 23:30:10 +01004513{
4514 BusChild *kid;
4515
4516 QTAILQ_FOREACH(kid, &bus->children, sibling) {
4517 DeviceState *dev = kid->child;
4518 BusState *dev_child;
4519
4520 if (dev->id && !strncmp(str, dev->id, len)) {
4521 readline_add_completion(rs, dev->id);
4522 }
4523
4524 QLIST_FOREACH(dev_child, &dev->child_bus, sibling) {
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004525 device_del_bus_completion(rs, dev_child, str, len);
Hani Benhabilesfca72d92014-02-06 23:30:10 +01004526 }
4527 }
4528}
4529
Hani Benhabiles6297d9a2014-05-07 23:41:28 +01004530void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4531{
4532 size_t len;
4533 ChardevInfoList *list, *start;
4534
4535 if (nb_args != 2) {
4536 return;
4537 }
4538 len = strlen(str);
4539 readline_set_completion_index(rs, len);
4540
4541 start = list = qmp_query_chardev(NULL);
4542 while (list) {
4543 ChardevInfo *chr = list->value;
4544
4545 if (!strncmp(chr->label, str, len)) {
4546 readline_add_completion(rs, chr->label);
4547 }
4548 list = list->next;
4549 }
4550 qapi_free_ChardevInfoList(start);
4551}
4552
Hani Benhabiles8e597772014-05-27 23:39:30 +01004553static void ringbuf_completion(ReadLineState *rs, const char *str)
4554{
4555 size_t len;
4556 ChardevInfoList *list, *start;
4557
4558 len = strlen(str);
4559 readline_set_completion_index(rs, len);
4560
4561 start = list = qmp_query_chardev(NULL);
4562 while (list) {
4563 ChardevInfo *chr_info = list->value;
4564
4565 if (!strncmp(chr_info->label, str, len)) {
4566 CharDriverState *chr = qemu_chr_find(chr_info->label);
4567 if (chr && chr_is_ringbuf(chr)) {
4568 readline_add_completion(rs, chr_info->label);
4569 }
4570 }
4571 list = list->next;
4572 }
4573 qapi_free_ChardevInfoList(start);
4574}
4575
4576void ringbuf_read_completion(ReadLineState *rs, int nb_args, const char *str)
4577{
4578 if (nb_args != 2) {
4579 return;
4580 }
4581 ringbuf_completion(rs, str);
4582}
4583
4584void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
4585{
4586 if (nb_args != 2) {
4587 return;
4588 }
4589 ringbuf_completion(rs, str);
4590}
4591
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004592void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
4593{
4594 size_t len;
4595
4596 if (nb_args != 2) {
4597 return;
4598 }
4599
4600 len = strlen(str);
4601 readline_set_completion_index(rs, len);
4602 device_del_bus_completion(rs, sysbus_get_default(), str, len);
4603}
4604
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004605void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabilesb48fa072014-02-06 23:30:12 +01004606{
4607 ObjectPropertyInfoList *list, *start;
4608 size_t len;
4609
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004610 if (nb_args != 2) {
4611 return;
4612 }
Hani Benhabilesb48fa072014-02-06 23:30:12 +01004613 len = strlen(str);
4614 readline_set_completion_index(rs, len);
4615
4616 start = list = qmp_qom_list("/objects", NULL);
4617 while (list) {
4618 ObjectPropertyInfo *info = list->value;
4619
4620 if (!strncmp(info->type, "child<", 5)
4621 && !strncmp(info->name, str, len)) {
4622 readline_add_completion(rs, info->name);
4623 }
4624 list = list->next;
4625 }
4626 qapi_free_ObjectPropertyInfoList(start);
4627}
4628
Hani Benhabiles29136cd2014-05-07 23:41:27 +01004629void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
4630{
4631 int i;
4632 char *sep;
4633 size_t len;
4634
4635 if (nb_args != 2) {
4636 return;
4637 }
4638 sep = strrchr(str, '-');
4639 if (sep) {
4640 str = sep + 1;
4641 }
4642 len = strlen(str);
4643 readline_set_completion_index(rs, len);
4644 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4645 if (!strncmp(str, QKeyCode_lookup[i], len)) {
4646 readline_add_completion(rs, QKeyCode_lookup[i]);
4647 }
4648 }
4649}
4650
Hani Benhabiles40d19392014-05-07 23:41:30 +01004651void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
4652{
4653 size_t len;
4654
4655 len = strlen(str);
4656 readline_set_completion_index(rs, len);
4657 if (nb_args == 2) {
4658 NetClientState *ncs[255];
4659 int count, i;
4660 count = qemu_find_net_clients_except(NULL, ncs,
4661 NET_CLIENT_OPTIONS_KIND_NONE, 255);
4662 for (i = 0; i < count; i++) {
4663 const char *name = ncs[i]->name;
4664 if (!strncmp(str, name, len)) {
4665 readline_add_completion(rs, name);
4666 }
4667 }
4668 } else if (nb_args == 3) {
4669 add_completion_option(rs, str, "on");
4670 add_completion_option(rs, str, "off");
4671 }
4672}
4673
Hani Benhabiles11b389f2014-05-07 23:41:32 +01004674void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
4675{
4676 int len, count, i;
4677 NetClientState *ncs[255];
4678
4679 if (nb_args != 2) {
4680 return;
4681 }
4682
4683 len = strlen(str);
4684 readline_set_completion_index(rs, len);
4685 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_OPTIONS_KIND_NIC,
4686 255);
4687 for (i = 0; i < count; i++) {
4688 QemuOpts *opts;
4689 const char *name = ncs[i]->name;
4690 if (strncmp(str, name, len)) {
4691 continue;
4692 }
4693 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
4694 if (opts) {
4695 readline_add_completion(rs, name);
4696 }
4697 }
4698}
4699
Hani Benhabilesd0ece342014-05-27 23:39:31 +01004700void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
4701{
4702 if (nb_args != 2) {
4703 return;
4704 }
4705 readline_set_completion_index(rs, strlen(str));
4706 add_completion_option(rs, str, "reset");
4707 add_completion_option(rs, str, "shutdown");
4708 add_completion_option(rs, str, "poweroff");
4709 add_completion_option(rs, str, "pause");
4710 add_completion_option(rs, str, "debug");
4711 add_completion_option(rs, str, "none");
4712}
4713
Hani Benhabilesc68a0402014-05-27 23:39:32 +01004714void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
4715 const char *str)
4716{
4717 size_t len;
4718
4719 len = strlen(str);
4720 readline_set_completion_index(rs, len);
4721 if (nb_args == 2) {
4722 int i;
4723 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
4724 const char *name = MigrationCapability_lookup[i];
4725 if (!strncmp(str, name, len)) {
4726 readline_add_completion(rs, name);
4727 }
4728 }
4729 } else if (nb_args == 3) {
4730 add_completion_option(rs, str, "on");
4731 add_completion_option(rs, str, "off");
4732 }
4733}
4734
Hani Benhabilese3bb5322014-05-27 23:39:34 +01004735void host_net_add_completion(ReadLineState *rs, int nb_args, const char *str)
4736{
4737 int i;
4738 size_t len;
4739 if (nb_args != 2) {
4740 return;
4741 }
4742 len = strlen(str);
4743 readline_set_completion_index(rs, len);
4744 for (i = 0; host_net_devices[i]; i++) {
4745 if (!strncmp(host_net_devices[i], str, len)) {
4746 readline_add_completion(rs, host_net_devices[i]);
4747 }
4748 }
4749}
4750
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004751void host_net_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4752{
4753 NetClientState *ncs[255];
4754 int count, i, len;
4755
4756 len = strlen(str);
4757 readline_set_completion_index(rs, len);
4758 if (nb_args == 2) {
4759 count = qemu_find_net_clients_except(NULL, ncs,
4760 NET_CLIENT_OPTIONS_KIND_NONE, 255);
4761 for (i = 0; i < count; i++) {
4762 int id;
4763 char name[16];
4764
4765 if (net_hub_id_for_client(ncs[i], &id)) {
4766 continue;
4767 }
4768 snprintf(name, sizeof(name), "%d", id);
4769 if (!strncmp(str, name, len)) {
4770 readline_add_completion(rs, name);
4771 }
4772 }
4773 return;
4774 } else if (nb_args == 3) {
4775 count = qemu_find_net_clients_except(NULL, ncs,
4776 NET_CLIENT_OPTIONS_KIND_NIC, 255);
4777 for (i = 0; i < count; i++) {
4778 const char *name;
4779
4780 name = ncs[i]->name;
4781 if (!strncmp(str, name, len)) {
4782 readline_add_completion(rs, name);
4783 }
4784 }
4785 return;
4786 }
4787}
4788
Hani Benhabilesb21631f2014-05-27 23:39:37 +01004789static void vm_completion(ReadLineState *rs, const char *str)
4790{
4791 size_t len;
4792 BlockDriverState *bs = NULL;
4793
4794 len = strlen(str);
4795 readline_set_completion_index(rs, len);
4796 while ((bs = bdrv_next(bs))) {
4797 SnapshotInfoList *snapshots, *snapshot;
4798
4799 if (!bdrv_can_snapshot(bs)) {
4800 continue;
4801 }
4802 if (bdrv_query_snapshot_info_list(bs, &snapshots, NULL)) {
4803 continue;
4804 }
4805 snapshot = snapshots;
4806 while (snapshot) {
4807 char *completion = snapshot->value->name;
4808 if (!strncmp(str, completion, len)) {
4809 readline_add_completion(rs, completion);
4810 }
4811 completion = snapshot->value->id;
4812 if (!strncmp(str, completion, len)) {
4813 readline_add_completion(rs, completion);
4814 }
4815 snapshot = snapshot->next;
4816 }
4817 qapi_free_SnapshotInfoList(snapshots);
4818 }
4819
4820}
4821
4822void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
4823{
4824 if (nb_args == 2) {
4825 vm_completion(rs, str);
4826 }
4827}
4828
4829void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
4830{
4831 if (nb_args == 2) {
4832 vm_completion(rs, str);
4833 }
4834}
4835
Wenchao Xiac35b6402013-08-27 20:38:24 +08004836static void monitor_find_completion_by_table(Monitor *mon,
4837 const mon_cmd_t *cmd_table,
4838 char **args,
4839 int nb_args)
bellard81d09122004-07-14 17:21:37 +00004840{
4841 const char *cmdname;
Wenchao Xiac35b6402013-08-27 20:38:24 +08004842 int i;
bellard81d09122004-07-14 17:21:37 +00004843 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004844 const mon_cmd_t *cmd;
Wenchao Xia599a9262013-08-27 20:38:15 +08004845 MonitorBlockComplete mbs;
bellard81d09122004-07-14 17:21:37 +00004846
bellard81d09122004-07-14 17:21:37 +00004847 if (nb_args <= 1) {
4848 /* command completion */
4849 if (nb_args == 0)
4850 cmdname = "";
4851 else
4852 cmdname = args[0];
Wenchao Xiad2674b22013-08-27 20:38:16 +08004853 readline_set_completion_index(mon->rs, strlen(cmdname));
Wenchao Xiac35b6402013-08-27 20:38:24 +08004854 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004855 cmd_completion(mon, cmdname, cmd->name);
bellard81d09122004-07-14 17:21:37 +00004856 }
4857 } else {
4858 /* find the command */
Wenchao Xiac35b6402013-08-27 20:38:24 +08004859 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004860 if (compare_cmd(args[0], cmd->name)) {
4861 break;
4862 }
bellard81d09122004-07-14 17:21:37 +00004863 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004864 if (!cmd->name) {
Wenchao Xiac35b6402013-08-27 20:38:24 +08004865 return;
Jan Kiszka03a63482010-06-16 00:38:33 +02004866 }
4867
Wenchao Xiad903a772013-08-27 20:38:25 +08004868 if (cmd->sub_table) {
4869 /* do the job again */
4870 return monitor_find_completion_by_table(mon, cmd->sub_table,
4871 &args[1], nb_args - 1);
4872 }
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004873 if (cmd->command_completion) {
4874 return cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
4875 }
Wenchao Xiad903a772013-08-27 20:38:25 +08004876
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004877 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004878 for(i = 0; i < nb_args - 2; i++) {
4879 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004880 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004881 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004882 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004883 }
4884 }
4885 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004886 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004887 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004888 }
bellard81d09122004-07-14 17:21:37 +00004889 switch(*ptype) {
4890 case 'F':
4891 /* file completion */
Wenchao Xiad2674b22013-08-27 20:38:16 +08004892 readline_set_completion_index(mon->rs, strlen(str));
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004893 file_completion(mon, str);
bellard81d09122004-07-14 17:21:37 +00004894 break;
4895 case 'B':
4896 /* block device name completion */
Wenchao Xia599a9262013-08-27 20:38:15 +08004897 mbs.mon = mon;
4898 mbs.input = str;
4899 readline_set_completion_index(mon->rs, strlen(str));
4900 bdrv_iterate(block_completion_it, &mbs);
bellard81d09122004-07-14 17:21:37 +00004901 break;
bellard7fe48482004-10-09 18:08:01 +00004902 case 's':
Wenchao Xia129be002013-08-27 20:38:26 +08004903 case 'S':
Hani Benhabiles29136cd2014-05-07 23:41:27 +01004904 if (!strcmp(cmd->name, "help|?")) {
Wenchao Xia7ca0e062013-08-27 20:38:27 +08004905 monitor_find_completion_by_table(mon, cmd_table,
4906 &args[1], nb_args - 1);
bellard7fe48482004-10-09 18:08:01 +00004907 }
4908 break;
bellard81d09122004-07-14 17:21:37 +00004909 default:
4910 break;
4911 }
4912 }
Wenchao Xiac35b6402013-08-27 20:38:24 +08004913}
4914
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004915static void monitor_find_completion(void *opaque,
Wenchao Xiac35b6402013-08-27 20:38:24 +08004916 const char *cmdline)
4917{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004918 Monitor *mon = opaque;
Wenchao Xiac35b6402013-08-27 20:38:24 +08004919 char *args[MAX_ARGS];
4920 int nb_args, len;
4921
4922 /* 1. parse the cmdline */
4923 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4924 return;
4925 }
4926#ifdef DEBUG_COMPLETION
4927 for (i = 0; i < nb_args; i++) {
4928 monitor_printf(mon, "arg%d = '%s'\n", i, args[i]);
4929 }
4930#endif
4931
4932 /* if the line ends with a space, it means we want to complete the
4933 next arg */
4934 len = strlen(cmdline);
4935 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4936 if (nb_args >= MAX_ARGS) {
4937 goto cleanup;
4938 }
4939 args[nb_args++] = g_strdup("");
4940 }
4941
4942 /* 2. auto complete according to args */
4943 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
Jan Kiszka03a63482010-06-16 00:38:33 +02004944
4945cleanup:
Wenchao Xiadcc70cd2013-08-27 20:38:22 +08004946 free_cmdline_args(args, nb_args);
bellard81d09122004-07-14 17:21:37 +00004947}
4948
aliguori731b0362009-03-05 23:01:42 +00004949static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004950{
aliguori731b0362009-03-05 23:01:42 +00004951 Monitor *mon = opaque;
4952
Jan Kiszkac62313b2009-12-04 14:05:29 +01004953 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004954}
4955
Luiz Capitulino09069b12010-02-04 18:10:06 -02004956static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4957{
4958 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4959 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4960}
4961
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004962/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004963 * Argument validation rules:
4964 *
4965 * 1. The argument must exist in cmd_args qdict
4966 * 2. The argument type must be the expected one
4967 *
4968 * Special case: If the argument doesn't exist in cmd_args and
4969 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4970 * checking is skipped for it.
4971 */
4972static int check_client_args_type(const QDict *client_args,
4973 const QDict *cmd_args, int flags)
4974{
4975 const QDictEntry *ent;
4976
4977 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4978 QObject *obj;
4979 QString *arg_type;
4980 const QObject *client_arg = qdict_entry_value(ent);
4981 const char *client_arg_name = qdict_entry_key(ent);
4982
4983 obj = qdict_get(cmd_args, client_arg_name);
4984 if (!obj) {
4985 if (flags & QMP_ACCEPT_UNKNOWNS) {
4986 /* handler accepts unknowns */
4987 continue;
4988 }
4989 /* client arg doesn't exist */
4990 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4991 return -1;
4992 }
4993
4994 arg_type = qobject_to_qstring(obj);
4995 assert(arg_type != NULL);
4996
4997 /* check if argument's type is correct */
4998 switch (qstring_get_str(arg_type)[0]) {
4999 case 'F':
5000 case 'B':
5001 case 's':
5002 if (qobject_type(client_arg) != QTYPE_QSTRING) {
5003 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
5004 "string");
5005 return -1;
5006 }
5007 break;
5008 case 'i':
5009 case 'l':
5010 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02005011 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03005012 if (qobject_type(client_arg) != QTYPE_QINT) {
5013 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
5014 "int");
5015 return -1;
5016 }
5017 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03005018 case 'T':
5019 if (qobject_type(client_arg) != QTYPE_QINT &&
5020 qobject_type(client_arg) != QTYPE_QFLOAT) {
5021 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
5022 "number");
5023 return -1;
5024 }
5025 break;
5026 case 'b':
5027 case '-':
5028 if (qobject_type(client_arg) != QTYPE_QBOOL) {
5029 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
5030 "bool");
5031 return -1;
5032 }
5033 break;
5034 case 'O':
5035 assert(flags & QMP_ACCEPT_UNKNOWNS);
5036 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01005037 case 'q':
5038 /* Any QObject can be passed. */
5039 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03005040 case '/':
5041 case '.':
5042 /*
5043 * These types are not supported by QMP and thus are not
5044 * handled here. Fall through.
5045 */
5046 default:
5047 abort();
5048 }
5049 }
5050
5051 return 0;
5052}
5053
5054/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03005055 * - Check if the client has passed all mandatory args
5056 * - Set special flags for argument validation
5057 */
5058static int check_mandatory_args(const QDict *cmd_args,
5059 const QDict *client_args, int *flags)
5060{
5061 const QDictEntry *ent;
5062
5063 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
5064 const char *cmd_arg_name = qdict_entry_key(ent);
5065 QString *type = qobject_to_qstring(qdict_entry_value(ent));
5066 assert(type != NULL);
5067
5068 if (qstring_get_str(type)[0] == 'O') {
5069 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
5070 *flags |= QMP_ACCEPT_UNKNOWNS;
5071 } else if (qstring_get_str(type)[0] != '-' &&
5072 qstring_get_str(type)[1] != '?' &&
5073 !qdict_haskey(client_args, cmd_arg_name)) {
5074 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
5075 return -1;
5076 }
5077 }
5078
5079 return 0;
5080}
5081
5082static QDict *qdict_from_args_type(const char *args_type)
5083{
5084 int i;
5085 QDict *qdict;
5086 QString *key, *type, *cur_qs;
5087
5088 assert(args_type != NULL);
5089
5090 qdict = qdict_new();
5091
5092 if (args_type == NULL || args_type[0] == '\0') {
5093 /* no args, empty qdict */
5094 goto out;
5095 }
5096
5097 key = qstring_new();
5098 type = qstring_new();
5099
5100 cur_qs = key;
5101
5102 for (i = 0;; i++) {
5103 switch (args_type[i]) {
5104 case ',':
5105 case '\0':
5106 qdict_put(qdict, qstring_get_str(key), type);
5107 QDECREF(key);
5108 if (args_type[i] == '\0') {
5109 goto out;
5110 }
5111 type = qstring_new(); /* qdict has ref */
5112 cur_qs = key = qstring_new();
5113 break;
5114 case ':':
5115 cur_qs = type;
5116 break;
5117 default:
5118 qstring_append_chr(cur_qs, args_type[i]);
5119 break;
5120 }
5121 }
5122
5123out:
5124 return qdict;
5125}
5126
5127/*
5128 * Client argument checking rules:
5129 *
5130 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03005131 * 2. Each argument provided by the client must be expected
5132 * 3. Each argument provided by the client must have the type expected
5133 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03005134 */
5135static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
5136{
5137 int flags, err;
5138 QDict *cmd_args;
5139
5140 cmd_args = qdict_from_args_type(cmd->args_type);
5141
5142 flags = 0;
5143 err = check_mandatory_args(cmd_args, client_args, &flags);
5144 if (err) {
5145 goto out;
5146 }
5147
Luiz Capitulino4af91932010-06-22 11:44:05 -03005148 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03005149
5150out:
5151 QDECREF(cmd_args);
5152 return err;
5153}
5154
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03005155/*
5156 * Input object checking rules
5157 *
5158 * 1. Input object must be a dict
5159 * 2. The "execute" key must exist
5160 * 3. The "execute" key must be a string
5161 * 4. If the "arguments" key exists, it must be a dict
5162 * 5. If the "id" key exists, it can be anything (ie. json-value)
5163 * 6. Any argument not listed above is considered invalid
5164 */
5165static QDict *qmp_check_input_obj(QObject *input_obj)
5166{
5167 const QDictEntry *ent;
5168 int has_exec_key = 0;
5169 QDict *input_dict;
5170
5171 if (qobject_type(input_obj) != QTYPE_QDICT) {
5172 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
5173 return NULL;
5174 }
5175
5176 input_dict = qobject_to_qdict(input_obj);
5177
5178 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
5179 const char *arg_name = qdict_entry_key(ent);
5180 const QObject *arg_obj = qdict_entry_value(ent);
5181
5182 if (!strcmp(arg_name, "execute")) {
5183 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
5184 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
5185 "string");
5186 return NULL;
5187 }
5188 has_exec_key = 1;
5189 } else if (!strcmp(arg_name, "arguments")) {
5190 if (qobject_type(arg_obj) != QTYPE_QDICT) {
5191 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
5192 "object");
5193 return NULL;
5194 }
5195 } else if (!strcmp(arg_name, "id")) {
5196 /* FIXME: check duplicated IDs for async commands */
5197 } else {
5198 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
5199 return NULL;
5200 }
5201 }
5202
5203 if (!has_exec_key) {
5204 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
5205 return NULL;
5206 }
5207
5208 return input_dict;
5209}
5210
Luiz Capitulinofc29df72010-09-16 11:11:18 -03005211static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
5212 const QDict *params)
5213{
5214 int ret;
5215 QObject *data = NULL;
5216
Luiz Capitulinofc29df72010-09-16 11:11:18 -03005217 ret = cmd->mhandler.cmd_new(mon, params, &data);
5218 handler_audit(mon, cmd, ret);
5219 monitor_protocol_emitter(mon, data);
5220 qobject_decref(data);
5221}
5222
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005223static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
5224{
5225 int err;
5226 QObject *obj;
5227 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005228 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02005229 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005230 Monitor *mon = cur_mon;
5231
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005232 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005233
5234 obj = json_parser_parse(tokens, NULL);
5235 if (!obj) {
5236 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01005237 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005238 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005239 }
5240
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03005241 input = qmp_check_input_obj(obj);
5242 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005243 qobject_decref(obj);
5244 goto err_out;
5245 }
5246
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005247 mon->mc->id = qdict_get(input, "id");
5248 qobject_incref(mon->mc->id);
5249
Luiz Capitulino0bbab462010-05-31 17:32:50 -03005250 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01005251 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02005252 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01005253 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005254 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02005255 }
5256
Anthony Liguorie3193602011-09-02 12:34:47 -05005257 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03005258 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01005259 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005260 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005261 }
5262
5263 obj = qdict_get(input, "arguments");
5264 if (!obj) {
5265 args = qdict_new();
5266 } else {
5267 args = qobject_to_qdict(obj);
5268 QINCREF(args);
5269 }
5270
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03005271 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005272 if (err < 0) {
5273 goto err_out;
5274 }
5275
Luiz Capitulino40e5a012011-10-21 16:15:31 -02005276 if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03005277 err = qmp_async_cmd_handler(mon, cmd, args);
5278 if (err) {
5279 /* emit the error response */
5280 goto err_out;
5281 }
Adam Litke940cc302010-01-25 12:18:44 -06005282 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03005283 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06005284 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005285
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005286 goto out;
5287
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005288err_out:
5289 monitor_protocol_emitter(mon, NULL);
5290out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005291 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005292 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005293}
5294
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005295/**
5296 * monitor_control_read(): Read and handle QMP input
5297 */
5298static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
5299{
5300 Monitor *old_mon = cur_mon;
5301
5302 cur_mon = opaque;
5303
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005304 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005305
5306 cur_mon = old_mon;
5307}
5308
aliguori731b0362009-03-05 23:01:42 +00005309static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00005310{
aliguori731b0362009-03-05 23:01:42 +00005311 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00005312 int i;
aliguori376253e2009-03-05 23:01:23 +00005313
aliguori731b0362009-03-05 23:01:42 +00005314 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00005315
aliguoricde76ee2009-03-05 23:01:51 +00005316 if (cur_mon->rs) {
5317 for (i = 0; i < size; i++)
5318 readline_handle_byte(cur_mon->rs, buf[i]);
5319 } else {
5320 if (size == 0 || buf[size - 1] != 0)
5321 monitor_printf(cur_mon, "corrupted command\n");
5322 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02005323 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00005324 }
aliguori731b0362009-03-05 23:01:42 +00005325
5326 cur_mon = old_mon;
5327}
aliguorid8f44602008-10-06 13:52:44 +00005328
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005329static void monitor_command_cb(void *opaque, const char *cmdline,
5330 void *readline_opaque)
bellard7e2515e2004-08-01 21:52:19 +00005331{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005332 Monitor *mon = opaque;
5333
aliguori731b0362009-03-05 23:01:42 +00005334 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02005335 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00005336 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00005337}
5338
aliguoricde76ee2009-03-05 23:01:51 +00005339int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005340{
aliguoricde76ee2009-03-05 23:01:51 +00005341 if (!mon->rs)
5342 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00005343 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00005344 return 0;
aliguorid8f44602008-10-06 13:52:44 +00005345}
5346
aliguori376253e2009-03-05 23:01:23 +00005347void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005348{
aliguoricde76ee2009-03-05 23:01:51 +00005349 if (!mon->rs)
5350 return;
aliguori731b0362009-03-05 23:01:42 +00005351 if (--mon->suspend_cnt == 0)
5352 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00005353}
5354
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005355static QObject *get_qmp_greeting(void)
5356{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005357 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005358
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005359 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005360 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5361}
5362
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005363/**
5364 * monitor_control_event(): Print QMP gretting
5365 */
5366static void monitor_control_event(void *opaque, int event)
5367{
Luiz Capitulino47116d12010-02-08 17:01:30 -02005368 QObject *data;
5369 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005370
Luiz Capitulino47116d12010-02-08 17:01:30 -02005371 switch (event) {
5372 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02005373 mon->mc->command_mode = 0;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005374 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005375 monitor_json_emitter(mon, data);
5376 qobject_decref(data);
Corey Bryantefb87c12012-08-14 16:43:48 -04005377 mon_refcount++;
Luiz Capitulino47116d12010-02-08 17:01:30 -02005378 break;
5379 case CHR_EVENT_CLOSED:
5380 json_message_parser_destroy(&mon->mc->parser);
Anthony Liguori58617a72012-08-23 08:03:21 -05005381 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Corey Bryantefb87c12012-08-14 16:43:48 -04005382 mon_refcount--;
5383 monitor_fdsets_cleanup();
Luiz Capitulino47116d12010-02-08 17:01:30 -02005384 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005385 }
5386}
5387
aliguori731b0362009-03-05 23:01:42 +00005388static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00005389{
aliguori376253e2009-03-05 23:01:23 +00005390 Monitor *mon = opaque;
5391
aliguori2724b182009-03-05 23:01:47 +00005392 switch (event) {
5393 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005394 mon->mux_out = 0;
5395 if (mon->reset_seen) {
5396 readline_restart(mon->rs);
5397 monitor_resume(mon);
5398 monitor_flush(mon);
5399 } else {
5400 mon->suspend_cnt = 0;
5401 }
aliguori2724b182009-03-05 23:01:47 +00005402 break;
ths86e94de2007-01-05 22:01:59 +00005403
aliguori2724b182009-03-05 23:01:47 +00005404 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005405 if (mon->reset_seen) {
5406 if (mon->suspend_cnt == 0) {
5407 monitor_printf(mon, "\n");
5408 }
5409 monitor_flush(mon);
5410 monitor_suspend(mon);
5411 } else {
5412 mon->suspend_cnt++;
5413 }
5414 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00005415 break;
5416
Amit Shahb6b8df52009-10-07 18:31:16 +05305417 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00005418 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5419 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005420 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00005421 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005422 }
5423 mon->reset_seen = 1;
Corey Bryantefb87c12012-08-14 16:43:48 -04005424 mon_refcount++;
5425 break;
5426
5427 case CHR_EVENT_CLOSED:
5428 mon_refcount--;
5429 monitor_fdsets_cleanup();
aliguori2724b182009-03-05 23:01:47 +00005430 break;
5431 }
ths86e94de2007-01-05 22:01:59 +00005432}
5433
Wayne Xia816f8922011-10-12 11:32:41 +08005434static int
5435compare_mon_cmd(const void *a, const void *b)
5436{
5437 return strcmp(((const mon_cmd_t *)a)->name,
5438 ((const mon_cmd_t *)b)->name);
5439}
5440
5441static void sortcmdlist(void)
5442{
5443 int array_num;
5444 int elem_size = sizeof(mon_cmd_t);
5445
5446 array_num = sizeof(mon_cmds)/elem_size-1;
5447 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
5448
5449 array_num = sizeof(info_cmds)/elem_size-1;
5450 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
5451}
5452
aliguori76655d62009-03-06 20:27:37 +00005453
5454/*
5455 * Local variables:
5456 * c-indent-level: 4
5457 * c-basic-offset: 4
5458 * tab-width: 8
5459 * End:
5460 */
5461
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005462/* These functions just adapt the readline interface in a typesafe way. We
5463 * could cast function pointers but that discards compiler checks.
5464 */
Stefan Weild5d15072014-01-25 18:18:23 +01005465static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
5466 const char *fmt, ...)
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005467{
5468 va_list ap;
5469 va_start(ap, fmt);
5470 monitor_vprintf(opaque, fmt, ap);
5471 va_end(ap);
5472}
5473
5474static void monitor_readline_flush(void *opaque)
5475{
5476 monitor_flush(opaque);
5477}
5478
aliguori731b0362009-03-05 23:01:42 +00005479void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00005480{
aliguori731b0362009-03-05 23:01:42 +00005481 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00005482 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00005483
5484 if (is_first_init) {
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +01005485 monitor_protocol_event_init();
Wenchao Xia43a14cf2014-06-18 08:43:31 +02005486 monitor_qapi_event_init();
Wenchao Xiad0383172013-08-27 20:38:18 +08005487 sortcmdlist();
ths20d8a3e2007-02-18 17:04:49 +00005488 is_first_init = 0;
5489 }
aliguori87127162009-03-05 23:01:29 +00005490
Wenchao Xiab01fe892013-08-27 20:38:19 +08005491 mon = g_malloc(sizeof(*mon));
5492 monitor_data_init(mon);
ths20d8a3e2007-02-18 17:04:49 +00005493
aliguori87127162009-03-05 23:01:29 +00005494 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00005495 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00005496 if (flags & MONITOR_USE_READLINE) {
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005497 mon->rs = readline_init(monitor_readline_printf,
5498 monitor_readline_flush,
5499 mon,
5500 monitor_find_completion);
aliguoricde76ee2009-03-05 23:01:51 +00005501 monitor_read_command(mon, 0);
5502 }
aliguori87127162009-03-05 23:01:29 +00005503
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005504 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05005505 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005506 /* Control mode requires special handlers */
5507 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5508 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05005509 qemu_chr_fe_set_echo(chr, true);
Anthony Liguori26efaca2012-08-23 13:49:02 -05005510
5511 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005512 } else {
5513 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5514 monitor_event, mon);
5515 }
aliguori87127162009-03-05 23:01:29 +00005516
Blue Swirl72cf2d42009-09-12 07:36:22 +00005517 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01005518 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5519 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00005520}
5521
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005522static void bdrv_password_cb(void *opaque, const char *password,
5523 void *readline_opaque)
bellard7e2515e2004-08-01 21:52:19 +00005524{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005525 Monitor *mon = opaque;
5526 BlockDriverState *bs = readline_opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005527 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00005528
aliguoribb5fc202009-03-05 23:01:15 +00005529 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00005530 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00005531 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00005532 }
aliguori731b0362009-03-05 23:01:42 +00005533 if (mon->password_completion_cb)
5534 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00005535
aliguori731b0362009-03-05 23:01:42 +00005536 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00005537}
aliguoric0f4ce72009-03-05 23:01:01 +00005538
Anthony Liguori7060b472011-09-02 12:34:50 -05005539ReadLineState *monitor_get_rs(Monitor *mon)
5540{
5541 return mon->rs;
5542}
5543
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005544int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5545 BlockDriverCompletionFunc *completion_cb,
5546 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00005547{
aliguoricde76ee2009-03-05 23:01:51 +00005548 int err;
5549
aliguoribb5fc202009-03-05 23:01:15 +00005550 if (!bdrv_key_required(bs)) {
5551 if (completion_cb)
5552 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005553 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00005554 }
aliguoric0f4ce72009-03-05 23:01:01 +00005555
Luiz Capitulino94171e12009-12-07 21:37:00 +01005556 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -02005557 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
5558 bdrv_get_encrypted_filename(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005559 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01005560 }
5561
aliguori376253e2009-03-05 23:01:23 +00005562 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5563 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00005564
aliguori731b0362009-03-05 23:01:42 +00005565 mon->password_completion_cb = completion_cb;
5566 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005567
aliguoricde76ee2009-03-05 23:01:51 +00005568 err = monitor_read_password(mon, bdrv_password_cb, bs);
5569
5570 if (err && completion_cb)
5571 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005572
5573 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00005574}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005575
5576int monitor_read_block_device_key(Monitor *mon, const char *device,
5577 BlockDriverCompletionFunc *completion_cb,
5578 void *opaque)
5579{
5580 BlockDriverState *bs;
5581
5582 bs = bdrv_find(device);
5583 if (!bs) {
5584 monitor_printf(mon, "Device not found %s\n", device);
5585 return -1;
5586 }
5587
5588 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
5589}
Paolo Bonzini4d454572012-11-26 16:03:42 +01005590
5591QemuOptsList qemu_mon_opts = {
5592 .name = "mon",
5593 .implied_opt_name = "chardev",
5594 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
5595 .desc = {
5596 {
5597 .name = "mode",
5598 .type = QEMU_OPT_STRING,
5599 },{
5600 .name = "chardev",
5601 .type = QEMU_OPT_STRING,
5602 },{
5603 .name = "default",
5604 .type = QEMU_OPT_BOOL,
5605 },{
5606 .name = "pretty",
5607 .type = QEMU_OPT_BOOL,
5608 },
5609 { /* end of list */ }
5610 },
5611};