blob: 46814af5332c504b6a6d69aa6f5c8a3121a3cf17 [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 */
Markus Armbrustere688df62018-02-01 12:18:31 +010024
Peter Maydelld38ea872016-01-29 17:50:05 +000025#include "qemu/osdep.h"
blueswir1511d2b12009-03-07 15:32:56 +000026#include <dirent.h>
Paolo Bonzini33c11872016-03-15 16:58:45 +010027#include "cpu.h"
pbrook87ecb682007-11-17 17:14:51 +000028#include "hw/hw.h"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +010029#include "monitor/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000030#include "hw/usb.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020031#include "hw/pci/pci.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010032#include "sysemu/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020033#include "hw/loader.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010034#include "exec/gdbstub.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020035#include "net/net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000036#include "net/slirp.h"
Marc-André Lureau4d43a602017-01-26 18:26:44 +040037#include "chardev/char-fe.h"
Peter Xua5ed3522018-03-09 16:59:52 +080038#include "chardev/char-io.h"
Peter Xube933ff2018-03-26 14:38:56 +080039#include "chardev/char-mux.h"
Gerd Hoffmann75721502010-10-07 12:22:54 +020040#include "ui/qemu-spice.h"
Eduardo Habkoste35704b2015-02-08 16:51:16 -020041#include "sysemu/numa.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010042#include "monitor/monitor.h"
Marc-André Lureau213dcb02016-12-12 20:22:24 +030043#include "qemu/config-file.h"
Stefan Hajnoczi0150cd82013-11-14 11:54:15 +010044#include "qemu/readline.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010045#include "ui/console.h"
Gerd Hoffmannc751a742013-12-04 15:02:28 +010046#include "ui/input.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010047#include "sysemu/blockdev.h"
Max Reitzda27a002016-03-16 19:54:29 +010048#include "sysemu/block-backend.h"
pbrook87ecb682007-11-17 17:14:51 +000049#include "audio/audio.h"
Paolo Bonzini76cad712012-10-24 11:12:21 +020050#include "disas/disas.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010051#include "sysemu/balloon.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010052#include "qemu/timer.h"
Vincent Palatinb3946622017-01-10 11:59:55 +010053#include "sysemu/hw_accel.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010054#include "qemu/acl.h"
Paolo Bonzinibdee56f2013-04-02 18:28:41 +020055#include "sysemu/tpm.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010056#include "qapi/qmp/qdict.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010057#include "qapi/qmp/qerror.h"
Markus Armbruster15280c32018-02-01 12:18:36 +010058#include "qapi/qmp/qnum.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010059#include "qapi/qmp/qstring.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010060#include "qapi/qmp/qjson.h"
61#include "qapi/qmp/json-streamer.h"
62#include "qapi/qmp/json-parser.h"
Peter Xu02130312018-03-09 16:59:53 +080063#include "qapi/qmp/qlist.h"
Markus Armbrustera9c94272016-06-22 19:11:19 +020064#include "qom/object_interfaces.h"
Daniel P. Berrange0ab8ed12017-01-25 16:14:15 +000065#include "trace-root.h"
Lluís31965ae2011-08-31 20:31:24 +020066#include "trace/control.h"
Pavel Butsykinbf957282015-09-10 18:38:59 +030067#include "monitor/hmp-target.h"
Lluís6d8a7642011-08-31 20:30:43 +020068#ifdef CONFIG_TRACE_SIMPLE
Lluís31965ae2011-08-31 20:31:24 +020069#include "trace/simple.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053070#endif
Paolo Bonzini022c62c2012-12-17 18:19:49 +010071#include "exec/memory.h"
Paolo Bonzini63c91552016-03-15 13:18:37 +010072#include "exec/exec-all.h"
Paolo Bonzini03dd0242015-12-15 13:16:16 +010073#include "qemu/log.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010074#include "qemu/option.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050075#include "hmp.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010076#include "qemu/thread.h"
Hani Benhabilesb21631f2014-05-27 23:39:37 +010077#include "block/qapi.h"
Markus Armbrustereb815e22018-02-11 10:36:05 +010078#include "qapi/qapi-commands.h"
79#include "qapi/qapi-events.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010080#include "qapi/error.h"
Wenchao Xia43a14cf2014-06-18 08:43:31 +020081#include "qapi/qmp-event.h"
Markus Armbrustereb815e22018-02-11 10:36:05 +010082#include "qapi/qapi-introspect.h"
Alberto Garciadc599972016-03-10 13:55:26 +020083#include "sysemu/qtest.h"
Paolo Bonzinid2528bd2017-03-03 12:01:16 +010084#include "sysemu/cpus.h"
Peter Xua5ed3522018-03-09 16:59:52 +080085#include "sysemu/iothread.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020086#include "qemu/cutils.h"
ths6a5bd302007-12-03 17:05:38 +000087
Jason J. Hernea4538a52015-06-26 14:07:21 -040088#if defined(TARGET_S390X)
89#include "hw/s390x/storage-keys.h"
Claudio Imbrendaf860d492016-08-15 18:44:04 +020090#include "hw/s390x/storage-attributes.h"
Jason J. Hernea4538a52015-06-26 14:07:21 -040091#endif
92
bellard9307c4c2004-04-04 12:57:25 +000093/*
94 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000095 *
bellard9307c4c2004-04-04 12:57:25 +000096 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000097 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000098 * 's' string (accept optional quote)
Wenchao Xia129be002013-08-27 20:38:26 +080099 * 'S' it just appends the rest of the string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +0100100 * 'O' option string of the form NAME=VALUE,...
101 * parsed according to QemuOptsList given by its name
102 * Example: 'device:O' uses qemu_device_opts.
103 * Restriction: only lists with empty desc are supported
104 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +0000105 * 'i' 32 bit integer
106 * 'l' target long (32 or 64 bit)
Luiz Capitulino91162842012-04-26 17:34:30 -0300107 * 'M' Non-negative target long (32 or 64 bit), in user mode the
108 * value is multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +0200109 * 'o' octets (aka bytes)
Kevin Wolf5e009842013-06-05 14:19:27 +0200110 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
111 * K, k suffix, which multiplies the value by 2^60 for suffixes E
112 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
113 * 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 +0100114 * 'T' double
115 * user mode accepts an optional ms, us, ns suffix,
116 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +0000117 * '/' optional gdb-like print format (like "/10x")
118 *
Luiz Capitulinofb466602009-08-28 15:27:27 -0300119 * '?' optional type (for all types, except '/')
120 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100121 * 'b' boolean
122 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300123 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000124 *
125 */
126
Anthony Liguoric227f092009-10-01 16:12:16 -0500127typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000128 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000129 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000130 const char *params;
131 const char *help;
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400132 void (*cmd)(Monitor *mon, const QDict *qdict);
133 /* @sub_table is a list of 2nd level of commands. If it does not exist,
134 * cmd should be used. If it exists, sub_table[?].cmd should be
135 * used, and cmd of 1st level plays the role of help function.
Wenchao Xia5f3d3352013-01-14 14:06:27 +0800136 */
137 struct mon_cmd_t *sub_table;
Hani Benhabilesbfa40f72014-04-13 16:25:06 +0100138 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
Anthony Liguoric227f092009-10-01 16:12:16 -0500139} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000140
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100141/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500142typedef struct mon_fd_t mon_fd_t;
143struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100144 char *name;
145 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500146 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100147};
148
Corey Bryantba1c0482012-08-14 16:43:43 -0400149/* file descriptor associated with a file descriptor set */
150typedef struct MonFdsetFd MonFdsetFd;
151struct MonFdsetFd {
152 int fd;
153 bool removed;
154 char *opaque;
155 QLIST_ENTRY(MonFdsetFd) next;
156};
157
158/* file descriptor set containing fds passed via SCM_RIGHTS */
159typedef struct MonFdset MonFdset;
160struct MonFdset {
161 int64_t id;
162 QLIST_HEAD(, MonFdsetFd) fds;
Corey Bryantadb696f2012-08-14 16:43:47 -0400163 QLIST_HEAD(, MonFdsetFd) dup_fds;
Corey Bryantba1c0482012-08-14 16:43:43 -0400164 QLIST_ENTRY(MonFdset) next;
165};
166
Markus Armbruster74358f22015-03-06 19:35:59 +0100167typedef struct {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200168 JSONMessageParser parser;
Markus Armbrusterf994b252015-03-06 19:51:51 +0100169 /*
170 * When a client connects, we're in capabilities negotiation mode.
171 * When command qmp_capabilities succeeds, we go into command
172 * mode.
173 */
Markus Armbruster635db182017-03-03 13:32:27 +0100174 QmpCommandList *commands;
Peter Xu02130312018-03-09 16:59:53 +0800175 bool qmp_caps[QMP_CAPABILITY__MAX];
Peter Xu71da4662018-03-09 16:59:57 +0800176 /*
177 * Protects qmp request/response queue. Please take monitor_lock
178 * first when used together.
179 */
180 QemuMutex qmp_queue_lock;
181 /* Input queue that holds all the parsed QMP requests */
182 GQueue *qmp_requests;
Peter Xuabe3cd02018-03-09 17:00:02 +0800183 /* Output queue contains all the QMP responses in order */
184 GQueue *qmp_responses;
Markus Armbruster74358f22015-03-06 19:35:59 +0100185} MonitorQMP;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200186
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100187/*
188 * To prevent flooding clients, events can be throttled. The
189 * throttling is calculated globally, rather than per-Monitor
190 * instance.
191 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200192typedef struct MonitorQAPIEventState {
Markus Armbruster7de0be62015-10-15 17:08:35 +0200193 QAPIEvent event; /* Throttling state for this event type and... */
194 QDict *data; /* ... data, see qapi_event_throttle_equal() */
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100195 QEMUTimer *timer; /* Timer for handling delayed events */
Markus Armbruster688b4b72015-10-15 17:08:30 +0200196 QDict *qdict; /* Delayed event (if any) */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200197} MonitorQAPIEventState;
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100198
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200199typedef struct {
200 int64_t rate; /* Minimum time (in ns) between two events */
201} MonitorQAPIEventConf;
202
aliguori87127162009-03-05 23:01:29 +0000203struct Monitor {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300204 CharBackend chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200205 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000206 int flags;
Peter Xudf152fb2018-03-09 16:59:55 +0800207 int suspend_cnt; /* Needs to be accessed atomically */
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400208 bool skip_flush;
Peter Xua5ed3522018-03-09 16:59:52 +0800209 bool use_io_thr;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200210
Peter Xuabe3cd02018-03-09 17:00:02 +0800211 /* We can't access guest memory when holding the lock */
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200212 QemuMutex out_lock;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400213 QString *outbuf;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200214 guint out_watch;
215
216 /* Read under either BQL or out_lock, written with BQL+out_lock. */
217 int mux_out;
218
aliguori731b0362009-03-05 23:01:42 +0000219 ReadLineState *rs;
Markus Armbruster74358f22015-03-06 19:35:59 +0100220 MonitorQMP qmp;
Greg Kurz751f8cf2017-10-17 10:16:22 +0200221 gchar *mon_cpu_path;
Markus Armbruster097310b2014-10-07 13:59:15 +0200222 BlockCompletionFunc *password_completion_cb;
aliguori731b0362009-03-05 23:01:42 +0000223 void *password_opaque;
Wenchao Xia77172392013-08-27 20:38:20 +0800224 mon_cmd_t *cmd_table;
Anthony Liguoric227f092009-10-01 16:12:16 -0500225 QLIST_HEAD(,mon_fd_t) fds;
Peter Xu238d9f32018-03-09 16:59:51 +0800226 QTAILQ_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000227};
228
Peter Xua5ed3522018-03-09 16:59:52 +0800229/* Let's add monitor global variables to this struct. */
230static struct {
231 IOThread *mon_iothread;
Peter Xu71da4662018-03-09 16:59:57 +0800232 /* Bottom half to dispatch the requests received from IO thread */
233 QEMUBH *qmp_dispatcher_bh;
Peter Xuabe3cd02018-03-09 17:00:02 +0800234 /* Bottom half to deliver the responses back to clients */
235 QEMUBH *qmp_respond_bh;
Peter Xua5ed3522018-03-09 16:59:52 +0800236} mon_global;
237
Peter Xu6d2d5632018-03-26 14:38:55 +0800238struct QMPRequest {
239 /* Owner of the request */
240 Monitor *mon;
241 /* "id" field of the request */
242 QObject *id;
243 /* Request object to be handled */
244 QObject *req;
245 /*
246 * Whether we need to resume the monitor afterward. This flag is
247 * used to emulate the old QMP server behavior that the current
248 * command must be completed before execution of the next one.
249 */
250 bool need_resume;
251};
252typedef struct QMPRequest QMPRequest;
253
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300254/* QMP checker flags */
255#define QMP_ACCEPT_UNKNOWNS 1
256
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200257/* Protects mon_list, monitor_event_state. */
258static QemuMutex monitor_lock;
259
Peter Xu238d9f32018-03-09 16:59:51 +0800260static QTAILQ_HEAD(mon_list, Monitor) mon_list;
Corey Bryantba1c0482012-08-14 16:43:43 -0400261static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
Corey Bryantefb87c12012-08-14 16:43:48 -0400262static int mon_refcount;
bellard7e2515e2004-08-01 21:52:19 +0000263
Wayne Xia816f8922011-10-12 11:32:41 +0800264static mon_cmd_t mon_cmds[];
265static mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000266
Markus Armbruster635db182017-03-03 13:32:27 +0100267QmpCommandList qmp_commands, qmp_cap_negotiation_commands;
Markus Armbruster1527bad2017-03-03 13:32:25 +0100268
Markus Armbruster8631b602010-02-18 11:41:55 +0100269Monitor *cur_mon;
aliguori376253e2009-03-05 23:01:23 +0000270
Alberto Garciadc599972016-03-10 13:55:26 +0200271static QEMUClockType event_clock_type = QEMU_CLOCK_REALTIME;
272
Stefan Hajnoczic60bf332013-11-14 11:54:14 +0100273static void monitor_command_cb(void *opaque, const char *cmdline,
274 void *readline_opaque);
aliguori83ab7952008-08-19 14:44:22 +0000275
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100276/**
277 * Is @mon a QMP monitor?
278 */
279static inline bool monitor_is_qmp(const Monitor *mon)
Luiz Capitulino418173c2009-11-26 22:58:51 -0200280{
281 return (mon->flags & MONITOR_USE_CONTROL);
282}
283
Markus Armbruster489653b2015-03-06 20:01:05 +0100284/**
Peter Xue3e977d2018-03-09 16:59:56 +0800285 * Whether @mon is using readline? Note: not all HMP monitors use
286 * readline, e.g., gdbserver has a non-interactive HMP monitor, so
287 * readline is not used there.
288 */
289static inline bool monitor_uses_readline(const Monitor *mon)
290{
291 return mon->flags & MONITOR_USE_READLINE;
292}
293
294static inline bool monitor_is_hmp_non_interactive(const Monitor *mon)
295{
296 return !monitor_is_qmp(mon) && !monitor_uses_readline(mon);
297}
298
299/**
Markus Armbruster489653b2015-03-06 20:01:05 +0100300 * Is the current monitor, if any, a QMP monitor?
301 */
302bool monitor_cur_is_qmp(void)
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100303{
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100304 return cur_mon && monitor_is_qmp(cur_mon);
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100305}
306
Anthony Liguori7060b472011-09-02 12:34:50 -0500307void monitor_read_command(Monitor *mon, int show_prompt)
aliguori731b0362009-03-05 23:01:42 +0000308{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200309 if (!mon->rs)
310 return;
311
aliguori731b0362009-03-05 23:01:42 +0000312 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
313 if (show_prompt)
314 readline_show_prompt(mon->rs);
315}
bellard6a00d602005-11-21 23:25:50 +0000316
Anthony Liguori7060b472011-09-02 12:34:50 -0500317int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
318 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000319{
Markus Armbrusterbcf5d192015-03-12 17:26:46 +0100320 if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000321 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
322 /* prompt is printed on return from the command handler */
323 return 0;
324 } else {
325 monitor_printf(mon, "terminal does not support password prompting\n");
326 return -ENOTTY;
327 }
aliguoribb5fc202009-03-05 23:01:15 +0000328}
329
Peter Xu6d2d5632018-03-26 14:38:55 +0800330static void qmp_request_free(QMPRequest *req)
331{
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200332 qobject_unref(req->id);
333 qobject_unref(req->req);
Peter Xu6d2d5632018-03-26 14:38:55 +0800334 g_free(req);
335}
336
337/* Must with the mon->qmp.qmp_queue_lock held */
338static void monitor_qmp_cleanup_req_queue_locked(Monitor *mon)
339{
340 while (!g_queue_is_empty(mon->qmp.qmp_requests)) {
341 qmp_request_free(g_queue_pop_head(mon->qmp.qmp_requests));
342 }
343}
344
345/* Must with the mon->qmp.qmp_queue_lock held */
346static void monitor_qmp_cleanup_resp_queue_locked(Monitor *mon)
347{
348 while (!g_queue_is_empty(mon->qmp.qmp_responses)) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200349 qobject_unref((QObject *)g_queue_pop_head(mon->qmp.qmp_responses));
Peter Xu6d2d5632018-03-26 14:38:55 +0800350 }
351}
352
353static void monitor_qmp_cleanup_queues(Monitor *mon)
354{
355 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
356 monitor_qmp_cleanup_req_queue_locked(mon);
357 monitor_qmp_cleanup_resp_queue_locked(mon);
358 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
359}
360
361
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200362static void monitor_flush_locked(Monitor *mon);
363
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100364static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
365 void *opaque)
366{
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200367 Monitor *mon = opaque;
368
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200369 qemu_mutex_lock(&mon->out_lock);
370 mon->out_watch = 0;
371 monitor_flush_locked(mon);
372 qemu_mutex_unlock(&mon->out_lock);
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100373 return FALSE;
374}
375
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200376/* Called with mon->out_lock held. */
377static void monitor_flush_locked(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000378{
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100379 int rc;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400380 size_t len;
381 const char *buf;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100382
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400383 if (mon->skip_flush) {
384 return;
385 }
386
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400387 buf = qstring_get_str(mon->outbuf);
388 len = qstring_get_length(mon->outbuf);
389
Paolo Bonzinia4cc73d2013-05-31 14:00:27 +0200390 if (len && !mon->mux_out) {
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300391 rc = qemu_chr_fe_write(&mon->chr, (const uint8_t *) buf, len);
Stratos Psomadakis056f49f2014-01-27 12:30:15 +0200392 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
393 /* all flushed or error */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200394 qobject_unref(mon->outbuf);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400395 mon->outbuf = qstring_new();
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100396 return;
397 }
398 if (rc > 0) {
Eric Blake3b7c78c2016-05-17 16:00:15 -0600399 /* partial write */
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400400 QString *tmp = qstring_from_str(buf + rc);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200401 qobject_unref(mon->outbuf);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400402 mon->outbuf = tmp;
Gerd Hoffmannf6289262013-03-19 10:57:56 +0100403 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200404 if (mon->out_watch == 0) {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300405 mon->out_watch =
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300406 qemu_chr_fe_add_watch(&mon->chr, G_IO_OUT | G_IO_HUP,
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300407 monitor_unblocked, mon);
Laszlo Ersek293d2a02013-07-16 20:19:41 +0200408 }
bellard7e2515e2004-08-01 21:52:19 +0000409 }
410}
411
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200412void monitor_flush(Monitor *mon)
413{
414 qemu_mutex_lock(&mon->out_lock);
415 monitor_flush_locked(mon);
416 qemu_mutex_unlock(&mon->out_lock);
417}
418
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400419/* flush at every end of line */
aliguori376253e2009-03-05 23:01:23 +0000420static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000421{
ths60fe76f2007-12-16 03:02:09 +0000422 char c;
aliguori731b0362009-03-05 23:01:42 +0000423
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200424 qemu_mutex_lock(&mon->out_lock);
bellard7e2515e2004-08-01 21:52:19 +0000425 for(;;) {
426 c = *str++;
427 if (c == '\0')
428 break;
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400429 if (c == '\n') {
430 qstring_append_chr(mon->outbuf, '\r');
431 }
432 qstring_append_chr(mon->outbuf, c);
433 if (c == '\n') {
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200434 monitor_flush_locked(mon);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400435 }
bellard7e2515e2004-08-01 21:52:19 +0000436 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200437 qemu_mutex_unlock(&mon->out_lock);
bellard7e2515e2004-08-01 21:52:19 +0000438}
439
aliguori376253e2009-03-05 23:01:23 +0000440void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000441{
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400442 char *buf;
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200443
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200444 if (!mon)
445 return;
446
Markus Armbruster9f3982f2015-03-06 19:56:38 +0100447 if (monitor_is_qmp(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200448 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200449 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200450
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400451 buf = g_strdup_vprintf(fmt, ap);
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200452 monitor_puts(mon, buf);
Luiz Capitulinoe1f26412013-03-25 13:52:26 -0400453 g_free(buf);
bellard7e2515e2004-08-01 21:52:19 +0000454}
455
aliguori376253e2009-03-05 23:01:23 +0000456void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000457{
458 va_list ap;
459 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000460 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000461 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000462}
463
Pavel Butsykincaf15312015-09-22 16:18:17 +0300464int monitor_fprintf(FILE *stream, const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000465{
466 va_list ap;
467 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000468 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000469 va_end(ap);
470 return 0;
471}
472
Peter Xuabe3cd02018-03-09 17:00:02 +0800473static void monitor_json_emitter_raw(Monitor *mon,
474 QObject *data)
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200475{
476 QString *json;
477
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200478 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
479 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200480 assert(json != NULL);
481
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200482 qstring_append_chr(json, '\n');
483 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200484
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200485 qobject_unref(json);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200486}
487
Peter Xuabe3cd02018-03-09 17:00:02 +0800488static void monitor_json_emitter(Monitor *mon, QObject *data)
489{
490 if (mon->use_io_thr) {
491 /*
492 * If using IO thread, we need to queue the item so that IO
493 * thread will do the rest for us. Take refcount so that
494 * caller won't free the data (which will be finally freed in
495 * responder thread).
496 */
Peter Xuabe3cd02018-03-09 17:00:02 +0800497 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
Marc-André Lureauf5a74a52018-04-19 17:01:44 +0200498 g_queue_push_tail(mon->qmp.qmp_responses, qobject_ref(data));
Peter Xuabe3cd02018-03-09 17:00:02 +0800499 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
500 qemu_bh_schedule(mon_global.qmp_respond_bh);
501 } else {
502 /*
503 * If not using monitor IO thread, then we are in main thread.
504 * Do the emission right away.
505 */
506 monitor_json_emitter_raw(mon, data);
507 }
508}
509
510struct QMPResponse {
511 Monitor *mon;
512 QObject *data;
513};
514typedef struct QMPResponse QMPResponse;
515
516/*
517 * Return one QMPResponse. The response is only valid if
518 * response.data is not NULL.
519 */
520static QMPResponse monitor_qmp_response_pop_one(void)
521{
522 Monitor *mon;
523 QObject *data = NULL;
524
525 qemu_mutex_lock(&monitor_lock);
526 QTAILQ_FOREACH(mon, &mon_list, entry) {
527 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
528 data = g_queue_pop_head(mon->qmp.qmp_responses);
529 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
530 if (data) {
531 break;
532 }
533 }
534 qemu_mutex_unlock(&monitor_lock);
535 return (QMPResponse) { .mon = mon, .data = data };
536}
537
538static void monitor_qmp_bh_responder(void *opaque)
539{
540 QMPResponse response;
541
542 while (true) {
543 response = monitor_qmp_response_pop_one();
544 if (!response.data) {
545 break;
546 }
547 monitor_json_emitter_raw(response.mon, response.data);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200548 qobject_unref(response.data);
Peter Xuabe3cd02018-03-09 17:00:02 +0800549 }
550}
551
Eric Blake7fb1cf12015-11-18 01:52:57 -0700552static MonitorQAPIEventConf monitor_qapi_event_conf[QAPI_EVENT__MAX] = {
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200553 /* Limit guest-triggerable events to 1 per second */
554 [QAPI_EVENT_RTC_CHANGE] = { 1000 * SCALE_MS },
555 [QAPI_EVENT_WATCHDOG] = { 1000 * SCALE_MS },
556 [QAPI_EVENT_BALLOON_CHANGE] = { 1000 * SCALE_MS },
557 [QAPI_EVENT_QUORUM_REPORT_BAD] = { 1000 * SCALE_MS },
558 [QAPI_EVENT_QUORUM_FAILURE] = { 1000 * SCALE_MS },
559 [QAPI_EVENT_VSERPORT_CHANGE] = { 1000 * SCALE_MS },
560};
561
Markus Armbrustera24712a2015-10-15 17:08:34 +0200562GHashTable *monitor_qapi_event_state;
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100563
564/*
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200565 * Emits the event to every monitor instance, @event is only used for trace
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200566 * Called with monitor_lock held.
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100567 */
Markus Armbruster688b4b72015-10-15 17:08:30 +0200568static void monitor_qapi_event_emit(QAPIEvent event, QDict *qdict)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100569{
570 Monitor *mon;
571
Markus Armbruster688b4b72015-10-15 17:08:30 +0200572 trace_monitor_protocol_event_emit(event, qdict);
Peter Xu238d9f32018-03-09 16:59:51 +0800573 QTAILQ_FOREACH(mon, &mon_list, entry) {
Markus Armbruster635db182017-03-03 13:32:27 +0100574 if (monitor_is_qmp(mon)
575 && mon->qmp.commands != &qmp_cap_negotiation_commands) {
Markus Armbruster688b4b72015-10-15 17:08:30 +0200576 monitor_json_emitter(mon, QOBJECT(qdict));
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100577 }
578 }
579}
580
Markus Armbrustera24712a2015-10-15 17:08:34 +0200581static void monitor_qapi_event_handler(void *opaque);
582
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100583/*
584 * Queue a new event for emission to Monitor instances,
585 * applying any rate limiting if required.
586 */
587static void
Markus Armbruster688b4b72015-10-15 17:08:30 +0200588monitor_qapi_event_queue(QAPIEvent event, QDict *qdict, Error **errp)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100589{
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200590 MonitorQAPIEventConf *evconf;
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200591 MonitorQAPIEventState *evstate;
Markus Armbruster93f8f982015-10-15 17:08:31 +0200592
Eric Blake7fb1cf12015-11-18 01:52:57 -0700593 assert(event < QAPI_EVENT__MAX);
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200594 evconf = &monitor_qapi_event_conf[event];
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200595 trace_monitor_protocol_event_queue(event, qdict, evconf->rate);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100596
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200597 qemu_mutex_lock(&monitor_lock);
Markus Armbruster93f8f982015-10-15 17:08:31 +0200598
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200599 if (!evconf->rate) {
Markus Armbruster93f8f982015-10-15 17:08:31 +0200600 /* Unthrottled event */
Markus Armbruster688b4b72015-10-15 17:08:30 +0200601 monitor_qapi_event_emit(event, qdict);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100602 } else {
Max Reitz7dc847e2018-02-24 16:40:29 +0100603 QDict *data = qobject_to(QDict, qdict_get(qdict, "data"));
Markus Armbruster7de0be62015-10-15 17:08:35 +0200604 MonitorQAPIEventState key = { .event = event, .data = data };
Markus Armbrustera24712a2015-10-15 17:08:34 +0200605
606 evstate = g_hash_table_lookup(monitor_qapi_event_state, &key);
607 assert(!evstate || timer_pending(evstate->timer));
608
609 if (evstate) {
Markus Armbruster93f8f982015-10-15 17:08:31 +0200610 /*
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200611 * Timer is pending for (at least) evconf->rate ns after
Markus Armbruster93f8f982015-10-15 17:08:31 +0200612 * last send. Store event for sending when timer fires,
613 * replacing a prior stored event if any.
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100614 */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200615 qobject_unref(evstate->qdict);
Marc-André Lureauf5a74a52018-04-19 17:01:44 +0200616 evstate->qdict = qobject_ref(qdict);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100617 } else {
Markus Armbruster93f8f982015-10-15 17:08:31 +0200618 /*
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200619 * Last send was (at least) evconf->rate ns ago.
Markus Armbruster93f8f982015-10-15 17:08:31 +0200620 * Send immediately, and arm the timer to call
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200621 * monitor_qapi_event_handler() in evconf->rate ns. Any
Markus Armbruster93f8f982015-10-15 17:08:31 +0200622 * events arriving before then will be delayed until then.
623 */
Alberto Garciadc599972016-03-10 13:55:26 +0200624 int64_t now = qemu_clock_get_ns(event_clock_type);
Markus Armbruster93f8f982015-10-15 17:08:31 +0200625
Markus Armbruster688b4b72015-10-15 17:08:30 +0200626 monitor_qapi_event_emit(event, qdict);
Markus Armbrustera24712a2015-10-15 17:08:34 +0200627
628 evstate = g_new(MonitorQAPIEventState, 1);
629 evstate->event = event;
Marc-André Lureauf5a74a52018-04-19 17:01:44 +0200630 evstate->data = qobject_ref(data);
Markus Armbrustera24712a2015-10-15 17:08:34 +0200631 evstate->qdict = NULL;
Alberto Garciadc599972016-03-10 13:55:26 +0200632 evstate->timer = timer_new_ns(event_clock_type,
Markus Armbrustera24712a2015-10-15 17:08:34 +0200633 monitor_qapi_event_handler,
634 evstate);
635 g_hash_table_add(monitor_qapi_event_state, evstate);
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200636 timer_mod_ns(evstate->timer, now + evconf->rate);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100637 }
638 }
Markus Armbruster93f8f982015-10-15 17:08:31 +0200639
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200640 qemu_mutex_unlock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100641}
642
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100643/*
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200644 * This function runs evconf->rate ns after sending a throttled
Markus Armbruster93f8f982015-10-15 17:08:31 +0200645 * event.
646 * If another event has since been stored, send it.
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100647 */
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200648static void monitor_qapi_event_handler(void *opaque)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100649{
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200650 MonitorQAPIEventState *evstate = opaque;
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200651 MonitorQAPIEventConf *evconf = &monitor_qapi_event_conf[evstate->event];
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100652
Markus Armbruster93f8f982015-10-15 17:08:31 +0200653 trace_monitor_protocol_event_handler(evstate->event, evstate->qdict);
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200654 qemu_mutex_lock(&monitor_lock);
Markus Armbruster93f8f982015-10-15 17:08:31 +0200655
Markus Armbruster688b4b72015-10-15 17:08:30 +0200656 if (evstate->qdict) {
Alberto Garciadc599972016-03-10 13:55:26 +0200657 int64_t now = qemu_clock_get_ns(event_clock_type);
Markus Armbruster93f8f982015-10-15 17:08:31 +0200658
Markus Armbruster688b4b72015-10-15 17:08:30 +0200659 monitor_qapi_event_emit(evstate->event, evstate->qdict);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200660 qobject_unref(evstate->qdict);
Markus Armbruster688b4b72015-10-15 17:08:30 +0200661 evstate->qdict = NULL;
Markus Armbrusterb9b03ab2015-10-15 17:08:33 +0200662 timer_mod_ns(evstate->timer, now + evconf->rate);
Markus Armbrustera24712a2015-10-15 17:08:34 +0200663 } else {
664 g_hash_table_remove(monitor_qapi_event_state, evstate);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200665 qobject_unref(evstate->data);
Markus Armbrustera24712a2015-10-15 17:08:34 +0200666 timer_free(evstate->timer);
667 g_free(evstate);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100668 }
Markus Armbruster93f8f982015-10-15 17:08:31 +0200669
Paolo Bonzinid622cb52014-06-18 08:44:00 +0200670 qemu_mutex_unlock(&monitor_lock);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100671}
672
Markus Armbrustera24712a2015-10-15 17:08:34 +0200673static unsigned int qapi_event_throttle_hash(const void *key)
674{
675 const MonitorQAPIEventState *evstate = key;
Markus Armbruster7de0be62015-10-15 17:08:35 +0200676 unsigned int hash = evstate->event * 255;
Markus Armbrustera24712a2015-10-15 17:08:34 +0200677
Markus Armbruster7de0be62015-10-15 17:08:35 +0200678 if (evstate->event == QAPI_EVENT_VSERPORT_CHANGE) {
679 hash += g_str_hash(qdict_get_str(evstate->data, "id"));
680 }
681
Alberto Garcia6d425eb2016-03-10 13:55:25 +0200682 if (evstate->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
683 hash += g_str_hash(qdict_get_str(evstate->data, "node-name"));
684 }
685
Markus Armbruster7de0be62015-10-15 17:08:35 +0200686 return hash;
Markus Armbrustera24712a2015-10-15 17:08:34 +0200687}
688
689static gboolean qapi_event_throttle_equal(const void *a, const void *b)
690{
691 const MonitorQAPIEventState *eva = a;
692 const MonitorQAPIEventState *evb = b;
693
Markus Armbruster7de0be62015-10-15 17:08:35 +0200694 if (eva->event != evb->event) {
695 return FALSE;
696 }
697
698 if (eva->event == QAPI_EVENT_VSERPORT_CHANGE) {
699 return !strcmp(qdict_get_str(eva->data, "id"),
700 qdict_get_str(evb->data, "id"));
701 }
702
Alberto Garcia6d425eb2016-03-10 13:55:25 +0200703 if (eva->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
704 return !strcmp(qdict_get_str(eva->data, "node-name"),
705 qdict_get_str(evb->data, "node-name"));
706 }
707
Markus Armbruster7de0be62015-10-15 17:08:35 +0200708 return TRUE;
Markus Armbrustera24712a2015-10-15 17:08:34 +0200709}
710
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200711static void monitor_qapi_event_init(void)
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100712{
Alberto Garciadc599972016-03-10 13:55:26 +0200713 if (qtest_enabled()) {
714 event_clock_type = QEMU_CLOCK_VIRTUAL;
715 }
716
Markus Armbrustera24712a2015-10-15 17:08:34 +0200717 monitor_qapi_event_state = g_hash_table_new(qapi_event_throttle_hash,
718 qapi_event_throttle_equal);
Wenchao Xia43a14cf2014-06-18 08:43:31 +0200719 qmp_event_set_func_emit(monitor_qapi_event_queue);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200720}
721
Markus Armbruster7ef6cf62015-03-06 19:12:36 +0100722static void handle_hmp_command(Monitor *mon, const char *cmdline);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200723
Peter Xua5ed3522018-03-09 16:59:52 +0800724static void monitor_data_init(Monitor *mon, bool skip_flush,
725 bool use_io_thr)
Wenchao Xiab01fe892013-08-27 20:38:19 +0800726{
727 memset(mon, 0, sizeof(Monitor));
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200728 qemu_mutex_init(&mon->out_lock);
Peter Xu71da4662018-03-09 16:59:57 +0800729 qemu_mutex_init(&mon->qmp.qmp_queue_lock);
Wenchao Xiab01fe892013-08-27 20:38:19 +0800730 mon->outbuf = qstring_new();
Wenchao Xia77172392013-08-27 20:38:20 +0800731 /* Use *mon_cmds by default. */
732 mon->cmd_table = mon_cmds;
Peter Xu88a95d12018-03-09 16:59:48 +0800733 mon->skip_flush = skip_flush;
Peter Xua5ed3522018-03-09 16:59:52 +0800734 mon->use_io_thr = use_io_thr;
Peter Xu71da4662018-03-09 16:59:57 +0800735 mon->qmp.qmp_requests = g_queue_new();
Peter Xuabe3cd02018-03-09 17:00:02 +0800736 mon->qmp.qmp_responses = g_queue_new();
Wenchao Xiab01fe892013-08-27 20:38:19 +0800737}
738
739static void monitor_data_destroy(Monitor *mon)
740{
Greg Kurz751f8cf2017-10-17 10:16:22 +0200741 g_free(mon->mon_cpu_path);
Marc-André Lureau1ce26102017-01-27 00:49:13 +0400742 qemu_chr_fe_deinit(&mon->chr, false);
Marc-André Lureau2ef45712016-08-01 15:23:42 +0400743 if (monitor_is_qmp(mon)) {
744 json_message_parser_destroy(&mon->qmp.parser);
745 }
Marc-André Lureaue5dc1a62018-01-04 17:05:15 +0100746 readline_free(mon->rs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +0200747 qobject_unref(mon->outbuf);
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200748 qemu_mutex_destroy(&mon->out_lock);
Peter Xu71da4662018-03-09 16:59:57 +0800749 qemu_mutex_destroy(&mon->qmp.qmp_queue_lock);
Peter Xu6d2d5632018-03-26 14:38:55 +0800750 monitor_qmp_cleanup_req_queue_locked(mon);
751 monitor_qmp_cleanup_resp_queue_locked(mon);
Peter Xu71da4662018-03-09 16:59:57 +0800752 g_queue_free(mon->qmp.qmp_requests);
Peter Xuabe3cd02018-03-09 17:00:02 +0800753 g_queue_free(mon->qmp.qmp_responses);
Wenchao Xiab01fe892013-08-27 20:38:19 +0800754}
755
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200756char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
757 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200758{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200759 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200760 Monitor *old_mon, hmp;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200761
Peter Xua5ed3522018-03-09 16:59:52 +0800762 monitor_data_init(&hmp, true, false);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200763
764 old_mon = cur_mon;
765 cur_mon = &hmp;
766
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200767 if (has_cpu_index) {
768 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200769 if (ret < 0) {
770 cur_mon = old_mon;
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100771 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
772 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200773 goto out;
774 }
775 }
776
Markus Armbruster7ef6cf62015-03-06 19:12:36 +0100777 handle_hmp_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200778 cur_mon = old_mon;
779
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200780 qemu_mutex_lock(&hmp.out_lock);
Luiz Capitulino48c043d2013-04-02 15:07:33 -0400781 if (qstring_get_length(hmp.outbuf) > 0) {
782 output = g_strdup(qstring_get_str(hmp.outbuf));
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200783 } else {
784 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200785 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +0200786 qemu_mutex_unlock(&hmp.out_lock);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200787
788out:
Wenchao Xiab01fe892013-08-27 20:38:19 +0800789 monitor_data_destroy(&hmp);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200790 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200791}
792
bellard9dc39cb2004-03-14 21:38:27 +0000793static int compare_cmd(const char *name, const char *list)
794{
795 const char *p, *pstart;
796 int len;
797 len = strlen(name);
798 p = list;
799 for(;;) {
800 pstart = p;
801 p = strchr(p, '|');
802 if (!p)
803 p = pstart + strlen(pstart);
804 if ((p - pstart) == len && !memcmp(pstart, name, len))
805 return 1;
806 if (*p == '\0')
807 break;
808 p++;
809 }
810 return 0;
811}
812
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800813static int get_str(char *buf, int buf_size, const char **pp)
814{
815 const char *p;
816 char *q;
817 int c;
818
819 q = buf;
820 p = *pp;
821 while (qemu_isspace(*p)) {
822 p++;
823 }
824 if (*p == '\0') {
825 fail:
826 *q = '\0';
827 *pp = p;
828 return -1;
829 }
830 if (*p == '\"') {
831 p++;
832 while (*p != '\0' && *p != '\"') {
833 if (*p == '\\') {
834 p++;
835 c = *p++;
836 switch (c) {
837 case 'n':
838 c = '\n';
839 break;
840 case 'r':
841 c = '\r';
842 break;
843 case '\\':
844 case '\'':
845 case '\"':
846 break;
847 default:
Peter Maydell71baf782015-08-19 16:20:19 +0100848 printf("unsupported escape code: '\\%c'\n", c);
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800849 goto fail;
850 }
851 if ((q - buf) < buf_size - 1) {
852 *q++ = c;
853 }
854 } else {
855 if ((q - buf) < buf_size - 1) {
856 *q++ = *p;
857 }
858 p++;
859 }
860 }
861 if (*p != '\"') {
Peter Maydell71baf782015-08-19 16:20:19 +0100862 printf("unterminated string\n");
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800863 goto fail;
864 }
865 p++;
866 } else {
867 while (*p != '\0' && !qemu_isspace(*p)) {
868 if ((q - buf) < buf_size - 1) {
869 *q++ = *p;
870 }
871 p++;
872 }
873 }
874 *q = '\0';
875 *pp = p;
876 return 0;
877}
878
879#define MAX_ARGS 16
880
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800881static void free_cmdline_args(char **args, int nb_args)
882{
883 int i;
884
885 assert(nb_args <= MAX_ARGS);
886
887 for (i = 0; i < nb_args; i++) {
888 g_free(args[i]);
889 }
890
891}
892
893/*
894 * Parse the command line to get valid args.
895 * @cmdline: command line to be parsed.
896 * @pnb_args: location to store the number of args, must NOT be NULL.
897 * @args: location to store the args, which should be freed by caller, must
898 * NOT be NULL.
899 *
900 * Returns 0 on success, negative on failure.
901 *
902 * NOTE: this parser is an approximate form of the real command parser. Number
903 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
904 * return with failure.
905 */
906static int parse_cmdline(const char *cmdline,
907 int *pnb_args, char **args)
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800908{
909 const char *p;
910 int nb_args, ret;
911 char buf[1024];
912
913 p = cmdline;
914 nb_args = 0;
915 for (;;) {
916 while (qemu_isspace(*p)) {
917 p++;
918 }
919 if (*p == '\0') {
920 break;
921 }
922 if (nb_args >= MAX_ARGS) {
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800923 goto fail;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800924 }
925 ret = get_str(buf, sizeof(buf), &p);
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800926 if (ret < 0) {
927 goto fail;
928 }
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800929 args[nb_args] = g_strdup(buf);
930 nb_args++;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800931 }
932 *pnb_args = nb_args;
Wenchao Xiadcc70cd2013-08-27 20:38:22 +0800933 return 0;
934
935 fail:
936 free_cmdline_args(args, nb_args);
937 return -1;
Wenchao Xiaf5438c02013-08-27 20:38:21 +0800938}
939
Wenchao Xia66855492013-08-27 20:38:23 +0800940static void help_cmd_dump_one(Monitor *mon,
941 const mon_cmd_t *cmd,
942 char **prefix_args,
943 int prefix_args_nb)
944{
945 int i;
946
947 for (i = 0; i < prefix_args_nb; i++) {
948 monitor_printf(mon, "%s ", prefix_args[i]);
949 }
950 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
951}
952
953/* @args[@arg_index] is the valid command need to find in @cmds */
Anthony Liguoric227f092009-10-01 16:12:16 -0500954static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
Wenchao Xia66855492013-08-27 20:38:23 +0800955 char **args, int nb_args, int arg_index)
bellard9dc39cb2004-03-14 21:38:27 +0000956{
Anthony Liguoric227f092009-10-01 16:12:16 -0500957 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000958
Wenchao Xia66855492013-08-27 20:38:23 +0800959 /* No valid arg need to compare with, dump all in *cmds */
960 if (arg_index >= nb_args) {
961 for (cmd = cmds; cmd->name != NULL; cmd++) {
962 help_cmd_dump_one(mon, cmd, args, arg_index);
963 }
964 return;
965 }
966
967 /* Find one entry to dump */
968 for (cmd = cmds; cmd->name != NULL; cmd++) {
969 if (compare_cmd(args[arg_index], cmd->name)) {
970 if (cmd->sub_table) {
971 /* continue with next arg */
972 help_cmd_dump(mon, cmd->sub_table,
973 args, nb_args, arg_index + 1);
974 } else {
975 help_cmd_dump_one(mon, cmd, args, arg_index);
976 }
977 break;
978 }
bellard9dc39cb2004-03-14 21:38:27 +0000979 }
980}
981
aliguori376253e2009-03-05 23:01:23 +0000982static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000983{
Wenchao Xia66855492013-08-27 20:38:23 +0800984 char *args[MAX_ARGS];
985 int nb_args = 0;
986
987 /* 1. parse user input */
988 if (name) {
989 /* special case for log, directly dump and return */
990 if (!strcmp(name, "log")) {
Peter Maydell38dad9e2013-02-11 16:41:25 +0000991 const QEMULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000992 monitor_printf(mon, "Log items (comma separated):\n");
993 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
Peter Maydell38dad9e2013-02-11 16:41:25 +0000994 for (item = qemu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000995 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000996 }
Wenchao Xia66855492013-08-27 20:38:23 +0800997 return;
998 }
999
1000 if (parse_cmdline(name, &nb_args, args) < 0) {
1001 return;
bellardf193c792004-03-21 17:06:25 +00001002 }
bellard9dc39cb2004-03-14 21:38:27 +00001003 }
Wenchao Xia66855492013-08-27 20:38:23 +08001004
1005 /* 2. dump the contents according to parsed args */
1006 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
1007
1008 free_cmdline_args(args, nb_args);
bellard9dc39cb2004-03-14 21:38:27 +00001009}
1010
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001011static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -03001012{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001013 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -03001014}
1015
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001016static void hmp_trace_event(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +05301017{
1018 const char *tp_name = qdict_get_str(qdict, "name");
1019 bool new_state = qdict_get_bool(qdict, "option");
Lluís Vilanova77e2b172016-07-11 12:53:57 +02001020 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1021 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
Lluís Vilanova14101d02014-08-25 13:20:03 +02001022 Error *local_err = NULL;
Blue Swirlf871d682010-10-13 19:14:29 +00001023
Lluís Vilanova77e2b172016-07-11 12:53:57 +02001024 if (vcpu < 0) {
1025 monitor_printf(mon, "argument vcpu must be positive");
1026 return;
1027 }
1028
1029 qmp_trace_event_set_state(tp_name, new_state, true, true, has_vcpu, vcpu, &local_err);
Lluís Vilanova14101d02014-08-25 13:20:03 +02001030 if (local_err) {
Markus Armbruster091e38b2015-02-10 15:15:43 +01001031 error_report_err(local_err);
Blue Swirlf871d682010-10-13 19:14:29 +00001032 }
Prerna Saxena22890ab2010-06-24 17:04:53 +05301033}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +01001034
Michael Rothc45a8162011-10-02 08:44:37 -05001035#ifdef CONFIG_TRACE_SIMPLE
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001036static void hmp_trace_file(Monitor *mon, const QDict *qdict)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +01001037{
1038 const char *op = qdict_get_try_str(qdict, "op");
1039 const char *arg = qdict_get_try_str(qdict, "arg");
1040
1041 if (!op) {
1042 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
1043 } else if (!strcmp(op, "on")) {
1044 st_set_trace_file_enabled(true);
1045 } else if (!strcmp(op, "off")) {
1046 st_set_trace_file_enabled(false);
1047 } else if (!strcmp(op, "flush")) {
1048 st_flush_trace_buffer();
1049 } else if (!strcmp(op, "set")) {
1050 if (arg) {
1051 st_set_trace_file(arg);
1052 }
1053 } else {
1054 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
1055 help_cmd(mon, "trace-file");
1056 }
1057}
Prerna Saxena22890ab2010-06-24 17:04:53 +05301058#endif
1059
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001060static void hmp_info_help(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +00001061{
Luiz Capitulino13c74252009-10-07 13:41:55 -03001062 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +00001063}
1064
Marc-André Lureau9e812b62016-09-12 13:19:05 +04001065static void query_commands_cb(QmpCommand *cmd, void *opaque)
bellard9bc9d1c2004-10-10 15:15:51 +00001066{
Marc-André Lureau9e812b62016-09-12 13:19:05 +04001067 CommandInfoList *info, **list = opaque;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02001068
Marc-André Lureau9e812b62016-09-12 13:19:05 +04001069 if (!cmd->enabled) {
1070 return;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02001071 }
1072
Marc-André Lureau9e812b62016-09-12 13:19:05 +04001073 info = g_malloc0(sizeof(*info));
1074 info->value = g_malloc0(sizeof(*info->value));
1075 info->value->name = g_strdup(cmd->name);
1076 info->next = *list;
1077 *list = info;
1078}
1079
1080CommandInfoList *qmp_query_commands(Error **errp)
1081{
1082 CommandInfoList *list = NULL;
1083
Markus Armbruster635db182017-03-03 13:32:27 +01001084 qmp_for_each_command(cur_mon->qmp.commands, query_commands_cb, &list);
Marc-André Lureau9e812b62016-09-12 13:19:05 +04001085
1086 return list;
thsa36e69d2007-12-02 05:18:19 +00001087}
1088
Daniel P. Berrange48608532012-05-21 17:59:51 +01001089EventInfoList *qmp_query_events(Error **errp)
1090{
1091 EventInfoList *info, *ev_list = NULL;
Wenchao Xia75175172014-06-18 08:43:54 +02001092 QAPIEvent e;
Daniel P. Berrange48608532012-05-21 17:59:51 +01001093
Eric Blake7fb1cf12015-11-18 01:52:57 -07001094 for (e = 0 ; e < QAPI_EVENT__MAX ; e++) {
Markus Armbruster977c7362017-08-24 10:46:08 +02001095 const char *event_name = QAPIEvent_str(e);
Daniel P. Berrange48608532012-05-21 17:59:51 +01001096 assert(event_name != NULL);
1097 info = g_malloc0(sizeof(*info));
1098 info->value = g_malloc0(sizeof(*info->value));
1099 info->value->name = g_strdup(event_name);
1100
1101 info->next = ev_list;
1102 ev_list = info;
1103 }
1104
1105 return ev_list;
1106}
1107
Markus Armbruster39a18152015-09-16 13:06:28 +02001108/*
1109 * Minor hack: generated marshalling suppressed for this command
1110 * ('gen': false in the schema) so we can parse the JSON string
1111 * directly into QObject instead of first parsing it with
1112 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
1113 * to QObject with generated output marshallers, every time. Instead,
Daniel P. Berrangeb3db2112016-09-30 15:45:27 +01001114 * we do it in test-qobject-input-visitor.c, just to make sure
Markus Armbrusterfb0bc832018-02-26 13:48:58 -06001115 * qapi-gen.py's output actually conforms to the schema.
Markus Armbruster39a18152015-09-16 13:06:28 +02001116 */
1117static void qmp_query_qmp_schema(QDict *qdict, QObject **ret_data,
1118 Error **errp)
1119{
Marc-André Lureau7d0f9822018-03-05 18:29:51 +01001120 *ret_data = qobject_from_qlit(&qmp_schema_qlit);
Markus Armbruster39a18152015-09-16 13:06:28 +02001121}
1122
Marc-André Lureau5032a162016-09-12 13:19:02 +04001123/*
Marc-André Lureau5032a162016-09-12 13:19:02 +04001124 * We used to define commands in qmp-commands.hx in addition to the
1125 * QAPI schema. This permitted defining some of them only in certain
1126 * configurations. query-commands has always reflected that (good,
1127 * because it lets QMP clients figure out what's actually available),
1128 * while query-qmp-schema never did (not so good). This function is a
1129 * hack to keep the configuration-specific commands defined exactly as
1130 * before, even though qmp-commands.hx is gone.
1131 *
1132 * FIXME Educate the QAPI schema on configuration-specific commands,
1133 * and drop this hack.
1134 */
1135static void qmp_unregister_commands_hack(void)
1136{
1137#ifndef CONFIG_SPICE
Markus Armbruster1527bad2017-03-03 13:32:25 +01001138 qmp_unregister_command(&qmp_commands, "query-spice");
Marc-André Lureau5032a162016-09-12 13:19:02 +04001139#endif
Markus Armbruster38bb54f2017-04-27 15:00:53 +02001140#ifndef CONFIG_REPLICATION
1141 qmp_unregister_command(&qmp_commands, "xen-set-replication");
1142 qmp_unregister_command(&qmp_commands, "query-xen-replication-status");
1143 qmp_unregister_command(&qmp_commands, "xen-colo-do-checkpoint");
1144#endif
Marc-André Lureau5032a162016-09-12 13:19:02 +04001145#ifndef TARGET_I386
Markus Armbruster1527bad2017-03-03 13:32:25 +01001146 qmp_unregister_command(&qmp_commands, "rtc-reset-reinjection");
Brijesh Singh08a161f2018-03-08 06:48:42 -06001147 qmp_unregister_command(&qmp_commands, "query-sev");
Brijesh Singh1b6a0342018-03-08 06:48:56 -06001148 qmp_unregister_command(&qmp_commands, "query-sev-launch-measure");
Brijesh Singh31dd67f2018-03-08 06:48:59 -06001149 qmp_unregister_command(&qmp_commands, "query-sev-capabilities");
Marc-André Lureau5032a162016-09-12 13:19:02 +04001150#endif
1151#ifndef TARGET_S390X
Markus Armbruster1527bad2017-03-03 13:32:25 +01001152 qmp_unregister_command(&qmp_commands, "dump-skeys");
Marc-André Lureau5032a162016-09-12 13:19:02 +04001153#endif
1154#ifndef TARGET_ARM
Markus Armbruster1527bad2017-03-03 13:32:25 +01001155 qmp_unregister_command(&qmp_commands, "query-gic-capabilities");
Marc-André Lureau5032a162016-09-12 13:19:02 +04001156#endif
Eduardo Habkostf99fd7c2017-02-22 16:00:28 -03001157#if !defined(TARGET_S390X) && !defined(TARGET_I386)
Markus Armbruster1527bad2017-03-03 13:32:25 +01001158 qmp_unregister_command(&qmp_commands, "query-cpu-model-expansion");
Eduardo Habkostf99fd7c2017-02-22 16:00:28 -03001159#endif
1160#if !defined(TARGET_S390X)
Markus Armbruster1527bad2017-03-03 13:32:25 +01001161 qmp_unregister_command(&qmp_commands, "query-cpu-model-baseline");
1162 qmp_unregister_command(&qmp_commands, "query-cpu-model-comparison");
Eduardo Habkost728b1422016-10-05 16:49:01 -03001163#endif
1164#if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \
1165 && !defined(TARGET_S390X)
Markus Armbruster1527bad2017-03-03 13:32:25 +01001166 qmp_unregister_command(&qmp_commands, "query-cpu-definitions");
Eduardo Habkost728b1422016-10-05 16:49:01 -03001167#endif
Marc-André Lureau5032a162016-09-12 13:19:02 +04001168}
1169
Peter Xu6adf08d2018-03-09 16:59:50 +08001170static void monitor_init_qmp_commands(void)
Marc-André Lureauedcfaef2016-09-12 13:19:00 +04001171{
Markus Armbruster635db182017-03-03 13:32:27 +01001172 /*
1173 * Two command lists:
1174 * - qmp_commands contains all QMP commands
1175 * - qmp_cap_negotiation_commands contains just
1176 * "qmp_capabilities", to enforce capability negotiation
1177 */
1178
Markus Armbruster1527bad2017-03-03 13:32:25 +01001179 qmp_init_marshal(&qmp_commands);
Markus Armbruster05875682017-03-03 13:32:24 +01001180
Markus Armbruster1527bad2017-03-03 13:32:25 +01001181 qmp_register_command(&qmp_commands, "query-qmp-schema",
1182 qmp_query_qmp_schema,
Marc-André Lureauedcfaef2016-09-12 13:19:00 +04001183 QCO_NO_OPTIONS);
Markus Armbruster1527bad2017-03-03 13:32:25 +01001184 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
Marc-André Lureauedcfaef2016-09-12 13:19:00 +04001185 QCO_NO_OPTIONS);
Markus Armbruster1527bad2017-03-03 13:32:25 +01001186 qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add,
Marc-André Lureauedcfaef2016-09-12 13:19:00 +04001187 QCO_NO_OPTIONS);
Marc-André Lureau5032a162016-09-12 13:19:02 +04001188
Markus Armbruster05875682017-03-03 13:32:24 +01001189 qmp_unregister_commands_hack();
Markus Armbruster635db182017-03-03 13:32:27 +01001190
1191 QTAILQ_INIT(&qmp_cap_negotiation_commands);
1192 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
1193 qmp_marshal_qmp_capabilities, QCO_NO_OPTIONS);
1194}
1195
Peter Xu71da4662018-03-09 16:59:57 +08001196static bool qmp_cap_enabled(Monitor *mon, QMPCapability cap)
1197{
1198 return mon->qmp.qmp_caps[cap];
1199}
1200
1201static bool qmp_oob_enabled(Monitor *mon)
1202{
1203 return qmp_cap_enabled(mon, QMP_CAPABILITY_OOB);
1204}
1205
Peter Xu02130312018-03-09 16:59:53 +08001206static void qmp_caps_check(Monitor *mon, QMPCapabilityList *list,
1207 Error **errp)
Markus Armbruster635db182017-03-03 13:32:27 +01001208{
Peter Xu02130312018-03-09 16:59:53 +08001209 for (; list; list = list->next) {
1210 assert(list->value < QMP_CAPABILITY__MAX);
1211 switch (list->value) {
1212 case QMP_CAPABILITY_OOB:
1213 if (!mon->use_io_thr) {
1214 /*
1215 * Out-Of-Band only works with monitors that are
1216 * running on dedicated IOThread.
1217 */
1218 error_setg(errp, "This monitor does not support "
1219 "Out-Of-Band (OOB)");
1220 return;
1221 }
1222 break;
1223 default:
1224 break;
1225 }
1226 }
1227}
1228
1229/* This function should only be called after capabilities are checked. */
1230static void qmp_caps_apply(Monitor *mon, QMPCapabilityList *list)
1231{
1232 for (; list; list = list->next) {
1233 mon->qmp.qmp_caps[list->value] = true;
1234 }
1235}
1236
Peter Xucf869d52018-03-10 20:38:05 -06001237/*
1238 * Return true if check successful, or false otherwise. When false is
1239 * returned, detailed error will be in errp if provided.
1240 */
1241static bool qmp_cmd_oob_check(Monitor *mon, QDict *req, Error **errp)
1242{
1243 const char *command;
1244 QmpCommand *cmd;
1245
1246 command = qdict_get_try_str(req, "execute");
1247 if (!command) {
1248 error_setg(errp, "Command field 'execute' missing");
1249 return false;
1250 }
1251
1252 cmd = qmp_find_command(mon->qmp.commands, command);
1253 if (!cmd) {
Peter Xu9ddb7452018-03-26 14:38:54 +08001254 if (mon->qmp.commands == &qmp_cap_negotiation_commands) {
1255 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1256 "Expecting capabilities negotiation "
1257 "with 'qmp_capabilities'");
1258 } else {
1259 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1260 "The command %s has not been found", command);
1261 }
Peter Xucf869d52018-03-10 20:38:05 -06001262 return false;
1263 }
1264
1265 if (qmp_is_oob(req)) {
1266 if (!qmp_oob_enabled(mon)) {
1267 error_setg(errp, "Please enable Out-Of-Band first "
1268 "for the session during capabilities negotiation");
1269 return false;
1270 }
1271 if (!(cmd->options & QCO_ALLOW_OOB)) {
1272 error_setg(errp, "The command %s does not support OOB",
1273 command);
1274 return false;
1275 }
1276 }
1277
1278 return true;
1279}
1280
Peter Xu02130312018-03-09 16:59:53 +08001281void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
1282 Error **errp)
1283{
1284 Error *local_err = NULL;
1285
Markus Armbruster635db182017-03-03 13:32:27 +01001286 if (cur_mon->qmp.commands == &qmp_commands) {
1287 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1288 "Capabilities negotiation is already complete, command "
1289 "ignored");
1290 return;
1291 }
1292
Peter Xu02130312018-03-09 16:59:53 +08001293 /* Enable QMP capabilities provided by the client if applicable. */
1294 if (has_enable) {
1295 qmp_caps_check(cur_mon, enable, &local_err);
1296 if (local_err) {
1297 /*
1298 * Failed check on any of the capabilities will fail the
1299 * entire command (and thus not apply any of the other
1300 * capabilities that were also requested).
1301 */
1302 error_propagate(errp, local_err);
1303 return;
1304 }
1305 qmp_caps_apply(cur_mon, enable);
1306 }
1307
Markus Armbruster635db182017-03-03 13:32:27 +01001308 cur_mon->qmp.commands = &qmp_commands;
Marc-André Lureauedcfaef2016-09-12 13:19:00 +04001309}
1310
Luiz Capitulinob025c8b2011-10-06 14:02:57 -03001311/* set the current CPU defined by the user */
1312int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +00001313{
Andreas Färber55e5c282012-12-17 06:18:02 +01001314 CPUState *cpu;
bellard6a00d602005-11-21 23:25:50 +00001315
Andreas Färber1c8bb3c2013-02-15 17:01:09 +01001316 cpu = qemu_get_cpu(cpu_index);
1317 if (cpu == NULL) {
1318 return -1;
bellard6a00d602005-11-21 23:25:50 +00001319 }
Greg Kurz751f8cf2017-10-17 10:16:22 +02001320 g_free(cur_mon->mon_cpu_path);
1321 cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
Andreas Färber1c8bb3c2013-02-15 17:01:09 +01001322 return 0;
bellard6a00d602005-11-21 23:25:50 +00001323}
1324
Viktor Mihajlovski137b5cb2018-02-16 17:08:41 +01001325static CPUState *mon_get_cpu_sync(bool synchronize)
bellard6a00d602005-11-21 23:25:50 +00001326{
Greg Kurz751f8cf2017-10-17 10:16:22 +02001327 CPUState *cpu;
1328
1329 if (cur_mon->mon_cpu_path) {
1330 cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path,
1331 TYPE_CPU, NULL);
1332 if (!cpu) {
1333 g_free(cur_mon->mon_cpu_path);
1334 cur_mon->mon_cpu_path = NULL;
1335 }
1336 }
1337 if (!cur_mon->mon_cpu_path) {
Thomas Huth854e67f2017-01-13 13:12:35 +01001338 if (!first_cpu) {
1339 return NULL;
1340 }
David Gibson27a83f82016-09-21 15:29:26 +10001341 monitor_set_cpu(first_cpu->cpu_index);
Greg Kurz751f8cf2017-10-17 10:16:22 +02001342 cpu = first_cpu;
bellard6a00d602005-11-21 23:25:50 +00001343 }
Viktor Mihajlovski137b5cb2018-02-16 17:08:41 +01001344 if (synchronize) {
1345 cpu_synchronize_state(cpu);
1346 }
Greg Kurz751f8cf2017-10-17 10:16:22 +02001347 return cpu;
Peter Crosthwaite5bcda5f2015-05-24 14:20:40 -07001348}
1349
Viktor Mihajlovski137b5cb2018-02-16 17:08:41 +01001350CPUState *mon_get_cpu(void)
1351{
1352 return mon_get_cpu_sync(true);
1353}
1354
Pavel Butsykinbf957282015-09-10 18:38:59 +03001355CPUArchState *mon_get_cpu_env(void)
Peter Crosthwaite5bcda5f2015-05-24 14:20:40 -07001356{
Thomas Huth854e67f2017-01-13 13:12:35 +01001357 CPUState *cs = mon_get_cpu();
1358
1359 return cs ? cs->env_ptr : NULL;
bellard6a00d602005-11-21 23:25:50 +00001360}
1361
Luiz Capitulino99b77962011-10-24 10:53:44 -02001362int monitor_get_cpu_index(void)
1363{
Viktor Mihajlovski137b5cb2018-02-16 17:08:41 +01001364 CPUState *cs = mon_get_cpu_sync(false);
Thomas Huth854e67f2017-01-13 13:12:35 +01001365
1366 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
Luiz Capitulino99b77962011-10-24 10:53:44 -02001367}
1368
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001369static void hmp_info_registers(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001370{
Suraj Jitindar Singh18f08282017-06-08 15:41:16 +10001371 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
1372 CPUState *cs;
Thomas Huth854e67f2017-01-13 13:12:35 +01001373
Suraj Jitindar Singh18f08282017-06-08 15:41:16 +10001374 if (all_cpus) {
1375 CPU_FOREACH(cs) {
1376 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
1377 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1378 }
1379 } else {
1380 cs = mon_get_cpu();
1381
1382 if (!cs) {
1383 monitor_printf(mon, "No CPU available\n");
1384 return;
1385 }
1386
1387 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
Thomas Huth854e67f2017-01-13 13:12:35 +01001388 }
bellard9307c4c2004-04-04 12:57:25 +00001389}
1390
Paolo Bonzinif0d14a92012-09-17 13:42:41 +02001391#ifdef CONFIG_TCG
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001392static void hmp_info_jit(Monitor *mon, const QDict *qdict)
bellarde3db7222005-01-26 22:00:47 +00001393{
Thomas Huthb7da97e2017-04-26 06:11:47 +02001394 if (!tcg_enabled()) {
1395 error_report("JIT information is only available with accel=tcg");
1396 return;
1397 }
1398
aliguori376253e2009-03-05 23:01:23 +00001399 dump_exec_info((FILE *)mon, monitor_fprintf);
Sebastian Tanase27498be2014-07-25 11:56:33 +02001400 dump_drift_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +00001401}
1402
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001403static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
Max Filippov246ae242014-11-02 11:04:18 +03001404{
1405 dump_opcount_info((FILE *)mon, monitor_fprintf);
1406}
Paolo Bonzinif0d14a92012-09-17 13:42:41 +02001407#endif
Max Filippov246ae242014-11-02 11:04:18 +03001408
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001409static void hmp_info_history(Monitor *mon, const QDict *qdict)
bellardaa455482004-04-04 13:07:25 +00001410{
1411 int i;
bellard7e2515e2004-08-01 21:52:19 +00001412 const char *str;
ths3b46e622007-09-17 08:09:54 +00001413
aliguoricde76ee2009-03-05 23:01:51 +00001414 if (!mon->rs)
1415 return;
bellard7e2515e2004-08-01 21:52:19 +00001416 i = 0;
1417 for(;;) {
aliguori731b0362009-03-05 23:01:42 +00001418 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +00001419 if (!str)
1420 break;
aliguori376253e2009-03-05 23:01:23 +00001421 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +00001422 i++;
bellardaa455482004-04-04 13:07:25 +00001423 }
1424}
1425
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001426static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
j_mayer76a66252007-03-07 08:32:30 +00001427{
Thomas Huth854e67f2017-01-13 13:12:35 +01001428 CPUState *cs = mon_get_cpu();
1429
1430 if (!cs) {
1431 monitor_printf(mon, "No CPU available\n");
1432 return;
1433 }
1434 cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +00001435}
j_mayer76a66252007-03-07 08:32:30 +00001436
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001437static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +05301438{
Lluís Vilanovabd712112016-07-11 12:53:51 +02001439 const char *name = qdict_get_try_str(qdict, "name");
Lluís Vilanova77e2b172016-07-11 12:53:57 +02001440 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1441 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
Lluís Vilanovabd712112016-07-11 12:53:51 +02001442 TraceEventInfoList *events;
Lluís Vilanova14101d02014-08-25 13:20:03 +02001443 TraceEventInfoList *elem;
Lluís Vilanovabd712112016-07-11 12:53:51 +02001444 Error *local_err = NULL;
1445
1446 if (name == NULL) {
1447 name = "*";
1448 }
Lluís Vilanova77e2b172016-07-11 12:53:57 +02001449 if (vcpu < 0) {
1450 monitor_printf(mon, "argument vcpu must be positive");
1451 return;
1452 }
Lluís Vilanovabd712112016-07-11 12:53:51 +02001453
Lluís Vilanova77e2b172016-07-11 12:53:57 +02001454 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
Lluís Vilanovabd712112016-07-11 12:53:51 +02001455 if (local_err) {
1456 error_report_err(local_err);
1457 return;
1458 }
Lluís Vilanova14101d02014-08-25 13:20:03 +02001459
1460 for (elem = events; elem != NULL; elem = elem->next) {
1461 monitor_printf(mon, "%s : state %u\n",
1462 elem->value->name,
1463 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1464 }
1465 qapi_free_TraceEventInfoList(events);
Prerna Saxena22890ab2010-06-24 17:04:53 +05301466}
Prerna Saxena22890ab2010-06-24 17:04:53 +05301467
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001468void qmp_client_migrate_info(const char *protocol, const char *hostname,
1469 bool has_port, int64_t port,
1470 bool has_tls_port, int64_t tls_port,
1471 bool has_cert_subject, const char *cert_subject,
1472 Error **errp)
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001473{
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001474 if (strcmp(protocol, "spice") == 0) {
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001475 if (!qemu_using_spice(errp)) {
1476 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001477 }
1478
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001479 if (!has_port && !has_tls_port) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001480 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001481 return;
Yonit Halperin6ec5dae2012-03-18 09:42:39 +02001482 }
1483
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001484 if (qemu_spice_migrate_info(hostname,
1485 has_port ? port : -1,
1486 has_tls_port ? tls_port : -1,
1487 cert_subject)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001488 error_setg(errp, QERR_UNDEFINED_ERROR);
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001489 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001490 }
Markus Armbrusterb8a185b2015-03-05 17:29:02 +01001491 return;
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001492 }
1493
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001494 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001495}
1496
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001497static void hmp_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001498{
Markus Armbrusterdaa76aa2016-06-15 19:27:16 +02001499 Error *err = NULL;
1500
1501 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
1502 if (err) {
1503 error_report_err(err);
1504 }
pbrooke735b912007-06-30 13:53:24 +00001505}
1506
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001507static void hmp_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001508{
1509 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001510 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001511
bellard9307c4c2004-04-04 12:57:25 +00001512 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001513 mask = 0;
1514 } else {
Peter Maydell4fde1eb2013-02-11 16:41:22 +00001515 mask = qemu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001516 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001517 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001518 return;
1519 }
1520 }
Peter Maydell24537a02013-02-11 16:41:23 +00001521 qemu_set_log(mask);
bellardf193c792004-03-21 17:06:25 +00001522}
1523
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001524static void hmp_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001525{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001526 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001527 if (!option || !strcmp(option, "on")) {
1528 singlestep = 1;
1529 } else if (!strcmp(option, "off")) {
1530 singlestep = 0;
1531 } else {
1532 monitor_printf(mon, "unexpected option %s\n", option);
1533 }
1534}
1535
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001536static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001537{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001538 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001539 if (!device)
1540 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1541 if (gdbserver_start(device) < 0) {
1542 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1543 device);
1544 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001545 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001546 } else {
aliguori59030a82009-04-05 18:43:41 +00001547 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1548 device);
bellard8a7ddc32004-03-31 19:00:16 +00001549 }
1550}
1551
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001552static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001553{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001554 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001555 if (select_watchdog_action(action) == -1) {
1556 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1557 }
1558}
1559
aliguori376253e2009-03-05 23:01:23 +00001560static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001561{
aliguori376253e2009-03-05 23:01:23 +00001562 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001563 switch(c) {
1564 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001565 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001566 break;
1567 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001568 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001569 break;
1570 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001571 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001572 break;
1573 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001574 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001575 break;
1576 default:
1577 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001578 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001579 } else {
aliguori376253e2009-03-05 23:01:23 +00001580 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001581 }
1582 break;
1583 }
aliguori376253e2009-03-05 23:01:23 +00001584 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001585}
1586
aliguori376253e2009-03-05 23:01:23 +00001587static void memory_dump(Monitor *mon, int count, int format, int wsize,
Avi Kivitya8170e52012-10-23 12:30:10 +02001588 hwaddr addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001589{
Blue Swirl23842aa2010-01-12 20:27:43 +00001590 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001591 uint8_t buf[16];
1592 uint64_t v;
Thomas Huth854e67f2017-01-13 13:12:35 +01001593 CPUState *cs = mon_get_cpu();
1594
1595 if (!cs && (format == 'i' || !is_physical)) {
1596 monitor_printf(mon, "Can not dump without CPU\n");
1597 return;
1598 }
bellard9307c4c2004-04-04 12:57:25 +00001599
1600 if (format == 'i') {
Richard Henderson1d484742017-09-14 08:38:35 -07001601 monitor_disas(mon, cs, addr, count, is_physical);
bellard9307c4c2004-04-04 12:57:25 +00001602 return;
1603 }
1604
1605 len = wsize * count;
1606 if (wsize == 1)
1607 line_size = 8;
1608 else
1609 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001610 max_digits = 0;
1611
1612 switch(format) {
1613 case 'o':
Marc-André Lureau69db8df2017-06-22 13:04:16 +02001614 max_digits = DIV_ROUND_UP(wsize * 8, 3);
bellard9307c4c2004-04-04 12:57:25 +00001615 break;
1616 default:
1617 case 'x':
1618 max_digits = (wsize * 8) / 4;
1619 break;
1620 case 'u':
1621 case 'd':
Marc-André Lureau69db8df2017-06-22 13:04:16 +02001622 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
bellard9307c4c2004-04-04 12:57:25 +00001623 break;
1624 case 'c':
1625 wsize = 1;
1626 break;
1627 }
1628
1629 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001630 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001631 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001632 else
aliguori376253e2009-03-05 23:01:23 +00001633 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001634 l = len;
1635 if (l > line_size)
1636 l = line_size;
1637 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001638 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001639 } else {
Thomas Huth854e67f2017-01-13 13:12:35 +01001640 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001641 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001642 break;
1643 }
bellard9307c4c2004-04-04 12:57:25 +00001644 }
ths5fafdf22007-09-16 21:08:06 +00001645 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001646 while (i < l) {
1647 switch(wsize) {
1648 default:
1649 case 1:
Peter Maydell24e60302015-01-20 15:19:32 +00001650 v = ldub_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001651 break;
1652 case 2:
Peter Maydell24e60302015-01-20 15:19:32 +00001653 v = lduw_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001654 break;
1655 case 4:
Peter Maydell24e60302015-01-20 15:19:32 +00001656 v = (uint32_t)ldl_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001657 break;
1658 case 8:
Peter Maydell24e60302015-01-20 15:19:32 +00001659 v = ldq_p(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001660 break;
1661 }
aliguori376253e2009-03-05 23:01:23 +00001662 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001663 switch(format) {
1664 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001665 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001666 break;
1667 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001668 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001669 break;
1670 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001671 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001672 break;
1673 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001674 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001675 break;
1676 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001677 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001678 break;
1679 }
1680 i += wsize;
1681 }
aliguori376253e2009-03-05 23:01:23 +00001682 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001683 addr += l;
1684 len -= l;
1685 }
1686}
1687
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001688static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001689{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001690 int count = qdict_get_int(qdict, "count");
1691 int format = qdict_get_int(qdict, "format");
1692 int size = qdict_get_int(qdict, "size");
1693 target_long addr = qdict_get_int(qdict, "addr");
1694
aliguori376253e2009-03-05 23:01:23 +00001695 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001696}
1697
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001698static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001699{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001700 int count = qdict_get_int(qdict, "count");
1701 int format = qdict_get_int(qdict, "format");
1702 int size = qdict_get_int(qdict, "size");
Avi Kivitya8170e52012-10-23 12:30:10 +02001703 hwaddr addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001704
aliguori376253e2009-03-05 23:01:23 +00001705 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001706}
1707
Paolo Bonzinie9628442017-04-20 15:30:58 +02001708static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp)
1709{
1710 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
1711 addr, 1);
1712
1713 if (!mrs.mr) {
1714 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
1715 return NULL;
1716 }
1717
1718 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
1719 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
1720 memory_region_unref(mrs.mr);
1721 return NULL;
1722 }
1723
1724 *p_mr = mrs.mr;
1725 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
1726}
1727
1728static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
1729{
1730 hwaddr addr = qdict_get_int(qdict, "addr");
1731 Error *local_err = NULL;
1732 MemoryRegion *mr = NULL;
1733 void *ptr;
1734
1735 ptr = gpa2hva(&mr, addr, &local_err);
1736 if (local_err) {
1737 error_report_err(local_err);
1738 return;
1739 }
1740
1741 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
1742 " (%s) is %p\n",
1743 addr, mr->name, ptr);
1744
1745 memory_region_unref(mr);
1746}
1747
1748#ifdef CONFIG_LINUX
1749static uint64_t vtop(void *ptr, Error **errp)
1750{
1751 uint64_t pinfo;
1752 uint64_t ret = -1;
1753 uintptr_t addr = (uintptr_t) ptr;
1754 uintptr_t pagesize = getpagesize();
1755 off_t offset = addr / pagesize * sizeof(pinfo);
1756 int fd;
1757
1758 fd = open("/proc/self/pagemap", O_RDONLY);
1759 if (fd == -1) {
1760 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
1761 return -1;
1762 }
1763
1764 /* Force copy-on-write if necessary. */
1765 atomic_add((uint8_t *)ptr, 0);
1766
1767 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
1768 error_setg_errno(errp, errno, "Cannot read pagemap");
1769 goto out;
1770 }
1771 if ((pinfo & (1ull << 63)) == 0) {
1772 error_setg(errp, "Page not present");
1773 goto out;
1774 }
1775 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
1776
1777out:
1778 close(fd);
1779 return ret;
1780}
1781
1782static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
1783{
1784 hwaddr addr = qdict_get_int(qdict, "addr");
1785 Error *local_err = NULL;
1786 MemoryRegion *mr = NULL;
1787 void *ptr;
1788 uint64_t physaddr;
1789
1790 ptr = gpa2hva(&mr, addr, &local_err);
1791 if (local_err) {
1792 error_report_err(local_err);
1793 return;
1794 }
1795
1796 physaddr = vtop(ptr, &local_err);
1797 if (local_err) {
1798 error_report_err(local_err);
1799 } else {
1800 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
1801 " (%s) is 0x%" PRIx64 "\n",
1802 addr, mr->name, (uint64_t) physaddr);
1803 }
1804
1805 memory_region_unref(mr);
1806}
1807#endif
1808
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001809static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001810{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001811 int format = qdict_get_int(qdict, "format");
Avi Kivitya8170e52012-10-23 12:30:10 +02001812 hwaddr val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001813
bellard9307c4c2004-04-04 12:57:25 +00001814 switch(format) {
1815 case 'o':
Avi Kivitya8170e52012-10-23 12:30:10 +02001816 monitor_printf(mon, "%#" HWADDR_PRIo, val);
bellard9307c4c2004-04-04 12:57:25 +00001817 break;
1818 case 'x':
Avi Kivitya8170e52012-10-23 12:30:10 +02001819 monitor_printf(mon, "%#" HWADDR_PRIx, val);
bellard9307c4c2004-04-04 12:57:25 +00001820 break;
1821 case 'u':
Avi Kivitya8170e52012-10-23 12:30:10 +02001822 monitor_printf(mon, "%" HWADDR_PRIu, val);
bellard9307c4c2004-04-04 12:57:25 +00001823 break;
1824 default:
1825 case 'd':
Avi Kivitya8170e52012-10-23 12:30:10 +02001826 monitor_printf(mon, "%" HWADDR_PRId, val);
bellard9307c4c2004-04-04 12:57:25 +00001827 break;
1828 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001829 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001830 break;
1831 }
aliguori376253e2009-03-05 23:01:23 +00001832 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001833}
1834
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001835static void hmp_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001836{
1837 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001838 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001839 uint32_t start = qdict_get_int(qdict, "start");
1840 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001841
1842 sum = 0;
1843 for(addr = start; addr < (start + size); addr++) {
Peter Maydell42874d32015-04-26 16:49:24 +01001844 uint8_t val = address_space_ldub(&address_space_memory, addr,
1845 MEMTXATTRS_UNSPECIFIED, NULL);
bellarde4cf1ad2005-06-04 20:15:57 +00001846 /* BSD sum algorithm ('sum' Unix command) */
1847 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001848 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001849 }
aliguori376253e2009-03-05 23:01:23 +00001850 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001851}
1852
bellard13224a82006-07-14 22:03:35 +00001853static int mouse_button_state;
1854
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001855static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001856{
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001857 int dx, dy, dz, button;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001858 const char *dx_str = qdict_get_str(qdict, "dx_str");
1859 const char *dy_str = qdict_get_str(qdict, "dy_str");
1860 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001861
bellard13224a82006-07-14 22:03:35 +00001862 dx = strtol(dx_str, NULL, 0);
1863 dy = strtol(dy_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001864 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1865 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1866
1867 if (dz_str) {
bellard13224a82006-07-14 22:03:35 +00001868 dz = strtol(dz_str, NULL, 0);
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001869 if (dz != 0) {
Gerd Hoffmannf22d0af2016-01-12 12:14:12 +01001870 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001871 qemu_input_queue_btn(NULL, button, true);
1872 qemu_input_event_sync();
1873 qemu_input_queue_btn(NULL, button, false);
1874 }
1875 }
1876 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001877}
1878
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001879static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001880{
Eric Blake7fb1cf12015-11-18 01:52:57 -07001881 static uint32_t bmap[INPUT_BUTTON__MAX] = {
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001882 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1883 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1884 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1885 };
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001886 int button_state = qdict_get_int(qdict, "button_state");
Gerd Hoffmannc751a742013-12-04 15:02:28 +01001887
1888 if (mouse_button_state == button_state) {
1889 return;
1890 }
1891 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1892 qemu_input_event_sync();
bellard13224a82006-07-14 22:03:35 +00001893 mouse_button_state = button_state;
bellard13224a82006-07-14 22:03:35 +00001894}
1895
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001896static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001897{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001898 int size = qdict_get_int(qdict, "size");
1899 int addr = qdict_get_int(qdict, "addr");
1900 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001901 uint32_t val;
1902 int suffix;
1903
1904 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001905 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001906 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001907 addr++;
1908 }
1909 addr &= 0xffff;
1910
1911 switch(size) {
1912 default:
1913 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001914 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001915 suffix = 'b';
1916 break;
1917 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001918 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001919 suffix = 'w';
1920 break;
1921 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001922 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001923 suffix = 'l';
1924 break;
1925 }
aliguori376253e2009-03-05 23:01:23 +00001926 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1927 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001928}
bellarda3a91a32004-06-04 11:06:21 +00001929
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001930static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001931{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001932 int size = qdict_get_int(qdict, "size");
1933 int addr = qdict_get_int(qdict, "addr");
1934 int val = qdict_get_int(qdict, "val");
1935
Jan Kiszkaf1147842009-07-14 10:20:11 +02001936 addr &= IOPORTS_MASK;
1937
1938 switch (size) {
1939 default:
1940 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001941 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001942 break;
1943 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001944 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001945 break;
1946 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001947 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001948 break;
1949 }
1950}
1951
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001952static void hmp_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001953{
Gongleif1839932014-12-03 18:20:58 +00001954 Error *local_err = NULL;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001955 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001956
Gongleif1839932014-12-03 18:20:58 +00001957 qemu_boot_set(bootdevice, &local_err);
1958 if (local_err) {
Markus Armbruster193227f2015-12-18 16:35:06 +01001959 error_report_err(local_err);
aurel320ecdffb2008-05-04 20:11:34 +00001960 } else {
Gongleif1839932014-12-03 18:20:58 +00001961 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001962 }
1963}
1964
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001965static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
Blue Swirl314e2982011-09-11 20:22:05 +00001966{
Peter Xu57bb40c2017-01-16 16:40:05 +08001967 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
Alexey Kardashevskiy5e8fd942017-09-21 18:51:06 +10001968 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
Peter Xu57bb40c2017-01-16 16:40:05 +08001969
Alexey Kardashevskiy5e8fd942017-09-21 18:51:06 +10001970 mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree);
Blue Swirl314e2982011-09-11 20:22:05 +00001971}
1972
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001973static void hmp_info_numa(Monitor *mon, const QDict *qdict)
aliguori030ea372009-04-21 22:30:47 +00001974{
aliguorib28b6232009-04-22 20:20:29 +00001975 int i;
Vadim Galitsyn31959e82017-08-29 17:30:20 +02001976 NumaNodeMem *node_mem;
Igor Mammedovf75cd442017-05-30 18:23:59 +02001977 CpuInfoList *cpu_list, *cpu;
aliguori030ea372009-04-21 22:30:47 +00001978
Igor Mammedovf75cd442017-05-30 18:23:59 +02001979 cpu_list = qmp_query_cpus(&error_abort);
Vadim Galitsyn31959e82017-08-29 17:30:20 +02001980 node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
1981
zhanghailiang5b009e42014-11-04 19:49:30 +08001982 query_numa_node_mem(node_mem);
aliguori030ea372009-04-21 22:30:47 +00001983 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1984 for (i = 0; i < nb_numa_nodes; i++) {
1985 monitor_printf(mon, "node %d cpus:", i);
Igor Mammedovf75cd442017-05-30 18:23:59 +02001986 for (cpu = cpu_list; cpu; cpu = cpu->next) {
1987 if (cpu->value->has_props && cpu->value->props->has_node_id &&
1988 cpu->value->props->node_id == i) {
1989 monitor_printf(mon, " %" PRIi64, cpu->value->CPU);
aliguori030ea372009-04-21 22:30:47 +00001990 }
1991 }
1992 monitor_printf(mon, "\n");
1993 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
Vadim Galitsyn31959e82017-08-29 17:30:20 +02001994 node_mem[i].node_mem >> 20);
1995 monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i,
1996 node_mem[i].node_plugged_mem >> 20);
aliguori030ea372009-04-21 22:30:47 +00001997 }
Igor Mammedovf75cd442017-05-30 18:23:59 +02001998 qapi_free_CpuInfoList(cpu_list);
zhanghailiang5b009e42014-11-04 19:49:30 +08001999 g_free(node_mem);
aliguori030ea372009-04-21 22:30:47 +00002000}
2001
bellard5f1ce942006-02-08 22:40:15 +00002002#ifdef CONFIG_PROFILER
2003
Alexey Kardashevskiy89d5cbd2015-03-16 14:57:38 +11002004int64_t tcg_time;
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002005int64_t dev_time;
2006
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002007static void hmp_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00002008{
aliguori376253e2009-03-05 23:01:23 +00002009 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Rutuja Shah73bcb242016-03-21 21:32:30 +05302010 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
aliguori376253e2009-03-05 23:01:23 +00002011 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Rutuja Shah73bcb242016-03-21 21:32:30 +05302012 tcg_time, tcg_time / (double)NANOSECONDS_PER_SECOND);
Alexey Kardashevskiy89d5cbd2015-03-16 14:57:38 +11002013 tcg_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002014 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002015}
2016#else
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002017static void hmp_info_profile(Monitor *mon, const QDict *qdict)
bellard5f1ce942006-02-08 22:40:15 +00002018{
aliguori376253e2009-03-05 23:01:23 +00002019 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002020}
2021#endif
2022
bellardec36b692006-07-16 18:57:03 +00002023/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002024static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002025
Markus Armbruster1ce6be22015-02-06 14:18:24 +01002026static void hmp_info_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002027{
2028 int i;
2029 CaptureState *s;
2030
2031 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002032 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002033 s->ops.info (s->opaque);
2034 }
2035}
2036
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002037static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002038{
2039 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002040 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002041 CaptureState *s;
2042
2043 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2044 if (i == n) {
2045 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002046 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002047 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002048 return;
2049 }
2050 }
2051}
2052
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002053static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002054{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002055 const char *path = qdict_get_str(qdict, "path");
2056 int has_freq = qdict_haskey(qdict, "freq");
2057 int freq = qdict_get_try_int(qdict, "freq", -1);
2058 int has_bits = qdict_haskey(qdict, "bits");
2059 int bits = qdict_get_try_int(qdict, "bits", -1);
2060 int has_channels = qdict_haskey(qdict, "nchannels");
2061 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002062 CaptureState *s;
2063
Anthony Liguori7267c092011-08-20 22:09:37 -05002064 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002065
2066 freq = has_freq ? freq : 44100;
2067 bits = has_bits ? bits : 16;
2068 nchannels = has_channels ? nchannels : 2;
2069
2070 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002071 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002072 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002073 return;
bellardec36b692006-07-16 18:57:03 +00002074 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002075 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002076}
bellardec36b692006-07-16 18:57:03 +00002077
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002078static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002079{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002080 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002081
aliguori76655d62009-03-06 20:27:37 +00002082 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002083 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002084 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002085 return acl;
2086}
aliguori76655d62009-03-06 20:27:37 +00002087
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002088static void hmp_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002089{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002090 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002091 qemu_acl *acl = find_acl(mon, aclname);
2092 qemu_acl_entry *entry;
2093 int i = 0;
2094
2095 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002096 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002097 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002098 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002099 i++;
2100 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002101 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002102 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002103 }
2104}
2105
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002106static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002107{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002108 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002109 qemu_acl *acl = find_acl(mon, aclname);
2110
2111 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002112 qemu_acl_reset(acl);
2113 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002114 }
2115}
aliguori76655d62009-03-06 20:27:37 +00002116
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002117static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002118{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002119 const char *aclname = qdict_get_str(qdict, "aclname");
2120 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002121 qemu_acl *acl = find_acl(mon, aclname);
2122
2123 if (acl) {
2124 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002125 acl->defaultDeny = 0;
2126 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002127 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002128 acl->defaultDeny = 1;
2129 monitor_printf(mon, "acl: policy set to 'deny'\n");
2130 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002131 monitor_printf(mon, "acl: unknown policy '%s', "
2132 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002133 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002134 }
2135}
aliguori76655d62009-03-06 20:27:37 +00002136
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002137static void hmp_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002138{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002139 const char *aclname = qdict_get_str(qdict, "aclname");
2140 const char *match = qdict_get_str(qdict, "match");
2141 const char *policy = qdict_get_str(qdict, "policy");
2142 int has_index = qdict_haskey(qdict, "index");
2143 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002144 qemu_acl *acl = find_acl(mon, aclname);
2145 int deny, ret;
2146
2147 if (acl) {
2148 if (strcmp(policy, "allow") == 0) {
2149 deny = 0;
2150 } else if (strcmp(policy, "deny") == 0) {
2151 deny = 1;
2152 } else {
2153 monitor_printf(mon, "acl: unknown policy '%s', "
2154 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002155 return;
2156 }
aliguori28a76be2009-03-06 20:27:40 +00002157 if (has_index)
2158 ret = qemu_acl_insert(acl, deny, match, index);
2159 else
2160 ret = qemu_acl_append(acl, deny, match);
2161 if (ret < 0)
2162 monitor_printf(mon, "acl: unable to add acl entry\n");
2163 else
2164 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002165 }
2166}
aliguori76655d62009-03-06 20:27:37 +00002167
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01002168static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002169{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002170 const char *aclname = qdict_get_str(qdict, "aclname");
2171 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002172 qemu_acl *acl = find_acl(mon, aclname);
2173 int ret;
aliguori76655d62009-03-06 20:27:37 +00002174
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002175 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002176 ret = qemu_acl_remove(acl, match);
2177 if (ret < 0)
2178 monitor_printf(mon, "acl: no matching acl entry\n");
2179 else
2180 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002181 }
2182}
2183
Corey Bryant208c9d12012-06-22 14:36:09 -04002184void qmp_getfd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002185{
Anthony Liguoric227f092009-10-01 16:12:16 -05002186 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002187 int fd;
2188
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03002189 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002190 if (fd == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002191 error_setg(errp, QERR_FD_NOT_SUPPLIED);
Corey Bryant208c9d12012-06-22 14:36:09 -04002192 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002193 }
2194
2195 if (qemu_isdigit(fdname[0])) {
Stefan Hajnoczi0b9f0e22014-04-24 13:58:18 +02002196 close(fd);
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002197 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2198 "a name not starting with a digit");
Corey Bryant208c9d12012-06-22 14:36:09 -04002199 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002200 }
2201
Corey Bryant208c9d12012-06-22 14:36:09 -04002202 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002203 if (strcmp(monfd->name, fdname) != 0) {
2204 continue;
2205 }
2206
2207 close(monfd->fd);
2208 monfd->fd = fd;
Corey Bryant208c9d12012-06-22 14:36:09 -04002209 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002210 }
2211
Anthony Liguori7267c092011-08-20 22:09:37 -05002212 monfd = g_malloc0(sizeof(mon_fd_t));
2213 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002214 monfd->fd = fd;
2215
Corey Bryant208c9d12012-06-22 14:36:09 -04002216 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002217}
2218
Corey Bryant208c9d12012-06-22 14:36:09 -04002219void qmp_closefd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002220{
Anthony Liguoric227f092009-10-01 16:12:16 -05002221 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002222
Corey Bryant208c9d12012-06-22 14:36:09 -04002223 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002224 if (strcmp(monfd->name, fdname) != 0) {
2225 continue;
2226 }
2227
Blue Swirl72cf2d42009-09-12 07:36:22 +00002228 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002229 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002230 g_free(monfd->name);
2231 g_free(monfd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002232 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002233 }
2234
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002235 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002236}
2237
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002238int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
Mark McLoughlin7768e042009-07-22 09:11:41 +01002239{
Anthony Liguoric227f092009-10-01 16:12:16 -05002240 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002241
Blue Swirl72cf2d42009-09-12 07:36:22 +00002242 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002243 int fd;
2244
2245 if (strcmp(monfd->name, fdname) != 0) {
2246 continue;
2247 }
2248
2249 fd = monfd->fd;
2250
2251 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002252 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002253 g_free(monfd->name);
2254 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002255
2256 return fd;
2257 }
2258
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002259 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002260 return -1;
2261}
2262
Corey Bryantba1c0482012-08-14 16:43:43 -04002263static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2264{
2265 MonFdsetFd *mon_fdset_fd;
2266 MonFdsetFd *mon_fdset_fd_next;
2267
2268 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
Corey Bryantebe52b52012-10-18 15:19:33 -04002269 if ((mon_fdset_fd->removed ||
2270 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2271 runstate_is_running()) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002272 close(mon_fdset_fd->fd);
2273 g_free(mon_fdset_fd->opaque);
2274 QLIST_REMOVE(mon_fdset_fd, next);
2275 g_free(mon_fdset_fd);
2276 }
2277 }
2278
Corey Bryantadb696f2012-08-14 16:43:47 -04002279 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002280 QLIST_REMOVE(mon_fdset, next);
2281 g_free(mon_fdset);
2282 }
2283}
2284
Corey Bryantefb87c12012-08-14 16:43:48 -04002285static void monitor_fdsets_cleanup(void)
2286{
2287 MonFdset *mon_fdset;
2288 MonFdset *mon_fdset_next;
2289
2290 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2291 monitor_fdset_cleanup(mon_fdset);
2292 }
2293}
2294
Corey Bryantba1c0482012-08-14 16:43:43 -04002295AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2296 const char *opaque, Error **errp)
2297{
2298 int fd;
2299 Monitor *mon = cur_mon;
Corey Bryantba1c0482012-08-14 16:43:43 -04002300 AddfdInfo *fdinfo;
2301
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03002302 fd = qemu_chr_fe_get_msgfd(&mon->chr);
Corey Bryantba1c0482012-08-14 16:43:43 -04002303 if (fd == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002304 error_setg(errp, QERR_FD_NOT_SUPPLIED);
Corey Bryantba1c0482012-08-14 16:43:43 -04002305 goto error;
2306 }
2307
Corey Bryante446f702012-10-18 15:19:32 -04002308 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2309 has_opaque, opaque, errp);
2310 if (fdinfo) {
2311 return fdinfo;
Corey Bryant9ac54af2012-10-18 15:19:31 -04002312 }
2313
Corey Bryantba1c0482012-08-14 16:43:43 -04002314error:
2315 if (fd != -1) {
2316 close(fd);
2317 }
2318 return NULL;
2319}
2320
2321void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2322{
2323 MonFdset *mon_fdset;
2324 MonFdsetFd *mon_fdset_fd;
2325 char fd_str[60];
2326
2327 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2328 if (mon_fdset->id != fdset_id) {
2329 continue;
2330 }
2331 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2332 if (has_fd) {
2333 if (mon_fdset_fd->fd != fd) {
2334 continue;
2335 }
2336 mon_fdset_fd->removed = true;
2337 break;
2338 } else {
2339 mon_fdset_fd->removed = true;
2340 }
2341 }
2342 if (has_fd && !mon_fdset_fd) {
2343 goto error;
2344 }
2345 monitor_fdset_cleanup(mon_fdset);
2346 return;
2347 }
2348
2349error:
2350 if (has_fd) {
2351 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2352 fdset_id, fd);
2353 } else {
2354 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2355 }
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002356 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
Corey Bryantba1c0482012-08-14 16:43:43 -04002357}
2358
2359FdsetInfoList *qmp_query_fdsets(Error **errp)
2360{
2361 MonFdset *mon_fdset;
2362 MonFdsetFd *mon_fdset_fd;
2363 FdsetInfoList *fdset_list = NULL;
2364
2365 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2366 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2367 FdsetFdInfoList *fdsetfd_list = NULL;
2368
2369 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2370 fdset_info->value->fdset_id = mon_fdset->id;
2371
2372 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2373 FdsetFdInfoList *fdsetfd_info;
2374
2375 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2376 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2377 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2378 if (mon_fdset_fd->opaque) {
2379 fdsetfd_info->value->has_opaque = true;
2380 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2381 } else {
2382 fdsetfd_info->value->has_opaque = false;
2383 }
2384
2385 fdsetfd_info->next = fdsetfd_list;
2386 fdsetfd_list = fdsetfd_info;
2387 }
2388
2389 fdset_info->value->fds = fdsetfd_list;
2390
2391 fdset_info->next = fdset_list;
2392 fdset_list = fdset_info;
2393 }
2394
2395 return fdset_list;
2396}
2397
Corey Bryante446f702012-10-18 15:19:32 -04002398AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2399 bool has_opaque, const char *opaque,
2400 Error **errp)
2401{
2402 MonFdset *mon_fdset = NULL;
2403 MonFdsetFd *mon_fdset_fd;
2404 AddfdInfo *fdinfo;
2405
2406 if (has_fdset_id) {
2407 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2408 /* Break if match found or match impossible due to ordering by ID */
2409 if (fdset_id <= mon_fdset->id) {
2410 if (fdset_id < mon_fdset->id) {
2411 mon_fdset = NULL;
2412 }
2413 break;
2414 }
2415 }
2416 }
2417
2418 if (mon_fdset == NULL) {
2419 int64_t fdset_id_prev = -1;
2420 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2421
2422 if (has_fdset_id) {
2423 if (fdset_id < 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002424 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2425 "a non-negative value");
Corey Bryante446f702012-10-18 15:19:32 -04002426 return NULL;
2427 }
2428 /* Use specified fdset ID */
2429 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2430 mon_fdset_cur = mon_fdset;
2431 if (fdset_id < mon_fdset_cur->id) {
2432 break;
2433 }
2434 }
2435 } else {
2436 /* Use first available fdset ID */
2437 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2438 mon_fdset_cur = mon_fdset;
2439 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2440 fdset_id_prev = mon_fdset_cur->id;
2441 continue;
2442 }
2443 break;
2444 }
2445 }
2446
2447 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2448 if (has_fdset_id) {
2449 mon_fdset->id = fdset_id;
2450 } else {
2451 mon_fdset->id = fdset_id_prev + 1;
2452 }
2453
2454 /* The fdset list is ordered by fdset ID */
2455 if (!mon_fdset_cur) {
2456 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2457 } else if (mon_fdset->id < mon_fdset_cur->id) {
2458 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2459 } else {
2460 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2461 }
2462 }
2463
2464 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2465 mon_fdset_fd->fd = fd;
2466 mon_fdset_fd->removed = false;
2467 if (has_opaque) {
2468 mon_fdset_fd->opaque = g_strdup(opaque);
2469 }
2470 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2471
2472 fdinfo = g_malloc0(sizeof(*fdinfo));
2473 fdinfo->fdset_id = mon_fdset->id;
2474 fdinfo->fd = mon_fdset_fd->fd;
2475
2476 return fdinfo;
2477}
2478
Corey Bryantadb696f2012-08-14 16:43:47 -04002479int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2480{
Blue Swirlb2dc64c2012-08-18 20:14:54 +00002481#ifndef _WIN32
Corey Bryantadb696f2012-08-14 16:43:47 -04002482 MonFdset *mon_fdset;
2483 MonFdsetFd *mon_fdset_fd;
2484 int mon_fd_flags;
2485
Corey Bryantadb696f2012-08-14 16:43:47 -04002486 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2487 if (mon_fdset->id != fdset_id) {
2488 continue;
2489 }
2490 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2491 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2492 if (mon_fd_flags == -1) {
2493 return -1;
2494 }
2495
2496 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2497 return mon_fdset_fd->fd;
2498 }
2499 }
2500 errno = EACCES;
2501 return -1;
2502 }
2503#endif
2504
2505 errno = ENOENT;
2506 return -1;
2507}
2508
2509int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2510{
2511 MonFdset *mon_fdset;
2512 MonFdsetFd *mon_fdset_fd_dup;
2513
2514 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2515 if (mon_fdset->id != fdset_id) {
2516 continue;
2517 }
2518 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2519 if (mon_fdset_fd_dup->fd == dup_fd) {
2520 return -1;
2521 }
2522 }
2523 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2524 mon_fdset_fd_dup->fd = dup_fd;
2525 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2526 return 0;
2527 }
2528 return -1;
2529}
2530
2531static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2532{
2533 MonFdset *mon_fdset;
2534 MonFdsetFd *mon_fdset_fd_dup;
2535
2536 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2537 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2538 if (mon_fdset_fd_dup->fd == dup_fd) {
2539 if (remove) {
2540 QLIST_REMOVE(mon_fdset_fd_dup, next);
2541 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2542 monitor_fdset_cleanup(mon_fdset);
2543 }
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002544 return -1;
2545 } else {
2546 return mon_fdset->id;
Corey Bryantadb696f2012-08-14 16:43:47 -04002547 }
Corey Bryantadb696f2012-08-14 16:43:47 -04002548 }
2549 }
2550 }
2551 return -1;
2552}
2553
2554int monitor_fdset_dup_fd_find(int dup_fd)
2555{
2556 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2557}
2558
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002559void monitor_fdset_dup_fd_remove(int dup_fd)
Corey Bryantadb696f2012-08-14 16:43:47 -04002560{
Michael S. Tsirkinb3dd1b82014-08-17 11:45:17 +02002561 monitor_fdset_dup_fd_find_remove(dup_fd, true);
Corey Bryantadb696f2012-08-14 16:43:47 -04002562}
2563
Markus Armbruster1677f4c2015-02-09 14:03:19 +01002564int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
Laszlo Ersek59063662014-04-10 10:24:31 +02002565{
2566 int fd;
2567 Error *local_err = NULL;
2568
2569 if (!qemu_isdigit(fdname[0]) && mon) {
Paolo Bonzinia9940fc2012-09-20 16:50:32 +02002570 fd = monitor_get_fd(mon, fdname, &local_err);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002571 } else {
2572 fd = qemu_parse_fd(fdname);
Laszlo Ersek59063662014-04-10 10:24:31 +02002573 if (fd == -1) {
2574 error_setg(&local_err, "Invalid file descriptor number '%s'",
2575 fdname);
2576 }
2577 }
2578 if (local_err) {
2579 error_propagate(errp, local_err);
2580 assert(fd == -1);
2581 } else {
2582 assert(fd != -1);
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002583 }
2584
2585 return fd;
2586}
2587
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002588/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002589static mon_cmd_t info_cmds[] = {
Pavel Butsykinda76ee72015-09-10 18:38:58 +03002590#include "hmp-commands-info.h"
2591 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002592};
2593
Wenchao Xiaa13ced52013-01-14 14:06:28 +08002594/* mon_cmds and info_cmds would be sorted at runtime */
2595static mon_cmd_t mon_cmds[] = {
2596#include "hmp-commands.h"
2597 { NULL, NULL, },
2598};
2599
bellard9307c4c2004-04-04 12:57:25 +00002600/*******************************************************************/
2601
2602static const char *pch;
Peter Maydell6ab7e542013-02-20 15:21:09 +00002603static sigjmp_buf expr_env;
bellard9307c4c2004-04-04 12:57:25 +00002604
bellard9307c4c2004-04-04 12:57:25 +00002605
Stefan Weil9c3175c2013-08-22 21:30:09 +02002606static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2607expr_error(Monitor *mon, const char *fmt, ...)
bellard9dc39cb2004-03-14 21:38:27 +00002608{
Fam Zheng277acfe2013-08-20 10:58:21 +08002609 va_list ap;
2610 va_start(ap, fmt);
2611 monitor_vprintf(mon, fmt, ap);
2612 monitor_printf(mon, "\n");
2613 va_end(ap);
Peter Maydell6ab7e542013-02-20 15:21:09 +00002614 siglongjmp(expr_env, 1);
bellard9307c4c2004-04-04 12:57:25 +00002615}
2616
Markus Armbruster09b94182010-01-20 13:07:30 +01002617/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00002618static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002619{
Pavel Butsykinbf957282015-09-10 18:38:59 +03002620 const MonitorDef *md = target_monitor_defs();
Thomas Huth854e67f2017-01-13 13:12:35 +01002621 CPUState *cs = mon_get_cpu();
bellard92a31b12005-02-10 22:00:52 +00002622 void *ptr;
Alexey Kardashevskiy0a9516c2015-11-12 14:44:23 +11002623 uint64_t tmp = 0;
2624 int ret;
bellard92a31b12005-02-10 22:00:52 +00002625
Thomas Huth854e67f2017-01-13 13:12:35 +01002626 if (cs == NULL || md == NULL) {
Pavel Butsykinbf957282015-09-10 18:38:59 +03002627 return -1;
2628 }
2629
2630 for(; md->name != NULL; md++) {
bellard9307c4c2004-04-04 12:57:25 +00002631 if (compare_cmd(name, md->name)) {
2632 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002633 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002634 } else {
Peter Crosthwaite5bcda5f2015-05-24 14:20:40 -07002635 CPUArchState *env = mon_get_cpu_env();
bellard6a00d602005-11-21 23:25:50 +00002636 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002637 switch(md->type) {
2638 case MD_I32:
2639 *pval = *(int32_t *)ptr;
2640 break;
2641 case MD_TLONG:
2642 *pval = *(target_long *)ptr;
2643 break;
2644 default:
2645 *pval = 0;
2646 break;
2647 }
bellard9307c4c2004-04-04 12:57:25 +00002648 }
2649 return 0;
2650 }
2651 }
Alexey Kardashevskiy0a9516c2015-11-12 14:44:23 +11002652
Thomas Huth854e67f2017-01-13 13:12:35 +01002653 ret = target_get_monitor_def(cs, name, &tmp);
Alexey Kardashevskiy0a9516c2015-11-12 14:44:23 +11002654 if (!ret) {
2655 *pval = (target_long) tmp;
2656 }
2657
2658 return ret;
bellard9307c4c2004-04-04 12:57:25 +00002659}
2660
2661static void next(void)
2662{
Blue Swirl660f11b2009-07-31 21:16:51 +00002663 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00002664 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002665 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002666 pch++;
2667 }
2668}
2669
aliguori376253e2009-03-05 23:01:23 +00002670static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002671
aliguori376253e2009-03-05 23:01:23 +00002672static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002673{
blueswir1c2efc952007-09-25 17:28:42 +00002674 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002675 char *p;
bellard6a00d602005-11-21 23:25:50 +00002676 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002677
2678 switch(*pch) {
2679 case '+':
2680 next();
aliguori376253e2009-03-05 23:01:23 +00002681 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002682 break;
2683 case '-':
2684 next();
aliguori376253e2009-03-05 23:01:23 +00002685 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002686 break;
2687 case '~':
2688 next();
aliguori376253e2009-03-05 23:01:23 +00002689 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002690 break;
2691 case '(':
2692 next();
aliguori376253e2009-03-05 23:01:23 +00002693 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002694 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002695 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002696 }
2697 next();
2698 break;
bellard81d09122004-07-14 17:21:37 +00002699 case '\'':
2700 pch++;
2701 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002702 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002703 n = *pch;
2704 pch++;
2705 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002706 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002707 next();
2708 break;
bellard9307c4c2004-04-04 12:57:25 +00002709 case '$':
2710 {
2711 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002712 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002713
bellard9307c4c2004-04-04 12:57:25 +00002714 pch++;
2715 q = buf;
2716 while ((*pch >= 'a' && *pch <= 'z') ||
2717 (*pch >= 'A' && *pch <= 'Z') ||
2718 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00002719 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00002720 if ((q - buf) < sizeof(buf) - 1)
2721 *q++ = *pch;
2722 pch++;
2723 }
blueswir1cd390082008-11-16 13:53:32 +00002724 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002725 pch++;
2726 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00002727 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01002728 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00002729 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00002730 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00002731 }
2732 break;
2733 case '\0':
aliguori376253e2009-03-05 23:01:23 +00002734 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00002735 n = 0;
2736 break;
2737 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03002738 errno = 0;
bellard4f4fbf72006-06-25 18:28:12 +00002739 n = strtoull(pch, &p, 0);
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03002740 if (errno == ERANGE) {
2741 expr_error(mon, "number too large");
2742 }
bellard9307c4c2004-04-04 12:57:25 +00002743 if (pch == p) {
Fam Zheng277acfe2013-08-20 10:58:21 +08002744 expr_error(mon, "invalid char '%c' in expression", *p);
bellard9307c4c2004-04-04 12:57:25 +00002745 }
2746 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00002747 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002748 pch++;
2749 break;
2750 }
2751 return n;
2752}
2753
2754
aliguori376253e2009-03-05 23:01:23 +00002755static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002756{
blueswir1c2efc952007-09-25 17:28:42 +00002757 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002758 int op;
ths3b46e622007-09-17 08:09:54 +00002759
aliguori376253e2009-03-05 23:01:23 +00002760 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002761 for(;;) {
2762 op = *pch;
2763 if (op != '*' && op != '/' && op != '%')
2764 break;
2765 next();
aliguori376253e2009-03-05 23:01:23 +00002766 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002767 switch(op) {
2768 default:
2769 case '*':
2770 val *= val2;
2771 break;
2772 case '/':
2773 case '%':
ths5fafdf22007-09-16 21:08:06 +00002774 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00002775 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002776 if (op == '/')
2777 val /= val2;
2778 else
2779 val %= val2;
2780 break;
2781 }
2782 }
2783 return val;
2784}
2785
aliguori376253e2009-03-05 23:01:23 +00002786static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002787{
blueswir1c2efc952007-09-25 17:28:42 +00002788 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002789 int op;
bellard9307c4c2004-04-04 12:57:25 +00002790
aliguori376253e2009-03-05 23:01:23 +00002791 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002792 for(;;) {
2793 op = *pch;
2794 if (op != '&' && op != '|' && op != '^')
2795 break;
2796 next();
aliguori376253e2009-03-05 23:01:23 +00002797 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002798 switch(op) {
2799 default:
2800 case '&':
2801 val &= val2;
2802 break;
2803 case '|':
2804 val |= val2;
2805 break;
2806 case '^':
2807 val ^= val2;
2808 break;
2809 }
2810 }
2811 return val;
2812}
2813
aliguori376253e2009-03-05 23:01:23 +00002814static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002815{
blueswir1c2efc952007-09-25 17:28:42 +00002816 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002817 int op;
bellard9307c4c2004-04-04 12:57:25 +00002818
aliguori376253e2009-03-05 23:01:23 +00002819 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002820 for(;;) {
2821 op = *pch;
2822 if (op != '+' && op != '-')
2823 break;
2824 next();
aliguori376253e2009-03-05 23:01:23 +00002825 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002826 if (op == '+')
2827 val += val2;
2828 else
2829 val -= val2;
2830 }
2831 return val;
2832}
2833
aliguori376253e2009-03-05 23:01:23 +00002834static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002835{
2836 pch = *pp;
Peter Maydell6ab7e542013-02-20 15:21:09 +00002837 if (sigsetjmp(expr_env, 0)) {
bellard9307c4c2004-04-04 12:57:25 +00002838 *pp = pch;
2839 return -1;
2840 }
blueswir1cd390082008-11-16 13:53:32 +00002841 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002842 pch++;
aliguori376253e2009-03-05 23:01:23 +00002843 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002844 *pp = pch;
2845 return 0;
2846}
2847
Markus Armbruster3350a4d2010-01-25 14:23:03 +01002848static int get_double(Monitor *mon, double *pval, const char **pp)
2849{
2850 const char *p = *pp;
2851 char *tailp;
2852 double d;
2853
2854 d = strtod(p, &tailp);
2855 if (tailp == p) {
2856 monitor_printf(mon, "Number expected\n");
2857 return -1;
2858 }
2859 if (d != d || d - d != 0) {
2860 /* NaN or infinity */
2861 monitor_printf(mon, "Bad number\n");
2862 return -1;
2863 }
2864 *pval = d;
2865 *pp = tailp;
2866 return 0;
2867}
2868
Luiz Capitulino4590fd82009-06-09 18:21:30 -03002869/*
2870 * Store the command-name in cmdname, and return a pointer to
2871 * the remaining of the command string.
2872 */
2873static const char *get_command_name(const char *cmdline,
2874 char *cmdname, size_t nlen)
2875{
2876 size_t len;
2877 const char *p, *pstart;
2878
2879 p = cmdline;
2880 while (qemu_isspace(*p))
2881 p++;
2882 if (*p == '\0')
2883 return NULL;
2884 pstart = p;
2885 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2886 p++;
2887 len = p - pstart;
2888 if (len > nlen - 1)
2889 len = nlen - 1;
2890 memcpy(cmdname, pstart, len);
2891 cmdname[len] = '\0';
2892 return p;
2893}
2894
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002895/**
2896 * Read key of 'type' into 'key' and return the current
2897 * 'type' pointer.
2898 */
2899static char *key_get_info(const char *type, char **key)
2900{
2901 size_t len;
2902 char *p, *str;
2903
2904 if (*type == ',')
2905 type++;
2906
2907 p = strchr(type, ':');
2908 if (!p) {
2909 *key = NULL;
2910 return NULL;
2911 }
2912 len = p - type;
2913
Anthony Liguori7267c092011-08-20 22:09:37 -05002914 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002915 memcpy(str, type, len);
2916 str[len] = '\0';
2917
2918 *key = str;
2919 return ++p;
2920}
2921
bellard9307c4c2004-04-04 12:57:25 +00002922static int default_fmt_format = 'x';
2923static int default_fmt_size = 4;
2924
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02002925static int is_valid_option(const char *c, const char *typestr)
2926{
2927 char option[3];
2928
2929 option[0] = '-';
2930 option[1] = *c;
2931 option[2] = '\0';
2932
2933 typestr = strstr(typestr, option);
2934 return (typestr != NULL);
2935}
2936
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03002937static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
2938 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02002939{
2940 const mon_cmd_t *cmd;
2941
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03002942 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02002943 if (compare_cmd(cmdname, cmd->name)) {
2944 return cmd;
2945 }
2946 }
2947
2948 return NULL;
2949}
2950
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002951/*
Bandan Dasae502122015-06-03 18:38:08 -04002952 * Parse command name from @cmdp according to command table @table.
2953 * If blank, return NULL.
2954 * Else, if no valid command can be found, report to @mon, and return
2955 * NULL.
2956 * Else, change @cmdp to point right behind the name, and return its
2957 * command table entry.
2958 * Do not assume the return value points into @table! It doesn't when
2959 * the command is found in a sub-command table.
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002960 */
Anthony Liguoric227f092009-10-01 16:12:16 -05002961static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Dr. David Alan Gilbert250b8192017-08-17 11:42:16 +01002962 const char *cmdp_start,
Bandan Dasae502122015-06-03 18:38:08 -04002963 const char **cmdp,
2964 mon_cmd_t *table)
bellard9307c4c2004-04-04 12:57:25 +00002965{
Bandan Dasae502122015-06-03 18:38:08 -04002966 const char *p;
Anthony Liguoric227f092009-10-01 16:12:16 -05002967 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002968 char cmdname[256];
bellard9dc39cb2004-03-14 21:38:27 +00002969
bellard9307c4c2004-04-04 12:57:25 +00002970 /* extract the command name */
Bandan Dasae502122015-06-03 18:38:08 -04002971 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
Luiz Capitulino4590fd82009-06-09 18:21:30 -03002972 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002973 return NULL;
ths3b46e622007-09-17 08:09:54 +00002974
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002975 cmd = search_dispatch_table(table, cmdname);
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02002976 if (!cmd) {
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002977 monitor_printf(mon, "unknown command: '%.*s'\n",
Dr. David Alan Gilbert250b8192017-08-17 11:42:16 +01002978 (int)(p - cmdp_start), cmdp_start);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002979 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03002980 }
bellard9307c4c2004-04-04 12:57:25 +00002981
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002982 /* filter out following useless space */
2983 while (qemu_isspace(*p)) {
2984 p++;
2985 }
Bandan Dasae502122015-06-03 18:38:08 -04002986
2987 *cmdp = p;
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002988 /* search sub command */
Bandan Dasae502122015-06-03 18:38:08 -04002989 if (cmd->sub_table != NULL && *p != '\0') {
Dr. David Alan Gilbert250b8192017-08-17 11:42:16 +01002990 return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table);
Wenchao Xia5f3d3352013-01-14 14:06:27 +08002991 }
2992
Bandan Dasae502122015-06-03 18:38:08 -04002993 return cmd;
2994}
2995
2996/*
2997 * Parse arguments for @cmd.
2998 * If it can't be parsed, report to @mon, and return NULL.
2999 * Else, insert command arguments into a QDict, and return it.
3000 * Note: On success, caller has to free the QDict structure.
3001 */
3002
3003static QDict *monitor_parse_arguments(Monitor *mon,
3004 const char **endp,
3005 const mon_cmd_t *cmd)
3006{
3007 const char *typestr;
3008 char *key;
3009 int c;
3010 const char *p = *endp;
3011 char buf[1024];
3012 QDict *qdict = qdict_new();
3013
bellard9307c4c2004-04-04 12:57:25 +00003014 /* parse the parameters */
3015 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003016 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003017 typestr = key_get_info(typestr, &key);
3018 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003019 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003020 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003021 typestr++;
3022 switch(c) {
3023 case 'F':
bellard81d09122004-07-14 17:21:37 +00003024 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003025 case 's':
3026 {
3027 int ret;
ths3b46e622007-09-17 08:09:54 +00003028
blueswir1cd390082008-11-16 13:53:32 +00003029 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003030 p++;
3031 if (*typestr == '?') {
3032 typestr++;
3033 if (*p == '\0') {
3034 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003035 break;
bellard9307c4c2004-04-04 12:57:25 +00003036 }
3037 }
3038 ret = get_str(buf, sizeof(buf), &p);
3039 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003040 switch(c) {
3041 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003042 monitor_printf(mon, "%s: filename expected\n",
Bandan Dasae502122015-06-03 18:38:08 -04003043 cmd->name);
bellard81d09122004-07-14 17:21:37 +00003044 break;
3045 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003046 monitor_printf(mon, "%s: block device name expected\n",
Bandan Dasae502122015-06-03 18:38:08 -04003047 cmd->name);
bellard81d09122004-07-14 17:21:37 +00003048 break;
3049 default:
Bandan Dasae502122015-06-03 18:38:08 -04003050 monitor_printf(mon, "%s: string expected\n", cmd->name);
bellard81d09122004-07-14 17:21:37 +00003051 break;
3052 }
bellard9307c4c2004-04-04 12:57:25 +00003053 goto fail;
3054 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003055 qdict_put_str(qdict, key, buf);
bellard9307c4c2004-04-04 12:57:25 +00003056 }
3057 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003058 case 'O':
3059 {
3060 QemuOptsList *opts_list;
3061 QemuOpts *opts;
3062
3063 opts_list = qemu_find_opts(key);
3064 if (!opts_list || opts_list->desc->name) {
3065 goto bad_type;
3066 }
3067 while (qemu_isspace(*p)) {
3068 p++;
3069 }
3070 if (!*p)
3071 break;
3072 if (get_str(buf, sizeof(buf), &p) < 0) {
3073 goto fail;
3074 }
Markus Armbruster70b94332015-02-13 12:50:26 +01003075 opts = qemu_opts_parse_noisily(opts_list, buf, true);
Markus Armbruster361127d2010-02-10 20:24:35 +01003076 if (!opts) {
3077 goto fail;
3078 }
3079 qemu_opts_to_qdict(opts, qdict);
3080 qemu_opts_del(opts);
3081 }
3082 break;
bellard9307c4c2004-04-04 12:57:25 +00003083 case '/':
3084 {
3085 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003086
blueswir1cd390082008-11-16 13:53:32 +00003087 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003088 p++;
3089 if (*p == '/') {
3090 /* format found */
3091 p++;
3092 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003093 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003094 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003095 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003096 count = count * 10 + (*p - '0');
3097 p++;
3098 }
3099 }
3100 size = -1;
3101 format = -1;
3102 for(;;) {
3103 switch(*p) {
3104 case 'o':
3105 case 'd':
3106 case 'u':
3107 case 'x':
3108 case 'i':
3109 case 'c':
3110 format = *p++;
3111 break;
3112 case 'b':
3113 size = 1;
3114 p++;
3115 break;
3116 case 'h':
3117 size = 2;
3118 p++;
3119 break;
3120 case 'w':
3121 size = 4;
3122 p++;
3123 break;
3124 case 'g':
3125 case 'L':
3126 size = 8;
3127 p++;
3128 break;
3129 default:
3130 goto next;
3131 }
3132 }
3133 next:
blueswir1cd390082008-11-16 13:53:32 +00003134 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003135 monitor_printf(mon, "invalid char in format: '%c'\n",
3136 *p);
bellard9307c4c2004-04-04 12:57:25 +00003137 goto fail;
3138 }
bellard9307c4c2004-04-04 12:57:25 +00003139 if (format < 0)
3140 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003141 if (format != 'i') {
3142 /* for 'i', not specifying a size gives -1 as size */
3143 if (size < 0)
3144 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003145 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003146 }
bellard9307c4c2004-04-04 12:57:25 +00003147 default_fmt_format = format;
3148 } else {
3149 count = 1;
3150 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003151 if (format != 'i') {
3152 size = default_fmt_size;
3153 } else {
3154 size = -1;
3155 }
bellard9307c4c2004-04-04 12:57:25 +00003156 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003157 qdict_put_int(qdict, "count", count);
3158 qdict_put_int(qdict, "format", format);
3159 qdict_put_int(qdict, "size", size);
bellard9307c4c2004-04-04 12:57:25 +00003160 }
3161 break;
3162 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003163 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003164 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003165 {
blueswir1c2efc952007-09-25 17:28:42 +00003166 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003167
blueswir1cd390082008-11-16 13:53:32 +00003168 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003169 p++;
bellard34405572004-06-08 00:55:58 +00003170 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003171 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003172 if (*p == '\0') {
3173 typestr++;
3174 break;
3175 }
bellard34405572004-06-08 00:55:58 +00003176 } else {
3177 if (*p == '.') {
3178 p++;
blueswir1cd390082008-11-16 13:53:32 +00003179 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003180 p++;
bellard34405572004-06-08 00:55:58 +00003181 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003182 typestr++;
3183 break;
bellard34405572004-06-08 00:55:58 +00003184 }
3185 }
bellard13224a82006-07-14 22:03:35 +00003186 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003187 }
aliguori376253e2009-03-05 23:01:23 +00003188 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003189 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003190 /* Check if 'i' is greater than 32-bit */
3191 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
Bandan Dasae502122015-06-03 18:38:08 -04003192 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003193 monitor_printf(mon, "integer is for 32-bit values\n");
3194 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003195 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003196 if (val < 0) {
3197 monitor_printf(mon, "enter a positive value\n");
3198 goto fail;
3199 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003200 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003201 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003202 qdict_put_int(qdict, key, val);
bellard9307c4c2004-04-04 12:57:25 +00003203 }
3204 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003205 case 'o':
3206 {
Markus Armbrusterf17fd4f2017-02-21 21:14:06 +01003207 int ret;
Markus Armbrusterf46bfdb2017-02-21 21:14:07 +01003208 uint64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003209 char *end;
3210
3211 while (qemu_isspace(*p)) {
3212 p++;
3213 }
3214 if (*typestr == '?') {
3215 typestr++;
3216 if (*p == '\0') {
3217 break;
3218 }
3219 }
Markus Armbrusterf17fd4f2017-02-21 21:14:06 +01003220 ret = qemu_strtosz_MiB(p, &end, &val);
Markus Armbrusterf46bfdb2017-02-21 21:14:07 +01003221 if (ret < 0 || val > INT64_MAX) {
Jes Sorensendbc0c672010-10-21 17:15:47 +02003222 monitor_printf(mon, "invalid size\n");
3223 goto fail;
3224 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003225 qdict_put_int(qdict, key, val);
Jes Sorensendbc0c672010-10-21 17:15:47 +02003226 p = end;
3227 }
3228 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003229 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003230 {
3231 double val;
3232
3233 while (qemu_isspace(*p))
3234 p++;
3235 if (*typestr == '?') {
3236 typestr++;
3237 if (*p == '\0') {
3238 break;
3239 }
3240 }
3241 if (get_double(mon, &val, &p) < 0) {
3242 goto fail;
3243 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003244 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003245 switch (*p) {
3246 case 'm':
3247 val /= 1e3; p += 2; break;
3248 case 'u':
3249 val /= 1e6; p += 2; break;
3250 case 'n':
3251 val /= 1e9; p += 2; break;
3252 }
3253 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003254 if (*p && !qemu_isspace(*p)) {
3255 monitor_printf(mon, "Unknown unit suffix\n");
3256 goto fail;
3257 }
Marc-André Lureau01b2ffc2017-06-07 20:35:58 +04003258 qdict_put(qdict, key, qnum_from_double(val));
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003259 }
3260 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003261 case 'b':
3262 {
3263 const char *beg;
Eric Blakefc48ffc2015-05-15 16:24:59 -06003264 bool val;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003265
3266 while (qemu_isspace(*p)) {
3267 p++;
3268 }
3269 beg = p;
3270 while (qemu_isgraph(*p)) {
3271 p++;
3272 }
3273 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
Eric Blakefc48ffc2015-05-15 16:24:59 -06003274 val = true;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003275 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
Eric Blakefc48ffc2015-05-15 16:24:59 -06003276 val = false;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003277 } else {
3278 monitor_printf(mon, "Expected 'on' or 'off'\n");
3279 goto fail;
3280 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003281 qdict_put_bool(qdict, key, val);
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003282 }
3283 break;
bellard9307c4c2004-04-04 12:57:25 +00003284 case '-':
3285 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003286 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003287 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003288 /* option */
ths3b46e622007-09-17 08:09:54 +00003289
bellard9307c4c2004-04-04 12:57:25 +00003290 c = *typestr++;
3291 if (c == '\0')
3292 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003293 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003294 p++;
bellard9307c4c2004-04-04 12:57:25 +00003295 if (*p == '-') {
3296 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003297 if(c != *p) {
3298 if(!is_valid_option(p, typestr)) {
3299
3300 monitor_printf(mon, "%s: unsupported option -%c\n",
Bandan Dasae502122015-06-03 18:38:08 -04003301 cmd->name, *p);
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003302 goto fail;
3303 } else {
3304 skip_key = 1;
3305 }
bellard9307c4c2004-04-04 12:57:25 +00003306 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003307 if(skip_key) {
3308 p = tmp;
3309 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003310 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003311 p++;
Eric Blake46f5ac22017-04-27 16:58:17 -05003312 qdict_put_bool(qdict, key, true);
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003313 }
bellard9307c4c2004-04-04 12:57:25 +00003314 }
bellard9307c4c2004-04-04 12:57:25 +00003315 }
3316 break;
Wenchao Xia129be002013-08-27 20:38:26 +08003317 case 'S':
3318 {
3319 /* package all remaining string */
3320 int len;
3321
3322 while (qemu_isspace(*p)) {
3323 p++;
3324 }
3325 if (*typestr == '?') {
3326 typestr++;
3327 if (*p == '\0') {
3328 /* no remaining string: NULL argument */
3329 break;
3330 }
3331 }
3332 len = strlen(p);
3333 if (len <= 0) {
3334 monitor_printf(mon, "%s: string expected\n",
Bandan Dasae502122015-06-03 18:38:08 -04003335 cmd->name);
Bandan Dase549d2a2015-06-03 18:38:10 -04003336 goto fail;
Wenchao Xia129be002013-08-27 20:38:26 +08003337 }
Eric Blake46f5ac22017-04-27 16:58:17 -05003338 qdict_put_str(qdict, key, p);
Wenchao Xia129be002013-08-27 20:38:26 +08003339 p += len;
3340 }
3341 break;
bellard9307c4c2004-04-04 12:57:25 +00003342 default:
3343 bad_type:
Bandan Dasae502122015-06-03 18:38:08 -04003344 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
bellard9307c4c2004-04-04 12:57:25 +00003345 goto fail;
3346 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003347 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003348 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003349 }
3350 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003351 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003352 p++;
3353 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003354 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
Bandan Dasae502122015-06-03 18:38:08 -04003355 cmd->name);
bellard9307c4c2004-04-04 12:57:25 +00003356 goto fail;
3357 }
3358
Bandan Dasae502122015-06-03 18:38:08 -04003359 return qdict;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003360
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003361fail:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003362 qobject_unref(qdict);
Anthony Liguori7267c092011-08-20 22:09:37 -05003363 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003364 return NULL;
3365}
3366
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01003367static void handle_hmp_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003368{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003369 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003370 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003371
Stefan Hajnoczi79cad8b2017-06-05 11:42:15 +01003372 trace_handle_hmp_command(mon, cmdline);
3373
Dr. David Alan Gilbert250b8192017-08-17 11:42:16 +01003374 cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table);
Bandan Dasae502122015-06-03 18:38:08 -04003375 if (!cmd) {
3376 return;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003377 }
3378
Bandan Dasae502122015-06-03 18:38:08 -04003379 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3380 if (!qdict) {
Bandan Dasdd41eea2015-06-03 18:38:09 -04003381 monitor_printf(mon, "Try \"help %s\" for more information\n",
3382 cmd->name);
Bandan Dasae502122015-06-03 18:38:08 -04003383 return;
3384 }
3385
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04003386 cmd->cmd(mon, qdict);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003387 qobject_unref(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003388}
3389
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08003390static void cmd_completion(Monitor *mon, const char *name, const char *list)
bellard81d09122004-07-14 17:21:37 +00003391{
3392 const char *p, *pstart;
3393 char cmd[128];
3394 int len;
3395
3396 p = list;
3397 for(;;) {
3398 pstart = p;
3399 p = strchr(p, '|');
3400 if (!p)
3401 p = pstart + strlen(pstart);
3402 len = p - pstart;
3403 if (len > sizeof(cmd) - 2)
3404 len = sizeof(cmd) - 2;
3405 memcpy(cmd, pstart, len);
3406 cmd[len] = '\0';
3407 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08003408 readline_add_completion(mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003409 }
3410 if (*p == '\0')
3411 break;
3412 p++;
3413 }
3414}
3415
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08003416static void file_completion(Monitor *mon, const char *input)
bellard81d09122004-07-14 17:21:37 +00003417{
3418 DIR *ffs;
3419 struct dirent *d;
3420 char path[1024];
3421 char file[1024], file_prefix[1024];
3422 int input_path_len;
3423 const char *p;
3424
ths5fafdf22007-09-16 21:08:06 +00003425 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003426 if (!p) {
3427 input_path_len = 0;
3428 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003429 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003430 } else {
3431 input_path_len = p - input + 1;
3432 memcpy(path, input, input_path_len);
3433 if (input_path_len > sizeof(path) - 1)
3434 input_path_len = sizeof(path) - 1;
3435 path[input_path_len] = '\0';
3436 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3437 }
Bandan Das19f2db52015-06-03 18:38:07 -04003438
bellard81d09122004-07-14 17:21:37 +00003439 ffs = opendir(path);
3440 if (!ffs)
3441 return;
3442 for(;;) {
3443 struct stat sb;
3444 d = readdir(ffs);
3445 if (!d)
3446 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09003447
3448 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3449 continue;
3450 }
3451
bellard81d09122004-07-14 17:21:37 +00003452 if (strstart(d->d_name, file_prefix, NULL)) {
3453 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003454 if (input_path_len < sizeof(file))
3455 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3456 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003457 /* stat the file to find out if it's a directory.
3458 * In that case add a slash to speed up typing long paths
3459 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003460 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00003461 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003462 }
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08003463 readline_add_completion(mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003464 }
3465 }
3466 closedir(ffs);
3467}
3468
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003469static const char *next_arg_type(const char *typestr)
3470{
3471 const char *p = strchr(typestr, ':');
3472 return (p != NULL ? ++p : typestr);
3473}
3474
Hani Benhabiles40d19392014-05-07 23:41:30 +01003475static void add_completion_option(ReadLineState *rs, const char *str,
3476 const char *option)
3477{
3478 if (!str || !option) {
3479 return;
3480 }
3481 if (!strncmp(option, str, strlen(str))) {
3482 readline_add_completion(rs, option);
3483 }
3484}
3485
Hani Benhabiles13e315d2014-05-07 23:41:29 +01003486void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3487{
3488 size_t len;
3489 ChardevBackendInfoList *list, *start;
3490
3491 if (nb_args != 2) {
3492 return;
3493 }
3494 len = strlen(str);
3495 readline_set_completion_index(rs, len);
3496
3497 start = list = qmp_query_chardev_backends(NULL);
3498 while (list) {
3499 const char *chr_name = list->value->name;
3500
3501 if (!strncmp(chr_name, str, len)) {
3502 readline_add_completion(rs, chr_name);
3503 }
3504 list = list->next;
3505 }
3506 qapi_free_ChardevBackendInfoList(start);
3507}
3508
Hani Benhabilesb162b492014-05-07 23:41:31 +01003509void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3510{
3511 size_t len;
3512 int i;
3513
3514 if (nb_args != 2) {
3515 return;
3516 }
3517 len = strlen(str);
3518 readline_set_completion_index(rs, len);
Markus Armbruster1c236ba2017-08-24 10:46:06 +02003519 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
Markus Armbruster977c7362017-08-24 10:46:08 +02003520 add_completion_option(rs, str, NetClientDriver_str(i));
Hani Benhabilesb162b492014-05-07 23:41:31 +01003521 }
3522}
3523
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003524void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles992d3e62014-02-06 23:30:11 +01003525{
3526 GSList *list, *elt;
3527 size_t len;
3528
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003529 if (nb_args != 2) {
3530 return;
3531 }
3532
Hani Benhabiles992d3e62014-02-06 23:30:11 +01003533 len = strlen(str);
3534 readline_set_completion_index(rs, len);
3535 list = elt = object_class_get_list(TYPE_DEVICE, false);
3536 while (elt) {
3537 const char *name;
3538 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3539 TYPE_DEVICE);
3540 name = object_class_get_name(OBJECT_CLASS(dc));
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003541
Eduardo Habkoste90f2a82017-05-03 17:35:44 -03003542 if (dc->user_creatable
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003543 && !strncmp(name, str, len)) {
Hani Benhabiles992d3e62014-02-06 23:30:11 +01003544 readline_add_completion(rs, name);
3545 }
3546 elt = elt->next;
3547 }
3548 g_slist_free(list);
3549}
3550
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003551void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabiles1094fd32014-02-06 23:30:13 +01003552{
3553 GSList *list, *elt;
3554 size_t len;
3555
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003556 if (nb_args != 2) {
3557 return;
3558 }
3559
Hani Benhabiles1094fd32014-02-06 23:30:13 +01003560 len = strlen(str);
3561 readline_set_completion_index(rs, len);
3562 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3563 while (elt) {
3564 const char *name;
3565
3566 name = object_class_get_name(OBJECT_CLASS(elt->data));
3567 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3568 readline_add_completion(rs, name);
3569 }
3570 elt = elt->next;
3571 }
3572 g_slist_free(list);
3573}
3574
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08003575static void peripheral_device_del_completion(ReadLineState *rs,
3576 const char *str, size_t len)
3577{
Marcel Apfelbaum4cae4d52014-11-26 13:50:01 +02003578 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3579 GSList *list, *item;
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08003580
Marcel Apfelbaum4cae4d52014-11-26 13:50:01 +02003581 list = qdev_build_hotpluggable_device_list(peripheral);
3582 if (!list) {
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08003583 return;
3584 }
3585
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08003586 for (item = list; item; item = g_slist_next(item)) {
3587 DeviceState *dev = item->data;
3588
3589 if (dev->id && !strncmp(str, dev->id, len)) {
3590 readline_add_completion(rs, dev->id);
3591 }
3592 }
3593
3594 g_slist_free(list);
3595}
3596
Hani Benhabiles6297d9a2014-05-07 23:41:28 +01003597void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3598{
3599 size_t len;
3600 ChardevInfoList *list, *start;
3601
3602 if (nb_args != 2) {
3603 return;
3604 }
3605 len = strlen(str);
3606 readline_set_completion_index(rs, len);
3607
3608 start = list = qmp_query_chardev(NULL);
3609 while (list) {
3610 ChardevInfo *chr = list->value;
3611
3612 if (!strncmp(chr->label, str, len)) {
3613 readline_add_completion(rs, chr->label);
3614 }
3615 list = list->next;
3616 }
3617 qapi_free_ChardevInfoList(start);
3618}
3619
Hani Benhabiles8e597772014-05-27 23:39:30 +01003620static void ringbuf_completion(ReadLineState *rs, const char *str)
3621{
3622 size_t len;
3623 ChardevInfoList *list, *start;
3624
3625 len = strlen(str);
3626 readline_set_completion_index(rs, len);
3627
3628 start = list = qmp_query_chardev(NULL);
3629 while (list) {
3630 ChardevInfo *chr_info = list->value;
3631
3632 if (!strncmp(chr_info->label, str, len)) {
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +03003633 Chardev *chr = qemu_chr_find(chr_info->label);
Marc-André Lureau777357d2016-12-07 18:39:10 +03003634 if (chr && CHARDEV_IS_RINGBUF(chr)) {
Hani Benhabiles8e597772014-05-27 23:39:30 +01003635 readline_add_completion(rs, chr_info->label);
3636 }
3637 }
3638 list = list->next;
3639 }
3640 qapi_free_ChardevInfoList(start);
3641}
3642
Hani Benhabiles8e597772014-05-27 23:39:30 +01003643void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3644{
3645 if (nb_args != 2) {
3646 return;
3647 }
3648 ringbuf_completion(rs, str);
3649}
3650
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003651void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3652{
3653 size_t len;
3654
3655 if (nb_args != 2) {
3656 return;
3657 }
3658
3659 len = strlen(str);
3660 readline_set_completion_index(rs, len);
Zhu Guihua6a1fa9f2014-10-21 19:46:05 +08003661 peripheral_device_del_completion(rs, str, len);
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +01003662}
3663
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003664void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
Hani Benhabilesb48fa072014-02-06 23:30:12 +01003665{
3666 ObjectPropertyInfoList *list, *start;
3667 size_t len;
3668
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003669 if (nb_args != 2) {
3670 return;
3671 }
Hani Benhabilesb48fa072014-02-06 23:30:12 +01003672 len = strlen(str);
3673 readline_set_completion_index(rs, len);
3674
3675 start = list = qmp_qom_list("/objects", NULL);
3676 while (list) {
3677 ObjectPropertyInfo *info = list->value;
3678
3679 if (!strncmp(info->type, "child<", 5)
3680 && !strncmp(info->name, str, len)) {
3681 readline_add_completion(rs, info->name);
3682 }
3683 list = list->next;
3684 }
3685 qapi_free_ObjectPropertyInfoList(start);
3686}
3687
Hani Benhabiles29136cd2014-05-07 23:41:27 +01003688void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3689{
3690 int i;
3691 char *sep;
3692 size_t len;
3693
3694 if (nb_args != 2) {
3695 return;
3696 }
3697 sep = strrchr(str, '-');
3698 if (sep) {
3699 str = sep + 1;
3700 }
3701 len = strlen(str);
3702 readline_set_completion_index(rs, len);
Eric Blake7fb1cf12015-11-18 01:52:57 -07003703 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
Markus Armbruster977c7362017-08-24 10:46:08 +02003704 if (!strncmp(str, QKeyCode_str(i), len)) {
3705 readline_add_completion(rs, QKeyCode_str(i));
Hani Benhabiles29136cd2014-05-07 23:41:27 +01003706 }
3707 }
3708}
3709
Hani Benhabiles40d19392014-05-07 23:41:30 +01003710void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
3711{
3712 size_t len;
3713
3714 len = strlen(str);
3715 readline_set_completion_index(rs, len);
3716 if (nb_args == 2) {
Jason Wangeaed4832015-04-23 14:21:38 +08003717 NetClientState *ncs[MAX_QUEUE_NUM];
Hani Benhabiles40d19392014-05-07 23:41:30 +01003718 int count, i;
3719 count = qemu_find_net_clients_except(NULL, ncs,
Eric Blakef394b2e2016-07-13 21:50:23 -06003720 NET_CLIENT_DRIVER_NONE,
Jason Wangeaed4832015-04-23 14:21:38 +08003721 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08003722 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Hani Benhabiles40d19392014-05-07 23:41:30 +01003723 const char *name = ncs[i]->name;
3724 if (!strncmp(str, name, len)) {
3725 readline_add_completion(rs, name);
3726 }
3727 }
3728 } else if (nb_args == 3) {
3729 add_completion_option(rs, str, "on");
3730 add_completion_option(rs, str, "off");
3731 }
3732}
3733
Hani Benhabiles11b389f2014-05-07 23:41:32 +01003734void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
3735{
3736 int len, count, i;
Jason Wangeaed4832015-04-23 14:21:38 +08003737 NetClientState *ncs[MAX_QUEUE_NUM];
Hani Benhabiles11b389f2014-05-07 23:41:32 +01003738
3739 if (nb_args != 2) {
3740 return;
3741 }
3742
3743 len = strlen(str);
3744 readline_set_completion_index(rs, len);
Eric Blakef394b2e2016-07-13 21:50:23 -06003745 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
Jason Wangeaed4832015-04-23 14:21:38 +08003746 MAX_QUEUE_NUM);
Jason Wangbcfa4d62015-04-23 14:21:39 +08003747 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
Hani Benhabiles11b389f2014-05-07 23:41:32 +01003748 QemuOpts *opts;
3749 const char *name = ncs[i]->name;
3750 if (strncmp(str, name, len)) {
3751 continue;
3752 }
3753 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
3754 if (opts) {
3755 readline_add_completion(rs, name);
3756 }
3757 }
3758}
3759
Lluís Vilanovabd712112016-07-11 12:53:51 +02003760void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
3761{
3762 size_t len;
3763
3764 len = strlen(str);
3765 readline_set_completion_index(rs, len);
3766 if (nb_args == 2) {
Daniel P. Berrange0d4e9952016-10-04 14:35:43 +01003767 TraceEventIter iter;
3768 TraceEvent *ev;
3769 char *pattern = g_strdup_printf("%s*", str);
3770 trace_event_iter_init(&iter, pattern);
3771 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3772 readline_add_completion(rs, trace_event_get_name(ev));
Lluís Vilanovabd712112016-07-11 12:53:51 +02003773 }
Daniel P. Berrange0d4e9952016-10-04 14:35:43 +01003774 g_free(pattern);
Lluís Vilanovabd712112016-07-11 12:53:51 +02003775 }
3776}
3777
Dr. David Alan Gilbert987bd272015-08-14 11:27:43 +01003778void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
3779{
3780 size_t len;
3781
3782 len = strlen(str);
3783 readline_set_completion_index(rs, len);
3784 if (nb_args == 2) {
Daniel P. Berrange0d4e9952016-10-04 14:35:43 +01003785 TraceEventIter iter;
3786 TraceEvent *ev;
3787 char *pattern = g_strdup_printf("%s*", str);
3788 trace_event_iter_init(&iter, pattern);
3789 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3790 readline_add_completion(rs, trace_event_get_name(ev));
Dr. David Alan Gilbert987bd272015-08-14 11:27:43 +01003791 }
Daniel P. Berrange0d4e9952016-10-04 14:35:43 +01003792 g_free(pattern);
Dr. David Alan Gilbert987bd272015-08-14 11:27:43 +01003793 } else if (nb_args == 3) {
3794 add_completion_option(rs, str, "on");
3795 add_completion_option(rs, str, "off");
3796 }
3797}
3798
Hani Benhabilesd0ece342014-05-27 23:39:31 +01003799void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
3800{
Hani Benhabiles4bb08af2014-07-29 23:22:40 +01003801 int i;
3802
Hani Benhabilesd0ece342014-05-27 23:39:31 +01003803 if (nb_args != 2) {
3804 return;
3805 }
3806 readline_set_completion_index(rs, strlen(str));
Michal Privoznik14d53b42017-09-07 10:05:24 +02003807 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
3808 add_completion_option(rs, str, WatchdogAction_str(i));
Hani Benhabiles4bb08af2014-07-29 23:22:40 +01003809 }
Hani Benhabilesd0ece342014-05-27 23:39:31 +01003810}
3811
Hani Benhabilesc68a0402014-05-27 23:39:32 +01003812void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
3813 const char *str)
3814{
3815 size_t len;
3816
3817 len = strlen(str);
3818 readline_set_completion_index(rs, len);
3819 if (nb_args == 2) {
3820 int i;
Eric Blake7fb1cf12015-11-18 01:52:57 -07003821 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
Markus Armbruster977c7362017-08-24 10:46:08 +02003822 const char *name = MigrationCapability_str(i);
Hani Benhabilesc68a0402014-05-27 23:39:32 +01003823 if (!strncmp(str, name, len)) {
3824 readline_add_completion(rs, name);
3825 }
3826 }
3827 } else if (nb_args == 3) {
3828 add_completion_option(rs, str, "on");
3829 add_completion_option(rs, str, "off");
3830 }
3831}
3832
Liang Li50e9a622015-03-23 16:32:29 +08003833void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
3834 const char *str)
3835{
3836 size_t len;
3837
3838 len = strlen(str);
3839 readline_set_completion_index(rs, len);
3840 if (nb_args == 2) {
3841 int i;
Eric Blake7fb1cf12015-11-18 01:52:57 -07003842 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
Markus Armbruster977c7362017-08-24 10:46:08 +02003843 const char *name = MigrationParameter_str(i);
Liang Li50e9a622015-03-23 16:32:29 +08003844 if (!strncmp(str, name, len)) {
3845 readline_add_completion(rs, name);
3846 }
3847 }
3848 }
3849}
3850
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003851static void vm_completion(ReadLineState *rs, const char *str)
3852{
3853 size_t len;
Kevin Wolf7c8eece2016-03-22 18:58:50 +01003854 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02003855 BdrvNextIterator it;
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003856
3857 len = strlen(str);
3858 readline_set_completion_index(rs, len);
Kevin Wolf7c8eece2016-03-22 18:58:50 +01003859
Kevin Wolf88be7b42016-05-20 18:49:07 +02003860 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003861 SnapshotInfoList *snapshots, *snapshot;
Denis V. Lunev6bf1faa2015-11-04 20:19:42 +03003862 AioContext *ctx = bdrv_get_aio_context(bs);
3863 bool ok = false;
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003864
Denis V. Lunev6bf1faa2015-11-04 20:19:42 +03003865 aio_context_acquire(ctx);
3866 if (bdrv_can_snapshot(bs)) {
3867 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
3868 }
3869 aio_context_release(ctx);
3870 if (!ok) {
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003871 continue;
3872 }
Denis V. Lunev6bf1faa2015-11-04 20:19:42 +03003873
Hani Benhabilesb21631f2014-05-27 23:39:37 +01003874 snapshot = snapshots;
3875 while (snapshot) {
3876 char *completion = snapshot->value->name;
3877 if (!strncmp(str, completion, len)) {
3878 readline_add_completion(rs, completion);
3879 }
3880 completion = snapshot->value->id;
3881 if (!strncmp(str, completion, len)) {
3882 readline_add_completion(rs, completion);
3883 }
3884 snapshot = snapshot->next;
3885 }
3886 qapi_free_SnapshotInfoList(snapshots);
3887 }
3888
3889}
3890
3891void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
3892{
3893 if (nb_args == 2) {
3894 vm_completion(rs, str);
3895 }
3896}
3897
3898void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
3899{
3900 if (nb_args == 2) {
3901 vm_completion(rs, str);
3902 }
3903}
3904
Wenchao Xiac35b6402013-08-27 20:38:24 +08003905static void monitor_find_completion_by_table(Monitor *mon,
3906 const mon_cmd_t *cmd_table,
3907 char **args,
3908 int nb_args)
bellard81d09122004-07-14 17:21:37 +00003909{
3910 const char *cmdname;
Wenchao Xiac35b6402013-08-27 20:38:24 +08003911 int i;
Dr. David Alan Gilbertbf67f1c2018-02-13 12:51:43 +00003912 const char *ptype, *old_ptype, *str, *name;
Anthony Liguoric227f092009-10-01 16:12:16 -05003913 const mon_cmd_t *cmd;
Max Reitzda27a002016-03-16 19:54:29 +01003914 BlockBackend *blk = NULL;
bellard81d09122004-07-14 17:21:37 +00003915
bellard81d09122004-07-14 17:21:37 +00003916 if (nb_args <= 1) {
3917 /* command completion */
3918 if (nb_args == 0)
3919 cmdname = "";
3920 else
3921 cmdname = args[0];
Wenchao Xiad2674b22013-08-27 20:38:16 +08003922 readline_set_completion_index(mon->rs, strlen(cmdname));
Wenchao Xiac35b6402013-08-27 20:38:24 +08003923 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Wenchao Xiacd5c6bb2013-08-27 20:38:13 +08003924 cmd_completion(mon, cmdname, cmd->name);
bellard81d09122004-07-14 17:21:37 +00003925 }
3926 } else {
3927 /* find the command */
Wenchao Xiac35b6402013-08-27 20:38:24 +08003928 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
Jan Kiszka03a63482010-06-16 00:38:33 +02003929 if (compare_cmd(args[0], cmd->name)) {
3930 break;
3931 }
bellard81d09122004-07-14 17:21:37 +00003932 }
Jan Kiszka03a63482010-06-16 00:38:33 +02003933 if (!cmd->name) {
Wenchao Xiac35b6402013-08-27 20:38:24 +08003934 return;
Jan Kiszka03a63482010-06-16 00:38:33 +02003935 }
3936
Wenchao Xiad903a772013-08-27 20:38:25 +08003937 if (cmd->sub_table) {
3938 /* do the job again */
Stefan Weile7ae7712015-03-08 19:30:01 +01003939 monitor_find_completion_by_table(mon, cmd->sub_table,
3940 &args[1], nb_args - 1);
3941 return;
Wenchao Xiad903a772013-08-27 20:38:25 +08003942 }
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003943 if (cmd->command_completion) {
Stefan Weile7ae7712015-03-08 19:30:01 +01003944 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
3945 return;
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01003946 }
Wenchao Xiad903a772013-08-27 20:38:25 +08003947
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003948 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003949 for(i = 0; i < nb_args - 2; i++) {
3950 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003951 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003952 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003953 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003954 }
3955 }
3956 str = args[nb_args - 1];
Dr. David Alan Gilbertbf67f1c2018-02-13 12:51:43 +00003957 old_ptype = NULL;
3958 while (*ptype == '-' && old_ptype != ptype) {
3959 old_ptype = ptype;
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02003960 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00003961 }
bellard81d09122004-07-14 17:21:37 +00003962 switch(*ptype) {
3963 case 'F':
3964 /* file completion */
Wenchao Xiad2674b22013-08-27 20:38:16 +08003965 readline_set_completion_index(mon->rs, strlen(str));
Wenchao Xiacb8f68b2013-08-27 20:38:14 +08003966 file_completion(mon, str);
bellard81d09122004-07-14 17:21:37 +00003967 break;
3968 case 'B':
3969 /* block device name completion */
Wenchao Xia599a9262013-08-27 20:38:15 +08003970 readline_set_completion_index(mon->rs, strlen(str));
Max Reitzda27a002016-03-16 19:54:29 +01003971 while ((blk = blk_next(blk)) != NULL) {
3972 name = blk_name(blk);
Markus Armbrusterfea68bb2014-10-07 13:59:10 +02003973 if (str[0] == '\0' ||
3974 !strncmp(name, str, strlen(str))) {
3975 readline_add_completion(mon->rs, name);
3976 }
3977 }
bellard81d09122004-07-14 17:21:37 +00003978 break;
bellard7fe48482004-10-09 18:08:01 +00003979 case 's':
Wenchao Xia129be002013-08-27 20:38:26 +08003980 case 'S':
Hani Benhabiles29136cd2014-05-07 23:41:27 +01003981 if (!strcmp(cmd->name, "help|?")) {
Wenchao Xia7ca0e062013-08-27 20:38:27 +08003982 monitor_find_completion_by_table(mon, cmd_table,
3983 &args[1], nb_args - 1);
bellard7fe48482004-10-09 18:08:01 +00003984 }
3985 break;
bellard81d09122004-07-14 17:21:37 +00003986 default:
3987 break;
3988 }
3989 }
Wenchao Xiac35b6402013-08-27 20:38:24 +08003990}
3991
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01003992static void monitor_find_completion(void *opaque,
Wenchao Xiac35b6402013-08-27 20:38:24 +08003993 const char *cmdline)
3994{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01003995 Monitor *mon = opaque;
Wenchao Xiac35b6402013-08-27 20:38:24 +08003996 char *args[MAX_ARGS];
3997 int nb_args, len;
3998
3999 /* 1. parse the cmdline */
4000 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4001 return;
4002 }
Wenchao Xiac35b6402013-08-27 20:38:24 +08004003
4004 /* if the line ends with a space, it means we want to complete the
4005 next arg */
4006 len = strlen(cmdline);
4007 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4008 if (nb_args >= MAX_ARGS) {
4009 goto cleanup;
4010 }
4011 args[nb_args++] = g_strdup("");
4012 }
4013
4014 /* 2. auto complete according to args */
4015 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
Jan Kiszka03a63482010-06-16 00:38:33 +02004016
4017cleanup:
Wenchao Xiadcc70cd2013-08-27 20:38:22 +08004018 free_cmdline_args(args, nb_args);
bellard81d09122004-07-14 17:21:37 +00004019}
4020
aliguori731b0362009-03-05 23:01:42 +00004021static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004022{
aliguori731b0362009-03-05 23:01:42 +00004023 Monitor *mon = opaque;
4024
Peter Xudf152fb2018-03-09 16:59:55 +08004025 return !atomic_mb_read(&mon->suspend_cnt);
bellard9dc39cb2004-03-14 21:38:27 +00004026}
4027
Peter Xu546aa562018-03-09 16:59:54 +08004028/*
4029 * 1. This function takes ownership of rsp, err, and id.
4030 * 2. rsp, err, and id may be NULL.
4031 * 3. If err != NULL then rsp must be NULL.
4032 */
4033static void monitor_qmp_respond(Monitor *mon, QObject *rsp,
4034 Error *err, QObject *id)
4035{
4036 QDict *qdict = NULL;
4037
4038 if (err) {
4039 assert(!rsp);
4040 qdict = qdict_new();
4041 qdict_put_obj(qdict, "error", qmp_build_error_object(err));
4042 error_free(err);
4043 rsp = QOBJECT(qdict);
4044 }
4045
4046 if (rsp) {
4047 if (id) {
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02004048 qdict_put_obj(qobject_to(QDict, rsp), "id", qobject_ref(id));
Peter Xu546aa562018-03-09 16:59:54 +08004049 }
4050
4051 monitor_json_emitter(mon, rsp);
4052 }
4053
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004054 qobject_unref(id);
4055 qobject_unref(rsp);
Peter Xu546aa562018-03-09 16:59:54 +08004056}
4057
Peter Xu71da4662018-03-09 16:59:57 +08004058/*
4059 * Dispatch one single QMP request. The function will free the req_obj
4060 * and objects inside it before return.
4061 */
4062static void monitor_qmp_dispatch_one(QMPRequest *req_obj)
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004063{
Peter Xu71da4662018-03-09 16:59:57 +08004064 Monitor *mon, *old_mon;
4065 QObject *req, *rsp = NULL, *id;
Peter Xu71da4662018-03-09 16:59:57 +08004066 bool need_resume;
Peter Xu227a0752018-03-09 16:59:49 +08004067
Peter Xu71da4662018-03-09 16:59:57 +08004068 req = req_obj->req;
4069 mon = req_obj->mon;
4070 id = req_obj->id;
4071 need_resume = req_obj->need_resume;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004072
Peter Xu71da4662018-03-09 16:59:57 +08004073 g_free(req_obj);
Marc-André Lureau5c678ee2016-09-12 13:19:10 +04004074
Denis V. Lunevbd6952a2017-07-25 17:39:23 +03004075 if (trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
4076 QString *req_json = qobject_to_json(req);
4077 trace_handle_qmp_command(mon, qstring_get_str(req_json));
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004078 qobject_unref(req_json);
Denis V. Lunevbd6952a2017-07-25 17:39:23 +03004079 }
Stefan Hajnoczib097efc2017-06-05 11:42:16 +01004080
Peter Xu227a0752018-03-09 16:59:49 +08004081 old_mon = cur_mon;
4082 cur_mon = mon;
4083
Peter Xu71da4662018-03-09 16:59:57 +08004084 rsp = qmp_dispatch(mon->qmp.commands, req);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004085
Peter Xu227a0752018-03-09 16:59:49 +08004086 cur_mon = old_mon;
4087
Peter Xu71da4662018-03-09 16:59:57 +08004088 /* Respond if necessary */
4089 monitor_qmp_respond(mon, rsp, NULL, id);
4090
4091 /* This pairs with the monitor_suspend() in handle_qmp_command(). */
4092 if (need_resume) {
4093 monitor_resume(mon);
4094 }
Marc-André Lureau5c678ee2016-09-12 13:19:10 +04004095
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004096 qobject_unref(req);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004097}
4098
Peter Xu71da4662018-03-09 16:59:57 +08004099/*
4100 * Pop one QMP request from monitor queues, return NULL if not found.
4101 * We are using round-robin fashion to pop the request, to avoid
4102 * processing commands only on a very busy monitor. To achieve that,
4103 * when we process one request on a specific monitor, we put that
4104 * monitor to the end of mon_list queue.
4105 */
4106static QMPRequest *monitor_qmp_requests_pop_one(void)
4107{
4108 QMPRequest *req_obj = NULL;
4109 Monitor *mon;
4110
4111 qemu_mutex_lock(&monitor_lock);
4112
4113 QTAILQ_FOREACH(mon, &mon_list, entry) {
4114 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4115 req_obj = g_queue_pop_head(mon->qmp.qmp_requests);
4116 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4117 if (req_obj) {
4118 break;
4119 }
4120 }
4121
4122 if (req_obj) {
4123 /*
4124 * We found one request on the monitor. Degrade this monitor's
4125 * priority to lowest by re-inserting it to end of queue.
4126 */
4127 QTAILQ_REMOVE(&mon_list, mon, entry);
4128 QTAILQ_INSERT_TAIL(&mon_list, mon, entry);
4129 }
4130
4131 qemu_mutex_unlock(&monitor_lock);
4132
4133 return req_obj;
4134}
4135
4136static void monitor_qmp_bh_dispatcher(void *data)
4137{
4138 QMPRequest *req_obj = monitor_qmp_requests_pop_one();
4139
4140 if (req_obj) {
Peter Xucf869d52018-03-10 20:38:05 -06004141 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj->id) ?: "");
Peter Xu71da4662018-03-09 16:59:57 +08004142 monitor_qmp_dispatch_one(req_obj);
4143 /* Reschedule instead of looping so the main loop stays responsive */
4144 qemu_bh_schedule(mon_global.qmp_dispatcher_bh);
4145 }
4146}
4147
Peter Xubf1e7302018-03-09 16:59:59 +08004148#define QMP_REQ_QUEUE_LEN_MAX (8)
4149
Peter Xu71da4662018-03-09 16:59:57 +08004150static void handle_qmp_command(JSONMessageParser *parser, GQueue *tokens)
4151{
4152 QObject *req, *id = NULL;
4153 QDict *qdict = NULL;
4154 MonitorQMP *mon_qmp = container_of(parser, MonitorQMP, parser);
4155 Monitor *mon = container_of(mon_qmp, Monitor, qmp);
4156 Error *err = NULL;
4157 QMPRequest *req_obj;
4158
4159 req = json_parser_parse_err(tokens, NULL, &err);
4160 if (!req && !err) {
4161 /* json_parser_parse_err() sucks: can fail without setting @err */
4162 error_setg(&err, QERR_JSON_PARSING);
4163 }
4164 if (err) {
Peter Xucf869d52018-03-10 20:38:05 -06004165 goto err;
Peter Xu71da4662018-03-09 16:59:57 +08004166 }
4167
Peter Xucf869d52018-03-10 20:38:05 -06004168 /* Check against the request in general layout */
4169 qdict = qmp_dispatch_check_obj(req, &err);
4170 if (!qdict) {
4171 goto err;
4172 }
4173
4174 /* Check against OOB specific */
4175 if (!qmp_cmd_oob_check(mon, qdict, &err)) {
4176 goto err;
4177 }
4178
4179 id = qdict_get(qdict, "id");
4180
4181 /* When OOB is enabled, the "id" field is mandatory. */
4182 if (qmp_oob_enabled(mon) && !id) {
4183 error_setg(&err, "Out-Of-Band capability requires that "
4184 "every command contains an 'id' field");
4185 goto err;
4186 }
4187
Peter Xu71da4662018-03-09 16:59:57 +08004188 req_obj = g_new0(QMPRequest, 1);
4189 req_obj->mon = mon;
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02004190 req_obj->id = qobject_ref(id);
Peter Xu71da4662018-03-09 16:59:57 +08004191 req_obj->req = req;
4192 req_obj->need_resume = false;
4193
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02004194 qdict_del(qdict, "id");
4195
Peter Xucf869d52018-03-10 20:38:05 -06004196 if (qmp_is_oob(qdict)) {
4197 /* Out-Of-Band (OOB) requests are executed directly in parser. */
4198 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(req_obj->id)
4199 ?: "");
4200 monitor_qmp_dispatch_one(req_obj);
4201 return;
4202 }
4203
Peter Xubf1e7302018-03-09 16:59:59 +08004204 /* Protect qmp_requests and fetching its length. */
4205 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4206
Peter Xu71da4662018-03-09 16:59:57 +08004207 /*
4208 * If OOB is not enabled on the current monitor, we'll emulate the
4209 * old behavior that we won't process the current monitor any more
4210 * until it has responded. This helps make sure that as long as
4211 * OOB is not enabled, the server will never drop any command.
4212 */
4213 if (!qmp_oob_enabled(mon)) {
4214 monitor_suspend(mon);
4215 req_obj->need_resume = true;
Peter Xubf1e7302018-03-09 16:59:59 +08004216 } else {
4217 /* Drop the request if queue is full. */
4218 if (mon->qmp.qmp_requests->length >= QMP_REQ_QUEUE_LEN_MAX) {
4219 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4220 qapi_event_send_command_dropped(id,
4221 COMMAND_DROP_REASON_QUEUE_FULL,
4222 &error_abort);
Peter Xu6d2d5632018-03-26 14:38:55 +08004223 qmp_request_free(req_obj);
Peter Xubf1e7302018-03-09 16:59:59 +08004224 return;
4225 }
Peter Xu71da4662018-03-09 16:59:57 +08004226 }
4227
4228 /*
4229 * Put the request to the end of queue so that requests will be
4230 * handled in time order. Ownership for req_obj, req, id,
4231 * etc. will be delivered to the handler side.
4232 */
Peter Xu71da4662018-03-09 16:59:57 +08004233 g_queue_push_tail(mon->qmp.qmp_requests, req_obj);
4234 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4235
4236 /* Kick the dispatcher routine */
4237 qemu_bh_schedule(mon_global.qmp_dispatcher_bh);
Peter Xucf869d52018-03-10 20:38:05 -06004238 return;
4239
4240err:
4241 monitor_qmp_respond(mon, NULL, err, NULL);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004242 qobject_unref(req);
Peter Xu71da4662018-03-09 16:59:57 +08004243}
4244
Markus Armbrusterc83fe232015-03-06 19:20:51 +01004245static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004246{
Peter Xu227a0752018-03-09 16:59:49 +08004247 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004248
Peter Xu227a0752018-03-09 16:59:49 +08004249 json_message_parser_feed(&mon->qmp.parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004250}
4251
aliguori731b0362009-03-05 23:01:42 +00004252static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004253{
aliguori731b0362009-03-05 23:01:42 +00004254 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004255 int i;
aliguori376253e2009-03-05 23:01:23 +00004256
aliguori731b0362009-03-05 23:01:42 +00004257 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004258
aliguoricde76ee2009-03-05 23:01:51 +00004259 if (cur_mon->rs) {
4260 for (i = 0; i < size; i++)
4261 readline_handle_byte(cur_mon->rs, buf[i]);
4262 } else {
4263 if (size == 0 || buf[size - 1] != 0)
4264 monitor_printf(cur_mon, "corrupted command\n");
4265 else
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01004266 handle_hmp_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004267 }
aliguori731b0362009-03-05 23:01:42 +00004268
4269 cur_mon = old_mon;
4270}
aliguorid8f44602008-10-06 13:52:44 +00004271
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004272static void monitor_command_cb(void *opaque, const char *cmdline,
4273 void *readline_opaque)
bellard7e2515e2004-08-01 21:52:19 +00004274{
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004275 Monitor *mon = opaque;
4276
aliguori731b0362009-03-05 23:01:42 +00004277 monitor_suspend(mon);
Markus Armbruster7ef6cf62015-03-06 19:12:36 +01004278 handle_hmp_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004279 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004280}
4281
aliguoricde76ee2009-03-05 23:01:51 +00004282int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004283{
Peter Xue3e977d2018-03-09 16:59:56 +08004284 if (monitor_is_hmp_non_interactive(mon)) {
aliguoricde76ee2009-03-05 23:01:51 +00004285 return -ENOTTY;
Peter Xue3e977d2018-03-09 16:59:56 +08004286 }
4287
Peter Xudf152fb2018-03-09 16:59:55 +08004288 atomic_inc(&mon->suspend_cnt);
Peter Xue3e977d2018-03-09 16:59:56 +08004289
4290 if (monitor_is_qmp(mon)) {
4291 /*
4292 * Kick iothread to make sure this takes effect. It'll be
4293 * evaluated again in prepare() of the watch object.
4294 */
4295 aio_notify(iothread_get_aio_context(mon_global.mon_iothread));
4296 }
4297
4298 trace_monitor_suspend(mon, 1);
aliguoricde76ee2009-03-05 23:01:51 +00004299 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004300}
4301
aliguori376253e2009-03-05 23:01:23 +00004302void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004303{
Peter Xue3e977d2018-03-09 16:59:56 +08004304 if (monitor_is_hmp_non_interactive(mon)) {
aliguoricde76ee2009-03-05 23:01:51 +00004305 return;
Peter Xudf152fb2018-03-09 16:59:55 +08004306 }
Peter Xue3e977d2018-03-09 16:59:56 +08004307
4308 if (atomic_dec_fetch(&mon->suspend_cnt) == 0) {
4309 if (monitor_is_qmp(mon)) {
4310 /*
4311 * For QMP monitors that are running in IOThread, let's
4312 * kick the thread in case it's sleeping.
4313 */
4314 if (mon->use_io_thr) {
4315 aio_notify(iothread_get_aio_context(mon_global.mon_iothread));
4316 }
4317 } else {
4318 assert(mon->rs);
4319 readline_show_prompt(mon->rs);
4320 }
4321 }
4322 trace_monitor_suspend(mon, -1);
bellard7e2515e2004-08-01 21:52:19 +00004323}
4324
Peter Xu02130312018-03-09 16:59:53 +08004325static QObject *get_qmp_greeting(Monitor *mon)
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004326{
Peter Xu02130312018-03-09 16:59:53 +08004327 QList *cap_list = qlist_new();
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004328 QObject *ver = NULL;
Peter Xu02130312018-03-09 16:59:53 +08004329 QMPCapability cap;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004330
Markus Armbruster7fad30f2015-09-16 13:06:19 +02004331 qmp_marshal_query_version(NULL, &ver, NULL);
Marc-André Lureauc8235012016-09-12 13:19:04 +04004332
Peter Xu02130312018-03-09 16:59:53 +08004333 for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
4334 if (!mon->use_io_thr && cap == QMP_CAPABILITY_OOB) {
4335 /* Monitors that are not using IOThread won't support OOB */
4336 continue;
4337 }
Laurent Vivier625eaca2018-03-23 15:32:01 +01004338 qlist_append_str(cap_list, QMPCapability_str(cap));
Peter Xu02130312018-03-09 16:59:53 +08004339 }
4340
4341 return qobject_from_jsonf("{'QMP': {'version': %p, 'capabilities': %p}}",
4342 ver, cap_list);
4343}
4344
4345static void monitor_qmp_caps_reset(Monitor *mon)
4346{
4347 memset(mon->qmp.qmp_caps, 0, sizeof(mon->qmp.qmp_caps));
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004348}
4349
Markus Armbrusterc83fe232015-03-06 19:20:51 +01004350static void monitor_qmp_event(void *opaque, int event)
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004351{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004352 QObject *data;
4353 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004354
Luiz Capitulino47116d12010-02-08 17:01:30 -02004355 switch (event) {
4356 case CHR_EVENT_OPENED:
Markus Armbruster635db182017-03-03 13:32:27 +01004357 mon->qmp.commands = &qmp_cap_negotiation_commands;
Peter Xu02130312018-03-09 16:59:53 +08004358 monitor_qmp_caps_reset(mon);
4359 data = get_qmp_greeting(mon);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004360 monitor_json_emitter(mon, data);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004361 qobject_unref(data);
Corey Bryantefb87c12012-08-14 16:43:48 -04004362 mon_refcount++;
Luiz Capitulino47116d12010-02-08 17:01:30 -02004363 break;
4364 case CHR_EVENT_CLOSED:
Peter Xu6d2d5632018-03-26 14:38:55 +08004365 monitor_qmp_cleanup_queues(mon);
Markus Armbruster74358f22015-03-06 19:35:59 +01004366 json_message_parser_destroy(&mon->qmp.parser);
4367 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
Corey Bryantefb87c12012-08-14 16:43:48 -04004368 mon_refcount--;
4369 monitor_fdsets_cleanup();
Luiz Capitulino47116d12010-02-08 17:01:30 -02004370 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004371 }
4372}
4373
aliguori731b0362009-03-05 23:01:42 +00004374static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004375{
aliguori376253e2009-03-05 23:01:23 +00004376 Monitor *mon = opaque;
4377
aliguori2724b182009-03-05 23:01:47 +00004378 switch (event) {
4379 case CHR_EVENT_MUX_IN:
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02004380 qemu_mutex_lock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004381 mon->mux_out = 0;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02004382 qemu_mutex_unlock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004383 if (mon->reset_seen) {
4384 readline_restart(mon->rs);
4385 monitor_resume(mon);
4386 monitor_flush(mon);
4387 } else {
Peter Xudf152fb2018-03-09 16:59:55 +08004388 atomic_mb_set(&mon->suspend_cnt, 0);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004389 }
aliguori2724b182009-03-05 23:01:47 +00004390 break;
ths86e94de2007-01-05 22:01:59 +00004391
aliguori2724b182009-03-05 23:01:47 +00004392 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004393 if (mon->reset_seen) {
Peter Xudf152fb2018-03-09 16:59:55 +08004394 if (atomic_mb_read(&mon->suspend_cnt) == 0) {
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004395 monitor_printf(mon, "\n");
4396 }
4397 monitor_flush(mon);
4398 monitor_suspend(mon);
4399 } else {
Peter Xudf152fb2018-03-09 16:59:55 +08004400 atomic_inc(&mon->suspend_cnt);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004401 }
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02004402 qemu_mutex_lock(&mon->out_lock);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004403 mon->mux_out = 1;
Paolo Bonzini6cff3e82014-06-18 08:43:59 +02004404 qemu_mutex_unlock(&mon->out_lock);
aliguori2724b182009-03-05 23:01:47 +00004405 break;
4406
Amit Shahb6b8df52009-10-07 18:31:16 +05304407 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004408 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4409 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004410 if (!mon->mux_out) {
Stratos Psomadakise5554e22014-09-15 15:34:57 +03004411 readline_restart(mon->rs);
aliguori2724b182009-03-05 23:01:47 +00004412 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004413 }
4414 mon->reset_seen = 1;
Corey Bryantefb87c12012-08-14 16:43:48 -04004415 mon_refcount++;
4416 break;
4417
4418 case CHR_EVENT_CLOSED:
4419 mon_refcount--;
4420 monitor_fdsets_cleanup();
aliguori2724b182009-03-05 23:01:47 +00004421 break;
4422 }
ths86e94de2007-01-05 22:01:59 +00004423}
4424
Wayne Xia816f8922011-10-12 11:32:41 +08004425static int
4426compare_mon_cmd(const void *a, const void *b)
4427{
4428 return strcmp(((const mon_cmd_t *)a)->name,
4429 ((const mon_cmd_t *)b)->name);
4430}
4431
4432static void sortcmdlist(void)
4433{
4434 int array_num;
4435 int elem_size = sizeof(mon_cmd_t);
4436
4437 array_num = sizeof(mon_cmds)/elem_size-1;
4438 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4439
4440 array_num = sizeof(info_cmds)/elem_size-1;
4441 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4442}
4443
Peter Xua5ed3522018-03-09 16:59:52 +08004444static GMainContext *monitor_get_io_context(void)
4445{
4446 return iothread_get_g_main_context(mon_global.mon_iothread);
4447}
4448
4449static AioContext *monitor_get_aio_context(void)
4450{
4451 return iothread_get_aio_context(mon_global.mon_iothread);
4452}
4453
4454static void monitor_iothread_init(void)
4455{
4456 mon_global.mon_iothread = iothread_create("mon_iothread",
4457 &error_abort);
Peter Xu71da4662018-03-09 16:59:57 +08004458
4459 /*
4460 * This MUST be on main loop thread since we have commands that
4461 * have assumption to be run on main loop thread. It would be
4462 * nice that one day we can remove this assumption in the future.
4463 */
Peter Xu951702f2018-04-10 12:49:42 +08004464 mon_global.qmp_dispatcher_bh = aio_bh_new(iohandler_get_aio_context(),
Peter Xu71da4662018-03-09 16:59:57 +08004465 monitor_qmp_bh_dispatcher,
4466 NULL);
Peter Xuabe3cd02018-03-09 17:00:02 +08004467
4468 /*
4469 * Unlike the dispatcher BH, this must be run on the monitor IO
4470 * thread, so that monitors that are using IO thread will make
4471 * sure read/write operations are all done on the IO thread.
4472 */
4473 mon_global.qmp_respond_bh = aio_bh_new(monitor_get_aio_context(),
4474 monitor_qmp_bh_responder,
4475 NULL);
Peter Xua5ed3522018-03-09 16:59:52 +08004476}
4477
Peter Xu6adf08d2018-03-09 16:59:50 +08004478void monitor_init_globals(void)
4479{
4480 monitor_init_qmp_commands();
4481 monitor_qapi_event_init();
4482 sortcmdlist();
4483 qemu_mutex_init(&monitor_lock);
Peter Xua5ed3522018-03-09 16:59:52 +08004484 monitor_iothread_init();
Peter Xu6adf08d2018-03-09 16:59:50 +08004485}
4486
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004487/* These functions just adapt the readline interface in a typesafe way. We
4488 * could cast function pointers but that discards compiler checks.
4489 */
Stefan Weild5d15072014-01-25 18:18:23 +01004490static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
4491 const char *fmt, ...)
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004492{
4493 va_list ap;
4494 va_start(ap, fmt);
4495 monitor_vprintf(opaque, fmt, ap);
4496 va_end(ap);
4497}
4498
4499static void monitor_readline_flush(void *opaque)
4500{
4501 monitor_flush(opaque);
4502}
4503
Paolo Bonzini397d30e2016-10-24 18:31:02 +02004504/*
4505 * Print to current monitor if we have one, else to stderr.
4506 * TODO should return int, so callers can calculate width, but that
4507 * requires surgery to monitor_vprintf(). Left for another day.
4508 */
4509void error_vprintf(const char *fmt, va_list ap)
4510{
4511 if (cur_mon && !monitor_cur_is_qmp()) {
4512 monitor_vprintf(cur_mon, fmt, ap);
4513 } else {
4514 vfprintf(stderr, fmt, ap);
4515 }
4516}
4517
4518void error_vprintf_unless_qmp(const char *fmt, va_list ap)
4519{
4520 if (cur_mon && !monitor_cur_is_qmp()) {
4521 monitor_vprintf(cur_mon, fmt, ap);
Marc-André Lureau0d6b50d2017-01-05 14:59:57 +01004522 } else if (!cur_mon) {
4523 vfprintf(stderr, fmt, ap);
Paolo Bonzini397d30e2016-10-24 18:31:02 +02004524 }
4525}
4526
Peter Xua5ed3522018-03-09 16:59:52 +08004527static void monitor_list_append(Monitor *mon)
4528{
4529 qemu_mutex_lock(&monitor_lock);
4530 QTAILQ_INSERT_HEAD(&mon_list, mon, entry);
4531 qemu_mutex_unlock(&monitor_lock);
4532}
4533
4534static void monitor_qmp_setup_handlers_bh(void *opaque)
4535{
4536 Monitor *mon = opaque;
4537 GMainContext *context;
4538
4539 if (mon->use_io_thr) {
4540 /*
4541 * When use_io_thr is set, we use the global shared dedicated
4542 * IO thread for this monitor to handle input/output.
4543 */
4544 context = monitor_get_io_context();
4545 /* We should have inited globals before reaching here. */
4546 assert(context);
4547 } else {
4548 /* The default main loop, which is the main thread */
4549 context = NULL;
4550 }
4551
4552 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
4553 monitor_qmp_event, NULL, mon, context, true);
4554 monitor_list_append(mon);
4555}
4556
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +03004557void monitor_init(Chardev *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004558{
Peter Xu6adf08d2018-03-09 16:59:50 +08004559 Monitor *mon = g_malloc(sizeof(*mon));
Peter Xube933ff2018-03-26 14:38:56 +08004560 bool use_readline = flags & MONITOR_USE_READLINE;
4561 bool use_oob = flags & MONITOR_USE_OOB;
ths20d8a3e2007-02-18 17:04:49 +00004562
Peter Xube933ff2018-03-26 14:38:56 +08004563 if (use_oob) {
4564 if (CHARDEV_IS_MUX(chr)) {
4565 error_report("Monitor Out-Of-Band is not supported with "
4566 "MUX typed chardev backend");
4567 exit(1);
4568 }
4569 if (use_readline) {
4570 error_report("Monitor Out-Of-band is only supported by QMP");
4571 exit(1);
4572 }
4573 }
4574
4575 monitor_data_init(mon, false, use_oob);
ths20d8a3e2007-02-18 17:04:49 +00004576
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +03004577 qemu_chr_fe_init(&mon->chr, chr, &error_abort);
aliguori731b0362009-03-05 23:01:42 +00004578 mon->flags = flags;
Peter Xube933ff2018-03-26 14:38:56 +08004579 if (use_readline) {
Stefan Hajnoczic60bf332013-11-14 11:54:14 +01004580 mon->rs = readline_init(monitor_readline_printf,
4581 monitor_readline_flush,
4582 mon,
4583 monitor_find_completion);
aliguoricde76ee2009-03-05 23:01:51 +00004584 monitor_read_command(mon, 0);
4585 }
aliguori87127162009-03-05 23:01:29 +00004586
Markus Armbruster9f3982f2015-03-06 19:56:38 +01004587 if (monitor_is_qmp(mon)) {
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03004588 qemu_chr_fe_set_echo(&mon->chr, true);
Markus Armbruster74358f22015-03-06 19:35:59 +01004589 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
Peter Xua5ed3522018-03-09 16:59:52 +08004590 if (mon->use_io_thr) {
4591 /*
4592 * Make sure the old iowatch is gone. It's possible when
4593 * e.g. the chardev is in client mode, with wait=on.
4594 */
4595 remove_fd_in_watch(chr);
4596 /*
4597 * We can't call qemu_chr_fe_set_handlers() directly here
4598 * since during the procedure the chardev will be active
4599 * and running in monitor iothread, while we'll still do
4600 * something before returning from it, which is a possible
4601 * race too. To avoid that, we just create a BH to setup
4602 * the handlers.
4603 */
4604 aio_bh_schedule_oneshot(monitor_get_aio_context(),
4605 monitor_qmp_setup_handlers_bh, mon);
4606 /* We'll add this to mon_list in the BH when setup done */
4607 return;
4608 } else {
4609 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read,
4610 monitor_qmp_read, monitor_qmp_event,
4611 NULL, mon, NULL, true);
4612 }
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004613 } else {
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03004614 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
Anton Nefedov81517ba2017-07-06 15:08:49 +03004615 monitor_event, NULL, mon, NULL, true);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004616 }
aliguori87127162009-03-05 23:01:29 +00004617
Peter Xua5ed3522018-03-09 16:59:52 +08004618 monitor_list_append(mon);
bellard7e2515e2004-08-01 21:52:19 +00004619}
4620
Marc-André Lureau2ef45712016-08-01 15:23:42 +04004621void monitor_cleanup(void)
4622{
4623 Monitor *mon, *next;
4624
Peter Xua5ed3522018-03-09 16:59:52 +08004625 /*
4626 * We need to explicitly stop the iothread (but not destroy it),
4627 * cleanup the monitor resources, then destroy the iothread since
4628 * we need to unregister from chardev below in
4629 * monitor_data_destroy(), and chardev is not thread-safe yet
4630 */
4631 iothread_stop(mon_global.mon_iothread);
4632
Peter Xuabe3cd02018-03-09 17:00:02 +08004633 /*
4634 * After we have IOThread to send responses, it's possible that
4635 * when we stop the IOThread there are still replies queued in the
4636 * responder queue. Flush all of them. Note that even after this
4637 * flush it's still possible that out buffer is not flushed.
4638 * It'll be done in below monitor_flush() as the last resort.
4639 */
4640 monitor_qmp_bh_responder(NULL);
4641
Marc-André Lureau2ef45712016-08-01 15:23:42 +04004642 qemu_mutex_lock(&monitor_lock);
Peter Xu238d9f32018-03-09 16:59:51 +08004643 QTAILQ_FOREACH_SAFE(mon, &mon_list, entry, next) {
4644 QTAILQ_REMOVE(&mon_list, mon, entry);
Peter Xuabe3cd02018-03-09 17:00:02 +08004645 monitor_flush(mon);
Marc-André Lureau2ef45712016-08-01 15:23:42 +04004646 monitor_data_destroy(mon);
4647 g_free(mon);
4648 }
4649 qemu_mutex_unlock(&monitor_lock);
Peter Xua5ed3522018-03-09 16:59:52 +08004650
Peter Xu71da4662018-03-09 16:59:57 +08004651 /* QEMUBHs needs to be deleted before destroying the IOThread. */
4652 qemu_bh_delete(mon_global.qmp_dispatcher_bh);
4653 mon_global.qmp_dispatcher_bh = NULL;
Peter Xuabe3cd02018-03-09 17:00:02 +08004654 qemu_bh_delete(mon_global.qmp_respond_bh);
4655 mon_global.qmp_respond_bh = NULL;
Peter Xu71da4662018-03-09 16:59:57 +08004656
Peter Xua5ed3522018-03-09 16:59:52 +08004657 iothread_destroy(mon_global.mon_iothread);
4658 mon_global.mon_iothread = NULL;
Marc-André Lureau2ef45712016-08-01 15:23:42 +04004659}
4660
Paolo Bonzini4d454572012-11-26 16:03:42 +01004661QemuOptsList qemu_mon_opts = {
4662 .name = "mon",
4663 .implied_opt_name = "chardev",
4664 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4665 .desc = {
4666 {
4667 .name = "mode",
4668 .type = QEMU_OPT_STRING,
4669 },{
4670 .name = "chardev",
4671 .type = QEMU_OPT_STRING,
4672 },{
Paolo Bonzini4d454572012-11-26 16:03:42 +01004673 .name = "pretty",
4674 .type = QEMU_OPT_BOOL,
Peter Xube933ff2018-03-26 14:38:56 +08004675 },{
4676 .name = "x-oob",
4677 .type = QEMU_OPT_BOOL,
Paolo Bonzini4d454572012-11-26 16:03:42 +01004678 },
4679 { /* end of list */ }
4680 },
4681};
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03004682
4683#ifndef TARGET_I386
4684void qmp_rtc_reset_reinjection(Error **errp)
4685{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01004686 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03004687}
Brijesh Singh08a161f2018-03-08 06:48:42 -06004688
4689SevInfo *qmp_query_sev(Error **errp)
4690{
4691 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev");
4692 return NULL;
4693}
Brijesh Singh1b6a0342018-03-08 06:48:56 -06004694
4695SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
4696{
4697 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-launch-measure");
4698 return NULL;
4699}
Brijesh Singh31dd67f2018-03-08 06:48:59 -06004700
4701SevCapability *qmp_query_sev_capabilities(Error **errp)
4702{
4703 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-capabilities");
4704 return NULL;
4705}
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03004706#endif
Jason J. Herne7ee0c3e2015-06-26 14:03:16 -04004707
4708#ifndef TARGET_S390X
4709void qmp_dump_skeys(const char *filename, Error **errp)
4710{
4711 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
4712}
4713#endif
Peter Xuae50a772016-03-30 17:27:24 +01004714
4715#ifndef TARGET_ARM
4716GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
4717{
4718 error_setg(errp, QERR_FEATURE_DISABLED, "query-gic-capabilities");
4719 return NULL;
4720}
4721#endif
Igor Mammedovd4633542016-06-10 06:29:06 +05304722
4723HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
4724{
4725 MachineState *ms = MACHINE(qdev_get_machine());
4726 MachineClass *mc = MACHINE_GET_CLASS(ms);
4727
Igor Mammedovc5514d02017-02-10 11:20:57 +01004728 if (!mc->has_hotpluggable_cpus) {
Igor Mammedovd4633542016-06-10 06:29:06 +05304729 error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
4730 return NULL;
4731 }
4732
Igor Mammedovc5514d02017-02-10 11:20:57 +01004733 return machine_query_hotpluggable_cpus(ms);
Igor Mammedovd4633542016-06-10 06:29:06 +05304734}