blob: 6a4642493a438638e32415b70625a7fea5425586 [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"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010028#include "hw/i386/pc.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020029#include "hw/pci/pci.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010030#include "sysemu/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020031#include "hw/loader.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010032#include "exec/gdbstub.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020033#include "net/net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000034#include "net/slirp.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020035#include "sysemu/char.h"
Gerd Hoffmann75721502010-10-07 12:22:54 +020036#include "ui/qemu-spice.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/sysemu.h"
Eduardo Habkoste35704b2015-02-08 16:51:16 -020038#include "sysemu/numa.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"
Fam Zheng55606252015-03-02 19:36:46 +080076#include "sysemu/block-backend.h"
ths6a5bd302007-12-03 17:05:38 +000077
Markus Armbruster1ce6be22015-02-06 14:18:24 +010078/* for hmp_info_irq/pic */
Jan Kiszka661f1922011-10-16 11:53:13 +020079#if defined(TARGET_SPARC)
Paolo Bonzini0d09e412013-02-05 17:06:20 +010080#include "hw/sparc/sun4m.h"
Jan Kiszka661f1922011-10-16 11:53:13 +020081#endif
Paolo Bonzini0d09e412013-02-05 17:06:20 +010082#include "hw/lm32/lm32_pic.h"
Jan Kiszka661f1922011-10-16 11:53:13 +020083
bellard9dc39cb2004-03-14 21:38:27 +000084//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000085//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000086
bellard9307c4c2004-04-04 12:57:25 +000087/*
88 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000089 *
bellard9307c4c2004-04-04 12:57:25 +000090 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000091 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000092 * 's' string (accept optional quote)
Wenchao Xia129be002013-08-27 20:38:26 +080093 * 'S' it just appends the rest of the string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010094 * 'O' option string of the form NAME=VALUE,...
95 * parsed according to QemuOptsList given by its name
96 * Example: 'device:O' uses qemu_device_opts.
97 * Restriction: only lists with empty desc are supported
98 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000099 * 'i' 32 bit integer
100 * 'l' target long (32 or 64 bit)
Luiz Capitulino91162842012-04-26 17:34:30 -0300101 * 'M' Non-negative target long (32 or 64 bit), in user mode the
102 * value is multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +0200103 * 'o' octets (aka bytes)
Kevin Wolf5e009842013-06-05 14:19:27 +0200104 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
105 * K, k suffix, which multiplies the value by 2^60 for suffixes E
106 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
107 * 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 +0100108 * 'T' double
109 * user mode accepts an optional ms, us, ns suffix,
110 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +0000111 * '/' optional gdb-like print format (like "/10x")
112 *
Luiz Capitulinofb466602009-08-28 15:27:27 -0300113 * '?' optional type (for all types, except '/')
114 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100115 * 'b' boolean
116 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300117 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000118 *
119 */
120
Anthony Liguoric227f092009-10-01 16:12:16 -0500121typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000122 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000123 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000124 const char *params;
125 const char *help;
Luiz Capitulino910df892009-10-07 13:41:51 -0300126 union {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300127 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200128 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300129 } mhandler;
Wenchao Xia5f3d3352013-01-14 14:06:27 +0800130 /* @sub_table is a list of 2nd level of commands. If it do not exist,
131 * mhandler should be used. If it exist, sub_table[?].mhandler should be
132 * used, and mhandler of 1st level plays the role of help function.
133 */
134 struct mon_cmd_t *sub_table;
Hani Benhabilesbfa40f72014-04-13 16:25:06 +0100135 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
Anthony Liguoric227f092009-10-01 16:12:16 -0500136} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000137
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100138/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500139typedef struct mon_fd_t mon_fd_t;
140struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100141 char *name;
142 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500143 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100144};
145
Corey Bryantba1c0482012-08-14 16:43:43 -0400146/* file descriptor associated with a file descriptor set */
147typedef struct MonFdsetFd MonFdsetFd;
148struct MonFdsetFd {
149 int fd;
150 bool removed;
151 char *opaque;
152 QLIST_ENTRY(MonFdsetFd) next;
153};
154
155/* file descriptor set containing fds passed via SCM_RIGHTS */
156typedef struct MonFdset MonFdset;
157struct MonFdset {
158 int64_t id;
159 QLIST_HEAD(, MonFdsetFd) fds;
Corey Bryantadb696f2012-08-14 16:43:47 -0400160 QLIST_HEAD(, MonFdsetFd) dup_fds;
Corey Bryantba1c0482012-08-14 16:43:43 -0400161 QLIST_ENTRY(MonFdset) next;
162};
163
Markus Armbruster74358f22015-03-06 19:35:59 +0100164typedef struct {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200165 QObject *id;
166 JSONMessageParser parser;
Markus Armbrusterf994b252015-03-06 19:51:51 +0100167 /*
168 * When a client connects, we're in capabilities negotiation mode.
169 * When command qmp_capabilities succeeds, we go into command
170 * mode.
171 */
172 bool in_command_mode; /* are we in command mode? */
Markus Armbruster74358f22015-03-06 19:35:59 +0100173} MonitorQMP;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200174
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100175/*
176 * To prevent flooding clients, events can be throttled. The
177 * throttling is calculated globally, rather than per-Monitor
178 * instance.
179 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200180typedef struct MonitorQAPIEventState {
181 QAPIEvent event; /* Event being tracked */
182 int64_t rate; /* Minimum time (in ns) between two events */
183 int64_t last; /* QEMU_CLOCK_REALTIME value at last emission */
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100184 QEMUTimer *timer; /* Timer for handling delayed events */
185 QObject *data; /* Event pending delayed dispatch */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200186} MonitorQAPIEventState;
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100187
aliguori87127162009-03-05 23:01:29 +0000188struct Monitor {
189 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200190 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000191 int flags;
192 int suspend_cnt;
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400193 bool skip_flush;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200194
195 QemuMutex out_lock;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400196 QString *outbuf;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200197 guint out_watch;
198
199 /* Read under either BQL or out_lock, written with BQL+out_lock. */
200 int mux_out;
201
aliguori731b0362009-03-05 23:01:42 +0000202 ReadLineState *rs;
Markus Armbruster74358f22015-03-06 19:35:59 +0100203 MonitorQMP qmp;
Andreas Färbercb446ec2013-05-01 14:24:52 +0200204 CPUState *mon_cpu;
Markus Armbruster097310b2014-10-07 13:59:15 +0200205 BlockCompletionFunc *password_completion_cb;
aliguori731b0362009-03-05 23:01:42 +0000206 void *password_opaque;
Wenchao Xia77172392013-08-27 20:38:20 +0800207 mon_cmd_t *cmd_table;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200208 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500209 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000210 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000211};
212
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300213/* QMP checker flags */
214#define QMP_ACCEPT_UNKNOWNS 1
215
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200216/* Protects mon_list, monitor_event_state. */
217static QemuMutex monitor_lock;
218
Blue Swirl72cf2d42009-09-12 07:36:22 +0000219static QLIST_HEAD(mon_list, Monitor) mon_list;
Corey Bryantba1c0482012-08-14 16:43:43 -0400220static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
Corey Bryantefb87c12012-08-14 16:43:48 -0400221static int mon_refcount;
bellard7e2515e2004-08-01 21:52:19 +0000222
Wayne Xia816f8922011-10-12 11:32:41 +0800223static mon_cmd_t mon_cmds[];
224static mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000225
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300226static const mon_cmd_t qmp_cmds[];
227
Markus Armbruster8631b602010-02-18 11:41:55 +0100228Monitor *cur_mon;
229Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000230
Stefan Hajnoczic60bf332013-11-14 11:54:14 +0100231static void monitor_command_cb(void *opaque, const char *cmdline,
232 void *readline_opaque);
aliguori83ab7952008-08-19 14:44:22 +0000233
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100234/**
235 * Is @mon a QMP monitor?
236 */
237static inline bool monitor_is_qmp(const Monitor *mon)
Luiz Capitulino418173c2009-11-26 22:58:51 -0200238{
239 return (mon->flags & MONITOR_USE_CONTROL);
240}
241
Markus Armbruster489653b2015-03-06 20:01:05 +0100242/**
243 * Is the current monitor, if any, a QMP monitor?
244 */
245bool monitor_cur_is_qmp(void)
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100246{
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100247 return cur_mon && monitor_is_qmp(cur_mon);
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100248}
249
Anthony Liguori7060b472011-09-02 12:34:50 -0500250void monitor_read_command(Monitor *mon, int show_prompt)
aliguori731b0362009-03-05 23:01:42 +0000251{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200252 if (!mon->rs)
253 return;
254
aliguori731b0362009-03-05 23:01:42 +0000255 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
256 if (show_prompt)
257 readline_show_prompt(mon->rs);
258}
bellard6a00d602005-11-21 23:25:50 +0000259
Anthony Liguori7060b472011-09-02 12:34:50 -0500260int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
261 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000262{
Markus Armbrusterbcf5d192015-03-12 17:26:46 +0100263 if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000264 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
265 /* prompt is printed on return from the command handler */
266 return 0;
267 } else {
268 monitor_printf(mon, "terminal does not support password prompting\n");
269 return -ENOTTY;
270 }
aliguoribb5fc202009-03-05 23:01:15 +0000271}
272
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200273static void monitor_flush_locked(Monitor *mon);
274
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100275static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
276 void *opaque)
277{
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200278 Monitor *mon = opaque;
279
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200280 qemu_mutex_lock(&mon->out_lock);
281 mon->out_watch = 0;
282 monitor_flush_locked(mon);
283 qemu_mutex_unlock(&mon->out_lock);
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100284 return FALSE;
285}
286
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200287/* Called with mon->out_lock held. */
288static void monitor_flush_locked(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000289{
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100290 int rc;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400291 size_t len;
292 const char *buf;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100293
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400294 if (mon->skip_flush) {
295 return;
296 }
297
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400298 buf = qstring_get_str(mon->outbuf);
299 len = qstring_get_length(mon->outbuf);
300
Paolo Bonzinia4cc73d2013-05-31 14:00:27 +0200301 if (len && !mon->mux_out) {
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400302 rc = qemu_chr_fe_write(mon->chr, (const uint8_t *) buf, len);
Stratos Psomadakis056f49f2014-01-27 12:30:15 +0200303 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
304 /* all flushed or error */
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400305 QDECREF(mon->outbuf);
306 mon->outbuf = qstring_new();
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100307 return;
308 }
309 if (rc > 0) {
310 /* partinal write */
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400311 QString *tmp = qstring_from_str(buf + rc);
312 QDECREF(mon->outbuf);
313 mon->outbuf = tmp;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100314 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200315 if (mon->out_watch == 0) {
Roger Pau Monnee02bc6d2014-05-23 17:57:49 +0200316 mon->out_watch = qemu_chr_fe_add_watch(mon->chr, G_IO_OUT|G_IO_HUP,
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200317 monitor_unblocked, mon);
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200318 }
bellard7e2515e2004-08-01 21:52:19 +0000319 }
320}
321
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200322void monitor_flush(Monitor *mon)
323{
324 qemu_mutex_lock(&mon->out_lock);
325 monitor_flush_locked(mon);
326 qemu_mutex_unlock(&mon->out_lock);
327}
328
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400329/* flush at every end of line */
aliguori376253e2009-03-05 23:01:23 +0000330static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000331{
ths60fe76f2007-12-16 03:02:09 +0000332 char c;
aliguori731b0362009-03-05 23:01:42 +0000333
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200334 qemu_mutex_lock(&mon->out_lock);
bellard7e2515e2004-08-01 21:52:19 +0000335 for(;;) {
336 c = *str++;
337 if (c == '\0')
338 break;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400339 if (c == '\n') {
340 qstring_append_chr(mon->outbuf, '\r');
341 }
342 qstring_append_chr(mon->outbuf, c);
343 if (c == '\n') {
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200344 monitor_flush_locked(mon);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400345 }
bellard7e2515e2004-08-01 21:52:19 +0000346 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200347 qemu_mutex_unlock(&mon->out_lock);
bellard7e2515e2004-08-01 21:52:19 +0000348}
349
aliguori376253e2009-03-05 23:01:23 +0000350void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000351{
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400352 char *buf;
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200353
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200354 if (!mon)
355 return;
356
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100357 if (monitor_is_qmp(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200358 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200359 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200360
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400361 buf = g_strdup_vprintf(fmt, ap);
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200362 monitor_puts(mon, buf);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400363 g_free(buf);
bellard7e2515e2004-08-01 21:52:19 +0000364}
365
aliguori376253e2009-03-05 23:01:23 +0000366void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000367{
368 va_list ap;
369 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000370 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000371 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000372}
373
Stefan Weil8b7968f2010-09-23 21:28:05 +0200374static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
375 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000376{
377 va_list ap;
378 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000379 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000380 va_end(ap);
381 return 0;
382}
383
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200384static void monitor_json_emitter(Monitor *mon, const QObject *data)
385{
386 QString *json;
387
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200388 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
389 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200390 assert(json != NULL);
391
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200392 qstring_append_chr(json, '\n');
393 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200394
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200395 QDECREF(json);
396}
397
Markus Armbruster710aec92015-03-06 11:28:00 +0100398static QDict *build_qmp_error_dict(Error *err)
Luiz Capitulinode253f12012-07-27 16:18:16 -0300399{
400 QObject *obj;
401
Markus Armbruster710aec92015-03-06 11:28:00 +0100402 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %s } }",
403 ErrorClass_lookup[error_get_class(err)],
404 error_get_pretty(err));
Luiz Capitulinode253f12012-07-27 16:18:16 -0300405
406 return qobject_to_qdict(obj);
407}
408
Markus Armbruster70ea0c52015-03-06 10:47:08 +0100409static void monitor_protocol_emitter(Monitor *mon, QObject *data,
Markus Armbruster710aec92015-03-06 11:28:00 +0100410 Error *err)
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200411{
412 QDict *qmp;
413
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +0100414 trace_monitor_protocol_emitter(mon);
415
Markus Armbruster70ea0c52015-03-06 10:47:08 +0100416 if (!err) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200417 /* success response */
Luiz Capitulinode253f12012-07-27 16:18:16 -0300418 qmp = qdict_new();
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200419 if (data) {
420 qobject_incref(data);
421 qdict_put_obj(qmp, "return", data);
422 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200423 /* return an empty QDict by default */
424 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200425 }
426 } else {
427 /* error response */
Markus Armbruster70ea0c52015-03-06 10:47:08 +0100428 qmp = build_qmp_error_dict(err);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200429 }
430
Markus Armbruster74358f22015-03-06 19:35:59 +0100431 if (mon->qmp.id) {
432 qdict_put_obj(qmp, "id", mon->qmp.id);
433 mon->qmp.id = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200434 }
435
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200436 monitor_json_emitter(mon, QOBJECT(qmp));
437 QDECREF(qmp);
438}
439
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200440
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200441static MonitorQAPIEventState monitor_qapi_event_state[QAPI_EVENT_MAX];
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100442
443/*
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200444 * Emits the event to every monitor instance, @event is only used for trace
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200445 * Called with monitor_lock held.
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100446 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200447static void monitor_qapi_event_emit(QAPIEvent event, QObject *data)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100448{
449 Monitor *mon;
450
451 trace_monitor_protocol_event_emit(event, data);
452 QLIST_FOREACH(mon, &mon_list, entry) {
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100453 if (monitor_is_qmp(mon) && mon->qmp.in_command_mode) {
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100454 monitor_json_emitter(mon, data);
455 }
456 }
457}
458
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100459/*
460 * Queue a new event for emission to Monitor instances,
461 * applying any rate limiting if required.
462 */
463static void
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200464monitor_qapi_event_queue(QAPIEvent event, QDict *data, Error **errp)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100465{
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200466 MonitorQAPIEventState *evstate;
467 assert(event < QAPI_EVENT_MAX);
Alex Blighbc72ad62013-08-21 16:03:08 +0100468 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100469
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200470 evstate = &(monitor_qapi_event_state[event]);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100471 trace_monitor_protocol_event_queue(event,
472 data,
473 evstate->rate,
474 evstate->last,
475 now);
476
477 /* Rate limit of 0 indicates no throttling */
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200478 qemu_mutex_lock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100479 if (!evstate->rate) {
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200480 monitor_qapi_event_emit(event, QOBJECT(data));
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100481 evstate->last = now;
482 } else {
483 int64_t delta = now - evstate->last;
484 if (evstate->data ||
485 delta < evstate->rate) {
486 /* If there's an existing event pending, replace
487 * it with the new event, otherwise schedule a
488 * timer for delayed emission
489 */
490 if (evstate->data) {
491 qobject_decref(evstate->data);
492 } else {
493 int64_t then = evstate->last + evstate->rate;
Alex Blighbc72ad62013-08-21 16:03:08 +0100494 timer_mod_ns(evstate->timer, then);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100495 }
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200496 evstate->data = QOBJECT(data);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100497 qobject_incref(evstate->data);
498 } else {
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200499 monitor_qapi_event_emit(event, QOBJECT(data));
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100500 evstate->last = now;
501 }
502 }
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200503 qemu_mutex_unlock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100504}
505
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100506/*
507 * The callback invoked by QemuTimer when a delayed
508 * event is ready to be emitted
509 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200510static void monitor_qapi_event_handler(void *opaque)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100511{
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200512 MonitorQAPIEventState *evstate = opaque;
Alex Blighbc72ad62013-08-21 16:03:08 +0100513 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100514
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100515 trace_monitor_protocol_event_handler(evstate->event,
516 evstate->data,
517 evstate->last,
518 now);
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200519 qemu_mutex_lock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100520 if (evstate->data) {
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200521 monitor_qapi_event_emit(evstate->event, evstate->data);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100522 qobject_decref(evstate->data);
523 evstate->data = NULL;
524 }
525 evstate->last = now;
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200526 qemu_mutex_unlock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100527}
528
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100529/*
530 * @event: the event ID to be limited
531 * @rate: the rate limit in milliseconds
532 *
533 * Sets a rate limit on a particular event, so no
534 * more than 1 event will be emitted within @rate
535 * milliseconds
536 */
537static void
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200538monitor_qapi_event_throttle(QAPIEvent event, int64_t rate)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100539{
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200540 MonitorQAPIEventState *evstate;
541 assert(event < QAPI_EVENT_MAX);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100542
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200543 evstate = &(monitor_qapi_event_state[event]);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100544
545 trace_monitor_protocol_event_throttle(event, rate);
546 evstate->event = event;
Wenchao Xia2f44a082014-06-24 16:34:00 -0700547 assert(rate * SCALE_MS <= INT64_MAX);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100548 evstate->rate = rate * SCALE_MS;
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100549 evstate->last = 0;
550 evstate->data = NULL;
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200551 evstate->timer = timer_new(QEMU_CLOCK_REALTIME,
552 SCALE_MS,
553 monitor_qapi_event_handler,
554 evstate);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100555}
556
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200557static void monitor_qapi_event_init(void)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100558{
Wenchao Xiae010ad82014-06-18 08:43:41 +0200559 /* Limit guest-triggerable events to 1 per second */
560 monitor_qapi_event_throttle(QAPI_EVENT_RTC_CHANGE, 1000);
Wenchao Xia99eaf092014-06-18 08:43:42 +0200561 monitor_qapi_event_throttle(QAPI_EVENT_WATCHDOG, 1000);
Wenchao Xiaaef9d312014-06-18 08:43:51 +0200562 monitor_qapi_event_throttle(QAPI_EVENT_BALLOON_CHANGE, 1000);
Wenchao Xiafe069d92014-06-18 08:43:53 +0200563 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_REPORT_BAD, 1000);
564 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_FAILURE, 1000);
Laszlo Erseke2ae6152014-06-26 17:50:02 +0200565 monitor_qapi_event_throttle(QAPI_EVENT_VSERPORT_CHANGE, 1000);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100566
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200567 qmp_event_set_func_emit(monitor_qapi_event_queue);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200568}
569
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200570static int do_qmp_capabilities(Monitor *mon, const QDict *params,
571 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200572{
Markus Armbrusterf994b252015-03-06 19:51:51 +0100573 mon->qmp.in_command_mode = true;
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200574 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200575}
576
Markus Armbruster7ef6cf62015-03-06 19:12:36 +0100577static void handle_hmp_command(Monitor *mon, const char *cmdline);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200578
Wenchao Xiab01fe892013-08-27 20:38:19 +0800579static void monitor_data_init(Monitor *mon)
580{
581 memset(mon, 0, sizeof(Monitor));
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200582 qemu_mutex_init(&mon->out_lock);
Wenchao Xiab01fe892013-08-27 20:38:19 +0800583 mon->outbuf = qstring_new();
Wenchao Xia77172392013-08-27 20:38:20 +0800584 /* Use *mon_cmds by default. */
585 mon->cmd_table = mon_cmds;
Wenchao Xiab01fe892013-08-27 20:38:19 +0800586}
587
588static void monitor_data_destroy(Monitor *mon)
589{
590 QDECREF(mon->outbuf);
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200591 qemu_mutex_destroy(&mon->out_lock);
Wenchao Xiab01fe892013-08-27 20:38:19 +0800592}
593
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200594char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
595 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200596{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200597 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200598 Monitor *old_mon, hmp;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200599
Wenchao Xiab01fe892013-08-27 20:38:19 +0800600 monitor_data_init(&hmp);
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400601 hmp.skip_flush = true;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200602
603 old_mon = cur_mon;
604 cur_mon = &hmp;
605
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200606 if (has_cpu_index) {
607 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200608 if (ret < 0) {
609 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200610 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
611 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200612 goto out;
613 }
614 }
615
Markus Armbruster7ef6cf62015-03-06 19:12:36 +0100616 handle_hmp_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200617 cur_mon = old_mon;
618
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200619 qemu_mutex_lock(&hmp.out_lock);
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400620 if (qstring_get_length(hmp.outbuf) > 0) {
621 output = g_strdup(qstring_get_str(hmp.outbuf));
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200622 } else {
623 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200624 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200625 qemu_mutex_unlock(&hmp.out_lock);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200626
627out:
Wenchao Xiab01fe892013-08-27 20:38:19 +0800628 monitor_data_destroy(&hmp);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200629 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200630}
631
bellard9dc39cb2004-03-14 21:38:27 +0000632static int compare_cmd(const char *name, const char *list)
633{
634 const char *p, *pstart;
635 int len;
636 len = strlen(name);
637 p = list;
638 for(;;) {
639 pstart = p;
640 p = strchr(p, '|');
641 if (!p)
642 p = pstart + strlen(pstart);
643 if ((p - pstart) == len && !memcmp(pstart, name, len))
644 return 1;
645 if (*p == '\0')
646 break;
647 p++;
648 }
649 return 0;
650}
651
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800652static int get_str(char *buf, int buf_size, const char **pp)
653{
654 const char *p;
655 char *q;
656 int c;
657
658 q = buf;
659 p = *pp;
660 while (qemu_isspace(*p)) {
661 p++;
662 }
663 if (*p == '\0') {
664 fail:
665 *q = '\0';
666 *pp = p;
667 return -1;
668 }
669 if (*p == '\"') {
670 p++;
671 while (*p != '\0' && *p != '\"') {
672 if (*p == '\\') {
673 p++;
674 c = *p++;
675 switch (c) {
676 case 'n':
677 c = '\n';
678 break;
679 case 'r':
680 c = '\r';
681 break;
682 case '\\':
683 case '\'':
684 case '\"':
685 break;
686 default:
687 qemu_printf("unsupported escape code: '\\%c'\n", c);
688 goto fail;
689 }
690 if ((q - buf) < buf_size - 1) {
691 *q++ = c;
692 }
693 } else {
694 if ((q - buf) < buf_size - 1) {
695 *q++ = *p;
696 }
697 p++;
698 }
699 }
700 if (*p != '\"') {
701 qemu_printf("unterminated string\n");
702 goto fail;
703 }
704 p++;
705 } else {
706 while (*p != '\0' && !qemu_isspace(*p)) {
707 if ((q - buf) < buf_size - 1) {
708 *q++ = *p;
709 }
710 p++;
711 }
712 }
713 *q = '\0';
714 *pp = p;
715 return 0;
716}
717
718#define MAX_ARGS 16
719
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800720static void free_cmdline_args(char **args, int nb_args)
721{
722 int i;
723
724 assert(nb_args <= MAX_ARGS);
725
726 for (i = 0; i < nb_args; i++) {
727 g_free(args[i]);
728 }
729
730}
731
732/*
733 * Parse the command line to get valid args.
734 * @cmdline: command line to be parsed.
735 * @pnb_args: location to store the number of args, must NOT be NULL.
736 * @args: location to store the args, which should be freed by caller, must
737 * NOT be NULL.
738 *
739 * Returns 0 on success, negative on failure.
740 *
741 * NOTE: this parser is an approximate form of the real command parser. Number
742 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
743 * return with failure.
744 */
745static int parse_cmdline(const char *cmdline,
746 int *pnb_args, char **args)
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800747{
748 const char *p;
749 int nb_args, ret;
750 char buf[1024];
751
752 p = cmdline;
753 nb_args = 0;
754 for (;;) {
755 while (qemu_isspace(*p)) {
756 p++;
757 }
758 if (*p == '\0') {
759 break;
760 }
761 if (nb_args >= MAX_ARGS) {
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800762 goto fail;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800763 }
764 ret = get_str(buf, sizeof(buf), &p);
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800765 if (ret < 0) {
766 goto fail;
767 }
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800768 args[nb_args] = g_strdup(buf);
769 nb_args++;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800770 }
771 *pnb_args = nb_args;
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800772 return 0;
773
774 fail:
775 free_cmdline_args(args, nb_args);
776 return -1;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800777}
778
Wenchao Xia66855492013-08-27 20:38:23 +0800779static void help_cmd_dump_one(Monitor *mon,
780 const mon_cmd_t *cmd,
781 char **prefix_args,
782 int prefix_args_nb)
783{
784 int i;
785
786 for (i = 0; i < prefix_args_nb; i++) {
787 monitor_printf(mon, "%s ", prefix_args[i]);
788 }
789 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
790}
791
792/* @args[@arg_index] is the valid command need to find in @cmds */
Anthony Liguoric227f092009-10-01 16:12:16 -0500793static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
Wenchao Xia66855492013-08-27 20:38:23 +0800794 char **args, int nb_args, int arg_index)
bellard9dc39cb2004-03-14 21:38:27 +0000795{
Anthony Liguoric227f092009-10-01 16:12:16 -0500796 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000797
Wenchao Xia66855492013-08-27 20:38:23 +0800798 /* No valid arg need to compare with, dump all in *cmds */
799 if (arg_index >= nb_args) {
800 for (cmd = cmds; cmd->name != NULL; cmd++) {
801 help_cmd_dump_one(mon, cmd, args, arg_index);
802 }
803 return;
804 }
805
806 /* Find one entry to dump */
807 for (cmd = cmds; cmd->name != NULL; cmd++) {
808 if (compare_cmd(args[arg_index], cmd->name)) {
809 if (cmd->sub_table) {
810 /* continue with next arg */
811 help_cmd_dump(mon, cmd->sub_table,
812 args, nb_args, arg_index + 1);
813 } else {
814 help_cmd_dump_one(mon, cmd, args, arg_index);
815 }
816 break;
817 }
bellard9dc39cb2004-03-14 21:38:27 +0000818 }
819}
820
aliguori376253e2009-03-05 23:01:23 +0000821static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000822{
Wenchao Xia66855492013-08-27 20:38:23 +0800823 char *args[MAX_ARGS];
824 int nb_args = 0;
825
826 /* 1. parse user input */
827 if (name) {
828 /* special case for log, directly dump and return */
829 if (!strcmp(name, "log")) {
Peter Maydell38dad9e2013-02-11 16:41:25 +0000830 const QEMULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000831 monitor_printf(mon, "Log items (comma separated):\n");
832 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
Peter Maydell38dad9e2013-02-11 16:41:25 +0000833 for (item = qemu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000834 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000835 }
Wenchao Xia66855492013-08-27 20:38:23 +0800836 return;
837 }
838
839 if (parse_cmdline(name, &nb_args, args) < 0) {
840 return;
bellardf193c792004-03-21 17:06:25 +0000841 }
bellard9dc39cb2004-03-14 21:38:27 +0000842 }
Wenchao Xia66855492013-08-27 20:38:23 +0800843
844 /* 2. dump the contents according to parsed args */
845 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
846
847 free_cmdline_args(args, nb_args);
bellard9dc39cb2004-03-14 21:38:27 +0000848}
849
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300850static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300851{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300852 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300853}
854
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100855static void hmp_trace_event(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530856{
857 const char *tp_name = qdict_get_str(qdict, "name");
858 bool new_state = qdict_get_bool(qdict, "option");
Lluís Vilanova14101d02014-08-25 13:20:03 +0200859 Error *local_err = NULL;
Blue Swirlf871d682010-10-13 19:14:29 +0000860
Lluís Vilanova14101d02014-08-25 13:20:03 +0200861 qmp_trace_event_set_state(tp_name, new_state, true, true, &local_err);
862 if (local_err) {
Markus Armbruster091e38b2015-02-10 15:15:43 +0100863 error_report_err(local_err);
Blue Swirlf871d682010-10-13 19:14:29 +0000864 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530865}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100866
Michael Rothc45a8162011-10-02 08:44:37 -0500867#ifdef CONFIG_TRACE_SIMPLE
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100868static void hmp_trace_file(Monitor *mon, const QDict *qdict)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100869{
870 const char *op = qdict_get_try_str(qdict, "op");
871 const char *arg = qdict_get_try_str(qdict, "arg");
872
873 if (!op) {
874 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
875 } else if (!strcmp(op, "on")) {
876 st_set_trace_file_enabled(true);
877 } else if (!strcmp(op, "off")) {
878 st_set_trace_file_enabled(false);
879 } else if (!strcmp(op, "flush")) {
880 st_flush_trace_buffer();
881 } else if (!strcmp(op, "set")) {
882 if (arg) {
883 st_set_trace_file(arg);
884 }
885 } else {
886 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
887 help_cmd(mon, "trace-file");
888 }
889}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530890#endif
891
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100892static void hmp_info_help(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000893{
Luiz Capitulino13c74252009-10-07 13:41:55 -0300894 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000895}
896
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300897CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000898{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300899 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200900 const mon_cmd_t *cmd;
901
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300902 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -0200903 info = g_malloc0(sizeof(*info));
904 info->value = g_malloc0(sizeof(*info->value));
905 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200906
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300907 info->next = cmd_list;
908 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200909 }
910
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300911 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000912}
913
Daniel P. Berrange48608532012-05-21 17:59:51 +0100914EventInfoList *qmp_query_events(Error **errp)
915{
916 EventInfoList *info, *ev_list = NULL;
Wenchao Xia75175172014-06-18 08:43:54 +0200917 QAPIEvent e;
Daniel P. Berrange48608532012-05-21 17:59:51 +0100918
Wenchao Xia75175172014-06-18 08:43:54 +0200919 for (e = 0 ; e < QAPI_EVENT_MAX ; e++) {
920 const char *event_name = QAPIEvent_lookup[e];
Daniel P. Berrange48608532012-05-21 17:59:51 +0100921 assert(event_name != NULL);
922 info = g_malloc0(sizeof(*info));
923 info->value = g_malloc0(sizeof(*info->value));
924 info->value->name = g_strdup(event_name);
925
926 info->next = ev_list;
927 ev_list = info;
928 }
929
930 return ev_list;
931}
932
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300933/* set the current CPU defined by the user */
934int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000935{
Andreas Färber55e5c282012-12-17 06:18:02 +0100936 CPUState *cpu;
bellard6a00d602005-11-21 23:25:50 +0000937
Andreas Färber1c8bb3c2013-02-15 17:01:09 +0100938 cpu = qemu_get_cpu(cpu_index);
939 if (cpu == NULL) {
940 return -1;
bellard6a00d602005-11-21 23:25:50 +0000941 }
Andreas Färbercb446ec2013-05-01 14:24:52 +0200942 cur_mon->mon_cpu = cpu;
Andreas Färber1c8bb3c2013-02-15 17:01:09 +0100943 return 0;
bellard6a00d602005-11-21 23:25:50 +0000944}
945
Andreas Färber9349b4f2012-03-14 01:38:32 +0100946static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000947{
aliguori731b0362009-03-05 23:01:42 +0000948 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300949 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +0000950 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300951 cpu_synchronize_state(cur_mon->mon_cpu);
Andreas Färbercb446ec2013-05-01 14:24:52 +0200952 return cur_mon->mon_cpu->env_ptr;
bellard6a00d602005-11-21 23:25:50 +0000953}
954
Luiz Capitulino99b77962011-10-24 10:53:44 -0200955int monitor_get_cpu_index(void)
956{
Andreas Färber55e5c282012-12-17 06:18:02 +0100957 CPUState *cpu = ENV_GET_CPU(mon_get_cpu());
958 return cpu->cpu_index;
Luiz Capitulino99b77962011-10-24 10:53:44 -0200959}
960
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100961static void hmp_info_registers(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +0000962{
Andreas Färber878096e2013-05-27 01:33:50 +0200963 CPUState *cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100964 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000965 env = mon_get_cpu();
Andreas Färber878096e2013-05-27 01:33:50 +0200966 cpu = ENV_GET_CPU(env);
967 cpu_dump_state(cpu, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000968}
969
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100970static void hmp_info_jit(Monitor *mon, const QDict *qdict)
bellarde3db7222005-01-26 22:00:47 +0000971{
aliguori376253e2009-03-05 23:01:23 +0000972 dump_exec_info((FILE *)mon, monitor_fprintf);
Sebastian Tanase27498be2014-07-25 11:56:33 +0200973 dump_drift_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000974}
975
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100976static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
Max Filippov246ae242014-11-02 11:04:18 +0300977{
978 dump_opcount_info((FILE *)mon, monitor_fprintf);
979}
980
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100981static void hmp_info_history(Monitor *mon, const QDict *qdict)
bellardaa455482004-04-04 13:07:25 +0000982{
983 int i;
bellard7e2515e2004-08-01 21:52:19 +0000984 const char *str;
ths3b46e622007-09-17 08:09:54 +0000985
aliguoricde76ee2009-03-05 23:01:51 +0000986 if (!mon->rs)
987 return;
bellard7e2515e2004-08-01 21:52:19 +0000988 i = 0;
989 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000990 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000991 if (!str)
992 break;
aliguori376253e2009-03-05 23:01:23 +0000993 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000994 i++;
bellardaa455482004-04-04 13:07:25 +0000995 }
996}
997
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100998static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
j_mayer76a66252007-03-07 08:32:30 +0000999{
Andreas Färber878096e2013-05-27 01:33:50 +02001000 CPUState *cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001001 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +00001002
1003 env = mon_get_cpu();
Andreas Färber878096e2013-05-27 01:33:50 +02001004 cpu = ENV_GET_CPU(env);
1005 cpu_dump_statistics(cpu, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +00001006}
j_mayer76a66252007-03-07 08:32:30 +00001007
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001008static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +05301009{
Lluís Vilanova14101d02014-08-25 13:20:03 +02001010 TraceEventInfoList *events = qmp_trace_event_get_state("*", NULL);
1011 TraceEventInfoList *elem;
1012
1013 for (elem = events; elem != NULL; elem = elem->next) {
1014 monitor_printf(mon, "%s : state %u\n",
1015 elem->value->name,
1016 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1017 }
1018 qapi_free_TraceEventInfoList(events);
Prerna Saxena22890ab2010-06-24 17:04:53 +05301019}
Prerna Saxena22890ab2010-06-24 17:04:53 +05301020
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001021void qmp_client_migrate_info(const char *protocol, const char *hostname,
1022 bool has_port, int64_t port,
1023 bool has_tls_port, int64_t tls_port,
1024 bool has_cert_subject, const char *cert_subject,
1025 Error **errp)
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001026{
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001027 if (strcmp(protocol, "spice") == 0) {
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001028 if (!qemu_using_spice(errp)) {
1029 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001030 }
1031
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001032 if (!has_port && !has_tls_port) {
1033 error_set(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1034 return;
Yonit Halperin6ec5dae2012-03-18 09:42:39 +02001035 }
1036
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001037 if (qemu_spice_migrate_info(hostname,
1038 has_port ? port : -1,
1039 has_tls_port ? tls_port : -1,
1040 cert_subject)) {
1041 error_set(errp, QERR_UNDEFINED_ERROR);
1042 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001043 }
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001044 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001045 }
1046
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001047 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001048}
1049
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001050static void hmp_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001051{
Peter Maydell9a7e5422013-02-11 16:41:20 +00001052 qemu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001053}
1054
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001055static void hmp_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001056{
1057 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001058 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001059
bellard9307c4c2004-04-04 12:57:25 +00001060 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001061 mask = 0;
1062 } else {
Peter Maydell4fde1eb2013-02-11 16:41:22 +00001063 mask = qemu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001064 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001065 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001066 return;
1067 }
1068 }
Peter Maydell24537a02013-02-11 16:41:23 +00001069 qemu_set_log(mask);
bellardf193c792004-03-21 17:06:25 +00001070}
1071
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001072static void hmp_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001073{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001074 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001075 if (!option || !strcmp(option, "on")) {
1076 singlestep = 1;
1077 } else if (!strcmp(option, "off")) {
1078 singlestep = 0;
1079 } else {
1080 monitor_printf(mon, "unexpected option %s\n", option);
1081 }
1082}
1083
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001084static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001085{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001086 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001087 if (!device)
1088 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1089 if (gdbserver_start(device) < 0) {
1090 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1091 device);
1092 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001093 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001094 } else {
aliguori59030a82009-04-05 18:43:41 +00001095 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1096 device);
bellard8a7ddc32004-03-31 19:00:16 +00001097 }
1098}
1099
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001100static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001101{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001102 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001103 if (select_watchdog_action(action) == -1) {
1104 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1105 }
1106}
1107
aliguori376253e2009-03-05 23:01:23 +00001108static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001109{
aliguori376253e2009-03-05 23:01:23 +00001110 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001111 switch(c) {
1112 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001113 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001114 break;
1115 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001116 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001117 break;
1118 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001119 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001120 break;
1121 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001122 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001123 break;
1124 default:
1125 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001126 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001127 } else {
aliguori376253e2009-03-05 23:01:23 +00001128 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001129 }
1130 break;
1131 }
aliguori376253e2009-03-05 23:01:23 +00001132 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001133}
1134
aliguori376253e2009-03-05 23:01:23 +00001135static void memory_dump(Monitor *mon, int count, int format, int wsize,
Avi Kivitya8170e52012-10-23 12:30:10 +02001136 hwaddr addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001137{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001138 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001139 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001140 uint8_t buf[16];
1141 uint64_t v;
1142
1143 if (format == 'i') {
1144 int flags;
1145 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001146 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001147#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001148 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001149 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001150 } else if (wsize == 4) {
1151 flags = 0;
1152 } else {
bellard6a15fd12006-04-12 21:07:07 +00001153 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001154 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001155 if (env) {
1156#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001157 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001158 (env->segs[R_CS].flags & DESC_L_MASK))
1159 flags = 2;
1160 else
1161#endif
1162 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1163 flags = 1;
1164 }
bellard4c27ba22004-04-25 18:05:08 +00001165 }
1166#endif
Tom Musta1c38f842014-04-09 14:53:24 -05001167#ifdef TARGET_PPC
1168 flags = msr_le << 16;
1169 flags |= env->bfd_mach;
1170#endif
aliguori376253e2009-03-05 23:01:23 +00001171 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001172 return;
1173 }
1174
1175 len = wsize * count;
1176 if (wsize == 1)
1177 line_size = 8;
1178 else
1179 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001180 max_digits = 0;
1181
1182 switch(format) {
1183 case 'o':
1184 max_digits = (wsize * 8 + 2) / 3;
1185 break;
1186 default:
1187 case 'x':
1188 max_digits = (wsize * 8) / 4;
1189 break;
1190 case 'u':
1191 case 'd':
1192 max_digits = (wsize * 8 * 10 + 32) / 33;
1193 break;
1194 case 'c':
1195 wsize = 1;
1196 break;
1197 }
1198
1199 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001200 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001201 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001202 else
aliguori376253e2009-03-05 23:01:23 +00001203 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001204 l = len;
1205 if (l > line_size)
1206 l = line_size;
1207 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001208 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001209 } else {
bellard6a00d602005-11-21 23:25:50 +00001210 env = mon_get_cpu();
Andreas Färberf17ec442013-06-29 19:40:58 +02001211 if (cpu_memory_rw_debug(ENV_GET_CPU(env), addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001212 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001213 break;
1214 }
bellard9307c4c2004-04-04 12:57:25 +00001215 }
ths5fafdf22007-09-16 21:08:06 +00001216 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001217 while (i < l) {
1218 switch(wsize) {
1219 default:
1220 case 1:
Peter Maydell24e60302015-01-20 15:19:32 +00001221 v = ldub_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001222 break;
1223 case 2:
Peter Maydell24e60302015-01-20 15:19:32 +00001224 v = lduw_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001225 break;
1226 case 4:
Peter Maydell24e60302015-01-20 15:19:32 +00001227 v = (uint32_t)ldl_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001228 break;
1229 case 8:
Peter Maydell24e60302015-01-20 15:19:32 +00001230 v = ldq_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001231 break;
1232 }
aliguori376253e2009-03-05 23:01:23 +00001233 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001234 switch(format) {
1235 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001236 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001237 break;
1238 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001239 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001240 break;
1241 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001242 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001243 break;
1244 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001245 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001246 break;
1247 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001248 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001249 break;
1250 }
1251 i += wsize;
1252 }
aliguori376253e2009-03-05 23:01:23 +00001253 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001254 addr += l;
1255 len -= l;
1256 }
1257}
1258
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001259static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001260{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001261 int count = qdict_get_int(qdict, "count");
1262 int format = qdict_get_int(qdict, "format");
1263 int size = qdict_get_int(qdict, "size");
1264 target_long addr = qdict_get_int(qdict, "addr");
1265
aliguori376253e2009-03-05 23:01:23 +00001266 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001267}
1268
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001269static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001270{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001271 int count = qdict_get_int(qdict, "count");
1272 int format = qdict_get_int(qdict, "format");
1273 int size = qdict_get_int(qdict, "size");
Avi Kivitya8170e52012-10-23 12:30:10 +02001274 hwaddr addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001275
aliguori376253e2009-03-05 23:01:23 +00001276 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001277}
1278
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001279static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001280{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001281 int format = qdict_get_int(qdict, "format");
Avi Kivitya8170e52012-10-23 12:30:10 +02001282 hwaddr val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001283
bellard9307c4c2004-04-04 12:57:25 +00001284 switch(format) {
1285 case 'o':
Avi Kivitya8170e52012-10-23 12:30:10 +02001286 monitor_printf(mon, "%#" HWADDR_PRIo, val);
bellard9307c4c2004-04-04 12:57:25 +00001287 break;
1288 case 'x':
Avi Kivitya8170e52012-10-23 12:30:10 +02001289 monitor_printf(mon, "%#" HWADDR_PRIx, val);
bellard9307c4c2004-04-04 12:57:25 +00001290 break;
1291 case 'u':
Avi Kivitya8170e52012-10-23 12:30:10 +02001292 monitor_printf(mon, "%" HWADDR_PRIu, val);
bellard9307c4c2004-04-04 12:57:25 +00001293 break;
1294 default:
1295 case 'd':
Avi Kivitya8170e52012-10-23 12:30:10 +02001296 monitor_printf(mon, "%" HWADDR_PRId, val);
bellard9307c4c2004-04-04 12:57:25 +00001297 break;
1298 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001299 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001300 break;
1301 }
aliguori376253e2009-03-05 23:01:23 +00001302 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001303}
1304
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001305static void hmp_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001306{
1307 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001308 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001309 uint32_t start = qdict_get_int(qdict, "start");
1310 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001311
1312 sum = 0;
1313 for(addr = start; addr < (start + size); addr++) {
Peter Maydell42874d32015-04-26 16:49:24 +01001314 uint8_t val = address_space_ldub(&address_space_memory, addr,
1315 MEMTXATTRS_UNSPECIFIED, NULL);
bellarde4cf1ad2005-06-04 20:15:57 +00001316 /* BSD sum algorithm ('sum' Unix command) */
1317 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001318 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001319 }
aliguori376253e2009-03-05 23:01:23 +00001320 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001321}
1322
bellard13224a82006-07-14 22:03:35 +00001323static int mouse_button_state;
1324
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001325static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001326{
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001327 int dx, dy, dz, button;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001328 const char *dx_str = qdict_get_str(qdict, "dx_str");
1329 const char *dy_str = qdict_get_str(qdict, "dy_str");
1330 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001331
bellard13224a82006-07-14 22:03:35 +00001332 dx = strtol(dx_str, NULL, 0);
1333 dy = strtol(dy_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001334 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1335 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1336
1337 if (dz_str) {
bellard13224a82006-07-14 22:03:35 +00001338 dz = strtol(dz_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001339 if (dz != 0) {
1340 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1341 qemu_input_queue_btn(NULL, button, true);
1342 qemu_input_event_sync();
1343 qemu_input_queue_btn(NULL, button, false);
1344 }
1345 }
1346 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001347}
1348
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001349static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001350{
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001351 static uint32_t bmap[INPUT_BUTTON_MAX] = {
1352 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1353 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1354 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1355 };
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001356 int button_state = qdict_get_int(qdict, "button_state");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001357
1358 if (mouse_button_state == button_state) {
1359 return;
1360 }
1361 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1362 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001363 mouse_button_state = button_state;
bellard13224a82006-07-14 22:03:35 +00001364}
1365
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001366static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001367{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001368 int size = qdict_get_int(qdict, "size");
1369 int addr = qdict_get_int(qdict, "addr");
1370 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001371 uint32_t val;
1372 int suffix;
1373
1374 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001375 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001376 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001377 addr++;
1378 }
1379 addr &= 0xffff;
1380
1381 switch(size) {
1382 default:
1383 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001384 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001385 suffix = 'b';
1386 break;
1387 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001388 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001389 suffix = 'w';
1390 break;
1391 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001392 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001393 suffix = 'l';
1394 break;
1395 }
aliguori376253e2009-03-05 23:01:23 +00001396 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1397 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001398}
bellarda3a91a32004-06-04 11:06:21 +00001399
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001400static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001401{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001402 int size = qdict_get_int(qdict, "size");
1403 int addr = qdict_get_int(qdict, "addr");
1404 int val = qdict_get_int(qdict, "val");
1405
Jan Kiszkaf1147842009-07-14 10:20:11 +02001406 addr &= IOPORTS_MASK;
1407
1408 switch (size) {
1409 default:
1410 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001411 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001412 break;
1413 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001414 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001415 break;
1416 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001417 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001418 break;
1419 }
1420}
1421
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001422static void hmp_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001423{
Gongleif1839932014-12-03 18:20:58 +00001424 Error *local_err = NULL;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001425 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001426
Gongleif1839932014-12-03 18:20:58 +00001427 qemu_boot_set(bootdevice, &local_err);
1428 if (local_err) {
1429 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
1430 error_free(local_err);
aurel320ecdffb2008-05-04 20:11:34 +00001431 } else {
Gongleif1839932014-12-03 18:20:58 +00001432 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001433 }
1434}
1435
bellardb86bda52004-09-18 19:32:46 +00001436#if defined(TARGET_I386)
Avi Kivitya8170e52012-10-23 12:30:10 +02001437static void print_pte(Monitor *mon, hwaddr addr,
1438 hwaddr pte,
1439 hwaddr mask)
bellardb86bda52004-09-18 19:32:46 +00001440{
Blue Swirld65aaf32010-12-11 18:56:24 +00001441#ifdef TARGET_X86_64
1442 if (addr & (1ULL << 47)) {
1443 addr |= -1LL << 48;
1444 }
1445#endif
1446 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1447 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001448 addr,
1449 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001450 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001451 pte & PG_GLOBAL_MASK ? 'G' : '-',
1452 pte & PG_PSE_MASK ? 'P' : '-',
1453 pte & PG_DIRTY_MASK ? 'D' : '-',
1454 pte & PG_ACCESSED_MASK ? 'A' : '-',
1455 pte & PG_PCD_MASK ? 'C' : '-',
1456 pte & PG_PWT_MASK ? 'T' : '-',
1457 pte & PG_USER_MASK ? 'U' : '-',
1458 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001459}
1460
Andreas Färber9349b4f2012-03-14 01:38:32 +01001461static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001462{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001463 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001464 uint32_t pgd, pde, pte;
1465
bellardb86bda52004-09-18 19:32:46 +00001466 pgd = env->cr[3] & ~0xfff;
1467 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001468 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001469 pde = le32_to_cpu(pde);
1470 if (pde & PG_PRESENT_MASK) {
1471 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001472 /* 4M pages */
1473 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001474 } else {
1475 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001476 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001477 pte = le32_to_cpu(pte);
1478 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001479 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001480 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001481 ~0xfff);
1482 }
1483 }
1484 }
1485 }
1486 }
1487}
1488
Andreas Färber9349b4f2012-03-14 01:38:32 +01001489static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001490{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001491 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001492 uint64_t pdpe, pde, pte;
1493 uint64_t pdp_addr, pd_addr, pt_addr;
1494
1495 pdp_addr = env->cr[3] & ~0x1f;
1496 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001497 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001498 pdpe = le64_to_cpu(pdpe);
1499 if (pdpe & PG_PRESENT_MASK) {
1500 pd_addr = pdpe & 0x3fffffffff000ULL;
1501 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001502 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001503 pde = le64_to_cpu(pde);
1504 if (pde & PG_PRESENT_MASK) {
1505 if (pde & PG_PSE_MASK) {
1506 /* 2M pages with PAE, CR4.PSE is ignored */
1507 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
Avi Kivitya8170e52012-10-23 12:30:10 +02001508 ~((hwaddr)(1 << 20) - 1));
Blue Swirld65aaf32010-12-11 18:56:24 +00001509 } else {
1510 pt_addr = pde & 0x3fffffffff000ULL;
1511 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001512 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001513 pte = le64_to_cpu(pte);
1514 if (pte & PG_PRESENT_MASK) {
1515 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1516 + (l3 << 12),
1517 pte & ~PG_PSE_MASK,
Avi Kivitya8170e52012-10-23 12:30:10 +02001518 ~(hwaddr)0xfff);
Blue Swirld65aaf32010-12-11 18:56:24 +00001519 }
1520 }
1521 }
1522 }
1523 }
1524 }
1525 }
1526}
1527
1528#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001529static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001530{
1531 uint64_t l1, l2, l3, l4;
1532 uint64_t pml4e, pdpe, pde, pte;
1533 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1534
1535 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1536 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001537 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001538 pml4e = le64_to_cpu(pml4e);
1539 if (pml4e & PG_PRESENT_MASK) {
1540 pdp_addr = pml4e & 0x3fffffffff000ULL;
1541 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001542 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001543 pdpe = le64_to_cpu(pdpe);
1544 if (pdpe & PG_PRESENT_MASK) {
1545 if (pdpe & PG_PSE_MASK) {
1546 /* 1G pages, CR4.PSE is ignored */
1547 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1548 0x3ffffc0000000ULL);
1549 } else {
1550 pd_addr = pdpe & 0x3fffffffff000ULL;
1551 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001552 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001553 pde = le64_to_cpu(pde);
1554 if (pde & PG_PRESENT_MASK) {
1555 if (pde & PG_PSE_MASK) {
1556 /* 2M pages, CR4.PSE is ignored */
1557 print_pte(mon, (l1 << 39) + (l2 << 30) +
1558 (l3 << 21), pde,
1559 0x3ffffffe00000ULL);
1560 } else {
1561 pt_addr = pde & 0x3fffffffff000ULL;
1562 for (l4 = 0; l4 < 512; l4++) {
1563 cpu_physical_memory_read(pt_addr
1564 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001565 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001566 pte = le64_to_cpu(pte);
1567 if (pte & PG_PRESENT_MASK) {
1568 print_pte(mon, (l1 << 39) +
1569 (l2 << 30) +
1570 (l3 << 21) + (l4 << 12),
1571 pte & ~PG_PSE_MASK,
1572 0x3fffffffff000ULL);
1573 }
1574 }
1575 }
1576 }
1577 }
1578 }
1579 }
1580 }
1581 }
1582 }
1583}
1584#endif
1585
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001586static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
Blue Swirld65aaf32010-12-11 18:56:24 +00001587{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001588 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001589
1590 env = mon_get_cpu();
1591
1592 if (!(env->cr[0] & CR0_PG_MASK)) {
1593 monitor_printf(mon, "PG disabled\n");
1594 return;
1595 }
1596 if (env->cr[4] & CR4_PAE_MASK) {
1597#ifdef TARGET_X86_64
1598 if (env->hflags & HF_LMA_MASK) {
1599 tlb_info_64(mon, env);
1600 } else
1601#endif
1602 {
1603 tlb_info_pae32(mon, env);
1604 }
1605 } else {
1606 tlb_info_32(mon, env);
1607 }
1608}
1609
Avi Kivitya8170e52012-10-23 12:30:10 +02001610static void mem_print(Monitor *mon, hwaddr *pstart,
Blue Swirl1b3cba62010-12-11 18:56:27 +00001611 int *plast_prot,
Avi Kivitya8170e52012-10-23 12:30:10 +02001612 hwaddr end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001613{
bellard9746b152004-11-11 18:30:24 +00001614 int prot1;
1615 prot1 = *plast_prot;
1616 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001617 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001618 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1619 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001620 *pstart, end, end - *pstart,
1621 prot1 & PG_USER_MASK ? 'u' : '-',
1622 'r',
1623 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001624 }
1625 if (prot != 0)
1626 *pstart = end;
1627 else
1628 *pstart = -1;
1629 *plast_prot = prot;
1630 }
1631}
1632
Andreas Färber9349b4f2012-03-14 01:38:32 +01001633static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001634{
Austin Clementsb49ca722011-08-14 23:19:21 -04001635 unsigned int l1, l2;
1636 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001637 uint32_t pgd, pde, pte;
Avi Kivitya8170e52012-10-23 12:30:10 +02001638 hwaddr start, end;
bellardb86bda52004-09-18 19:32:46 +00001639
bellardb86bda52004-09-18 19:32:46 +00001640 pgd = env->cr[3] & ~0xfff;
1641 last_prot = 0;
1642 start = -1;
1643 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001644 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001645 pde = le32_to_cpu(pde);
1646 end = l1 << 22;
1647 if (pde & PG_PRESENT_MASK) {
1648 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1649 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001650 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001651 } else {
1652 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001653 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001654 pte = le32_to_cpu(pte);
1655 end = (l1 << 22) + (l2 << 12);
1656 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001657 prot = pte & pde &
1658 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001659 } else {
1660 prot = 0;
1661 }
aliguori376253e2009-03-05 23:01:23 +00001662 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001663 }
1664 }
1665 } else {
1666 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001667 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001668 }
1669 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001670 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02001671 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001672}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001673
Andreas Färber9349b4f2012-03-14 01:38:32 +01001674static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001675{
Austin Clementsb49ca722011-08-14 23:19:21 -04001676 unsigned int l1, l2, l3;
1677 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001678 uint64_t pdpe, pde, pte;
1679 uint64_t pdp_addr, pd_addr, pt_addr;
Avi Kivitya8170e52012-10-23 12:30:10 +02001680 hwaddr start, end;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001681
1682 pdp_addr = env->cr[3] & ~0x1f;
1683 last_prot = 0;
1684 start = -1;
1685 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001686 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001687 pdpe = le64_to_cpu(pdpe);
1688 end = l1 << 30;
1689 if (pdpe & PG_PRESENT_MASK) {
1690 pd_addr = pdpe & 0x3fffffffff000ULL;
1691 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001692 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001693 pde = le64_to_cpu(pde);
1694 end = (l1 << 30) + (l2 << 21);
1695 if (pde & PG_PRESENT_MASK) {
1696 if (pde & PG_PSE_MASK) {
1697 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1698 PG_PRESENT_MASK);
1699 mem_print(mon, &start, &last_prot, end, prot);
1700 } else {
1701 pt_addr = pde & 0x3fffffffff000ULL;
1702 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001703 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001704 pte = le64_to_cpu(pte);
1705 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1706 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001707 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1708 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001709 } else {
1710 prot = 0;
1711 }
1712 mem_print(mon, &start, &last_prot, end, prot);
1713 }
1714 }
1715 } else {
1716 prot = 0;
1717 mem_print(mon, &start, &last_prot, end, prot);
1718 }
1719 }
1720 } else {
1721 prot = 0;
1722 mem_print(mon, &start, &last_prot, end, prot);
1723 }
1724 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001725 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02001726 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001727}
1728
1729
1730#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001731static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001732{
1733 int prot, last_prot;
1734 uint64_t l1, l2, l3, l4;
1735 uint64_t pml4e, pdpe, pde, pte;
1736 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1737
1738 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1739 last_prot = 0;
1740 start = -1;
1741 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001742 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001743 pml4e = le64_to_cpu(pml4e);
1744 end = l1 << 39;
1745 if (pml4e & PG_PRESENT_MASK) {
1746 pdp_addr = pml4e & 0x3fffffffff000ULL;
1747 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001748 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001749 pdpe = le64_to_cpu(pdpe);
1750 end = (l1 << 39) + (l2 << 30);
1751 if (pdpe & PG_PRESENT_MASK) {
1752 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00001753 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1754 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001755 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001756 mem_print(mon, &start, &last_prot, end, prot);
1757 } else {
1758 pd_addr = pdpe & 0x3fffffffff000ULL;
1759 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001760 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001761 pde = le64_to_cpu(pde);
1762 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1763 if (pde & PG_PRESENT_MASK) {
1764 if (pde & PG_PSE_MASK) {
1765 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1766 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001767 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001768 mem_print(mon, &start, &last_prot, end, prot);
1769 } else {
1770 pt_addr = pde & 0x3fffffffff000ULL;
1771 for (l4 = 0; l4 < 512; l4++) {
1772 cpu_physical_memory_read(pt_addr
1773 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001774 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001775 pte = le64_to_cpu(pte);
1776 end = (l1 << 39) + (l2 << 30) +
1777 (l3 << 21) + (l4 << 12);
1778 if (pte & PG_PRESENT_MASK) {
1779 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1780 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001781 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001782 } else {
1783 prot = 0;
1784 }
1785 mem_print(mon, &start, &last_prot, end, prot);
1786 }
1787 }
1788 } else {
1789 prot = 0;
1790 mem_print(mon, &start, &last_prot, end, prot);
1791 }
1792 }
1793 }
1794 } else {
1795 prot = 0;
1796 mem_print(mon, &start, &last_prot, end, prot);
1797 }
1798 }
1799 } else {
1800 prot = 0;
1801 mem_print(mon, &start, &last_prot, end, prot);
1802 }
1803 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001804 /* Flush last range */
Avi Kivitya8170e52012-10-23 12:30:10 +02001805 mem_print(mon, &start, &last_prot, (hwaddr)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001806}
1807#endif
1808
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001809static void hmp_info_mem(Monitor *mon, const QDict *qdict)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001810{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001811 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001812
1813 env = mon_get_cpu();
1814
1815 if (!(env->cr[0] & CR0_PG_MASK)) {
1816 monitor_printf(mon, "PG disabled\n");
1817 return;
1818 }
1819 if (env->cr[4] & CR4_PAE_MASK) {
1820#ifdef TARGET_X86_64
1821 if (env->hflags & HF_LMA_MASK) {
1822 mem_info_64(mon, env);
1823 } else
1824#endif
1825 {
1826 mem_info_pae32(mon, env);
1827 }
1828 } else {
1829 mem_info_32(mon, env);
1830 }
1831}
bellardb86bda52004-09-18 19:32:46 +00001832#endif
1833
aurel327c664e22009-03-03 06:12:22 +00001834#if defined(TARGET_SH4)
1835
aliguori376253e2009-03-05 23:01:23 +00001836static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001837{
aliguori376253e2009-03-05 23:01:23 +00001838 monitor_printf(mon, " tlb%i:\t"
1839 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1840 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1841 "dirty=%hhu writethrough=%hhu\n",
1842 idx,
1843 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1844 tlb->v, tlb->sh, tlb->c, tlb->pr,
1845 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001846}
1847
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001848static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
aurel327c664e22009-03-03 06:12:22 +00001849{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001850 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00001851 int i;
1852
aliguori376253e2009-03-05 23:01:23 +00001853 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001854 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001855 print_tlb (mon, i, &env->itlb[i]);
1856 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001857 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001858 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001859}
1860
1861#endif
1862
Max Filippov692f7372012-01-07 20:02:40 +04001863#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001864static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
Blue Swirld41160a2010-12-19 13:42:56 +00001865{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001866 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00001867
1868 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1869}
1870#endif
1871
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001872static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
Blue Swirl314e2982011-09-11 20:22:05 +00001873{
1874 mtree_info((fprintf_function)monitor_printf, mon);
1875}
1876
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001877static void hmp_info_numa(Monitor *mon, const QDict *qdict)
aliguori030ea372009-04-21 22:30:47 +00001878{
aliguorib28b6232009-04-22 20:20:29 +00001879 int i;
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01001880 CPUState *cpu;
zhanghailiang5b009e42014-11-04 19:49:30 +08001881 uint64_t *node_mem;
aliguori030ea372009-04-21 22:30:47 +00001882
zhanghailiang5b009e42014-11-04 19:49:30 +08001883 node_mem = g_new0(uint64_t, nb_numa_nodes);
1884 query_numa_node_mem(node_mem);
aliguori030ea372009-04-21 22:30:47 +00001885 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1886 for (i = 0; i < nb_numa_nodes; i++) {
1887 monitor_printf(mon, "node %d cpus:", i);
Andreas Färberbdc44642013-06-24 23:50:24 +02001888 CPU_FOREACH(cpu) {
Andreas Färber1b1ed8d2012-12-17 04:22:03 +01001889 if (cpu->numa_node == i) {
Andreas Färber55e5c282012-12-17 06:18:02 +01001890 monitor_printf(mon, " %d", cpu->cpu_index);
aliguori030ea372009-04-21 22:30:47 +00001891 }
1892 }
1893 monitor_printf(mon, "\n");
1894 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
zhanghailiang5b009e42014-11-04 19:49:30 +08001895 node_mem[i] >> 20);
aliguori030ea372009-04-21 22:30:47 +00001896 }
zhanghailiang5b009e42014-11-04 19:49:30 +08001897 g_free(node_mem);
aliguori030ea372009-04-21 22:30:47 +00001898}
1899
bellard5f1ce942006-02-08 22:40:15 +00001900#ifdef CONFIG_PROFILER
1901
Alexey Kardashevskiy89d5cbd2015-03-16 14:57:38 +11001902int64_t tcg_time;
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001903int64_t dev_time;
1904
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001905static void hmp_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00001906{
aliguori376253e2009-03-05 23:01:23 +00001907 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001908 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001909 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Alexey Kardashevskiy89d5cbd2015-03-16 14:57:38 +11001910 tcg_time, tcg_time / (double)get_ticks_per_sec());
1911 tcg_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001912 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001913}
1914#else
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001915static void hmp_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00001916{
aliguori376253e2009-03-05 23:01:23 +00001917 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001918}
1919#endif
1920
bellardec36b692006-07-16 18:57:03 +00001921/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001922static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001923
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001924static void hmp_info_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001925{
1926 int i;
1927 CaptureState *s;
1928
1929 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001930 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001931 s->ops.info (s->opaque);
1932 }
1933}
1934
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001935static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001936{
1937 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001938 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001939 CaptureState *s;
1940
1941 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1942 if (i == n) {
1943 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001944 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001945 g_free (s);
bellardec36b692006-07-16 18:57:03 +00001946 return;
1947 }
1948 }
1949}
1950
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001951static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001952{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001953 const char *path = qdict_get_str(qdict, "path");
1954 int has_freq = qdict_haskey(qdict, "freq");
1955 int freq = qdict_get_try_int(qdict, "freq", -1);
1956 int has_bits = qdict_haskey(qdict, "bits");
1957 int bits = qdict_get_try_int(qdict, "bits", -1);
1958 int has_channels = qdict_haskey(qdict, "nchannels");
1959 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00001960 CaptureState *s;
1961
Anthony Liguori7267c092011-08-20 22:09:37 -05001962 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001963
1964 freq = has_freq ? freq : 44100;
1965 bits = has_bits ? bits : 16;
1966 nchannels = has_channels ? nchannels : 2;
1967
1968 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09001969 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05001970 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09001971 return;
bellardec36b692006-07-16 18:57:03 +00001972 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00001973 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00001974}
bellardec36b692006-07-16 18:57:03 +00001975
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001976static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00001977{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001978 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00001979
aliguori76655d62009-03-06 20:27:37 +00001980 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001981 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00001982 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001983 return acl;
1984}
aliguori76655d62009-03-06 20:27:37 +00001985
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001986static void hmp_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001987{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001988 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001989 qemu_acl *acl = find_acl(mon, aclname);
1990 qemu_acl_entry *entry;
1991 int i = 0;
1992
1993 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001994 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001995 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00001996 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00001997 i++;
1998 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001999 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002000 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002001 }
2002}
2003
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002004static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002005{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002006 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002007 qemu_acl *acl = find_acl(mon, aclname);
2008
2009 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002010 qemu_acl_reset(acl);
2011 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002012 }
2013}
aliguori76655d62009-03-06 20:27:37 +00002014
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002015static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002016{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002017 const char *aclname = qdict_get_str(qdict, "aclname");
2018 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002019 qemu_acl *acl = find_acl(mon, aclname);
2020
2021 if (acl) {
2022 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002023 acl->defaultDeny = 0;
2024 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002025 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002026 acl->defaultDeny = 1;
2027 monitor_printf(mon, "acl: policy set to 'deny'\n");
2028 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002029 monitor_printf(mon, "acl: unknown policy '%s', "
2030 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002031 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002032 }
2033}
aliguori76655d62009-03-06 20:27:37 +00002034
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002035static void hmp_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002036{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002037 const char *aclname = qdict_get_str(qdict, "aclname");
2038 const char *match = qdict_get_str(qdict, "match");
2039 const char *policy = qdict_get_str(qdict, "policy");
2040 int has_index = qdict_haskey(qdict, "index");
2041 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002042 qemu_acl *acl = find_acl(mon, aclname);
2043 int deny, ret;
2044
2045 if (acl) {
2046 if (strcmp(policy, "allow") == 0) {
2047 deny = 0;
2048 } else if (strcmp(policy, "deny") == 0) {
2049 deny = 1;
2050 } else {
2051 monitor_printf(mon, "acl: unknown policy '%s', "
2052 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002053 return;
2054 }
aliguori28a76be2009-03-06 20:27:40 +00002055 if (has_index)
2056 ret = qemu_acl_insert(acl, deny, match, index);
2057 else
2058 ret = qemu_acl_append(acl, deny, match);
2059 if (ret < 0)
2060 monitor_printf(mon, "acl: unable to add acl entry\n");
2061 else
2062 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002063 }
2064}
aliguori76655d62009-03-06 20:27:37 +00002065
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002066static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002067{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002068 const char *aclname = qdict_get_str(qdict, "aclname");
2069 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002070 qemu_acl *acl = find_acl(mon, aclname);
2071 int ret;
aliguori76655d62009-03-06 20:27:37 +00002072
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002073 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002074 ret = qemu_acl_remove(acl, match);
2075 if (ret < 0)
2076 monitor_printf(mon, "acl: no matching acl entry\n");
2077 else
2078 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002079 }
2080}
2081
Huang Ying79c4f6b2009-06-23 10:05:14 +08002082#if defined(TARGET_I386)
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002083static void hmp_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002084{
Andreas Färber8c5cf3b2012-05-03 15:22:54 +02002085 X86CPU *cpu;
Andreas Färber55e5c282012-12-17 06:18:02 +01002086 CPUState *cs;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002087 int cpu_index = qdict_get_int(qdict, "cpu_index");
2088 int bank = qdict_get_int(qdict, "bank");
2089 uint64_t status = qdict_get_int(qdict, "status");
2090 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2091 uint64_t addr = qdict_get_int(qdict, "addr");
2092 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002093 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002094
Jan Kiszka747461c2011-03-02 08:56:10 +01002095 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2096 flags |= MCE_INJECT_BROADCAST;
2097 }
Andreas Färberc51a9442013-05-17 16:57:52 +02002098 cs = qemu_get_cpu(cpu_index);
2099 if (cs != NULL) {
2100 cpu = X86_CPU(cs);
2101 cpu_x86_inject_mce(mon, cpu, bank, status, mcg_status, addr, misc,
2102 flags);
Jin Dongming31ce5e02010-12-10 17:21:02 +09002103 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002104}
2105#endif
2106
Corey Bryant208c9d12012-06-22 14:36:09 -04002107void qmp_getfd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002108{
Anthony Liguoric227f092009-10-01 16:12:16 -05002109 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002110 int fd;
2111
Corey Bryant208c9d12012-06-22 14:36:09 -04002112 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002113 if (fd == -1) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002114 error_set(errp, QERR_FD_NOT_SUPPLIED);
2115 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002116 }
2117
2118 if (qemu_isdigit(fdname[0])) {
Stefan Hajnoczi0b9f0e22014-04-24 13:58:18 +02002119 close(fd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002120 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2121 "a name not starting with a digit");
2122 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002123 }
2124
Corey Bryant208c9d12012-06-22 14:36:09 -04002125 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002126 if (strcmp(monfd->name, fdname) != 0) {
2127 continue;
2128 }
2129
2130 close(monfd->fd);
2131 monfd->fd = fd;
Corey Bryant208c9d12012-06-22 14:36:09 -04002132 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002133 }
2134
Anthony Liguori7267c092011-08-20 22:09:37 -05002135 monfd = g_malloc0(sizeof(mon_fd_t));
2136 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002137 monfd->fd = fd;
2138
Corey Bryant208c9d12012-06-22 14:36:09 -04002139 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002140}
2141
Corey Bryant208c9d12012-06-22 14:36:09 -04002142void qmp_closefd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002143{
Anthony Liguoric227f092009-10-01 16:12:16 -05002144 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002145
Corey Bryant208c9d12012-06-22 14:36:09 -04002146 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002147 if (strcmp(monfd->name, fdname) != 0) {
2148 continue;
2149 }
2150
Blue Swirl72cf2d42009-09-12 07:36:22 +00002151 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002152 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002153 g_free(monfd->name);
2154 g_free(monfd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002155 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002156 }
2157
Corey Bryant208c9d12012-06-22 14:36:09 -04002158 error_set(errp, QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002159}
2160
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002161static void hmp_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002162{
Luiz Capitulino13548692011-07-29 15:36:43 -03002163 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002164 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002165
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002166 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002167
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002168 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002169 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002170 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002171}
2172
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002173int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
Mark McLoughlin7768e042009-07-22 09:11:41 +01002174{
Anthony Liguoric227f092009-10-01 16:12:16 -05002175 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002176
Blue Swirl72cf2d42009-09-12 07:36:22 +00002177 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002178 int fd;
2179
2180 if (strcmp(monfd->name, fdname) != 0) {
2181 continue;
2182 }
2183
2184 fd = monfd->fd;
2185
2186 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002187 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002188 g_free(monfd->name);
2189 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002190
2191 return fd;
2192 }
2193
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002194 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002195 return -1;
2196}
2197
Corey Bryantba1c0482012-08-14 16:43:43 -04002198static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2199{
2200 MonFdsetFd *mon_fdset_fd;
2201 MonFdsetFd *mon_fdset_fd_next;
2202
2203 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
Corey Bryantebe52b52012-10-18 15:19:33 -04002204 if ((mon_fdset_fd->removed ||
2205 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2206 runstate_is_running()) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002207 close(mon_fdset_fd->fd);
2208 g_free(mon_fdset_fd->opaque);
2209 QLIST_REMOVE(mon_fdset_fd, next);
2210 g_free(mon_fdset_fd);
2211 }
2212 }
2213
Corey Bryantadb696f2012-08-14 16:43:47 -04002214 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002215 QLIST_REMOVE(mon_fdset, next);
2216 g_free(mon_fdset);
2217 }
2218}
2219
Corey Bryantefb87c12012-08-14 16:43:48 -04002220static void monitor_fdsets_cleanup(void)
2221{
2222 MonFdset *mon_fdset;
2223 MonFdset *mon_fdset_next;
2224
2225 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2226 monitor_fdset_cleanup(mon_fdset);
2227 }
2228}
2229
Corey Bryantba1c0482012-08-14 16:43:43 -04002230AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2231 const char *opaque, Error **errp)
2232{
2233 int fd;
2234 Monitor *mon = cur_mon;
Corey Bryantba1c0482012-08-14 16:43:43 -04002235 AddfdInfo *fdinfo;
2236
2237 fd = qemu_chr_fe_get_msgfd(mon->chr);
2238 if (fd == -1) {
2239 error_set(errp, QERR_FD_NOT_SUPPLIED);
2240 goto error;
2241 }
2242
Corey Bryante446f702012-10-18 15:19:32 -04002243 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2244 has_opaque, opaque, errp);
2245 if (fdinfo) {
2246 return fdinfo;
Corey Bryant9ac54af2012-10-18 15:19:31 -04002247 }
2248
Corey Bryantba1c0482012-08-14 16:43:43 -04002249error:
2250 if (fd != -1) {
2251 close(fd);
2252 }
2253 return NULL;
2254}
2255
2256void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2257{
2258 MonFdset *mon_fdset;
2259 MonFdsetFd *mon_fdset_fd;
2260 char fd_str[60];
2261
2262 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2263 if (mon_fdset->id != fdset_id) {
2264 continue;
2265 }
2266 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2267 if (has_fd) {
2268 if (mon_fdset_fd->fd != fd) {
2269 continue;
2270 }
2271 mon_fdset_fd->removed = true;
2272 break;
2273 } else {
2274 mon_fdset_fd->removed = true;
2275 }
2276 }
2277 if (has_fd && !mon_fdset_fd) {
2278 goto error;
2279 }
2280 monitor_fdset_cleanup(mon_fdset);
2281 return;
2282 }
2283
2284error:
2285 if (has_fd) {
2286 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2287 fdset_id, fd);
2288 } else {
2289 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2290 }
2291 error_set(errp, QERR_FD_NOT_FOUND, fd_str);
2292}
2293
2294FdsetInfoList *qmp_query_fdsets(Error **errp)
2295{
2296 MonFdset *mon_fdset;
2297 MonFdsetFd *mon_fdset_fd;
2298 FdsetInfoList *fdset_list = NULL;
2299
2300 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2301 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2302 FdsetFdInfoList *fdsetfd_list = NULL;
2303
2304 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2305 fdset_info->value->fdset_id = mon_fdset->id;
2306
2307 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2308 FdsetFdInfoList *fdsetfd_info;
2309
2310 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2311 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2312 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2313 if (mon_fdset_fd->opaque) {
2314 fdsetfd_info->value->has_opaque = true;
2315 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2316 } else {
2317 fdsetfd_info->value->has_opaque = false;
2318 }
2319
2320 fdsetfd_info->next = fdsetfd_list;
2321 fdsetfd_list = fdsetfd_info;
2322 }
2323
2324 fdset_info->value->fds = fdsetfd_list;
2325
2326 fdset_info->next = fdset_list;
2327 fdset_list = fdset_info;
2328 }
2329
2330 return fdset_list;
2331}
2332
Corey Bryante446f702012-10-18 15:19:32 -04002333AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2334 bool has_opaque, const char *opaque,
2335 Error **errp)
2336{
2337 MonFdset *mon_fdset = NULL;
2338 MonFdsetFd *mon_fdset_fd;
2339 AddfdInfo *fdinfo;
2340
2341 if (has_fdset_id) {
2342 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2343 /* Break if match found or match impossible due to ordering by ID */
2344 if (fdset_id <= mon_fdset->id) {
2345 if (fdset_id < mon_fdset->id) {
2346 mon_fdset = NULL;
2347 }
2348 break;
2349 }
2350 }
2351 }
2352
2353 if (mon_fdset == NULL) {
2354 int64_t fdset_id_prev = -1;
2355 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2356
2357 if (has_fdset_id) {
2358 if (fdset_id < 0) {
2359 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2360 "a non-negative value");
2361 return NULL;
2362 }
2363 /* Use specified fdset ID */
2364 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2365 mon_fdset_cur = mon_fdset;
2366 if (fdset_id < mon_fdset_cur->id) {
2367 break;
2368 }
2369 }
2370 } else {
2371 /* Use first available fdset ID */
2372 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2373 mon_fdset_cur = mon_fdset;
2374 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2375 fdset_id_prev = mon_fdset_cur->id;
2376 continue;
2377 }
2378 break;
2379 }
2380 }
2381
2382 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2383 if (has_fdset_id) {
2384 mon_fdset->id = fdset_id;
2385 } else {
2386 mon_fdset->id = fdset_id_prev + 1;
2387 }
2388
2389 /* The fdset list is ordered by fdset ID */
2390 if (!mon_fdset_cur) {
2391 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2392 } else if (mon_fdset->id < mon_fdset_cur->id) {
2393 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2394 } else {
2395 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2396 }
2397 }
2398
2399 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2400 mon_fdset_fd->fd = fd;
2401 mon_fdset_fd->removed = false;
2402 if (has_opaque) {
2403 mon_fdset_fd->opaque = g_strdup(opaque);
2404 }
2405 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2406
2407 fdinfo = g_malloc0(sizeof(*fdinfo));
2408 fdinfo->fdset_id = mon_fdset->id;
2409 fdinfo->fd = mon_fdset_fd->fd;
2410
2411 return fdinfo;
2412}
2413
Corey Bryantadb696f2012-08-14 16:43:47 -04002414int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2415{
Blue Swirlb2dc64c2012-08-18 20:14:54 +00002416#ifndef _WIN32
Corey Bryantadb696f2012-08-14 16:43:47 -04002417 MonFdset *mon_fdset;
2418 MonFdsetFd *mon_fdset_fd;
2419 int mon_fd_flags;
2420
Corey Bryantadb696f2012-08-14 16:43:47 -04002421 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2422 if (mon_fdset->id != fdset_id) {
2423 continue;
2424 }
2425 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2426 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2427 if (mon_fd_flags == -1) {
2428 return -1;
2429 }
2430
2431 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2432 return mon_fdset_fd->fd;
2433 }
2434 }
2435 errno = EACCES;
2436 return -1;
2437 }
2438#endif
2439
2440 errno = ENOENT;
2441 return -1;
2442}
2443
2444int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2445{
2446 MonFdset *mon_fdset;
2447 MonFdsetFd *mon_fdset_fd_dup;
2448
2449 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2450 if (mon_fdset->id != fdset_id) {
2451 continue;
2452 }
2453 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2454 if (mon_fdset_fd_dup->fd == dup_fd) {
2455 return -1;
2456 }
2457 }
2458 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2459 mon_fdset_fd_dup->fd = dup_fd;
2460 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2461 return 0;
2462 }
2463 return -1;
2464}
2465
2466static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2467{
2468 MonFdset *mon_fdset;
2469 MonFdsetFd *mon_fdset_fd_dup;
2470
2471 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2472 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2473 if (mon_fdset_fd_dup->fd == dup_fd) {
2474 if (remove) {
2475 QLIST_REMOVE(mon_fdset_fd_dup, next);
2476 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2477 monitor_fdset_cleanup(mon_fdset);
2478 }
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002479 return -1;
2480 } else {
2481 return mon_fdset->id;
Corey Bryantadb696f2012-08-14 16:43:47 -04002482 }
Corey Bryantadb696f2012-08-14 16:43:47 -04002483 }
2484 }
2485 }
2486 return -1;
2487}
2488
2489int monitor_fdset_dup_fd_find(int dup_fd)
2490{
2491 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2492}
2493
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002494void monitor_fdset_dup_fd_remove(int dup_fd)
Corey Bryantadb696f2012-08-14 16:43:47 -04002495{
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002496 monitor_fdset_dup_fd_find_remove(dup_fd, true);
Corey Bryantadb696f2012-08-14 16:43:47 -04002497}
2498
Markus Armbruster1677f4c2015-02-09 14:03:19 +01002499int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
Laszlo Ersek59063662014-04-10 10:24:31 +02002500{
2501 int fd;
2502 Error *local_err = NULL;
2503
2504 if (!qemu_isdigit(fdname[0]) && mon) {
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002505 fd = monitor_get_fd(mon, fdname, &local_err);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002506 } else {
2507 fd = qemu_parse_fd(fdname);
Laszlo Ersek59063662014-04-10 10:24:31 +02002508 if (fd == -1) {
2509 error_setg(&local_err, "Invalid file descriptor number '%s'",
2510 fdname);
2511 }
2512 }
2513 if (local_err) {
2514 error_propagate(errp, local_err);
2515 assert(fd == -1);
2516 } else {
2517 assert(fd != -1);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002518 }
2519
2520 return fd;
2521}
2522
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002523/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002524static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002525 {
2526 .name = "version",
2527 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002528 .params = "",
2529 .help = "show the version of QEMU",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002530 .mhandler.cmd = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 },
2532 {
2533 .name = "network",
2534 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 .params = "",
2536 .help = "show the network state",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002537 .mhandler.cmd = hmp_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002538 },
2539 {
2540 .name = "chardev",
2541 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 .params = "",
2543 .help = "show the character devices",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002544 .mhandler.cmd = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002545 },
2546 {
2547 .name = "block",
Kevin Wolfe6bb31e2014-09-15 12:19:14 +02002548 .args_type = "nodes:-n,verbose:-v,device:B?",
2549 .params = "[-n] [-v] [device]",
Wenchao Xiae73fe2b2013-06-06 12:28:01 +08002550 .help = "show info of one block device or all block devices "
Kevin Wolfe6bb31e2014-09-15 12:19:14 +02002551 "(-n: show named nodes; -v: show details)",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002552 .mhandler.cmd = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002553 },
2554 {
2555 .name = "blockstats",
2556 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 .params = "",
2558 .help = "show block device statistics",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002559 .mhandler.cmd = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002560 },
2561 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002562 .name = "block-jobs",
2563 .args_type = "",
2564 .params = "",
2565 .help = "show progress of ongoing block device operations",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002566 .mhandler.cmd = hmp_info_block_jobs,
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002567 },
2568 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 .name = "registers",
2570 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 .params = "",
2572 .help = "show the cpu registers",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002573 .mhandler.cmd = hmp_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002574 },
2575 {
2576 .name = "cpus",
2577 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002578 .params = "",
2579 .help = "show infos for each CPU",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002580 .mhandler.cmd = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 },
2582 {
2583 .name = "history",
2584 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 .params = "",
2586 .help = "show the command line history",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002587 .mhandler.cmd = hmp_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002588 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002589#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2590 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002591 {
2592 .name = "irq",
2593 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002594 .params = "",
2595 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002596#ifdef TARGET_SPARC
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002597 .mhandler.cmd = sun4m_hmp_info_irq,
Jan Kiszka661f1922011-10-16 11:53:13 +02002598#elif defined(TARGET_LM32)
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002599 .mhandler.cmd = lm32_hmp_info_irq,
Jan Kiszka661f1922011-10-16 11:53:13 +02002600#else
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002601 .mhandler.cmd = hmp_info_irq,
Jan Kiszka661f1922011-10-16 11:53:13 +02002602#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002603 },
2604 {
2605 .name = "pic",
2606 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 .params = "",
2608 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002609#ifdef TARGET_SPARC
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002610 .mhandler.cmd = sun4m_hmp_info_pic,
Jan Kiszka661f1922011-10-16 11:53:13 +02002611#elif defined(TARGET_LM32)
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002612 .mhandler.cmd = lm32_hmp_info_pic,
Jan Kiszka661f1922011-10-16 11:53:13 +02002613#else
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002614 .mhandler.cmd = hmp_info_pic,
Jan Kiszka661f1922011-10-16 11:53:13 +02002615#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002617#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002618 {
2619 .name = "pci",
2620 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002621 .params = "",
2622 .help = "show PCI info",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002623 .mhandler.cmd = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002624 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002625#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002626 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002627 {
2628 .name = "tlb",
2629 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002630 .params = "",
2631 .help = "show virtual to physical memory mappings",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002632 .mhandler.cmd = hmp_info_tlb,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002633 },
aurel327c664e22009-03-03 06:12:22 +00002634#endif
2635#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002636 {
2637 .name = "mem",
2638 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002639 .params = "",
2640 .help = "show the active virtual memory mappings",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002641 .mhandler.cmd = hmp_info_mem,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002642 },
bellardb86bda52004-09-18 19:32:46 +00002643#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002644 {
Blue Swirl314e2982011-09-11 20:22:05 +00002645 .name = "mtree",
2646 .args_type = "",
2647 .params = "",
2648 .help = "show memory tree",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002649 .mhandler.cmd = hmp_info_mtree,
Blue Swirl314e2982011-09-11 20:22:05 +00002650 },
2651 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002652 .name = "jit",
2653 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002654 .params = "",
2655 .help = "show dynamic compiler info",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002656 .mhandler.cmd = hmp_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002657 },
2658 {
Max Filippov246ae242014-11-02 11:04:18 +03002659 .name = "opcount",
2660 .args_type = "",
2661 .params = "",
2662 .help = "show dynamic compiler opcode counters",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002663 .mhandler.cmd = hmp_info_opcount,
Max Filippov246ae242014-11-02 11:04:18 +03002664 },
2665 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002666 .name = "kvm",
2667 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002668 .params = "",
2669 .help = "show KVM information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002670 .mhandler.cmd = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002671 },
2672 {
2673 .name = "numa",
2674 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002675 .params = "",
2676 .help = "show NUMA information",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002677 .mhandler.cmd = hmp_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002678 },
2679 {
2680 .name = "usb",
2681 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002682 .params = "",
2683 .help = "show guest USB devices",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002684 .mhandler.cmd = hmp_info_usb,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002685 },
2686 {
2687 .name = "usbhost",
2688 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002689 .params = "",
2690 .help = "show host USB devices",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002691 .mhandler.cmd = hmp_info_usbhost,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002692 },
2693 {
2694 .name = "profile",
2695 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002696 .params = "",
2697 .help = "show profiling information",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002698 .mhandler.cmd = hmp_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002699 },
2700 {
2701 .name = "capture",
2702 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002703 .params = "",
2704 .help = "show capture information",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002705 .mhandler.cmd = hmp_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002706 },
2707 {
2708 .name = "snapshots",
2709 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002710 .params = "",
2711 .help = "show the currently saved VM snapshots",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002712 .mhandler.cmd = hmp_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002713 },
2714 {
2715 .name = "status",
2716 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002717 .params = "",
2718 .help = "show the current VM status (running|paused)",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002719 .mhandler.cmd = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002720 },
2721 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002722 .name = "mice",
2723 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002724 .params = "",
2725 .help = "show which guest mouse is receiving events",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002726 .mhandler.cmd = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002727 },
2728 {
2729 .name = "vnc",
2730 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002731 .params = "",
2732 .help = "show the vnc server status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002733 .mhandler.cmd = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002734 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002735#if defined(CONFIG_SPICE)
2736 {
2737 .name = "spice",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show the spice server status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002741 .mhandler.cmd = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002742 },
2743#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002744 {
2745 .name = "name",
2746 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002747 .params = "",
2748 .help = "show the current VM name",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002749 .mhandler.cmd = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002750 },
2751 {
2752 .name = "uuid",
2753 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002754 .params = "",
2755 .help = "show the current VM UUID",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002756 .mhandler.cmd = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002757 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002758 {
2759 .name = "cpustats",
2760 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002761 .params = "",
2762 .help = "show CPU statistics",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002763 .mhandler.cmd = hmp_info_cpustats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002764 },
blueswir131a60e22007-10-26 18:42:59 +00002765#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002766 {
2767 .name = "usernet",
2768 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002769 .params = "",
2770 .help = "show user network stack connection states",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002771 .mhandler.cmd = hmp_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002772 },
blueswir131a60e22007-10-26 18:42:59 +00002773#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002774 {
2775 .name = "migrate",
2776 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002777 .params = "",
2778 .help = "show migration status",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002779 .mhandler.cmd = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002780 },
2781 {
Orit Wassermanbbf6da32012-08-06 21:42:47 +03002782 .name = "migrate_capabilities",
2783 .args_type = "",
2784 .params = "",
2785 .help = "show current migration capabilities",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002786 .mhandler.cmd = hmp_info_migrate_capabilities,
Orit Wassermanbbf6da32012-08-06 21:42:47 +03002787 },
2788 {
Liang Li50e9a622015-03-23 16:32:29 +08002789 .name = "migrate_parameters",
2790 .args_type = "",
2791 .params = "",
2792 .help = "show current migration parameters",
2793 .mhandler.cmd = hmp_info_migrate_parameters,
2794 },
2795 {
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03002796 .name = "migrate_cache_size",
2797 .args_type = "",
2798 .params = "",
2799 .help = "show current migration xbzrle cache size",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002800 .mhandler.cmd = hmp_info_migrate_cache_size,
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03002801 },
2802 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002803 .name = "balloon",
2804 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002805 .params = "",
2806 .help = "show balloon information",
Wenchao Xia5f11cb02013-01-14 14:06:26 +08002807 .mhandler.cmd = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002808 },
2809 {
2810 .name = "qtree",
2811 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002812 .params = "",
2813 .help = "show device tree",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002814 .mhandler.cmd = hmp_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002815 },
2816 {
2817 .name = "qdm",
2818 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002819 .params = "",
2820 .help = "show qdev device model list",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002821 .mhandler.cmd = hmp_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002822 },
2823 {
Andreas Färbera01ff752014-05-07 17:03:18 +02002824 .name = "qom-tree",
2825 .args_type = "path:s?",
2826 .params = "[path]",
2827 .help = "show QOM composition tree",
2828 .mhandler.cmd = hmp_info_qom_tree,
2829 },
2830 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002831 .name = "roms",
2832 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002833 .params = "",
2834 .help = "show roms",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002835 .mhandler.cmd = hmp_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002836 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302837 {
2838 .name = "trace-events",
2839 .args_type = "",
2840 .params = "",
2841 .help = "show available trace-events & their state",
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002842 .mhandler.cmd = hmp_info_trace_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05302843 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002844 {
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05002845 .name = "tpm",
2846 .args_type = "",
2847 .params = "",
2848 .help = "show the TPM device",
2849 .mhandler.cmd = hmp_info_tpm,
2850 },
2851 {
Hu Taoeb1539b2014-05-14 17:43:35 +08002852 .name = "memdev",
2853 .args_type = "",
2854 .params = "",
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02002855 .help = "show memory backends",
Hu Taoeb1539b2014-05-14 17:43:35 +08002856 .mhandler.cmd = hmp_info_memdev,
2857 },
2858 {
Zhu Guihuaa6318922014-09-23 13:35:19 +08002859 .name = "memory-devices",
2860 .args_type = "",
2861 .params = "",
2862 .help = "show memory devices",
2863 .mhandler.cmd = hmp_info_memory_devices,
2864 },
2865 {
Scott Feldmanfafa4d52015-06-10 18:21:21 -07002866 .name = "rocker",
2867 .args_type = "name:s",
2868 .params = "name",
2869 .help = "Show rocker switch",
2870 .mhandler.cmd = hmp_rocker,
2871 },
2872 {
2873 .name = "rocker-ports",
2874 .args_type = "name:s",
2875 .params = "name",
2876 .help = "Show rocker ports",
2877 .mhandler.cmd = hmp_rocker_ports,
2878 },
2879 {
2880 .name = "rocker-of-dpa-flows",
2881 .args_type = "name:s,tbl_id:i?",
2882 .params = "name [tbl_id]",
2883 .help = "Show rocker OF-DPA flow tables",
2884 .mhandler.cmd = hmp_rocker_of_dpa_flows,
2885 },
2886 {
2887 .name = "rocker-of-dpa-groups",
2888 .args_type = "name:s,type:i?",
2889 .params = "name [type]",
2890 .help = "Show rocker OF-DPA groups",
2891 .mhandler.cmd = hmp_rocker_of_dpa_groups,
2892 },
2893 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002894 .name = NULL,
2895 },
bellard9dc39cb2004-03-14 21:38:27 +00002896};
2897
Wenchao Xiaa13ced52013-01-14 14:06:28 +08002898/* mon_cmds and info_cmds would be sorted at runtime */
2899static mon_cmd_t mon_cmds[] = {
2900#include "hmp-commands.h"
2901 { NULL, NULL, },
2902};
2903
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002904static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05002905#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002906 { /* NULL */ },
2907};
2908
bellard9307c4c2004-04-04 12:57:25 +00002909/*******************************************************************/
2910
2911static const char *pch;
Peter Maydell6ab7e542013-02-20 15:21:09 +00002912static sigjmp_buf expr_env;
bellard9307c4c2004-04-04 12:57:25 +00002913
bellard92a31b12005-02-10 22:00:52 +00002914#define MD_TLONG 0
2915#define MD_I32 1
2916
bellard9307c4c2004-04-04 12:57:25 +00002917typedef struct MonitorDef {
2918 const char *name;
2919 int offset;
blueswir18662d652008-10-02 18:32:44 +00002920 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002921 int type;
bellard9307c4c2004-04-04 12:57:25 +00002922} MonitorDef;
2923
bellard57206fd2004-04-25 18:54:52 +00002924#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002925static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002926{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002927 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002928 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002929}
2930#endif
2931
bellarda541f292004-04-12 20:39:29 +00002932#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002933static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002934{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002935 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002936 unsigned int u;
2937 int i;
2938
2939 u = 0;
2940 for (i = 0; i < 8; i++)
Paolo Bonzinid2981182014-08-28 19:14:59 +02002941 u |= env->crf[i] << (32 - (4 * (i + 1)));
bellarda541f292004-04-12 20:39:29 +00002942
2943 return u;
2944}
2945
blueswir18662d652008-10-02 18:32:44 +00002946static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002947{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002948 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002949 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002950}
2951
blueswir18662d652008-10-02 18:32:44 +00002952static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002953{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002954 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002955 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002956}
bellard9fddaa02004-05-21 12:59:32 +00002957
blueswir18662d652008-10-02 18:32:44 +00002958static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002959{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002960 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002961 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002962}
2963
blueswir18662d652008-10-02 18:32:44 +00002964static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002965{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002966 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002967 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002968}
2969
blueswir18662d652008-10-02 18:32:44 +00002970static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002971{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002972 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002973 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002974}
bellarda541f292004-04-12 20:39:29 +00002975#endif
2976
bellarde95c8d52004-09-30 22:22:08 +00002977#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002978#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002979static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002980{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002981 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002982
2983 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002984}
bellard7b936c02005-10-30 17:05:13 +00002985#endif
bellarde95c8d52004-09-30 22:22:08 +00002986
blueswir18662d652008-10-02 18:32:44 +00002987static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002988{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002989 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002990 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002991}
2992#endif
2993
blueswir18662d652008-10-02 18:32:44 +00002994static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002995#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002996
2997#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01002998 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2999 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
3000 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00003001
Andreas Färbere59d1672012-02-16 00:40:47 +01003002 { "eax", offsetof(CPUX86State, regs[0]) },
3003 { "ecx", offsetof(CPUX86State, regs[1]) },
3004 { "edx", offsetof(CPUX86State, regs[2]) },
3005 { "ebx", offsetof(CPUX86State, regs[3]) },
3006 { "esp|sp", offsetof(CPUX86State, regs[4]) },
3007 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
3008 { "esi", offsetof(CPUX86State, regs[6]) },
3009 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00003010#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01003011 { "r8", offsetof(CPUX86State, regs[8]) },
3012 { "r9", offsetof(CPUX86State, regs[9]) },
3013 { "r10", offsetof(CPUX86State, regs[10]) },
3014 { "r11", offsetof(CPUX86State, regs[11]) },
3015 { "r12", offsetof(CPUX86State, regs[12]) },
3016 { "r13", offsetof(CPUX86State, regs[13]) },
3017 { "r14", offsetof(CPUX86State, regs[14]) },
3018 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00003019#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003020 { "eflags", offsetof(CPUX86State, eflags) },
3021 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00003022 SEG("cs", R_CS)
3023 SEG("ds", R_DS)
3024 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00003025 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00003026 SEG("fs", R_FS)
3027 SEG("gs", R_GS)
3028 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00003029#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00003030 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003031 { "r0", offsetof(CPUPPCState, gpr[0]) },
3032 { "r1", offsetof(CPUPPCState, gpr[1]) },
3033 { "r2", offsetof(CPUPPCState, gpr[2]) },
3034 { "r3", offsetof(CPUPPCState, gpr[3]) },
3035 { "r4", offsetof(CPUPPCState, gpr[4]) },
3036 { "r5", offsetof(CPUPPCState, gpr[5]) },
3037 { "r6", offsetof(CPUPPCState, gpr[6]) },
3038 { "r7", offsetof(CPUPPCState, gpr[7]) },
3039 { "r8", offsetof(CPUPPCState, gpr[8]) },
3040 { "r9", offsetof(CPUPPCState, gpr[9]) },
3041 { "r10", offsetof(CPUPPCState, gpr[10]) },
3042 { "r11", offsetof(CPUPPCState, gpr[11]) },
3043 { "r12", offsetof(CPUPPCState, gpr[12]) },
3044 { "r13", offsetof(CPUPPCState, gpr[13]) },
3045 { "r14", offsetof(CPUPPCState, gpr[14]) },
3046 { "r15", offsetof(CPUPPCState, gpr[15]) },
3047 { "r16", offsetof(CPUPPCState, gpr[16]) },
3048 { "r17", offsetof(CPUPPCState, gpr[17]) },
3049 { "r18", offsetof(CPUPPCState, gpr[18]) },
3050 { "r19", offsetof(CPUPPCState, gpr[19]) },
3051 { "r20", offsetof(CPUPPCState, gpr[20]) },
3052 { "r21", offsetof(CPUPPCState, gpr[21]) },
3053 { "r22", offsetof(CPUPPCState, gpr[22]) },
3054 { "r23", offsetof(CPUPPCState, gpr[23]) },
3055 { "r24", offsetof(CPUPPCState, gpr[24]) },
3056 { "r25", offsetof(CPUPPCState, gpr[25]) },
3057 { "r26", offsetof(CPUPPCState, gpr[26]) },
3058 { "r27", offsetof(CPUPPCState, gpr[27]) },
3059 { "r28", offsetof(CPUPPCState, gpr[28]) },
3060 { "r29", offsetof(CPUPPCState, gpr[29]) },
3061 { "r30", offsetof(CPUPPCState, gpr[30]) },
3062 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00003063 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003064 { "f0", offsetof(CPUPPCState, fpr[0]) },
3065 { "f1", offsetof(CPUPPCState, fpr[1]) },
3066 { "f2", offsetof(CPUPPCState, fpr[2]) },
3067 { "f3", offsetof(CPUPPCState, fpr[3]) },
3068 { "f4", offsetof(CPUPPCState, fpr[4]) },
3069 { "f5", offsetof(CPUPPCState, fpr[5]) },
3070 { "f6", offsetof(CPUPPCState, fpr[6]) },
3071 { "f7", offsetof(CPUPPCState, fpr[7]) },
3072 { "f8", offsetof(CPUPPCState, fpr[8]) },
3073 { "f9", offsetof(CPUPPCState, fpr[9]) },
3074 { "f10", offsetof(CPUPPCState, fpr[10]) },
3075 { "f11", offsetof(CPUPPCState, fpr[11]) },
3076 { "f12", offsetof(CPUPPCState, fpr[12]) },
3077 { "f13", offsetof(CPUPPCState, fpr[13]) },
3078 { "f14", offsetof(CPUPPCState, fpr[14]) },
3079 { "f15", offsetof(CPUPPCState, fpr[15]) },
3080 { "f16", offsetof(CPUPPCState, fpr[16]) },
3081 { "f17", offsetof(CPUPPCState, fpr[17]) },
3082 { "f18", offsetof(CPUPPCState, fpr[18]) },
3083 { "f19", offsetof(CPUPPCState, fpr[19]) },
3084 { "f20", offsetof(CPUPPCState, fpr[20]) },
3085 { "f21", offsetof(CPUPPCState, fpr[21]) },
3086 { "f22", offsetof(CPUPPCState, fpr[22]) },
3087 { "f23", offsetof(CPUPPCState, fpr[23]) },
3088 { "f24", offsetof(CPUPPCState, fpr[24]) },
3089 { "f25", offsetof(CPUPPCState, fpr[25]) },
3090 { "f26", offsetof(CPUPPCState, fpr[26]) },
3091 { "f27", offsetof(CPUPPCState, fpr[27]) },
3092 { "f28", offsetof(CPUPPCState, fpr[28]) },
3093 { "f29", offsetof(CPUPPCState, fpr[29]) },
3094 { "f30", offsetof(CPUPPCState, fpr[30]) },
3095 { "f31", offsetof(CPUPPCState, fpr[31]) },
3096 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00003097 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01003098 { "nip|pc", offsetof(CPUPPCState, nip) },
3099 { "lr", offsetof(CPUPPCState, lr) },
3100 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003101 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003102 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003103 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003104 { "msr", 0, &monitor_get_msr, },
3105 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003106 { "tbu", 0, &monitor_get_tbu, },
3107 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003108 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003109 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
3110 { "sr0", offsetof(CPUPPCState, sr[0]) },
3111 { "sr1", offsetof(CPUPPCState, sr[1]) },
3112 { "sr2", offsetof(CPUPPCState, sr[2]) },
3113 { "sr3", offsetof(CPUPPCState, sr[3]) },
3114 { "sr4", offsetof(CPUPPCState, sr[4]) },
3115 { "sr5", offsetof(CPUPPCState, sr[5]) },
3116 { "sr6", offsetof(CPUPPCState, sr[6]) },
3117 { "sr7", offsetof(CPUPPCState, sr[7]) },
3118 { "sr8", offsetof(CPUPPCState, sr[8]) },
3119 { "sr9", offsetof(CPUPPCState, sr[9]) },
3120 { "sr10", offsetof(CPUPPCState, sr[10]) },
3121 { "sr11", offsetof(CPUPPCState, sr[11]) },
3122 { "sr12", offsetof(CPUPPCState, sr[12]) },
3123 { "sr13", offsetof(CPUPPCState, sr[13]) },
3124 { "sr14", offsetof(CPUPPCState, sr[14]) },
3125 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003126 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01003127 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003128
Andreas Färbere59d1672012-02-16 00:40:47 +01003129 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
3130 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
Tom Musta04f1f782013-09-25 17:41:13 +10003131 { "dar", offsetof(CPUPPCState, spr[SPR_DAR]) },
3132 { "dsisr", offsetof(CPUPPCState, spr[SPR_DSISR]) },
3133 { "cfar", offsetof(CPUPPCState, spr[SPR_CFAR]) },
Andreas Färbere59d1672012-02-16 00:40:47 +01003134 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
3135 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
3136 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
3137 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
3138 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
3139 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
3140 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
3141 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
3142 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
3143 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
3144 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
3145 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
3146 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
3147 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
3148 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
3149 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
3150 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
3151 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
3152 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
3153 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
3154 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
3155 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
3156 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
3157 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
3158 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
3159 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
3160 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
3161 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
3162 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
3163 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
3164 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
3165 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
3166 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
3167 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
3168 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
3169 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
3170 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
3171 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
3172 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
3173 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
3174 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
3175 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3176 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3177 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3178 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3179 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3180 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3181 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3182 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3183 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3184 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3185 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3186 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3187 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3188 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3189 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3190 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3191 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3192 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3193 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3194 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3195 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3196 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3197 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003198
bellarde95c8d52004-09-30 22:22:08 +00003199#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01003200 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3201 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3202 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3203 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3204 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3205 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3206 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3207 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00003208 { "o0", 0, monitor_get_reg },
3209 { "o1", 1, monitor_get_reg },
3210 { "o2", 2, monitor_get_reg },
3211 { "o3", 3, monitor_get_reg },
3212 { "o4", 4, monitor_get_reg },
3213 { "o5", 5, monitor_get_reg },
3214 { "o6", 6, monitor_get_reg },
3215 { "o7", 7, monitor_get_reg },
3216 { "l0", 8, monitor_get_reg },
3217 { "l1", 9, monitor_get_reg },
3218 { "l2", 10, monitor_get_reg },
3219 { "l3", 11, monitor_get_reg },
3220 { "l4", 12, monitor_get_reg },
3221 { "l5", 13, monitor_get_reg },
3222 { "l6", 14, monitor_get_reg },
3223 { "l7", 15, monitor_get_reg },
3224 { "i0", 16, monitor_get_reg },
3225 { "i1", 17, monitor_get_reg },
3226 { "i2", 18, monitor_get_reg },
3227 { "i3", 19, monitor_get_reg },
3228 { "i4", 20, monitor_get_reg },
3229 { "i5", 21, monitor_get_reg },
3230 { "i6", 22, monitor_get_reg },
3231 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01003232 { "pc", offsetof(CPUSPARCState, pc) },
3233 { "npc", offsetof(CPUSPARCState, npc) },
3234 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00003235#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003236 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01003237 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003238#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003239 { "tbr", offsetof(CPUSPARCState, tbr) },
3240 { "fsr", offsetof(CPUSPARCState, fsr) },
3241 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3242 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3243 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3244 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3245 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3246 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3247 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3248 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3249 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3250 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3251 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3252 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3253 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3254 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3255 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3256 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3257 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3258 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3259 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3260 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3261 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3262 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3263 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3264 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3265 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3266 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3267 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3268 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3269 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3270 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3271 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3272 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00003273#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01003274 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3275 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3276 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3277 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3278 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3279 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3280 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3281 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3282 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3283 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3284 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3285 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3286 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3287 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3288 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3289 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3290 { "asi", offsetof(CPUSPARCState, asi) },
3291 { "pstate", offsetof(CPUSPARCState, pstate) },
3292 { "cansave", offsetof(CPUSPARCState, cansave) },
3293 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3294 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3295 { "wstate", offsetof(CPUSPARCState, wstate) },
3296 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3297 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00003298#endif
bellard9307c4c2004-04-04 12:57:25 +00003299#endif
3300 { NULL },
3301};
3302
Stefan Weil9c3175c2013-08-22 21:30:09 +02003303static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
3304expr_error(Monitor *mon, const char *fmt, ...)
bellard9dc39cb2004-03-14 21:38:27 +00003305{
Fam Zheng277acfe2013-08-20 10:58:21 +08003306 va_list ap;
3307 va_start(ap, fmt);
3308 monitor_vprintf(mon, fmt, ap);
3309 monitor_printf(mon, "\n");
3310 va_end(ap);
Peter Maydell6ab7e542013-02-20 15:21:09 +00003311 siglongjmp(expr_env, 1);
bellard9307c4c2004-04-04 12:57:25 +00003312}
3313
Markus Armbruster09b94182010-01-20 13:07:30 +01003314/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003315static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003316{
blueswir18662d652008-10-02 18:32:44 +00003317 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003318 void *ptr;
3319
bellard9307c4c2004-04-04 12:57:25 +00003320 for(md = monitor_defs; md->name != NULL; md++) {
3321 if (compare_cmd(name, md->name)) {
3322 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003323 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003324 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003325 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003326 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003327 switch(md->type) {
3328 case MD_I32:
3329 *pval = *(int32_t *)ptr;
3330 break;
3331 case MD_TLONG:
3332 *pval = *(target_long *)ptr;
3333 break;
3334 default:
3335 *pval = 0;
3336 break;
3337 }
bellard9307c4c2004-04-04 12:57:25 +00003338 }
3339 return 0;
3340 }
3341 }
3342 return -1;
3343}
3344
3345static void next(void)
3346{
Blue Swirl660f11b2009-07-31 21:16:51 +00003347 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003348 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003349 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003350 pch++;
3351 }
3352}
3353
aliguori376253e2009-03-05 23:01:23 +00003354static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003355
aliguori376253e2009-03-05 23:01:23 +00003356static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003357{
blueswir1c2efc952007-09-25 17:28:42 +00003358 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003359 char *p;
bellard6a00d602005-11-21 23:25:50 +00003360 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003361
3362 switch(*pch) {
3363 case '+':
3364 next();
aliguori376253e2009-03-05 23:01:23 +00003365 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003366 break;
3367 case '-':
3368 next();
aliguori376253e2009-03-05 23:01:23 +00003369 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003370 break;
3371 case '~':
3372 next();
aliguori376253e2009-03-05 23:01:23 +00003373 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003374 break;
3375 case '(':
3376 next();
aliguori376253e2009-03-05 23:01:23 +00003377 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003378 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003379 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003380 }
3381 next();
3382 break;
bellard81d09122004-07-14 17:21:37 +00003383 case '\'':
3384 pch++;
3385 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003386 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003387 n = *pch;
3388 pch++;
3389 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003390 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003391 next();
3392 break;
bellard9307c4c2004-04-04 12:57:25 +00003393 case '$':
3394 {
3395 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003396 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003397
bellard9307c4c2004-04-04 12:57:25 +00003398 pch++;
3399 q = buf;
3400 while ((*pch >= 'a' && *pch <= 'z') ||
3401 (*pch >= 'A' && *pch <= 'Z') ||
3402 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003403 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003404 if ((q - buf) < sizeof(buf) - 1)
3405 *q++ = *pch;
3406 pch++;
3407 }
blueswir1cd390082008-11-16 13:53:32 +00003408 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003409 pch++;
3410 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003411 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003412 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003413 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003414 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003415 }
3416 break;
3417 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003418 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003419 n = 0;
3420 break;
3421 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003422 errno = 0;
bellard4f4fbf72006-06-25 18:28:12 +00003423 n = strtoull(pch, &p, 0);
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003424 if (errno == ERANGE) {
3425 expr_error(mon, "number too large");
3426 }
bellard9307c4c2004-04-04 12:57:25 +00003427 if (pch == p) {
Fam Zheng277acfe2013-08-20 10:58:21 +08003428 expr_error(mon, "invalid char '%c' in expression", *p);
bellard9307c4c2004-04-04 12:57:25 +00003429 }
3430 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003431 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003432 pch++;
3433 break;
3434 }
3435 return n;
3436}
3437
3438
aliguori376253e2009-03-05 23:01:23 +00003439static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003440{
blueswir1c2efc952007-09-25 17:28:42 +00003441 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003442 int op;
ths3b46e622007-09-17 08:09:54 +00003443
aliguori376253e2009-03-05 23:01:23 +00003444 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003445 for(;;) {
3446 op = *pch;
3447 if (op != '*' && op != '/' && op != '%')
3448 break;
3449 next();
aliguori376253e2009-03-05 23:01:23 +00003450 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003451 switch(op) {
3452 default:
3453 case '*':
3454 val *= val2;
3455 break;
3456 case '/':
3457 case '%':
ths5fafdf22007-09-16 21:08:06 +00003458 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003459 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003460 if (op == '/')
3461 val /= val2;
3462 else
3463 val %= val2;
3464 break;
3465 }
3466 }
3467 return val;
3468}
3469
aliguori376253e2009-03-05 23:01:23 +00003470static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003471{
blueswir1c2efc952007-09-25 17:28:42 +00003472 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003473 int op;
bellard9307c4c2004-04-04 12:57:25 +00003474
aliguori376253e2009-03-05 23:01:23 +00003475 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003476 for(;;) {
3477 op = *pch;
3478 if (op != '&' && op != '|' && op != '^')
3479 break;
3480 next();
aliguori376253e2009-03-05 23:01:23 +00003481 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003482 switch(op) {
3483 default:
3484 case '&':
3485 val &= val2;
3486 break;
3487 case '|':
3488 val |= val2;
3489 break;
3490 case '^':
3491 val ^= val2;
3492 break;
3493 }
3494 }
3495 return val;
3496}
3497
aliguori376253e2009-03-05 23:01:23 +00003498static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003499{
blueswir1c2efc952007-09-25 17:28:42 +00003500 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003501 int op;
bellard9307c4c2004-04-04 12:57:25 +00003502
aliguori376253e2009-03-05 23:01:23 +00003503 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003504 for(;;) {
3505 op = *pch;
3506 if (op != '+' && op != '-')
3507 break;
3508 next();
aliguori376253e2009-03-05 23:01:23 +00003509 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003510 if (op == '+')
3511 val += val2;
3512 else
3513 val -= val2;
3514 }
3515 return val;
3516}
3517
aliguori376253e2009-03-05 23:01:23 +00003518static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003519{
3520 pch = *pp;
Peter Maydell6ab7e542013-02-20 15:21:09 +00003521 if (sigsetjmp(expr_env, 0)) {
bellard9307c4c2004-04-04 12:57:25 +00003522 *pp = pch;
3523 return -1;
3524 }
blueswir1cd390082008-11-16 13:53:32 +00003525 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003526 pch++;
aliguori376253e2009-03-05 23:01:23 +00003527 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003528 *pp = pch;
3529 return 0;
3530}
3531
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003532static int get_double(Monitor *mon, double *pval, const char **pp)
3533{
3534 const char *p = *pp;
3535 char *tailp;
3536 double d;
3537
3538 d = strtod(p, &tailp);
3539 if (tailp == p) {
3540 monitor_printf(mon, "Number expected\n");
3541 return -1;
3542 }
3543 if (d != d || d - d != 0) {
3544 /* NaN or infinity */
3545 monitor_printf(mon, "Bad number\n");
3546 return -1;
3547 }
3548 *pval = d;
3549 *pp = tailp;
3550 return 0;
3551}
3552
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003553/*
3554 * Store the command-name in cmdname, and return a pointer to
3555 * the remaining of the command string.
3556 */
3557static const char *get_command_name(const char *cmdline,
3558 char *cmdname, size_t nlen)
3559{
3560 size_t len;
3561 const char *p, *pstart;
3562
3563 p = cmdline;
3564 while (qemu_isspace(*p))
3565 p++;
3566 if (*p == '\0')
3567 return NULL;
3568 pstart = p;
3569 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3570 p++;
3571 len = p - pstart;
3572 if (len > nlen - 1)
3573 len = nlen - 1;
3574 memcpy(cmdname, pstart, len);
3575 cmdname[len] = '\0';
3576 return p;
3577}
3578
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003579/**
3580 * Read key of 'type' into 'key' and return the current
3581 * 'type' pointer.
3582 */
3583static char *key_get_info(const char *type, char **key)
3584{
3585 size_t len;
3586 char *p, *str;
3587
3588 if (*type == ',')
3589 type++;
3590
3591 p = strchr(type, ':');
3592 if (!p) {
3593 *key = NULL;
3594 return NULL;
3595 }
3596 len = p - type;
3597
Anthony Liguori7267c092011-08-20 22:09:37 -05003598 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003599 memcpy(str, type, len);
3600 str[len] = '\0';
3601
3602 *key = str;
3603 return ++p;
3604}
3605
bellard9307c4c2004-04-04 12:57:25 +00003606static int default_fmt_format = 'x';
3607static int default_fmt_size = 4;
3608
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003609static int is_valid_option(const char *c, const char *typestr)
3610{
3611 char option[3];
3612
3613 option[0] = '-';
3614 option[1] = *c;
3615 option[2] = '\0';
3616
3617 typestr = strstr(typestr, option);
3618 return (typestr != NULL);
3619}
3620
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003621static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3622 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003623{
3624 const mon_cmd_t *cmd;
3625
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003626 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003627 if (compare_cmd(cmdname, cmd->name)) {
3628 return cmd;
3629 }
3630 }
3631
3632 return NULL;
3633}
3634
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003635static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3636{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003637 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003638}
3639
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003640/*
3641 * Parse @cmdline according to command table @table.
3642 * If @cmdline is blank, return NULL.
3643 * If it can't be parsed, report to @mon, and return NULL.
3644 * Else, insert command arguments into @qdict, and return the command.
Peter Maydell085d8132013-03-18 17:20:07 +00003645 * If a sub-command table exists, and if @cmdline contains an additional string
3646 * for a sub-command, this function will try to search the sub-command table.
3647 * If no additional string for a sub-command is present, this function will
3648 * return the command found in @table.
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003649 * Do not assume the returned command points into @table! It doesn't
3650 * when the command is a sub-command.
3651 */
Anthony Liguoric227f092009-10-01 16:12:16 -05003652static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003653 const char *cmdline,
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003654 int start,
3655 mon_cmd_t *table,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003656 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003657{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003658 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003659 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003660 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003661 char cmdname[256];
3662 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003663 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003664
3665#ifdef DEBUG
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003666 monitor_printf(mon, "command='%s', start='%d'\n", cmdline, start);
bellard9dc39cb2004-03-14 21:38:27 +00003667#endif
ths3b46e622007-09-17 08:09:54 +00003668
bellard9307c4c2004-04-04 12:57:25 +00003669 /* extract the command name */
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003670 p = get_command_name(cmdline + start, cmdname, sizeof(cmdname));
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003671 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003672 return NULL;
ths3b46e622007-09-17 08:09:54 +00003673
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003674 cmd = search_dispatch_table(table, cmdname);
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003675 if (!cmd) {
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003676 monitor_printf(mon, "unknown command: '%.*s'\n",
3677 (int)(p - cmdline), cmdline);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003678 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003679 }
bellard9307c4c2004-04-04 12:57:25 +00003680
Wenchao Xia5f3d3352013-01-14 14:06:27 +08003681 /* filter out following useless space */
3682 while (qemu_isspace(*p)) {
3683 p++;
3684 }
3685 /* search sub command */
3686 if (cmd->sub_table != NULL) {
3687 /* check if user set additional command */
3688 if (*p == '\0') {
3689 return cmd;
3690 }
3691 return monitor_parse_command(mon, cmdline, p - cmdline,
3692 cmd->sub_table, qdict);
3693 }
3694
bellard9307c4c2004-04-04 12:57:25 +00003695 /* parse the parameters */
3696 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003697 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003698 typestr = key_get_info(typestr, &key);
3699 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003700 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003701 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003702 typestr++;
3703 switch(c) {
3704 case 'F':
bellard81d09122004-07-14 17:21:37 +00003705 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003706 case 's':
3707 {
3708 int ret;
ths3b46e622007-09-17 08:09:54 +00003709
blueswir1cd390082008-11-16 13:53:32 +00003710 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003711 p++;
3712 if (*typestr == '?') {
3713 typestr++;
3714 if (*p == '\0') {
3715 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003716 break;
bellard9307c4c2004-04-04 12:57:25 +00003717 }
3718 }
3719 ret = get_str(buf, sizeof(buf), &p);
3720 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003721 switch(c) {
3722 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003723 monitor_printf(mon, "%s: filename expected\n",
3724 cmdname);
bellard81d09122004-07-14 17:21:37 +00003725 break;
3726 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003727 monitor_printf(mon, "%s: block device name expected\n",
3728 cmdname);
bellard81d09122004-07-14 17:21:37 +00003729 break;
3730 default:
aliguori376253e2009-03-05 23:01:23 +00003731 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003732 break;
3733 }
bellard9307c4c2004-04-04 12:57:25 +00003734 goto fail;
3735 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003736 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003737 }
3738 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003739 case 'O':
3740 {
3741 QemuOptsList *opts_list;
3742 QemuOpts *opts;
3743
3744 opts_list = qemu_find_opts(key);
3745 if (!opts_list || opts_list->desc->name) {
3746 goto bad_type;
3747 }
3748 while (qemu_isspace(*p)) {
3749 p++;
3750 }
3751 if (!*p)
3752 break;
3753 if (get_str(buf, sizeof(buf), &p) < 0) {
3754 goto fail;
3755 }
3756 opts = qemu_opts_parse(opts_list, buf, 1);
3757 if (!opts) {
3758 goto fail;
3759 }
3760 qemu_opts_to_qdict(opts, qdict);
3761 qemu_opts_del(opts);
3762 }
3763 break;
bellard9307c4c2004-04-04 12:57:25 +00003764 case '/':
3765 {
3766 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003767
blueswir1cd390082008-11-16 13:53:32 +00003768 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003769 p++;
3770 if (*p == '/') {
3771 /* format found */
3772 p++;
3773 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003774 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003775 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003776 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003777 count = count * 10 + (*p - '0');
3778 p++;
3779 }
3780 }
3781 size = -1;
3782 format = -1;
3783 for(;;) {
3784 switch(*p) {
3785 case 'o':
3786 case 'd':
3787 case 'u':
3788 case 'x':
3789 case 'i':
3790 case 'c':
3791 format = *p++;
3792 break;
3793 case 'b':
3794 size = 1;
3795 p++;
3796 break;
3797 case 'h':
3798 size = 2;
3799 p++;
3800 break;
3801 case 'w':
3802 size = 4;
3803 p++;
3804 break;
3805 case 'g':
3806 case 'L':
3807 size = 8;
3808 p++;
3809 break;
3810 default:
3811 goto next;
3812 }
3813 }
3814 next:
blueswir1cd390082008-11-16 13:53:32 +00003815 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003816 monitor_printf(mon, "invalid char in format: '%c'\n",
3817 *p);
bellard9307c4c2004-04-04 12:57:25 +00003818 goto fail;
3819 }
bellard9307c4c2004-04-04 12:57:25 +00003820 if (format < 0)
3821 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003822 if (format != 'i') {
3823 /* for 'i', not specifying a size gives -1 as size */
3824 if (size < 0)
3825 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003826 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003827 }
bellard9307c4c2004-04-04 12:57:25 +00003828 default_fmt_format = format;
3829 } else {
3830 count = 1;
3831 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003832 if (format != 'i') {
3833 size = default_fmt_size;
3834 } else {
3835 size = -1;
3836 }
bellard9307c4c2004-04-04 12:57:25 +00003837 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003838 qdict_put(qdict, "count", qint_from_int(count));
3839 qdict_put(qdict, "format", qint_from_int(format));
3840 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003841 }
3842 break;
3843 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003844 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003845 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003846 {
blueswir1c2efc952007-09-25 17:28:42 +00003847 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003848
blueswir1cd390082008-11-16 13:53:32 +00003849 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003850 p++;
bellard34405572004-06-08 00:55:58 +00003851 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003852 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003853 if (*p == '\0') {
3854 typestr++;
3855 break;
3856 }
bellard34405572004-06-08 00:55:58 +00003857 } else {
3858 if (*p == '.') {
3859 p++;
blueswir1cd390082008-11-16 13:53:32 +00003860 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003861 p++;
bellard34405572004-06-08 00:55:58 +00003862 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003863 typestr++;
3864 break;
bellard34405572004-06-08 00:55:58 +00003865 }
3866 }
bellard13224a82006-07-14 22:03:35 +00003867 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003868 }
aliguori376253e2009-03-05 23:01:23 +00003869 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003870 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003871 /* Check if 'i' is greater than 32-bit */
3872 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3873 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3874 monitor_printf(mon, "integer is for 32-bit values\n");
3875 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003876 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003877 if (val < 0) {
3878 monitor_printf(mon, "enter a positive value\n");
3879 goto fail;
3880 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003881 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003882 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003883 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003884 }
3885 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003886 case 'o':
3887 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003888 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003889 char *end;
3890
3891 while (qemu_isspace(*p)) {
3892 p++;
3893 }
3894 if (*typestr == '?') {
3895 typestr++;
3896 if (*p == '\0') {
3897 break;
3898 }
3899 }
3900 val = strtosz(p, &end);
3901 if (val < 0) {
3902 monitor_printf(mon, "invalid size\n");
3903 goto fail;
3904 }
3905 qdict_put(qdict, key, qint_from_int(val));
3906 p = end;
3907 }
3908 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003909 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003910 {
3911 double val;
3912
3913 while (qemu_isspace(*p))
3914 p++;
3915 if (*typestr == '?') {
3916 typestr++;
3917 if (*p == '\0') {
3918 break;
3919 }
3920 }
3921 if (get_double(mon, &val, &p) < 0) {
3922 goto fail;
3923 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003924 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003925 switch (*p) {
3926 case 'm':
3927 val /= 1e3; p += 2; break;
3928 case 'u':
3929 val /= 1e6; p += 2; break;
3930 case 'n':
3931 val /= 1e9; p += 2; break;
3932 }
3933 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003934 if (*p && !qemu_isspace(*p)) {
3935 monitor_printf(mon, "Unknown unit suffix\n");
3936 goto fail;
3937 }
3938 qdict_put(qdict, key, qfloat_from_double(val));
3939 }
3940 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003941 case 'b':
3942 {
3943 const char *beg;
3944 int val;
3945
3946 while (qemu_isspace(*p)) {
3947 p++;
3948 }
3949 beg = p;
3950 while (qemu_isgraph(*p)) {
3951 p++;
3952 }
3953 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3954 val = 1;
3955 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3956 val = 0;
3957 } else {
3958 monitor_printf(mon, "Expected 'on' or 'off'\n");
3959 goto fail;
3960 }
3961 qdict_put(qdict, key, qbool_from_int(val));
3962 }
3963 break;
bellard9307c4c2004-04-04 12:57:25 +00003964 case '-':
3965 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003966 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003967 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003968 /* option */
ths3b46e622007-09-17 08:09:54 +00003969
bellard9307c4c2004-04-04 12:57:25 +00003970 c = *typestr++;
3971 if (c == '\0')
3972 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003973 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003974 p++;
bellard9307c4c2004-04-04 12:57:25 +00003975 if (*p == '-') {
3976 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003977 if(c != *p) {
3978 if(!is_valid_option(p, typestr)) {
3979
3980 monitor_printf(mon, "%s: unsupported option -%c\n",
3981 cmdname, *p);
3982 goto fail;
3983 } else {
3984 skip_key = 1;
3985 }
bellard9307c4c2004-04-04 12:57:25 +00003986 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003987 if(skip_key) {
3988 p = tmp;
3989 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003990 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003991 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003992 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003993 }
bellard9307c4c2004-04-04 12:57:25 +00003994 }
bellard9307c4c2004-04-04 12:57:25 +00003995 }
3996 break;
Wenchao Xia129be002013-08-27 20:38:26 +08003997 case 'S':
3998 {
3999 /* package all remaining string */
4000 int len;
4001
4002 while (qemu_isspace(*p)) {
4003 p++;
4004 }
4005 if (*typestr == '?') {
4006 typestr++;
4007 if (*p == '\0') {
4008 /* no remaining string: NULL argument */
4009 break;
4010 }
4011 }
4012 len = strlen(p);
4013 if (len <= 0) {
4014 monitor_printf(mon, "%s: string expected\n",
4015 cmdname);
4016 break;
4017 }
4018 qdict_put(qdict, key, qstring_from_str(p));
4019 p += len;
4020 }
4021 break;
bellard9307c4c2004-04-04 12:57:25 +00004022 default:
4023 bad_type:
aliguori376253e2009-03-05 23:01:23 +00004024 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00004025 goto fail;
4026 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004027 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004028 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00004029 }
4030 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00004031 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004032 p++;
4033 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00004034 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4035 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00004036 goto fail;
4037 }
4038
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004039 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004040
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004041fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05004042 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004043 return NULL;
4044}
4045
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004046void monitor_set_error(Monitor *mon, QError *qerror)
4047{
4048 /* report only the first error */
4049 if (!mon->error) {
4050 mon->error = qerror;
4051 } else {
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004052 QDECREF(qerror);
4053 }
4054}
4055
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01004056static void handle_hmp_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004057{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004058 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05004059 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004060
4061 qdict = qdict_new();
4062
Wenchao Xia77172392013-08-27 20:38:20 +08004063 cmd = monitor_parse_command(mon, cmdline, 0, mon->cmd_table, qdict);
Markus Armbruster8a4f5012015-03-05 18:50:05 +01004064 if (cmd) {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03004065 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004066 }
4067
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004068 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00004069}
4070
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004071static void cmd_completion(Monitor *mon, const char *name, const char *list)
bellard81d09122004-07-14 17:21:37 +00004072{
4073 const char *p, *pstart;
4074 char cmd[128];
4075 int len;
4076
4077 p = list;
4078 for(;;) {
4079 pstart = p;
4080 p = strchr(p, '|');
4081 if (!p)
4082 p = pstart + strlen(pstart);
4083 len = p - pstart;
4084 if (len > sizeof(cmd) - 2)
4085 len = sizeof(cmd) - 2;
4086 memcpy(cmd, pstart, len);
4087 cmd[len] = '\0';
4088 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004089 readline_add_completion(mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004090 }
4091 if (*p == '\0')
4092 break;
4093 p++;
4094 }
4095}
4096
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004097static void file_completion(Monitor *mon, const char *input)
bellard81d09122004-07-14 17:21:37 +00004098{
4099 DIR *ffs;
4100 struct dirent *d;
4101 char path[1024];
4102 char file[1024], file_prefix[1024];
4103 int input_path_len;
4104 const char *p;
4105
ths5fafdf22007-09-16 21:08:06 +00004106 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004107 if (!p) {
4108 input_path_len = 0;
4109 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004110 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004111 } else {
4112 input_path_len = p - input + 1;
4113 memcpy(path, input, input_path_len);
4114 if (input_path_len > sizeof(path) - 1)
4115 input_path_len = sizeof(path) - 1;
4116 path[input_path_len] = '\0';
4117 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4118 }
4119#ifdef DEBUG_COMPLETION
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004120 monitor_printf(mon, "input='%s' path='%s' prefix='%s'\n",
aliguori376253e2009-03-05 23:01:23 +00004121 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004122#endif
4123 ffs = opendir(path);
4124 if (!ffs)
4125 return;
4126 for(;;) {
4127 struct stat sb;
4128 d = readdir(ffs);
4129 if (!d)
4130 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004131
4132 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4133 continue;
4134 }
4135
bellard81d09122004-07-14 17:21:37 +00004136 if (strstart(d->d_name, file_prefix, NULL)) {
4137 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004138 if (input_path_len < sizeof(file))
4139 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4140 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004141 /* stat the file to find out if it's a directory.
4142 * In that case add a slash to speed up typing long paths
4143 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004144 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00004145 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004146 }
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004147 readline_add_completion(mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004148 }
4149 }
4150 closedir(ffs);
4151}
4152
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004153static const char *next_arg_type(const char *typestr)
4154{
4155 const char *p = strchr(typestr, ':');
4156 return (p != NULL ? ++p : typestr);
4157}
4158
Hani Benhabiles40d19392014-05-07 23:41:30 +01004159static void add_completion_option(ReadLineState *rs, const char *str,
4160 const char *option)
4161{
4162 if (!str || !option) {
4163 return;
4164 }
4165 if (!strncmp(option, str, strlen(str))) {
4166 readline_add_completion(rs, option);
4167 }
4168}
4169
Hani Benhabiles13e315d2014-05-07 23:41:29 +01004170void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4171{
4172 size_t len;
4173 ChardevBackendInfoList *list, *start;
4174
4175 if (nb_args != 2) {
4176 return;
4177 }
4178 len = strlen(str);
4179 readline_set_completion_index(rs, len);
4180
4181 start = list = qmp_query_chardev_backends(NULL);
4182 while (list) {
4183 const char *chr_name = list->value->name;
4184
4185 if (!strncmp(chr_name, str, len)) {
4186 readline_add_completion(rs, chr_name);
4187 }
4188 list = list->next;
4189 }
4190 qapi_free_ChardevBackendInfoList(start);
4191}
4192
Hani Benhabilesb162b492014-05-07 23:41:31 +01004193void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4194{
4195 size_t len;
4196 int i;
4197
4198 if (nb_args != 2) {
4199 return;
4200 }
4201 len = strlen(str);
4202 readline_set_completion_index(rs, len);
4203 for (i = 0; NetClientOptionsKind_lookup[i]; i++) {
4204 add_completion_option(rs, str, NetClientOptionsKind_lookup[i]);
4205 }
4206}
4207
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004208void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004209{
4210 GSList *list, *elt;
4211 size_t len;
4212
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004213 if (nb_args != 2) {
4214 return;
4215 }
4216
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004217 len = strlen(str);
4218 readline_set_completion_index(rs, len);
4219 list = elt = object_class_get_list(TYPE_DEVICE, false);
4220 while (elt) {
4221 const char *name;
4222 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
4223 TYPE_DEVICE);
4224 name = object_class_get_name(OBJECT_CLASS(dc));
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004225
4226 if (!dc->cannot_instantiate_with_device_add_yet
4227 && !strncmp(name, str, len)) {
Hani Benhabiles992d3e62014-02-06 23:30:11 +01004228 readline_add_completion(rs, name);
4229 }
4230 elt = elt->next;
4231 }
4232 g_slist_free(list);
4233}
4234
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004235void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles1094fd32014-02-06 23:30:13 +01004236{
4237 GSList *list, *elt;
4238 size_t len;
4239
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004240 if (nb_args != 2) {
4241 return;
4242 }
4243
Hani Benhabiles1094fd32014-02-06 23:30:13 +01004244 len = strlen(str);
4245 readline_set_completion_index(rs, len);
4246 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
4247 while (elt) {
4248 const char *name;
4249
4250 name = object_class_get_name(OBJECT_CLASS(elt->data));
4251 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
4252 readline_add_completion(rs, name);
4253 }
4254 elt = elt->next;
4255 }
4256 g_slist_free(list);
4257}
4258
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08004259static void peripheral_device_del_completion(ReadLineState *rs,
4260 const char *str, size_t len)
4261{
Marcel Apfelbaum4cae4d52014-11-26 13:50:01 +02004262 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
4263 GSList *list, *item;
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08004264
Marcel Apfelbaum4cae4d52014-11-26 13:50:01 +02004265 list = qdev_build_hotpluggable_device_list(peripheral);
4266 if (!list) {
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08004267 return;
4268 }
4269
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08004270 for (item = list; item; item = g_slist_next(item)) {
4271 DeviceState *dev = item->data;
4272
4273 if (dev->id && !strncmp(str, dev->id, len)) {
4274 readline_add_completion(rs, dev->id);
4275 }
4276 }
4277
4278 g_slist_free(list);
4279}
4280
Hani Benhabiles6297d9a2014-05-07 23:41:28 +01004281void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4282{
4283 size_t len;
4284 ChardevInfoList *list, *start;
4285
4286 if (nb_args != 2) {
4287 return;
4288 }
4289 len = strlen(str);
4290 readline_set_completion_index(rs, len);
4291
4292 start = list = qmp_query_chardev(NULL);
4293 while (list) {
4294 ChardevInfo *chr = list->value;
4295
4296 if (!strncmp(chr->label, str, len)) {
4297 readline_add_completion(rs, chr->label);
4298 }
4299 list = list->next;
4300 }
4301 qapi_free_ChardevInfoList(start);
4302}
4303
Hani Benhabiles8e597772014-05-27 23:39:30 +01004304static void ringbuf_completion(ReadLineState *rs, const char *str)
4305{
4306 size_t len;
4307 ChardevInfoList *list, *start;
4308
4309 len = strlen(str);
4310 readline_set_completion_index(rs, len);
4311
4312 start = list = qmp_query_chardev(NULL);
4313 while (list) {
4314 ChardevInfo *chr_info = list->value;
4315
4316 if (!strncmp(chr_info->label, str, len)) {
4317 CharDriverState *chr = qemu_chr_find(chr_info->label);
4318 if (chr && chr_is_ringbuf(chr)) {
4319 readline_add_completion(rs, chr_info->label);
4320 }
4321 }
4322 list = list->next;
4323 }
4324 qapi_free_ChardevInfoList(start);
4325}
4326
Hani Benhabiles8e597772014-05-27 23:39:30 +01004327void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
4328{
4329 if (nb_args != 2) {
4330 return;
4331 }
4332 ringbuf_completion(rs, str);
4333}
4334
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004335void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
4336{
4337 size_t len;
4338
4339 if (nb_args != 2) {
4340 return;
4341 }
4342
4343 len = strlen(str);
4344 readline_set_completion_index(rs, len);
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08004345 peripheral_device_del_completion(rs, str, len);
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01004346}
4347
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004348void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabilesb48fa072014-02-06 23:30:12 +01004349{
4350 ObjectPropertyInfoList *list, *start;
4351 size_t len;
4352
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004353 if (nb_args != 2) {
4354 return;
4355 }
Hani Benhabilesb48fa072014-02-06 23:30:12 +01004356 len = strlen(str);
4357 readline_set_completion_index(rs, len);
4358
4359 start = list = qmp_qom_list("/objects", NULL);
4360 while (list) {
4361 ObjectPropertyInfo *info = list->value;
4362
4363 if (!strncmp(info->type, "child<", 5)
4364 && !strncmp(info->name, str, len)) {
4365 readline_add_completion(rs, info->name);
4366 }
4367 list = list->next;
4368 }
4369 qapi_free_ObjectPropertyInfoList(start);
4370}
4371
Hani Benhabiles29136cd2014-05-07 23:41:27 +01004372void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
4373{
4374 int i;
4375 char *sep;
4376 size_t len;
4377
4378 if (nb_args != 2) {
4379 return;
4380 }
4381 sep = strrchr(str, '-');
4382 if (sep) {
4383 str = sep + 1;
4384 }
4385 len = strlen(str);
4386 readline_set_completion_index(rs, len);
4387 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4388 if (!strncmp(str, QKeyCode_lookup[i], len)) {
4389 readline_add_completion(rs, QKeyCode_lookup[i]);
4390 }
4391 }
4392}
4393
Hani Benhabiles40d19392014-05-07 23:41:30 +01004394void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
4395{
4396 size_t len;
4397
4398 len = strlen(str);
4399 readline_set_completion_index(rs, len);
4400 if (nb_args == 2) {
Jason Wangeaed4832015-04-23 14:21:38 +08004401 NetClientState *ncs[MAX_QUEUE_NUM];
Hani Benhabiles40d19392014-05-07 23:41:30 +01004402 int count, i;
4403 count = qemu_find_net_clients_except(NULL, ncs,
Jason Wangeaed4832015-04-23 14:21:38 +08004404 NET_CLIENT_OPTIONS_KIND_NONE,
4405 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08004406 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Hani Benhabiles40d19392014-05-07 23:41:30 +01004407 const char *name = ncs[i]->name;
4408 if (!strncmp(str, name, len)) {
4409 readline_add_completion(rs, name);
4410 }
4411 }
4412 } else if (nb_args == 3) {
4413 add_completion_option(rs, str, "on");
4414 add_completion_option(rs, str, "off");
4415 }
4416}
4417
Hani Benhabiles11b389f2014-05-07 23:41:32 +01004418void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
4419{
4420 int len, count, i;
Jason Wangeaed4832015-04-23 14:21:38 +08004421 NetClientState *ncs[MAX_QUEUE_NUM];
Hani Benhabiles11b389f2014-05-07 23:41:32 +01004422
4423 if (nb_args != 2) {
4424 return;
4425 }
4426
4427 len = strlen(str);
4428 readline_set_completion_index(rs, len);
4429 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_OPTIONS_KIND_NIC,
Jason Wangeaed4832015-04-23 14:21:38 +08004430 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08004431 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Hani Benhabiles11b389f2014-05-07 23:41:32 +01004432 QemuOpts *opts;
4433 const char *name = ncs[i]->name;
4434 if (strncmp(str, name, len)) {
4435 continue;
4436 }
4437 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
4438 if (opts) {
4439 readline_add_completion(rs, name);
4440 }
4441 }
4442}
4443
Hani Benhabilesd0ece342014-05-27 23:39:31 +01004444void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
4445{
Hani Benhabiles4bb08af2014-07-29 23:22:40 +01004446 int i;
4447
Hani Benhabilesd0ece342014-05-27 23:39:31 +01004448 if (nb_args != 2) {
4449 return;
4450 }
4451 readline_set_completion_index(rs, strlen(str));
Hani Benhabiles4bb08af2014-07-29 23:22:40 +01004452 for (i = 0; WatchdogExpirationAction_lookup[i]; i++) {
4453 add_completion_option(rs, str, WatchdogExpirationAction_lookup[i]);
4454 }
Hani Benhabilesd0ece342014-05-27 23:39:31 +01004455}
4456
Hani Benhabilesc68a0402014-05-27 23:39:32 +01004457void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
4458 const char *str)
4459{
4460 size_t len;
4461
4462 len = strlen(str);
4463 readline_set_completion_index(rs, len);
4464 if (nb_args == 2) {
4465 int i;
4466 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
4467 const char *name = MigrationCapability_lookup[i];
4468 if (!strncmp(str, name, len)) {
4469 readline_add_completion(rs, name);
4470 }
4471 }
4472 } else if (nb_args == 3) {
4473 add_completion_option(rs, str, "on");
4474 add_completion_option(rs, str, "off");
4475 }
4476}
4477
Liang Li50e9a622015-03-23 16:32:29 +08004478void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
4479 const char *str)
4480{
4481 size_t len;
4482
4483 len = strlen(str);
4484 readline_set_completion_index(rs, len);
4485 if (nb_args == 2) {
4486 int i;
4487 for (i = 0; i < MIGRATION_PARAMETER_MAX; i++) {
4488 const char *name = MigrationParameter_lookup[i];
4489 if (!strncmp(str, name, len)) {
4490 readline_add_completion(rs, name);
4491 }
4492 }
4493 }
4494}
4495
Hani Benhabilese3bb5322014-05-27 23:39:34 +01004496void host_net_add_completion(ReadLineState *rs, int nb_args, const char *str)
4497{
4498 int i;
4499 size_t len;
4500 if (nb_args != 2) {
4501 return;
4502 }
4503 len = strlen(str);
4504 readline_set_completion_index(rs, len);
4505 for (i = 0; host_net_devices[i]; i++) {
4506 if (!strncmp(host_net_devices[i], str, len)) {
4507 readline_add_completion(rs, host_net_devices[i]);
4508 }
4509 }
4510}
4511
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004512void host_net_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4513{
Jason Wangeaed4832015-04-23 14:21:38 +08004514 NetClientState *ncs[MAX_QUEUE_NUM];
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004515 int count, i, len;
4516
4517 len = strlen(str);
4518 readline_set_completion_index(rs, len);
4519 if (nb_args == 2) {
4520 count = qemu_find_net_clients_except(NULL, ncs,
Jason Wangeaed4832015-04-23 14:21:38 +08004521 NET_CLIENT_OPTIONS_KIND_NONE,
4522 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08004523 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004524 int id;
4525 char name[16];
4526
4527 if (net_hub_id_for_client(ncs[i], &id)) {
4528 continue;
4529 }
4530 snprintf(name, sizeof(name), "%d", id);
4531 if (!strncmp(str, name, len)) {
4532 readline_add_completion(rs, name);
4533 }
4534 }
4535 return;
4536 } else if (nb_args == 3) {
4537 count = qemu_find_net_clients_except(NULL, ncs,
Jason Wangeaed4832015-04-23 14:21:38 +08004538 NET_CLIENT_OPTIONS_KIND_NIC,
4539 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08004540 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Jason Wang2c4681f2015-02-02 15:06:38 +08004541 int id;
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004542 const char *name;
4543
Jason Wang2c4681f2015-02-02 15:06:38 +08004544 if (ncs[i]->info->type == NET_CLIENT_OPTIONS_KIND_HUBPORT ||
4545 net_hub_id_for_client(ncs[i], &id)) {
4546 continue;
4547 }
Hani Benhabilesddd6b452014-05-27 23:39:36 +01004548 name = ncs[i]->name;
4549 if (!strncmp(str, name, len)) {
4550 readline_add_completion(rs, name);
4551 }
4552 }
4553 return;
4554 }
4555}
4556
Hani Benhabilesb21631f2014-05-27 23:39:37 +01004557static void vm_completion(ReadLineState *rs, const char *str)
4558{
4559 size_t len;
4560 BlockDriverState *bs = NULL;
4561
4562 len = strlen(str);
4563 readline_set_completion_index(rs, len);
4564 while ((bs = bdrv_next(bs))) {
4565 SnapshotInfoList *snapshots, *snapshot;
4566
4567 if (!bdrv_can_snapshot(bs)) {
4568 continue;
4569 }
4570 if (bdrv_query_snapshot_info_list(bs, &snapshots, NULL)) {
4571 continue;
4572 }
4573 snapshot = snapshots;
4574 while (snapshot) {
4575 char *completion = snapshot->value->name;
4576 if (!strncmp(str, completion, len)) {
4577 readline_add_completion(rs, completion);
4578 }
4579 completion = snapshot->value->id;
4580 if (!strncmp(str, completion, len)) {
4581 readline_add_completion(rs, completion);
4582 }
4583 snapshot = snapshot->next;
4584 }
4585 qapi_free_SnapshotInfoList(snapshots);
4586 }
4587
4588}
4589
4590void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
4591{
4592 if (nb_args == 2) {
4593 vm_completion(rs, str);
4594 }
4595}
4596
4597void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
4598{
4599 if (nb_args == 2) {
4600 vm_completion(rs, str);
4601 }
4602}
4603
Wenchao Xiac35b6402013-08-27 20:38:24 +08004604static void monitor_find_completion_by_table(Monitor *mon,
4605 const mon_cmd_t *cmd_table,
4606 char **args,
4607 int nb_args)
bellard81d09122004-07-14 17:21:37 +00004608{
4609 const char *cmdname;
Wenchao Xiac35b6402013-08-27 20:38:24 +08004610 int i;
Markus Armbrusterfea68bb2014-10-07 13:59:10 +02004611 const char *ptype, *str, *name;
Anthony Liguoric227f092009-10-01 16:12:16 -05004612 const mon_cmd_t *cmd;
Markus Armbrusterfea68bb2014-10-07 13:59:10 +02004613 BlockDriverState *bs;
bellard81d09122004-07-14 17:21:37 +00004614
bellard81d09122004-07-14 17:21:37 +00004615 if (nb_args <= 1) {
4616 /* command completion */
4617 if (nb_args == 0)
4618 cmdname = "";
4619 else
4620 cmdname = args[0];
Wenchao Xiad2674b22013-08-27 20:38:16 +08004621 readline_set_completion_index(mon->rs, strlen(cmdname));
Wenchao Xiac35b6402013-08-27 20:38:24 +08004622 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08004623 cmd_completion(mon, cmdname, cmd->name);
bellard81d09122004-07-14 17:21:37 +00004624 }
4625 } else {
4626 /* find the command */
Wenchao Xiac35b6402013-08-27 20:38:24 +08004627 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004628 if (compare_cmd(args[0], cmd->name)) {
4629 break;
4630 }
bellard81d09122004-07-14 17:21:37 +00004631 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004632 if (!cmd->name) {
Wenchao Xiac35b6402013-08-27 20:38:24 +08004633 return;
Jan Kiszka03a63482010-06-16 00:38:33 +02004634 }
4635
Wenchao Xiad903a772013-08-27 20:38:25 +08004636 if (cmd->sub_table) {
4637 /* do the job again */
Stefan Weile7ae7712015-03-08 19:30:01 +01004638 monitor_find_completion_by_table(mon, cmd->sub_table,
4639 &args[1], nb_args - 1);
4640 return;
Wenchao Xiad903a772013-08-27 20:38:25 +08004641 }
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004642 if (cmd->command_completion) {
Stefan Weile7ae7712015-03-08 19:30:01 +01004643 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
4644 return;
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01004645 }
Wenchao Xiad903a772013-08-27 20:38:25 +08004646
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004647 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004648 for(i = 0; i < nb_args - 2; i++) {
4649 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004650 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004651 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004652 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004653 }
4654 }
4655 str = args[nb_args - 1];
Kevin Wolf48fe86f2014-11-12 16:24:02 +01004656 while (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004657 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004658 }
bellard81d09122004-07-14 17:21:37 +00004659 switch(*ptype) {
4660 case 'F':
4661 /* file completion */
Wenchao Xiad2674b22013-08-27 20:38:16 +08004662 readline_set_completion_index(mon->rs, strlen(str));
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08004663 file_completion(mon, str);
bellard81d09122004-07-14 17:21:37 +00004664 break;
4665 case 'B':
4666 /* block device name completion */
Wenchao Xia599a9262013-08-27 20:38:15 +08004667 readline_set_completion_index(mon->rs, strlen(str));
Markus Armbrusterfea68bb2014-10-07 13:59:10 +02004668 for (bs = bdrv_next(NULL); bs; bs = bdrv_next(bs)) {
4669 name = bdrv_get_device_name(bs);
4670 if (str[0] == '\0' ||
4671 !strncmp(name, str, strlen(str))) {
4672 readline_add_completion(mon->rs, name);
4673 }
4674 }
bellard81d09122004-07-14 17:21:37 +00004675 break;
bellard7fe48482004-10-09 18:08:01 +00004676 case 's':
Wenchao Xia129be002013-08-27 20:38:26 +08004677 case 'S':
Hani Benhabiles29136cd2014-05-07 23:41:27 +01004678 if (!strcmp(cmd->name, "help|?")) {
Wenchao Xia7ca0e062013-08-27 20:38:27 +08004679 monitor_find_completion_by_table(mon, cmd_table,
4680 &args[1], nb_args - 1);
bellard7fe48482004-10-09 18:08:01 +00004681 }
4682 break;
bellard81d09122004-07-14 17:21:37 +00004683 default:
4684 break;
4685 }
4686 }
Wenchao Xiac35b6402013-08-27 20:38:24 +08004687}
4688
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004689static void monitor_find_completion(void *opaque,
Wenchao Xiac35b6402013-08-27 20:38:24 +08004690 const char *cmdline)
4691{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004692 Monitor *mon = opaque;
Wenchao Xiac35b6402013-08-27 20:38:24 +08004693 char *args[MAX_ARGS];
4694 int nb_args, len;
4695
4696 /* 1. parse the cmdline */
4697 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4698 return;
4699 }
4700#ifdef DEBUG_COMPLETION
Gonglei5fb9b5b2014-08-21 21:03:09 +08004701 {
4702 int i;
4703 for (i = 0; i < nb_args; i++) {
4704 monitor_printf(mon, "arg%d = '%s'\n", i, args[i]);
4705 }
Wenchao Xiac35b6402013-08-27 20:38:24 +08004706 }
4707#endif
4708
4709 /* if the line ends with a space, it means we want to complete the
4710 next arg */
4711 len = strlen(cmdline);
4712 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4713 if (nb_args >= MAX_ARGS) {
4714 goto cleanup;
4715 }
4716 args[nb_args++] = g_strdup("");
4717 }
4718
4719 /* 2. auto complete according to args */
4720 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
Jan Kiszka03a63482010-06-16 00:38:33 +02004721
4722cleanup:
Wenchao Xiadcc70cd2013-08-27 20:38:22 +08004723 free_cmdline_args(args, nb_args);
bellard81d09122004-07-14 17:21:37 +00004724}
4725
aliguori731b0362009-03-05 23:01:42 +00004726static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004727{
aliguori731b0362009-03-05 23:01:42 +00004728 Monitor *mon = opaque;
4729
Jan Kiszkac62313b2009-12-04 14:05:29 +01004730 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004731}
4732
Markus Armbruster40861822015-05-29 10:27:16 +02004733static bool invalid_qmp_mode(const Monitor *mon, const mon_cmd_t *cmd,
4734 Error **errp)
Luiz Capitulino09069b12010-02-04 18:10:06 -02004735{
Eric Blake2d5a8342015-04-15 09:19:23 -06004736 bool is_cap = cmd->mhandler.cmd_new == do_qmp_capabilities;
Markus Armbrusterf994b252015-03-06 19:51:51 +01004737
4738 if (is_cap && mon->qmp.in_command_mode) {
Markus Armbruster40861822015-05-29 10:27:16 +02004739 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4740 "Capabilities negotiation is already complete, command "
4741 "'%s' ignored", cmd->name);
Eric Blake2d5a8342015-04-15 09:19:23 -06004742 return true;
4743 }
Markus Armbrusterf994b252015-03-06 19:51:51 +01004744 if (!is_cap && !mon->qmp.in_command_mode) {
Markus Armbruster40861822015-05-29 10:27:16 +02004745 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4746 "Expecting capabilities negotiation with "
4747 "'qmp_capabilities' before command '%s'", cmd->name);
Eric Blake2d5a8342015-04-15 09:19:23 -06004748 return true;
4749 }
4750 return false;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004751}
4752
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004753/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004754 * Argument validation rules:
4755 *
4756 * 1. The argument must exist in cmd_args qdict
4757 * 2. The argument type must be the expected one
4758 *
4759 * Special case: If the argument doesn't exist in cmd_args and
4760 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4761 * checking is skipped for it.
4762 */
Markus Armbruster326283a2015-03-02 18:39:09 +01004763static void check_client_args_type(const QDict *client_args,
4764 const QDict *cmd_args, int flags,
4765 Error **errp)
Luiz Capitulino4af91932010-06-22 11:44:05 -03004766{
4767 const QDictEntry *ent;
4768
4769 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4770 QObject *obj;
4771 QString *arg_type;
4772 const QObject *client_arg = qdict_entry_value(ent);
4773 const char *client_arg_name = qdict_entry_key(ent);
4774
4775 obj = qdict_get(cmd_args, client_arg_name);
4776 if (!obj) {
4777 if (flags & QMP_ACCEPT_UNKNOWNS) {
4778 /* handler accepts unknowns */
4779 continue;
4780 }
4781 /* client arg doesn't exist */
Markus Armbruster326283a2015-03-02 18:39:09 +01004782 error_set(errp, QERR_INVALID_PARAMETER, client_arg_name);
4783 return;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004784 }
4785
4786 arg_type = qobject_to_qstring(obj);
4787 assert(arg_type != NULL);
4788
4789 /* check if argument's type is correct */
4790 switch (qstring_get_str(arg_type)[0]) {
4791 case 'F':
4792 case 'B':
4793 case 's':
4794 if (qobject_type(client_arg) != QTYPE_QSTRING) {
Markus Armbruster326283a2015-03-02 18:39:09 +01004795 error_set(errp, QERR_INVALID_PARAMETER_TYPE,
4796 client_arg_name, "string");
4797 return;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004798 }
4799 break;
4800 case 'i':
4801 case 'l':
4802 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004803 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004804 if (qobject_type(client_arg) != QTYPE_QINT) {
Markus Armbruster326283a2015-03-02 18:39:09 +01004805 error_set(errp, QERR_INVALID_PARAMETER_TYPE,
4806 client_arg_name, "int");
4807 return;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004808 }
4809 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004810 case 'T':
4811 if (qobject_type(client_arg) != QTYPE_QINT &&
4812 qobject_type(client_arg) != QTYPE_QFLOAT) {
Markus Armbruster326283a2015-03-02 18:39:09 +01004813 error_set(errp, QERR_INVALID_PARAMETER_TYPE,
4814 client_arg_name, "number");
4815 return;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004816 }
4817 break;
4818 case 'b':
4819 case '-':
4820 if (qobject_type(client_arg) != QTYPE_QBOOL) {
Markus Armbruster326283a2015-03-02 18:39:09 +01004821 error_set(errp, QERR_INVALID_PARAMETER_TYPE,
4822 client_arg_name, "bool");
4823 return;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004824 }
4825 break;
4826 case 'O':
4827 assert(flags & QMP_ACCEPT_UNKNOWNS);
4828 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01004829 case 'q':
4830 /* Any QObject can be passed. */
4831 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004832 case '/':
4833 case '.':
4834 /*
4835 * These types are not supported by QMP and thus are not
4836 * handled here. Fall through.
4837 */
4838 default:
4839 abort();
4840 }
4841 }
Luiz Capitulino4af91932010-06-22 11:44:05 -03004842}
4843
4844/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004845 * - Check if the client has passed all mandatory args
4846 * - Set special flags for argument validation
4847 */
Markus Armbruster326283a2015-03-02 18:39:09 +01004848static void check_mandatory_args(const QDict *cmd_args,
4849 const QDict *client_args, int *flags,
4850 Error **errp)
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004851{
4852 const QDictEntry *ent;
4853
4854 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4855 const char *cmd_arg_name = qdict_entry_key(ent);
4856 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4857 assert(type != NULL);
4858
4859 if (qstring_get_str(type)[0] == 'O') {
4860 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4861 *flags |= QMP_ACCEPT_UNKNOWNS;
4862 } else if (qstring_get_str(type)[0] != '-' &&
4863 qstring_get_str(type)[1] != '?' &&
4864 !qdict_haskey(client_args, cmd_arg_name)) {
Markus Armbruster326283a2015-03-02 18:39:09 +01004865 error_set(errp, QERR_MISSING_PARAMETER, cmd_arg_name);
4866 return;
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004867 }
4868 }
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004869}
4870
4871static QDict *qdict_from_args_type(const char *args_type)
4872{
4873 int i;
4874 QDict *qdict;
4875 QString *key, *type, *cur_qs;
4876
4877 assert(args_type != NULL);
4878
4879 qdict = qdict_new();
4880
4881 if (args_type == NULL || args_type[0] == '\0') {
4882 /* no args, empty qdict */
4883 goto out;
4884 }
4885
4886 key = qstring_new();
4887 type = qstring_new();
4888
4889 cur_qs = key;
4890
4891 for (i = 0;; i++) {
4892 switch (args_type[i]) {
4893 case ',':
4894 case '\0':
4895 qdict_put(qdict, qstring_get_str(key), type);
4896 QDECREF(key);
4897 if (args_type[i] == '\0') {
4898 goto out;
4899 }
4900 type = qstring_new(); /* qdict has ref */
4901 cur_qs = key = qstring_new();
4902 break;
4903 case ':':
4904 cur_qs = type;
4905 break;
4906 default:
4907 qstring_append_chr(cur_qs, args_type[i]);
4908 break;
4909 }
4910 }
4911
4912out:
4913 return qdict;
4914}
4915
4916/*
4917 * Client argument checking rules:
4918 *
4919 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004920 * 2. Each argument provided by the client must be expected
4921 * 3. Each argument provided by the client must have the type expected
4922 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004923 */
Markus Armbruster326283a2015-03-02 18:39:09 +01004924static void qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args,
4925 Error **errp)
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004926{
Markus Armbruster326283a2015-03-02 18:39:09 +01004927 Error *err = NULL;
4928 int flags;
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004929 QDict *cmd_args;
4930
4931 cmd_args = qdict_from_args_type(cmd->args_type);
4932
4933 flags = 0;
Markus Armbruster326283a2015-03-02 18:39:09 +01004934 check_mandatory_args(cmd_args, client_args, &flags, &err);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004935 if (err) {
4936 goto out;
4937 }
4938
Markus Armbruster326283a2015-03-02 18:39:09 +01004939 check_client_args_type(client_args, cmd_args, flags, &err);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004940
4941out:
Markus Armbruster326283a2015-03-02 18:39:09 +01004942 error_propagate(errp, err);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004943 QDECREF(cmd_args);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004944}
4945
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004946/*
4947 * Input object checking rules
4948 *
4949 * 1. Input object must be a dict
4950 * 2. The "execute" key must exist
4951 * 3. The "execute" key must be a string
4952 * 4. If the "arguments" key exists, it must be a dict
4953 * 5. If the "id" key exists, it can be anything (ie. json-value)
4954 * 6. Any argument not listed above is considered invalid
4955 */
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004956static QDict *qmp_check_input_obj(QObject *input_obj, Error **errp)
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004957{
4958 const QDictEntry *ent;
4959 int has_exec_key = 0;
4960 QDict *input_dict;
4961
4962 if (qobject_type(input_obj) != QTYPE_QDICT) {
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004963 error_set(errp, QERR_QMP_BAD_INPUT_OBJECT, "object");
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004964 return NULL;
4965 }
4966
4967 input_dict = qobject_to_qdict(input_obj);
4968
4969 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4970 const char *arg_name = qdict_entry_key(ent);
4971 const QObject *arg_obj = qdict_entry_value(ent);
4972
4973 if (!strcmp(arg_name, "execute")) {
4974 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004975 error_set(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
4976 "execute", "string");
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004977 return NULL;
4978 }
4979 has_exec_key = 1;
4980 } else if (!strcmp(arg_name, "arguments")) {
4981 if (qobject_type(arg_obj) != QTYPE_QDICT) {
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004982 error_set(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
4983 "arguments", "object");
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004984 return NULL;
4985 }
Markus Armbruster779cec42015-06-08 10:44:30 +02004986 } else if (!strcmp(arg_name, "id")) {
4987 /* Any string is acceptable as "id", so nothing to check */
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004988 } else {
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004989 error_set(errp, QERR_QMP_EXTRA_MEMBER, arg_name);
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004990 return NULL;
4991 }
4992 }
4993
4994 if (!has_exec_key) {
Markus Armbrusterba0510a2015-03-02 18:41:43 +01004995 error_set(errp, QERR_QMP_BAD_INPUT_OBJECT, "execute");
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004996 return NULL;
4997 }
4998
4999 return input_dict;
5000}
5001
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005002static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
5003{
Markus Armbruster326283a2015-03-02 18:39:09 +01005004 Error *local_err = NULL;
Markus Armbruster84add862015-03-05 16:45:15 +01005005 QObject *obj, *data;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005006 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005007 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02005008 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005009 Monitor *mon = cur_mon;
5010
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005011 args = input = NULL;
Markus Armbruster84add862015-03-05 16:45:15 +01005012 data = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005013
5014 obj = json_parser_parse(tokens, NULL);
5015 if (!obj) {
5016 // FIXME: should be triggered in json_parser_parse()
Markus Armbruster710aec92015-03-06 11:28:00 +01005017 error_set(&local_err, QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005018 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005019 }
5020
Markus Armbrusterba0510a2015-03-02 18:41:43 +01005021 input = qmp_check_input_obj(obj, &local_err);
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03005022 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005023 qobject_decref(obj);
5024 goto err_out;
5025 }
5026
Markus Armbruster74358f22015-03-06 19:35:59 +01005027 mon->qmp.id = qdict_get(input, "id");
5028 qobject_incref(mon->qmp.id);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005029
Luiz Capitulino0bbab462010-05-31 17:32:50 -03005030 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01005031 trace_handle_qmp_command(mon, cmd_name);
Anthony Liguorie3193602011-09-02 12:34:47 -05005032 cmd = qmp_find_cmd(cmd_name);
Eric Blake2d5a8342015-04-15 09:19:23 -06005033 if (!cmd) {
Markus Armbruster710aec92015-03-06 11:28:00 +01005034 error_set(&local_err, ERROR_CLASS_COMMAND_NOT_FOUND,
5035 "The command %s has not been found", cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005036 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005037 }
Markus Armbruster40861822015-05-29 10:27:16 +02005038 if (invalid_qmp_mode(mon, cmd, &local_err)) {
Eric Blake2d5a8342015-04-15 09:19:23 -06005039 goto err_out;
5040 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005041
5042 obj = qdict_get(input, "arguments");
5043 if (!obj) {
5044 args = qdict_new();
5045 } else {
5046 args = qobject_to_qdict(obj);
5047 QINCREF(args);
5048 }
5049
Markus Armbruster326283a2015-03-02 18:39:09 +01005050 qmp_check_client_args(cmd, args, &local_err);
5051 if (local_err) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005052 goto err_out;
5053 }
5054
Markus Armbruster84add862015-03-05 16:45:15 +01005055 if (cmd->mhandler.cmd_new(mon, args, &data)) {
5056 /* Command failed... */
Markus Armbruster452e0302015-03-06 19:11:13 +01005057 if (!mon->error) {
Markus Armbruster84add862015-03-05 16:45:15 +01005058 /* ... without setting an error, so make one up */
Markus Armbruster710aec92015-03-06 11:28:00 +01005059 error_set(&local_err, QERR_UNDEFINED_ERROR);
Markus Armbruster84add862015-03-05 16:45:15 +01005060 }
5061 }
Markus Armbruster710aec92015-03-06 11:28:00 +01005062 if (mon->error) {
5063 error_set(&local_err, mon->error->err_class, "%s",
5064 mon->error->err_msg);
5065 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005066
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005067err_out:
Markus Armbruster710aec92015-03-06 11:28:00 +01005068 monitor_protocol_emitter(mon, data, local_err);
Markus Armbruster84add862015-03-05 16:45:15 +01005069 qobject_decref(data);
Markus Armbruster70ea0c52015-03-06 10:47:08 +01005070 QDECREF(mon->error);
5071 mon->error = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03005072 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005073 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005074}
5075
Markus Armbrusterc83fe232015-03-06 19:20:51 +01005076static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005077{
5078 Monitor *old_mon = cur_mon;
5079
5080 cur_mon = opaque;
5081
Markus Armbruster74358f22015-03-06 19:35:59 +01005082 json_message_parser_feed(&cur_mon->qmp.parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005083
5084 cur_mon = old_mon;
5085}
5086
aliguori731b0362009-03-05 23:01:42 +00005087static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00005088{
aliguori731b0362009-03-05 23:01:42 +00005089 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00005090 int i;
aliguori376253e2009-03-05 23:01:23 +00005091
aliguori731b0362009-03-05 23:01:42 +00005092 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00005093
aliguoricde76ee2009-03-05 23:01:51 +00005094 if (cur_mon->rs) {
5095 for (i = 0; i < size; i++)
5096 readline_handle_byte(cur_mon->rs, buf[i]);
5097 } else {
5098 if (size == 0 || buf[size - 1] != 0)
5099 monitor_printf(cur_mon, "corrupted command\n");
5100 else
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01005101 handle_hmp_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00005102 }
aliguori731b0362009-03-05 23:01:42 +00005103
5104 cur_mon = old_mon;
5105}
aliguorid8f44602008-10-06 13:52:44 +00005106
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005107static void monitor_command_cb(void *opaque, const char *cmdline,
5108 void *readline_opaque)
bellard7e2515e2004-08-01 21:52:19 +00005109{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005110 Monitor *mon = opaque;
5111
aliguori731b0362009-03-05 23:01:42 +00005112 monitor_suspend(mon);
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01005113 handle_hmp_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00005114 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00005115}
5116
aliguoricde76ee2009-03-05 23:01:51 +00005117int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005118{
aliguoricde76ee2009-03-05 23:01:51 +00005119 if (!mon->rs)
5120 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00005121 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00005122 return 0;
aliguorid8f44602008-10-06 13:52:44 +00005123}
5124
aliguori376253e2009-03-05 23:01:23 +00005125void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005126{
aliguoricde76ee2009-03-05 23:01:51 +00005127 if (!mon->rs)
5128 return;
aliguori731b0362009-03-05 23:01:42 +00005129 if (--mon->suspend_cnt == 0)
5130 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00005131}
5132
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005133static QObject *get_qmp_greeting(void)
5134{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005135 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005136
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005137 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005138 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5139}
5140
Markus Armbrusterc83fe232015-03-06 19:20:51 +01005141static void monitor_qmp_event(void *opaque, int event)
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005142{
Luiz Capitulino47116d12010-02-08 17:01:30 -02005143 QObject *data;
5144 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005145
Luiz Capitulino47116d12010-02-08 17:01:30 -02005146 switch (event) {
5147 case CHR_EVENT_OPENED:
Markus Armbrusterf994b252015-03-06 19:51:51 +01005148 mon->qmp.in_command_mode = false;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005149 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005150 monitor_json_emitter(mon, data);
5151 qobject_decref(data);
Corey Bryantefb87c12012-08-14 16:43:48 -04005152 mon_refcount++;
Luiz Capitulino47116d12010-02-08 17:01:30 -02005153 break;
5154 case CHR_EVENT_CLOSED:
Markus Armbruster74358f22015-03-06 19:35:59 +01005155 json_message_parser_destroy(&mon->qmp.parser);
5156 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
Corey Bryantefb87c12012-08-14 16:43:48 -04005157 mon_refcount--;
5158 monitor_fdsets_cleanup();
Luiz Capitulino47116d12010-02-08 17:01:30 -02005159 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005160 }
5161}
5162
aliguori731b0362009-03-05 23:01:42 +00005163static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00005164{
aliguori376253e2009-03-05 23:01:23 +00005165 Monitor *mon = opaque;
5166
aliguori2724b182009-03-05 23:01:47 +00005167 switch (event) {
5168 case CHR_EVENT_MUX_IN:
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02005169 qemu_mutex_lock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005170 mon->mux_out = 0;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02005171 qemu_mutex_unlock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005172 if (mon->reset_seen) {
5173 readline_restart(mon->rs);
5174 monitor_resume(mon);
5175 monitor_flush(mon);
5176 } else {
5177 mon->suspend_cnt = 0;
5178 }
aliguori2724b182009-03-05 23:01:47 +00005179 break;
ths86e94de2007-01-05 22:01:59 +00005180
aliguori2724b182009-03-05 23:01:47 +00005181 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005182 if (mon->reset_seen) {
5183 if (mon->suspend_cnt == 0) {
5184 monitor_printf(mon, "\n");
5185 }
5186 monitor_flush(mon);
5187 monitor_suspend(mon);
5188 } else {
5189 mon->suspend_cnt++;
5190 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02005191 qemu_mutex_lock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005192 mon->mux_out = 1;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02005193 qemu_mutex_unlock(&mon->out_lock);
aliguori2724b182009-03-05 23:01:47 +00005194 break;
5195
Amit Shahb6b8df52009-10-07 18:31:16 +05305196 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00005197 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5198 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005199 if (!mon->mux_out) {
Stratos Psomadakise5554e22014-09-15 15:34:57 +03005200 readline_restart(mon->rs);
aliguori2724b182009-03-05 23:01:47 +00005201 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005202 }
5203 mon->reset_seen = 1;
Corey Bryantefb87c12012-08-14 16:43:48 -04005204 mon_refcount++;
5205 break;
5206
5207 case CHR_EVENT_CLOSED:
5208 mon_refcount--;
5209 monitor_fdsets_cleanup();
aliguori2724b182009-03-05 23:01:47 +00005210 break;
5211 }
ths86e94de2007-01-05 22:01:59 +00005212}
5213
Wayne Xia816f8922011-10-12 11:32:41 +08005214static int
5215compare_mon_cmd(const void *a, const void *b)
5216{
5217 return strcmp(((const mon_cmd_t *)a)->name,
5218 ((const mon_cmd_t *)b)->name);
5219}
5220
5221static void sortcmdlist(void)
5222{
5223 int array_num;
5224 int elem_size = sizeof(mon_cmd_t);
5225
5226 array_num = sizeof(mon_cmds)/elem_size-1;
5227 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
5228
5229 array_num = sizeof(info_cmds)/elem_size-1;
5230 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
5231}
5232
aliguori76655d62009-03-06 20:27:37 +00005233
5234/*
5235 * Local variables:
5236 * c-indent-level: 4
5237 * c-basic-offset: 4
5238 * tab-width: 8
5239 * End:
5240 */
5241
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005242/* These functions just adapt the readline interface in a typesafe way. We
5243 * could cast function pointers but that discards compiler checks.
5244 */
Stefan Weild5d15072014-01-25 18:18:23 +01005245static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
5246 const char *fmt, ...)
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005247{
5248 va_list ap;
5249 va_start(ap, fmt);
5250 monitor_vprintf(opaque, fmt, ap);
5251 va_end(ap);
5252}
5253
5254static void monitor_readline_flush(void *opaque)
5255{
5256 monitor_flush(opaque);
5257}
5258
Paolo Bonzinid622cb52014-06-18 08:44:00 +02005259static void __attribute__((constructor)) monitor_lock_init(void)
5260{
5261 qemu_mutex_init(&monitor_lock);
5262}
5263
aliguori731b0362009-03-05 23:01:42 +00005264void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00005265{
aliguori731b0362009-03-05 23:01:42 +00005266 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00005267 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00005268
5269 if (is_first_init) {
Wenchao Xia43a14cf2014-06-18 08:43:31 +02005270 monitor_qapi_event_init();
Wenchao Xiad0383172013-08-27 20:38:18 +08005271 sortcmdlist();
ths20d8a3e2007-02-18 17:04:49 +00005272 is_first_init = 0;
5273 }
aliguori87127162009-03-05 23:01:29 +00005274
Wenchao Xiab01fe892013-08-27 20:38:19 +08005275 mon = g_malloc(sizeof(*mon));
5276 monitor_data_init(mon);
ths20d8a3e2007-02-18 17:04:49 +00005277
aliguori87127162009-03-05 23:01:29 +00005278 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00005279 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00005280 if (flags & MONITOR_USE_READLINE) {
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005281 mon->rs = readline_init(monitor_readline_printf,
5282 monitor_readline_flush,
5283 mon,
5284 monitor_find_completion);
aliguoricde76ee2009-03-05 23:01:51 +00005285 monitor_read_command(mon, 0);
5286 }
aliguori87127162009-03-05 23:01:29 +00005287
Markus Armbruster9f3982f2015-03-06 19:56:38 +01005288 if (monitor_is_qmp(mon)) {
Markus Armbrusterc83fe232015-03-06 19:20:51 +01005289 qemu_chr_add_handlers(chr, monitor_can_read, monitor_qmp_read,
5290 monitor_qmp_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05005291 qemu_chr_fe_set_echo(chr, true);
Markus Armbruster74358f22015-03-06 19:35:59 +01005292 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005293 } else {
5294 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5295 monitor_event, mon);
5296 }
aliguori87127162009-03-05 23:01:29 +00005297
Paolo Bonzinid622cb52014-06-18 08:44:00 +02005298 qemu_mutex_lock(&monitor_lock);
Blue Swirl72cf2d42009-09-12 07:36:22 +00005299 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Paolo Bonzinid622cb52014-06-18 08:44:00 +02005300 qemu_mutex_unlock(&monitor_lock);
5301
Markus Armbruster8631b602010-02-18 11:41:55 +01005302 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5303 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00005304}
5305
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005306static void bdrv_password_cb(void *opaque, const char *password,
5307 void *readline_opaque)
bellard7e2515e2004-08-01 21:52:19 +00005308{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01005309 Monitor *mon = opaque;
5310 BlockDriverState *bs = readline_opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005311 int ret = 0;
Markus Armbruster4d2855a2015-01-29 10:37:00 +01005312 Error *local_err = NULL;
bellard7e2515e2004-08-01 21:52:19 +00005313
Markus Armbruster4d2855a2015-01-29 10:37:00 +01005314 bdrv_add_key(bs, password, &local_err);
5315 if (local_err) {
5316 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
5317 error_free(local_err);
aliguoribb5fc202009-03-05 23:01:15 +00005318 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00005319 }
aliguori731b0362009-03-05 23:01:42 +00005320 if (mon->password_completion_cb)
5321 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00005322
aliguori731b0362009-03-05 23:01:42 +00005323 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00005324}
aliguoric0f4ce72009-03-05 23:01:01 +00005325
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005326int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
Markus Armbruster097310b2014-10-07 13:59:15 +02005327 BlockCompletionFunc *completion_cb,
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005328 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00005329{
aliguoricde76ee2009-03-05 23:01:51 +00005330 int err;
5331
aliguori376253e2009-03-05 23:01:23 +00005332 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5333 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00005334
aliguori731b0362009-03-05 23:01:42 +00005335 mon->password_completion_cb = completion_cb;
5336 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005337
aliguoricde76ee2009-03-05 23:01:51 +00005338 err = monitor_read_password(mon, bdrv_password_cb, bs);
5339
5340 if (err && completion_cb)
5341 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005342
5343 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00005344}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005345
5346int monitor_read_block_device_key(Monitor *mon, const char *device,
Markus Armbruster097310b2014-10-07 13:59:15 +02005347 BlockCompletionFunc *completion_cb,
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005348 void *opaque)
5349{
Markus Armbruster9b14e0e2015-03-12 17:26:48 +01005350 Error *err = NULL;
Fam Zheng55606252015-03-02 19:36:46 +08005351 BlockBackend *blk;
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005352
Fam Zheng55606252015-03-02 19:36:46 +08005353 blk = blk_by_name(device);
5354 if (!blk) {
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005355 monitor_printf(mon, "Device not found %s\n", device);
5356 return -1;
5357 }
5358
Markus Armbruster9b14e0e2015-03-12 17:26:48 +01005359 bdrv_add_key(blk_bs(blk), NULL, &err);
5360 if (err) {
5361 error_free(err);
5362 return monitor_read_bdrv_key_start(mon, blk_bs(blk), completion_cb, opaque);
5363 }
5364
5365 if (completion_cb) {
5366 completion_cb(opaque, 0);
5367 }
5368 return 0;
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02005369}
Paolo Bonzini4d454572012-11-26 16:03:42 +01005370
5371QemuOptsList qemu_mon_opts = {
5372 .name = "mon",
5373 .implied_opt_name = "chardev",
5374 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
5375 .desc = {
5376 {
5377 .name = "mode",
5378 .type = QEMU_OPT_STRING,
5379 },{
5380 .name = "chardev",
5381 .type = QEMU_OPT_STRING,
5382 },{
5383 .name = "default",
5384 .type = QEMU_OPT_BOOL,
5385 },{
5386 .name = "pretty",
5387 .type = QEMU_OPT_BOOL,
5388 },
5389 { /* end of list */ }
5390 },
5391};
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03005392
5393#ifndef TARGET_I386
5394void qmp_rtc_reset_reinjection(Error **errp)
5395{
5396 error_set(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
5397}
5398#endif