]>
Commit | Line | Data |
---|---|---|
9dc39cba FB |
1 | /* |
2 | * QEMU monitor | |
5fafdf24 | 3 | * |
9dc39cba | 4 | * Copyright (c) 2003-2004 Fabrice Bellard |
5fafdf24 | 5 | * |
9dc39cba FB |
6 | * 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 | */ | |
e688df6b | 24 | |
d38ea87a | 25 | #include "qemu/osdep.h" |
8ec338ac | 26 | #include "qemu/units.h" |
511d2b14 | 27 | #include <dirent.h> |
33c11879 | 28 | #include "cpu.h" |
87ecb68b | 29 | #include "hw/hw.h" |
b4a42f81 | 30 | #include "monitor/qdev.h" |
87ecb68b | 31 | #include "hw/usb.h" |
a2cb15b0 | 32 | #include "hw/pci/pci.h" |
0d09e41a | 33 | #include "sysemu/watchdog.h" |
45a50b16 | 34 | #include "hw/loader.h" |
022c62cb | 35 | #include "exec/gdbstub.h" |
1422e32d | 36 | #include "net/net.h" |
68ac40d2 | 37 | #include "net/slirp.h" |
4d43a603 | 38 | #include "chardev/char-fe.h" |
a5ed3525 | 39 | #include "chardev/char-io.h" |
be933ffc | 40 | #include "chardev/char-mux.h" |
7572150c | 41 | #include "ui/qemu-spice.h" |
e35704ba | 42 | #include "sysemu/numa.h" |
83c9089e | 43 | #include "monitor/monitor.h" |
213dcb06 | 44 | #include "qemu/config-file.h" |
0150cd81 | 45 | #include "qemu/readline.h" |
28ecbaee | 46 | #include "ui/console.h" |
c751a74a | 47 | #include "ui/input.h" |
da27a00e | 48 | #include "sysemu/block-backend.h" |
87ecb68b | 49 | #include "audio/audio.h" |
76cad711 | 50 | #include "disas/disas.h" |
9c17d615 | 51 | #include "sysemu/balloon.h" |
1de7afc9 | 52 | #include "qemu/timer.h" |
b3946626 | 53 | #include "sysemu/hw_accel.h" |
1de7afc9 | 54 | #include "qemu/acl.h" |
bdee56f5 | 55 | #include "sysemu/tpm.h" |
452fcdbc | 56 | #include "qapi/qmp/qdict.h" |
cc7a8ea7 | 57 | #include "qapi/qmp/qerror.h" |
15280c36 | 58 | #include "qapi/qmp/qnum.h" |
fc81fa1e | 59 | #include "qapi/qmp/qstring.h" |
7b1b5d19 | 60 | #include "qapi/qmp/qjson.h" |
86cdf9ec | 61 | #include "qapi/qmp/json-parser.h" |
02130314 | 62 | #include "qapi/qmp/qlist.h" |
a9c94277 | 63 | #include "qom/object_interfaces.h" |
0ab8ed18 | 64 | #include "trace-root.h" |
31965ae2 | 65 | #include "trace/control.h" |
bf957284 | 66 | #include "monitor/hmp-target.h" |
6d8a764e | 67 | #ifdef CONFIG_TRACE_SIMPLE |
31965ae2 | 68 | #include "trace/simple.h" |
22890ab5 | 69 | #endif |
022c62cb | 70 | #include "exec/memory.h" |
63c91552 | 71 | #include "exec/exec-all.h" |
03dd024f | 72 | #include "qemu/log.h" |
922a01a0 | 73 | #include "qemu/option.h" |
48a32bed | 74 | #include "hmp.h" |
1de7afc9 | 75 | #include "qemu/thread.h" |
b21631f3 | 76 | #include "block/qapi.h" |
eb815e24 MA |
77 | #include "qapi/qapi-commands.h" |
78 | #include "qapi/qapi-events.h" | |
e688df6b | 79 | #include "qapi/error.h" |
43a14cfc | 80 | #include "qapi/qmp-event.h" |
eb815e24 | 81 | #include "qapi/qapi-introspect.h" |
dc599978 | 82 | #include "sysemu/qtest.h" |
d2528bdc | 83 | #include "sysemu/cpus.h" |
a5ed3525 | 84 | #include "sysemu/iothread.h" |
f348b6d1 | 85 | #include "qemu/cutils.h" |
72fd2efb | 86 | #include "tcg/tcg.h" |
6a5bd307 | 87 | |
a4538a5c JH |
88 | #if defined(TARGET_S390X) |
89 | #include "hw/s390x/storage-keys.h" | |
f860d497 | 90 | #include "hw/s390x/storage-attributes.h" |
a4538a5c JH |
91 | #endif |
92 | ||
9307c4c1 FB |
93 | /* |
94 | * Supported types: | |
5fafdf24 | 95 | * |
9307c4c1 | 96 | * 'F' filename |
81d0912d | 97 | * 'B' block device name |
9307c4c1 | 98 | * 's' string (accept optional quote) |
129be006 | 99 | * 'S' it just appends the rest of the string (accept optional quote) |
361127df MA |
100 | * '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 | |
92a31b1f FB |
105 | * 'i' 32 bit integer |
106 | * 'l' target long (32 or 64 bit) | |
91162849 LC |
107 | * 'M' Non-negative target long (32 or 64 bit), in user mode the |
108 | * value is multiplied by 2^20 (think Mebibyte) | |
dbc0c67f | 109 | * 'o' octets (aka bytes) |
5e00984a KW |
110 | * 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 | |
fccfb11e MA |
114 | * 'T' double |
115 | * user mode accepts an optional ms, us, ns suffix, | |
116 | * which divides the value by 1e3, 1e6, 1e9, respectively | |
9307c4c1 FB |
117 | * '/' optional gdb-like print format (like "/10x") |
118 | * | |
fb46660e LC |
119 | * '?' optional type (for all types, except '/') |
120 | * '.' other form of optional type (for 'i' and 'l') | |
942cd1f2 MA |
121 | * 'b' boolean |
122 | * user mode accepts "on" or "off" | |
fb46660e | 123 | * '-' optional parameter (eg. '-f') |
9307c4c1 FB |
124 | * |
125 | */ | |
126 | ||
c227f099 | 127 | typedef struct mon_cmd_t { |
9dc39cba | 128 | const char *name; |
9307c4c1 | 129 | const char *args_type; |
9dc39cba FB |
130 | const char *params; |
131 | const char *help; | |
c3120f71 | 132 | const char *flags; /* p=preconfig */ |
2b9e3576 MAL |
133 | void (*cmd)(Monitor *mon, const QDict *qdict); |
134 | /* @sub_table is a list of 2nd level of commands. If it does not exist, | |
135 | * cmd should be used. If it exists, sub_table[?].cmd should be | |
136 | * used, and cmd of 1st level plays the role of help function. | |
5f3d335f WX |
137 | */ |
138 | struct mon_cmd_t *sub_table; | |
bfa40f77 | 139 | void (*command_completion)(ReadLineState *rs, int nb_args, const char *str); |
c227f099 | 140 | } mon_cmd_t; |
9dc39cba | 141 | |
f07918fd | 142 | /* file descriptors passed via SCM_RIGHTS */ |
c227f099 AL |
143 | typedef struct mon_fd_t mon_fd_t; |
144 | struct mon_fd_t { | |
f07918fd MM |
145 | char *name; |
146 | int fd; | |
c227f099 | 147 | QLIST_ENTRY(mon_fd_t) next; |
f07918fd MM |
148 | }; |
149 | ||
ba1c048a CB |
150 | /* file descriptor associated with a file descriptor set */ |
151 | typedef struct MonFdsetFd MonFdsetFd; | |
152 | struct MonFdsetFd { | |
153 | int fd; | |
154 | bool removed; | |
155 | char *opaque; | |
156 | QLIST_ENTRY(MonFdsetFd) next; | |
157 | }; | |
158 | ||
159 | /* file descriptor set containing fds passed via SCM_RIGHTS */ | |
160 | typedef struct MonFdset MonFdset; | |
161 | struct MonFdset { | |
162 | int64_t id; | |
163 | QLIST_HEAD(, MonFdsetFd) fds; | |
adb696f3 | 164 | QLIST_HEAD(, MonFdsetFd) dup_fds; |
ba1c048a CB |
165 | QLIST_ENTRY(MonFdset) next; |
166 | }; | |
167 | ||
74358f2a | 168 | typedef struct { |
5fa737a4 | 169 | JSONMessageParser parser; |
f994b258 MA |
170 | /* |
171 | * When a client connects, we're in capabilities negotiation mode. | |
774a6b67 MA |
172 | * @commands is &qmp_cap_negotiation_commands then. When command |
173 | * qmp_capabilities succeeds, we go into command mode, and | |
174 | * @command becomes &qmp_commands. | |
f994b258 | 175 | */ |
635db18f | 176 | QmpCommandList *commands; |
279f9e08 MA |
177 | bool capab_offered[QMP_CAPABILITY__MAX]; /* capabilities offered */ |
178 | bool capab[QMP_CAPABILITY__MAX]; /* offered and accepted */ | |
71da4667 | 179 | /* |
774a6b67 MA |
180 | * Protects qmp request/response queue. |
181 | * Take monitor_lock first when you need both. | |
71da4667 PX |
182 | */ |
183 | QemuMutex qmp_queue_lock; | |
184 | /* Input queue that holds all the parsed QMP requests */ | |
185 | GQueue *qmp_requests; | |
74358f2a | 186 | } MonitorQMP; |
5fa737a4 | 187 | |
afeecec2 DB |
188 | /* |
189 | * To prevent flooding clients, events can be throttled. The | |
190 | * throttling is calculated globally, rather than per-Monitor | |
191 | * instance. | |
192 | */ | |
43a14cfc | 193 | typedef struct MonitorQAPIEventState { |
7de0be65 MA |
194 | QAPIEvent event; /* Throttling state for this event type and... */ |
195 | QDict *data; /* ... data, see qapi_event_throttle_equal() */ | |
afeecec2 | 196 | QEMUTimer *timer; /* Timer for handling delayed events */ |
688b4b7d | 197 | QDict *qdict; /* Delayed event (if any) */ |
43a14cfc | 198 | } MonitorQAPIEventState; |
afeecec2 | 199 | |
b9b03ab0 MA |
200 | typedef struct { |
201 | int64_t rate; /* Minimum time (in ns) between two events */ | |
202 | } MonitorQAPIEventConf; | |
203 | ||
87127161 | 204 | struct Monitor { |
32a6ebec | 205 | CharBackend chr; |
a7aec5da | 206 | int reset_seen; |
731b0364 | 207 | int flags; |
df152fb9 | 208 | int suspend_cnt; /* Needs to be accessed atomically */ |
48c043d0 | 209 | bool skip_flush; |
f91dc2a0 | 210 | bool use_io_thread; |
d9f25280 PX |
211 | |
212 | /* | |
213 | * State used only in the thread "owning" the monitor. | |
cab5ad86 | 214 | * If @use_io_thread, this is @mon_iothread. |
d9f25280 PX |
215 | * Else, it's the main thread. |
216 | * These members can be safely accessed without locks. | |
217 | */ | |
731b0364 | 218 | ReadLineState *rs; |
d9f25280 | 219 | |
74358f2a | 220 | MonitorQMP qmp; |
751f8cfe | 221 | gchar *mon_cpu_path; |
097310b5 | 222 | BlockCompletionFunc *password_completion_cb; |
731b0364 | 223 | void *password_opaque; |
7717239d | 224 | mon_cmd_t *cmd_table; |
238d9f34 | 225 | QTAILQ_ENTRY(Monitor) entry; |
dc7cbcd8 PX |
226 | |
227 | /* | |
228 | * The per-monitor lock. We can't access guest memory when holding | |
229 | * the lock. | |
230 | */ | |
231 | QemuMutex mon_lock; | |
232 | ||
233 | /* | |
774a6b67 | 234 | * Members that are protected by the per-monitor lock |
dc7cbcd8 | 235 | */ |
9409fc05 | 236 | QLIST_HEAD(, mon_fd_t) fds; |
dc7cbcd8 PX |
237 | QString *outbuf; |
238 | guint out_watch; | |
239 | /* Read under either BQL or mon_lock, written with BQL+mon_lock. */ | |
240 | int mux_out; | |
87127161 AL |
241 | }; |
242 | ||
774a6b67 | 243 | /* Shared monitor I/O thread */ |
cab5ad86 MA |
244 | IOThread *mon_iothread; |
245 | ||
246 | /* Bottom half to dispatch the requests received from I/O thread */ | |
247 | QEMUBH *qmp_dispatcher_bh; | |
248 | ||
6d2d563f PX |
249 | struct QMPRequest { |
250 | /* Owner of the request */ | |
251 | Monitor *mon; | |
252 | /* "id" field of the request */ | |
253 | QObject *id; | |
1cc37471 MA |
254 | /* |
255 | * Request object to be handled or Error to be reported | |
256 | * (exactly one of them is non-null) | |
257 | */ | |
6d2d563f | 258 | QObject *req; |
1cc37471 | 259 | Error *err; |
6d2d563f PX |
260 | }; |
261 | typedef struct QMPRequest QMPRequest; | |
262 | ||
2dbc8db0 LC |
263 | /* QMP checker flags */ |
264 | #define QMP_ACCEPT_UNKNOWNS 1 | |
265 | ||
8dac00bb | 266 | /* Protects mon_list, monitor_qapi_event_state, monitor_destroyed. */ |
d622cb58 | 267 | static QemuMutex monitor_lock; |
095cb1bf | 268 | static GHashTable *monitor_qapi_event_state; |
b58deb34 | 269 | static QTAILQ_HEAD(, Monitor) mon_list; |
8dac00bb | 270 | static bool monitor_destroyed; |
095cb1bf | 271 | |
47451466 PX |
272 | /* Protects mon_fdsets */ |
273 | static QemuMutex mon_fdsets_lock; | |
b58deb34 | 274 | static QLIST_HEAD(, MonFdset) mon_fdsets; |
47451466 | 275 | |
efb87c16 | 276 | static int mon_refcount; |
7e2515e8 | 277 | |
816f8925 WX |
278 | static mon_cmd_t mon_cmds[]; |
279 | static mon_cmd_t info_cmds[]; | |
9dc39cba | 280 | |
635db18f | 281 | QmpCommandList qmp_commands, qmp_cap_negotiation_commands; |
1527badb | 282 | |
62aa1d88 | 283 | __thread Monitor *cur_mon; |
376253ec | 284 | |
c60bf339 SH |
285 | static void monitor_command_cb(void *opaque, const char *cmdline, |
286 | void *readline_opaque); | |
83ab7950 | 287 | |
9f3982f2 MA |
288 | /** |
289 | * Is @mon a QMP monitor? | |
290 | */ | |
291 | static inline bool monitor_is_qmp(const Monitor *mon) | |
418173c7 LC |
292 | { |
293 | return (mon->flags & MONITOR_USE_CONTROL); | |
294 | } | |
295 | ||
e3e977d4 | 296 | /** |
774a6b67 MA |
297 | * Is @mon is using readline? |
298 | * Note: not all HMP monitors use readline, e.g., gdbserver has a | |
299 | * non-interactive HMP monitor, so readline is not used there. | |
e3e977d4 PX |
300 | */ |
301 | static inline bool monitor_uses_readline(const Monitor *mon) | |
302 | { | |
303 | return mon->flags & MONITOR_USE_READLINE; | |
304 | } | |
305 | ||
306 | static inline bool monitor_is_hmp_non_interactive(const Monitor *mon) | |
307 | { | |
308 | return !monitor_is_qmp(mon) && !monitor_uses_readline(mon); | |
309 | } | |
310 | ||
6e8c5f4d PX |
311 | /* |
312 | * Return the clock to use for recording an event's time. | |
774a6b67 MA |
313 | * It's QEMU_CLOCK_REALTIME, except for qtests it's |
314 | * QEMU_CLOCK_VIRTUAL, to support testing rate limits. | |
6e8c5f4d PX |
315 | * Beware: result is invalid before configure_accelerator(). |
316 | */ | |
317 | static inline QEMUClockType monitor_get_event_clock(void) | |
318 | { | |
6e8c5f4d PX |
319 | return qtest_enabled() ? QEMU_CLOCK_VIRTUAL : QEMU_CLOCK_REALTIME; |
320 | } | |
321 | ||
489653b5 MA |
322 | /** |
323 | * Is the current monitor, if any, a QMP monitor? | |
324 | */ | |
325 | bool monitor_cur_is_qmp(void) | |
6620d3ce | 326 | { |
9f3982f2 | 327 | return cur_mon && monitor_is_qmp(cur_mon); |
6620d3ce MA |
328 | } |
329 | ||
7060b478 | 330 | void monitor_read_command(Monitor *mon, int show_prompt) |
731b0364 | 331 | { |
183e6e52 LC |
332 | if (!mon->rs) |
333 | return; | |
334 | ||
731b0364 AL |
335 | readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL); |
336 | if (show_prompt) | |
337 | readline_show_prompt(mon->rs); | |
338 | } | |
6a00d601 | 339 | |
7060b478 AL |
340 | int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func, |
341 | void *opaque) | |
bb5fc20f | 342 | { |
bcf5d19c | 343 | if (mon->rs) { |
cde76ee1 AL |
344 | readline_start(mon->rs, "Password: ", 1, readline_func, opaque); |
345 | /* prompt is printed on return from the command handler */ | |
346 | return 0; | |
347 | } else { | |
348 | monitor_printf(mon, "terminal does not support password prompting\n"); | |
349 | return -ENOTTY; | |
350 | } | |
bb5fc20f AL |
351 | } |
352 | ||
6d2d563f PX |
353 | static void qmp_request_free(QMPRequest *req) |
354 | { | |
cb3e7f08 MAL |
355 | qobject_unref(req->id); |
356 | qobject_unref(req->req); | |
1cc37471 | 357 | error_free(req->err); |
6d2d563f PX |
358 | g_free(req); |
359 | } | |
360 | ||
774a6b67 | 361 | /* Caller must hold mon->qmp.qmp_queue_lock */ |
6d2d563f PX |
362 | static void monitor_qmp_cleanup_req_queue_locked(Monitor *mon) |
363 | { | |
364 | while (!g_queue_is_empty(mon->qmp.qmp_requests)) { | |
365 | qmp_request_free(g_queue_pop_head(mon->qmp.qmp_requests)); | |
366 | } | |
367 | } | |
368 | ||
6d2d563f PX |
369 | static void monitor_qmp_cleanup_queues(Monitor *mon) |
370 | { | |
371 | qemu_mutex_lock(&mon->qmp.qmp_queue_lock); | |
372 | monitor_qmp_cleanup_req_queue_locked(mon); | |
6d2d563f PX |
373 | qemu_mutex_unlock(&mon->qmp.qmp_queue_lock); |
374 | } | |
375 | ||
376 | ||
6cff3e85 PB |
377 | static void monitor_flush_locked(Monitor *mon); |
378 | ||
f628926b GH |
379 | static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond, |
380 | void *opaque) | |
381 | { | |
293d2a00 LE |
382 | Monitor *mon = opaque; |
383 | ||
dc7cbcd8 | 384 | qemu_mutex_lock(&mon->mon_lock); |
6cff3e85 PB |
385 | mon->out_watch = 0; |
386 | monitor_flush_locked(mon); | |
dc7cbcd8 | 387 | qemu_mutex_unlock(&mon->mon_lock); |
f628926b GH |
388 | return FALSE; |
389 | } | |
390 | ||
774a6b67 | 391 | /* Caller must hold mon->mon_lock */ |
6cff3e85 | 392 | static void monitor_flush_locked(Monitor *mon) |
7e2515e8 | 393 | { |
f628926b | 394 | int rc; |
e1f2641b LC |
395 | size_t len; |
396 | const char *buf; | |
397 | ||
48c043d0 LC |
398 | if (mon->skip_flush) { |
399 | return; | |
400 | } | |
401 | ||
e1f2641b LC |
402 | buf = qstring_get_str(mon->outbuf); |
403 | len = qstring_get_length(mon->outbuf); | |
f628926b | 404 | |
a4cc73d6 | 405 | if (len && !mon->mux_out) { |
5345fdb4 | 406 | rc = qemu_chr_fe_write(&mon->chr, (const uint8_t *) buf, len); |
056f49ff SP |
407 | if ((rc < 0 && errno != EAGAIN) || (rc == len)) { |
408 | /* all flushed or error */ | |
cb3e7f08 | 409 | qobject_unref(mon->outbuf); |
e1f2641b | 410 | mon->outbuf = qstring_new(); |
f628926b GH |
411 | return; |
412 | } | |
413 | if (rc > 0) { | |
3b7c78c8 | 414 | /* partial write */ |
e1f2641b | 415 | QString *tmp = qstring_from_str(buf + rc); |
cb3e7f08 | 416 | qobject_unref(mon->outbuf); |
e1f2641b | 417 | mon->outbuf = tmp; |
f628926b | 418 | } |
6cff3e85 | 419 | if (mon->out_watch == 0) { |
32a6ebec | 420 | mon->out_watch = |
5345fdb4 | 421 | qemu_chr_fe_add_watch(&mon->chr, G_IO_OUT | G_IO_HUP, |
32a6ebec | 422 | monitor_unblocked, mon); |
293d2a00 | 423 | } |
7e2515e8 FB |
424 | } |
425 | } | |
426 | ||
6cff3e85 PB |
427 | void monitor_flush(Monitor *mon) |
428 | { | |
dc7cbcd8 | 429 | qemu_mutex_lock(&mon->mon_lock); |
6cff3e85 | 430 | monitor_flush_locked(mon); |
dc7cbcd8 | 431 | qemu_mutex_unlock(&mon->mon_lock); |
6cff3e85 PB |
432 | } |
433 | ||
e1f2641b | 434 | /* flush at every end of line */ |
376253ec | 435 | static void monitor_puts(Monitor *mon, const char *str) |
7e2515e8 | 436 | { |
60fe76f3 | 437 | char c; |
731b0364 | 438 | |
dc7cbcd8 | 439 | qemu_mutex_lock(&mon->mon_lock); |
7e2515e8 FB |
440 | for(;;) { |
441 | c = *str++; | |
442 | if (c == '\0') | |
443 | break; | |
e1f2641b LC |
444 | if (c == '\n') { |
445 | qstring_append_chr(mon->outbuf, '\r'); | |
446 | } | |
447 | qstring_append_chr(mon->outbuf, c); | |
448 | if (c == '\n') { | |
6cff3e85 | 449 | monitor_flush_locked(mon); |
e1f2641b | 450 | } |
7e2515e8 | 451 | } |
dc7cbcd8 | 452 | qemu_mutex_unlock(&mon->mon_lock); |
7e2515e8 FB |
453 | } |
454 | ||
376253ec | 455 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap) |
9dc39cba | 456 | { |
e1f2641b | 457 | char *buf; |
b8b08266 | 458 | |
2daa1191 LC |
459 | if (!mon) |
460 | return; | |
461 | ||
9f3982f2 | 462 | if (monitor_is_qmp(mon)) { |
b8b08266 | 463 | return; |
4a29a85d | 464 | } |
b8b08266 | 465 | |
e1f2641b | 466 | buf = g_strdup_vprintf(fmt, ap); |
b8b08266 | 467 | monitor_puts(mon, buf); |
e1f2641b | 468 | g_free(buf); |
9dc39cba FB |
469 | } |
470 | ||
376253ec | 471 | void monitor_printf(Monitor *mon, const char *fmt, ...) |
9dc39cba | 472 | { |
7e2515e8 FB |
473 | va_list ap; |
474 | va_start(ap, fmt); | |
376253ec | 475 | monitor_vprintf(mon, fmt, ap); |
7e2515e8 | 476 | va_end(ap); |
9dc39cba FB |
477 | } |
478 | ||
caf15319 | 479 | int monitor_fprintf(FILE *stream, const char *fmt, ...) |
7fe48483 FB |
480 | { |
481 | va_list ap; | |
482 | va_start(ap, fmt); | |
376253ec | 483 | monitor_vprintf((Monitor *)stream, fmt, ap); |
7fe48483 FB |
484 | va_end(ap); |
485 | return 0; | |
486 | } | |
487 | ||
6cd112e2 | 488 | static void qmp_send_response(Monitor *mon, const QDict *rsp) |
9b57c02e | 489 | { |
6cd112e2 | 490 | const QObject *data = QOBJECT(rsp); |
9b57c02e LC |
491 | QString *json; |
492 | ||
83a27d4d LC |
493 | json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) : |
494 | qobject_to_json(data); | |
9b57c02e LC |
495 | assert(json != NULL); |
496 | ||
b8b08266 LC |
497 | qstring_append_chr(json, '\n'); |
498 | monitor_puts(mon, qstring_get_str(json)); | |
4a29a85d | 499 | |
cb3e7f08 | 500 | qobject_unref(json); |
9b57c02e LC |
501 | } |
502 | ||
7fb1cf16 | 503 | static MonitorQAPIEventConf monitor_qapi_event_conf[QAPI_EVENT__MAX] = { |
b9b03ab0 MA |
504 | /* Limit guest-triggerable events to 1 per second */ |
505 | [QAPI_EVENT_RTC_CHANGE] = { 1000 * SCALE_MS }, | |
506 | [QAPI_EVENT_WATCHDOG] = { 1000 * SCALE_MS }, | |
507 | [QAPI_EVENT_BALLOON_CHANGE] = { 1000 * SCALE_MS }, | |
508 | [QAPI_EVENT_QUORUM_REPORT_BAD] = { 1000 * SCALE_MS }, | |
509 | [QAPI_EVENT_QUORUM_FAILURE] = { 1000 * SCALE_MS }, | |
510 | [QAPI_EVENT_VSERPORT_CHANGE] = { 1000 * SCALE_MS }, | |
511 | }; | |
512 | ||
afeecec2 | 513 | /* |
774a6b67 MA |
514 | * Broadcast an event to all monitors. |
515 | * @qdict is the event object. Its member "event" must match @event. | |
516 | * Caller must hold monitor_lock. | |
afeecec2 | 517 | */ |
688b4b7d | 518 | static void monitor_qapi_event_emit(QAPIEvent event, QDict *qdict) |
afeecec2 DB |
519 | { |
520 | Monitor *mon; | |
521 | ||
688b4b7d | 522 | trace_monitor_protocol_event_emit(event, qdict); |
238d9f34 | 523 | QTAILQ_FOREACH(mon, &mon_list, entry) { |
635db18f MA |
524 | if (monitor_is_qmp(mon) |
525 | && mon->qmp.commands != &qmp_cap_negotiation_commands) { | |
27656018 | 526 | qmp_send_response(mon, qdict); |
afeecec2 DB |
527 | } |
528 | } | |
529 | } | |
530 | ||
a24712af MA |
531 | static void monitor_qapi_event_handler(void *opaque); |
532 | ||
afeecec2 DB |
533 | /* |
534 | * Queue a new event for emission to Monitor instances, | |
535 | * applying any rate limiting if required. | |
536 | */ | |
537 | static void | |
9a105406 | 538 | monitor_qapi_event_queue_no_reenter(QAPIEvent event, QDict *qdict) |
afeecec2 | 539 | { |
b9b03ab0 | 540 | MonitorQAPIEventConf *evconf; |
43a14cfc | 541 | MonitorQAPIEventState *evstate; |
afeecec2 | 542 | |
7fb1cf16 | 543 | assert(event < QAPI_EVENT__MAX); |
b9b03ab0 | 544 | evconf = &monitor_qapi_event_conf[event]; |
b9b03ab0 | 545 | trace_monitor_protocol_event_queue(event, qdict, evconf->rate); |
afeecec2 | 546 | |
d622cb58 | 547 | qemu_mutex_lock(&monitor_lock); |
93f8f982 | 548 | |
b9b03ab0 | 549 | if (!evconf->rate) { |
93f8f982 | 550 | /* Unthrottled event */ |
688b4b7d | 551 | monitor_qapi_event_emit(event, qdict); |
afeecec2 | 552 | } else { |
7dc847eb | 553 | QDict *data = qobject_to(QDict, qdict_get(qdict, "data")); |
7de0be65 | 554 | MonitorQAPIEventState key = { .event = event, .data = data }; |
a24712af MA |
555 | |
556 | evstate = g_hash_table_lookup(monitor_qapi_event_state, &key); | |
557 | assert(!evstate || timer_pending(evstate->timer)); | |
558 | ||
559 | if (evstate) { | |
93f8f982 | 560 | /* |
b9b03ab0 | 561 | * Timer is pending for (at least) evconf->rate ns after |
93f8f982 MA |
562 | * last send. Store event for sending when timer fires, |
563 | * replacing a prior stored event if any. | |
afeecec2 | 564 | */ |
cb3e7f08 | 565 | qobject_unref(evstate->qdict); |
f5a74a5a | 566 | evstate->qdict = qobject_ref(qdict); |
afeecec2 | 567 | } else { |
93f8f982 | 568 | /* |
b9b03ab0 | 569 | * Last send was (at least) evconf->rate ns ago. |
93f8f982 | 570 | * Send immediately, and arm the timer to call |
b9b03ab0 | 571 | * monitor_qapi_event_handler() in evconf->rate ns. Any |
93f8f982 MA |
572 | * events arriving before then will be delayed until then. |
573 | */ | |
6e8c5f4d | 574 | int64_t now = qemu_clock_get_ns(monitor_get_event_clock()); |
93f8f982 | 575 | |
688b4b7d | 576 | monitor_qapi_event_emit(event, qdict); |
a24712af MA |
577 | |
578 | evstate = g_new(MonitorQAPIEventState, 1); | |
579 | evstate->event = event; | |
f5a74a5a | 580 | evstate->data = qobject_ref(data); |
a24712af | 581 | evstate->qdict = NULL; |
6e8c5f4d | 582 | evstate->timer = timer_new_ns(monitor_get_event_clock(), |
a24712af MA |
583 | monitor_qapi_event_handler, |
584 | evstate); | |
585 | g_hash_table_add(monitor_qapi_event_state, evstate); | |
b9b03ab0 | 586 | timer_mod_ns(evstate->timer, now + evconf->rate); |
afeecec2 DB |
587 | } |
588 | } | |
93f8f982 | 589 | |
d622cb58 | 590 | qemu_mutex_unlock(&monitor_lock); |
afeecec2 DB |
591 | } |
592 | ||
a9529100 | 593 | void qapi_event_emit(QAPIEvent event, QDict *qdict) |
9a105406 MAL |
594 | { |
595 | /* | |
596 | * monitor_qapi_event_queue_no_reenter() is not reentrant: it | |
597 | * would deadlock on monitor_lock. Work around by queueing | |
598 | * events in thread-local storage. | |
599 | * TODO: remove this, make it re-enter safe. | |
600 | */ | |
601 | typedef struct MonitorQapiEvent { | |
602 | QAPIEvent event; | |
603 | QDict *qdict; | |
604 | QSIMPLEQ_ENTRY(MonitorQapiEvent) entry; | |
605 | } MonitorQapiEvent; | |
606 | static __thread QSIMPLEQ_HEAD(, MonitorQapiEvent) event_queue; | |
607 | static __thread bool reentered; | |
608 | MonitorQapiEvent *ev; | |
609 | ||
610 | if (!reentered) { | |
611 | QSIMPLEQ_INIT(&event_queue); | |
612 | } | |
613 | ||
614 | ev = g_new(MonitorQapiEvent, 1); | |
615 | ev->qdict = qobject_ref(qdict); | |
616 | ev->event = event; | |
617 | QSIMPLEQ_INSERT_TAIL(&event_queue, ev, entry); | |
618 | if (reentered) { | |
619 | return; | |
620 | } | |
621 | ||
622 | reentered = true; | |
623 | ||
624 | while ((ev = QSIMPLEQ_FIRST(&event_queue)) != NULL) { | |
625 | QSIMPLEQ_REMOVE_HEAD(&event_queue, entry); | |
626 | monitor_qapi_event_queue_no_reenter(ev->event, ev->qdict); | |
627 | qobject_unref(ev->qdict); | |
628 | g_free(ev); | |
629 | } | |
630 | ||
631 | reentered = false; | |
632 | } | |
633 | ||
afeecec2 | 634 | /* |
b9b03ab0 | 635 | * This function runs evconf->rate ns after sending a throttled |
93f8f982 MA |
636 | * event. |
637 | * If another event has since been stored, send it. | |
afeecec2 | 638 | */ |
43a14cfc | 639 | static void monitor_qapi_event_handler(void *opaque) |
afeecec2 | 640 | { |
43a14cfc | 641 | MonitorQAPIEventState *evstate = opaque; |
b9b03ab0 | 642 | MonitorQAPIEventConf *evconf = &monitor_qapi_event_conf[evstate->event]; |
afeecec2 | 643 | |
93f8f982 | 644 | trace_monitor_protocol_event_handler(evstate->event, evstate->qdict); |
d622cb58 | 645 | qemu_mutex_lock(&monitor_lock); |
93f8f982 | 646 | |
688b4b7d | 647 | if (evstate->qdict) { |
6e8c5f4d | 648 | int64_t now = qemu_clock_get_ns(monitor_get_event_clock()); |
93f8f982 | 649 | |
688b4b7d | 650 | monitor_qapi_event_emit(evstate->event, evstate->qdict); |
cb3e7f08 | 651 | qobject_unref(evstate->qdict); |
688b4b7d | 652 | evstate->qdict = NULL; |
b9b03ab0 | 653 | timer_mod_ns(evstate->timer, now + evconf->rate); |
a24712af MA |
654 | } else { |
655 | g_hash_table_remove(monitor_qapi_event_state, evstate); | |
cb3e7f08 | 656 | qobject_unref(evstate->data); |
a24712af MA |
657 | timer_free(evstate->timer); |
658 | g_free(evstate); | |
afeecec2 | 659 | } |
93f8f982 | 660 | |
d622cb58 | 661 | qemu_mutex_unlock(&monitor_lock); |
afeecec2 DB |
662 | } |
663 | ||
a24712af | 664 | static unsigned int qapi_event_throttle_hash(const void *key) |
afeecec2 | 665 | { |
a24712af | 666 | const MonitorQAPIEventState *evstate = key; |
7de0be65 | 667 | unsigned int hash = evstate->event * 255; |
afeecec2 | 668 | |
7de0be65 MA |
669 | if (evstate->event == QAPI_EVENT_VSERPORT_CHANGE) { |
670 | hash += g_str_hash(qdict_get_str(evstate->data, "id")); | |
671 | } | |
672 | ||
6d425eb9 AG |
673 | if (evstate->event == QAPI_EVENT_QUORUM_REPORT_BAD) { |
674 | hash += g_str_hash(qdict_get_str(evstate->data, "node-name")); | |
675 | } | |
676 | ||
7de0be65 | 677 | return hash; |
a24712af | 678 | } |
0d1ea871 | 679 | |
a24712af MA |
680 | static gboolean qapi_event_throttle_equal(const void *a, const void *b) |
681 | { | |
682 | const MonitorQAPIEventState *eva = a; | |
683 | const MonitorQAPIEventState *evb = b; | |
684 | ||
7de0be65 MA |
685 | if (eva->event != evb->event) { |
686 | return FALSE; | |
687 | } | |
688 | ||
689 | if (eva->event == QAPI_EVENT_VSERPORT_CHANGE) { | |
690 | return !strcmp(qdict_get_str(eva->data, "id"), | |
691 | qdict_get_str(evb->data, "id")); | |
692 | } | |
693 | ||
6d425eb9 AG |
694 | if (eva->event == QAPI_EVENT_QUORUM_REPORT_BAD) { |
695 | return !strcmp(qdict_get_str(eva->data, "node-name"), | |
696 | qdict_get_str(evb->data, "node-name")); | |
697 | } | |
698 | ||
7de0be65 | 699 | return TRUE; |
a24712af MA |
700 | } |
701 | ||
702 | static void monitor_qapi_event_init(void) | |
703 | { | |
704 | monitor_qapi_event_state = g_hash_table_new(qapi_event_throttle_hash, | |
705 | qapi_event_throttle_equal); | |
0d1ea871 LC |
706 | } |
707 | ||
7ef6cf63 | 708 | static void handle_hmp_command(Monitor *mon, const char *cmdline); |
0268d97c | 709 | |
85117701 WB |
710 | static void monitor_iothread_init(void); |
711 | ||
a5ed3525 | 712 | static void monitor_data_init(Monitor *mon, bool skip_flush, |
f91dc2a0 | 713 | bool use_io_thread) |
b01fe89e | 714 | { |
85117701 WB |
715 | if (use_io_thread && !mon_iothread) { |
716 | monitor_iothread_init(); | |
717 | } | |
b01fe89e | 718 | memset(mon, 0, sizeof(Monitor)); |
dc7cbcd8 | 719 | qemu_mutex_init(&mon->mon_lock); |
71da4667 | 720 | qemu_mutex_init(&mon->qmp.qmp_queue_lock); |
b01fe89e | 721 | mon->outbuf = qstring_new(); |
7717239d WX |
722 | /* Use *mon_cmds by default. */ |
723 | mon->cmd_table = mon_cmds; | |
88a95d10 | 724 | mon->skip_flush = skip_flush; |
f91dc2a0 | 725 | mon->use_io_thread = use_io_thread; |
71da4667 | 726 | mon->qmp.qmp_requests = g_queue_new(); |
b01fe89e WX |
727 | } |
728 | ||
729 | static void monitor_data_destroy(Monitor *mon) | |
730 | { | |
751f8cfe | 731 | g_free(mon->mon_cpu_path); |
1ce2610c | 732 | qemu_chr_fe_deinit(&mon->chr, false); |
2ef45716 MAL |
733 | if (monitor_is_qmp(mon)) { |
734 | json_message_parser_destroy(&mon->qmp.parser); | |
735 | } | |
e5dc1a6c | 736 | readline_free(mon->rs); |
cb3e7f08 | 737 | qobject_unref(mon->outbuf); |
dc7cbcd8 | 738 | qemu_mutex_destroy(&mon->mon_lock); |
71da4667 | 739 | qemu_mutex_destroy(&mon->qmp.qmp_queue_lock); |
6d2d563f | 740 | monitor_qmp_cleanup_req_queue_locked(mon); |
71da4667 | 741 | g_queue_free(mon->qmp.qmp_requests); |
b01fe89e WX |
742 | } |
743 | ||
d51a67b4 LC |
744 | char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index, |
745 | int64_t cpu_index, Error **errp) | |
0268d97c | 746 | { |
d51a67b4 | 747 | char *output = NULL; |
0268d97c | 748 | Monitor *old_mon, hmp; |
0268d97c | 749 | |
a5ed3525 | 750 | monitor_data_init(&hmp, true, false); |
0268d97c LC |
751 | |
752 | old_mon = cur_mon; | |
753 | cur_mon = &hmp; | |
754 | ||
d51a67b4 LC |
755 | if (has_cpu_index) { |
756 | int ret = monitor_set_cpu(cpu_index); | |
0268d97c LC |
757 | if (ret < 0) { |
758 | cur_mon = old_mon; | |
c6bd8c70 MA |
759 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index", |
760 | "a CPU number"); | |
0268d97c LC |
761 | goto out; |
762 | } | |
763 | } | |
764 | ||
7ef6cf63 | 765 | handle_hmp_command(&hmp, command_line); |
0268d97c LC |
766 | cur_mon = old_mon; |
767 | ||
dc7cbcd8 | 768 | qemu_mutex_lock(&hmp.mon_lock); |
48c043d0 LC |
769 | if (qstring_get_length(hmp.outbuf) > 0) { |
770 | output = g_strdup(qstring_get_str(hmp.outbuf)); | |
d51a67b4 LC |
771 | } else { |
772 | output = g_strdup(""); | |
0268d97c | 773 | } |
dc7cbcd8 | 774 | qemu_mutex_unlock(&hmp.mon_lock); |
0268d97c LC |
775 | |
776 | out: | |
b01fe89e | 777 | monitor_data_destroy(&hmp); |
d51a67b4 | 778 | return output; |
0268d97c LC |
779 | } |
780 | ||
9dc39cba FB |
781 | static int compare_cmd(const char *name, const char *list) |
782 | { | |
783 | const char *p, *pstart; | |
784 | int len; | |
785 | len = strlen(name); | |
786 | p = list; | |
787 | for(;;) { | |
788 | pstart = p; | |
5c99fa37 | 789 | p = qemu_strchrnul(p, '|'); |
9dc39cba FB |
790 | if ((p - pstart) == len && !memcmp(pstart, name, len)) |
791 | return 1; | |
792 | if (*p == '\0') | |
793 | break; | |
794 | p++; | |
795 | } | |
796 | return 0; | |
797 | } | |
798 | ||
f5438c05 WX |
799 | static int get_str(char *buf, int buf_size, const char **pp) |
800 | { | |
801 | const char *p; | |
802 | char *q; | |
803 | int c; | |
804 | ||
805 | q = buf; | |
806 | p = *pp; | |
807 | while (qemu_isspace(*p)) { | |
808 | p++; | |
809 | } | |
810 | if (*p == '\0') { | |
811 | fail: | |
812 | *q = '\0'; | |
813 | *pp = p; | |
814 | return -1; | |
815 | } | |
816 | if (*p == '\"') { | |
817 | p++; | |
818 | while (*p != '\0' && *p != '\"') { | |
819 | if (*p == '\\') { | |
820 | p++; | |
821 | c = *p++; | |
822 | switch (c) { | |
823 | case 'n': | |
824 | c = '\n'; | |
825 | break; | |
826 | case 'r': | |
827 | c = '\r'; | |
828 | break; | |
829 | case '\\': | |
830 | case '\'': | |
831 | case '\"': | |
832 | break; | |
833 | default: | |
71baf787 | 834 | printf("unsupported escape code: '\\%c'\n", c); |
f5438c05 WX |
835 | goto fail; |
836 | } | |
837 | if ((q - buf) < buf_size - 1) { | |
838 | *q++ = c; | |
839 | } | |
840 | } else { | |
841 | if ((q - buf) < buf_size - 1) { | |
842 | *q++ = *p; | |
843 | } | |
844 | p++; | |
845 | } | |
846 | } | |
847 | if (*p != '\"') { | |
71baf787 | 848 | printf("unterminated string\n"); |
f5438c05 WX |
849 | goto fail; |
850 | } | |
851 | p++; | |
852 | } else { | |
853 | while (*p != '\0' && !qemu_isspace(*p)) { | |
854 | if ((q - buf) < buf_size - 1) { | |
855 | *q++ = *p; | |
856 | } | |
857 | p++; | |
858 | } | |
859 | } | |
860 | *q = '\0'; | |
861 | *pp = p; | |
862 | return 0; | |
863 | } | |
864 | ||
865 | #define MAX_ARGS 16 | |
866 | ||
dcc70cdf WX |
867 | static void free_cmdline_args(char **args, int nb_args) |
868 | { | |
869 | int i; | |
870 | ||
871 | assert(nb_args <= MAX_ARGS); | |
872 | ||
873 | for (i = 0; i < nb_args; i++) { | |
874 | g_free(args[i]); | |
875 | } | |
876 | ||
877 | } | |
878 | ||
879 | /* | |
880 | * Parse the command line to get valid args. | |
881 | * @cmdline: command line to be parsed. | |
882 | * @pnb_args: location to store the number of args, must NOT be NULL. | |
883 | * @args: location to store the args, which should be freed by caller, must | |
884 | * NOT be NULL. | |
885 | * | |
886 | * Returns 0 on success, negative on failure. | |
887 | * | |
888 | * NOTE: this parser is an approximate form of the real command parser. Number | |
889 | * of args have a limit of MAX_ARGS. If cmdline contains more, it will | |
890 | * return with failure. | |
891 | */ | |
892 | static int parse_cmdline(const char *cmdline, | |
893 | int *pnb_args, char **args) | |
f5438c05 WX |
894 | { |
895 | const char *p; | |
896 | int nb_args, ret; | |
897 | char buf[1024]; | |
898 | ||
899 | p = cmdline; | |
900 | nb_args = 0; | |
901 | for (;;) { | |
902 | while (qemu_isspace(*p)) { | |
903 | p++; | |
904 | } | |
905 | if (*p == '\0') { | |
906 | break; | |
907 | } | |
908 | if (nb_args >= MAX_ARGS) { | |
dcc70cdf | 909 | goto fail; |
f5438c05 WX |
910 | } |
911 | ret = get_str(buf, sizeof(buf), &p); | |
f5438c05 | 912 | if (ret < 0) { |
dcc70cdf | 913 | goto fail; |
f5438c05 | 914 | } |
dcc70cdf WX |
915 | args[nb_args] = g_strdup(buf); |
916 | nb_args++; | |
f5438c05 WX |
917 | } |
918 | *pnb_args = nb_args; | |
dcc70cdf WX |
919 | return 0; |
920 | ||
921 | fail: | |
922 | free_cmdline_args(args, nb_args); | |
923 | return -1; | |
f5438c05 WX |
924 | } |
925 | ||
c3120f71 | 926 | /* |
774a6b67 | 927 | * Can command @cmd be executed in preconfig state? |
c3120f71 DDAG |
928 | */ |
929 | static bool cmd_can_preconfig(const mon_cmd_t *cmd) | |
930 | { | |
931 | if (!cmd->flags) { | |
932 | return false; | |
933 | } | |
934 | ||
935 | return strchr(cmd->flags, 'p'); | |
936 | } | |
937 | ||
66855495 WX |
938 | static void help_cmd_dump_one(Monitor *mon, |
939 | const mon_cmd_t *cmd, | |
940 | char **prefix_args, | |
941 | int prefix_args_nb) | |
942 | { | |
943 | int i; | |
944 | ||
31785f1b DDAG |
945 | if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) { |
946 | return; | |
947 | } | |
948 | ||
66855495 WX |
949 | for (i = 0; i < prefix_args_nb; i++) { |
950 | monitor_printf(mon, "%s ", prefix_args[i]); | |
951 | } | |
952 | monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help); | |
953 | } | |
954 | ||
955 | /* @args[@arg_index] is the valid command need to find in @cmds */ | |
c227f099 | 956 | static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds, |
66855495 | 957 | char **args, int nb_args, int arg_index) |
9dc39cba | 958 | { |
c227f099 | 959 | const mon_cmd_t *cmd; |
43e87b3e | 960 | size_t i; |
9dc39cba | 961 | |
66855495 WX |
962 | /* No valid arg need to compare with, dump all in *cmds */ |
963 | if (arg_index >= nb_args) { | |
964 | for (cmd = cmds; cmd->name != NULL; cmd++) { | |
965 | help_cmd_dump_one(mon, cmd, args, arg_index); | |
966 | } | |
967 | return; | |
968 | } | |
969 | ||
970 | /* Find one entry to dump */ | |
971 | for (cmd = cmds; cmd->name != NULL; cmd++) { | |
31785f1b DDAG |
972 | if (compare_cmd(args[arg_index], cmd->name) && |
973 | ((!runstate_check(RUN_STATE_PRECONFIG) || | |
974 | cmd_can_preconfig(cmd)))) { | |
66855495 WX |
975 | if (cmd->sub_table) { |
976 | /* continue with next arg */ | |
977 | help_cmd_dump(mon, cmd->sub_table, | |
978 | args, nb_args, arg_index + 1); | |
979 | } else { | |
980 | help_cmd_dump_one(mon, cmd, args, arg_index); | |
981 | } | |
43e87b3e | 982 | return; |
66855495 | 983 | } |
9dc39cba | 984 | } |
43e87b3e CW |
985 | |
986 | /* Command not found */ | |
987 | monitor_printf(mon, "unknown command: '"); | |
988 | for (i = 0; i <= arg_index; i++) { | |
989 | monitor_printf(mon, "%s%s", args[i], i == arg_index ? "'\n" : " "); | |
990 | } | |
9dc39cba FB |
991 | } |
992 | ||
376253ec | 993 | static void help_cmd(Monitor *mon, const char *name) |
9dc39cba | 994 | { |
66855495 WX |
995 | char *args[MAX_ARGS]; |
996 | int nb_args = 0; | |
997 | ||
998 | /* 1. parse user input */ | |
999 | if (name) { | |
1000 | /* special case for log, directly dump and return */ | |
1001 | if (!strcmp(name, "log")) { | |
38dad9e5 | 1002 | const QEMULogItem *item; |
376253ec AL |
1003 | monitor_printf(mon, "Log items (comma separated):\n"); |
1004 | monitor_printf(mon, "%-10s %s\n", "none", "remove all logs"); | |
38dad9e5 | 1005 | for (item = qemu_log_items; item->mask != 0; item++) { |
376253ec | 1006 | monitor_printf(mon, "%-10s %s\n", item->name, item->help); |
f193c797 | 1007 | } |
66855495 WX |
1008 | return; |
1009 | } | |
1010 | ||
1011 | if (parse_cmdline(name, &nb_args, args) < 0) { | |
1012 | return; | |
f193c797 | 1013 | } |
9dc39cba | 1014 | } |
66855495 WX |
1015 | |
1016 | /* 2. dump the contents according to parsed args */ | |
1017 | help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0); | |
1018 | ||
1019 | free_cmdline_args(args, nb_args); | |
9dc39cba FB |
1020 | } |
1021 | ||
d54908a5 | 1022 | static void do_help_cmd(Monitor *mon, const QDict *qdict) |
38183186 | 1023 | { |
d54908a5 | 1024 | help_cmd(mon, qdict_get_try_str(qdict, "name")); |
38183186 LC |
1025 | } |
1026 | ||
3e5a50d6 | 1027 | static void hmp_trace_event(Monitor *mon, const QDict *qdict) |
22890ab5 PS |
1028 | { |
1029 | const char *tp_name = qdict_get_str(qdict, "name"); | |
1030 | bool new_state = qdict_get_bool(qdict, "option"); | |
77e2b172 LV |
1031 | bool has_vcpu = qdict_haskey(qdict, "vcpu"); |
1032 | int vcpu = qdict_get_try_int(qdict, "vcpu", 0); | |
14101d02 | 1033 | Error *local_err = NULL; |
f871d689 | 1034 | |
77e2b172 LV |
1035 | if (vcpu < 0) { |
1036 | monitor_printf(mon, "argument vcpu must be positive"); | |
1037 | return; | |
1038 | } | |
1039 | ||
1040 | qmp_trace_event_set_state(tp_name, new_state, true, true, has_vcpu, vcpu, &local_err); | |
14101d02 | 1041 | if (local_err) { |
091e38b7 | 1042 | error_report_err(local_err); |
f871d689 | 1043 | } |
22890ab5 | 1044 | } |
c5ceb523 | 1045 | |
c45a8168 | 1046 | #ifdef CONFIG_TRACE_SIMPLE |
3e5a50d6 | 1047 | static void hmp_trace_file(Monitor *mon, const QDict *qdict) |
c5ceb523 SH |
1048 | { |
1049 | const char *op = qdict_get_try_str(qdict, "op"); | |
1050 | const char *arg = qdict_get_try_str(qdict, "arg"); | |
1051 | ||
1052 | if (!op) { | |
1053 | st_print_trace_file_status((FILE *)mon, &monitor_fprintf); | |
1054 | } else if (!strcmp(op, "on")) { | |
1055 | st_set_trace_file_enabled(true); | |
1056 | } else if (!strcmp(op, "off")) { | |
1057 | st_set_trace_file_enabled(false); | |
1058 | } else if (!strcmp(op, "flush")) { | |
1059 | st_flush_trace_buffer(); | |
1060 | } else if (!strcmp(op, "set")) { | |
1061 | if (arg) { | |
1062 | st_set_trace_file(arg); | |
1063 | } | |
1064 | } else { | |
1065 | monitor_printf(mon, "unexpected argument \"%s\"\n", op); | |
1066 | help_cmd(mon, "trace-file"); | |
1067 | } | |
1068 | } | |
22890ab5 PS |
1069 | #endif |
1070 | ||
3e5a50d6 | 1071 | static void hmp_info_help(Monitor *mon, const QDict *qdict) |
9dc39cba | 1072 | { |
13c7425e | 1073 | help_cmd(mon, "info"); |
9dc39cba FB |
1074 | } |
1075 | ||
9e812b6a | 1076 | static void query_commands_cb(QmpCommand *cmd, void *opaque) |
e3bba9d0 | 1077 | { |
9e812b6a | 1078 | CommandInfoList *info, **list = opaque; |
e3bba9d0 | 1079 | |
9e812b6a MAL |
1080 | if (!cmd->enabled) { |
1081 | return; | |
e3bba9d0 LC |
1082 | } |
1083 | ||
9e812b6a MAL |
1084 | info = g_malloc0(sizeof(*info)); |
1085 | info->value = g_malloc0(sizeof(*info->value)); | |
1086 | info->value->name = g_strdup(cmd->name); | |
1087 | info->next = *list; | |
1088 | *list = info; | |
1089 | } | |
1090 | ||
1091 | CommandInfoList *qmp_query_commands(Error **errp) | |
1092 | { | |
1093 | CommandInfoList *list = NULL; | |
1094 | ||
635db18f | 1095 | qmp_for_each_command(cur_mon->qmp.commands, query_commands_cb, &list); |
9e812b6a MAL |
1096 | |
1097 | return list; | |
a36e69dd TS |
1098 | } |
1099 | ||
4860853d DB |
1100 | EventInfoList *qmp_query_events(Error **errp) |
1101 | { | |
1102 | EventInfoList *info, *ev_list = NULL; | |
75175173 | 1103 | QAPIEvent e; |
4860853d | 1104 | |
7fb1cf16 | 1105 | for (e = 0 ; e < QAPI_EVENT__MAX ; e++) { |
977c736f | 1106 | const char *event_name = QAPIEvent_str(e); |
4860853d DB |
1107 | assert(event_name != NULL); |
1108 | info = g_malloc0(sizeof(*info)); | |
1109 | info->value = g_malloc0(sizeof(*info->value)); | |
1110 | info->value->name = g_strdup(event_name); | |
1111 | ||
1112 | info->next = ev_list; | |
1113 | ev_list = info; | |
1114 | } | |
1115 | ||
1116 | return ev_list; | |
1117 | } | |
1118 | ||
39a18158 MA |
1119 | /* |
1120 | * Minor hack: generated marshalling suppressed for this command | |
1121 | * ('gen': false in the schema) so we can parse the JSON string | |
1122 | * directly into QObject instead of first parsing it with | |
1123 | * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it | |
1124 | * to QObject with generated output marshallers, every time. Instead, | |
b3db211f | 1125 | * we do it in test-qobject-input-visitor.c, just to make sure |
fb0bc835 | 1126 | * qapi-gen.py's output actually conforms to the schema. |
39a18158 MA |
1127 | */ |
1128 | static void qmp_query_qmp_schema(QDict *qdict, QObject **ret_data, | |
1129 | Error **errp) | |
1130 | { | |
7d0f982b | 1131 | *ret_data = qobject_from_qlit(&qmp_schema_qlit); |
39a18158 MA |
1132 | } |
1133 | ||
5032a16d | 1134 | /* |
5032a16d MAL |
1135 | * We used to define commands in qmp-commands.hx in addition to the |
1136 | * QAPI schema. This permitted defining some of them only in certain | |
1137 | * configurations. query-commands has always reflected that (good, | |
1138 | * because it lets QMP clients figure out what's actually available), | |
1139 | * while query-qmp-schema never did (not so good). This function is a | |
1140 | * hack to keep the configuration-specific commands defined exactly as | |
1141 | * before, even though qmp-commands.hx is gone. | |
1142 | * | |
1143 | * FIXME Educate the QAPI schema on configuration-specific commands, | |
1144 | * and drop this hack. | |
1145 | */ | |
1146 | static void qmp_unregister_commands_hack(void) | |
1147 | { | |
5032a16d | 1148 | #ifndef TARGET_I386 |
1527badb | 1149 | qmp_unregister_command(&qmp_commands, "rtc-reset-reinjection"); |
08a161fd | 1150 | qmp_unregister_command(&qmp_commands, "query-sev"); |
1b6a034f | 1151 | qmp_unregister_command(&qmp_commands, "query-sev-launch-measure"); |
31dd67f6 | 1152 | qmp_unregister_command(&qmp_commands, "query-sev-capabilities"); |
5032a16d MAL |
1153 | #endif |
1154 | #ifndef TARGET_S390X | |
1527badb | 1155 | qmp_unregister_command(&qmp_commands, "dump-skeys"); |
5032a16d MAL |
1156 | #endif |
1157 | #ifndef TARGET_ARM | |
1527badb | 1158 | qmp_unregister_command(&qmp_commands, "query-gic-capabilities"); |
5032a16d | 1159 | #endif |
f99fd7ca | 1160 | #if !defined(TARGET_S390X) && !defined(TARGET_I386) |
1527badb | 1161 | qmp_unregister_command(&qmp_commands, "query-cpu-model-expansion"); |
f99fd7ca EH |
1162 | #endif |
1163 | #if !defined(TARGET_S390X) | |
1527badb MA |
1164 | qmp_unregister_command(&qmp_commands, "query-cpu-model-baseline"); |
1165 | qmp_unregister_command(&qmp_commands, "query-cpu-model-comparison"); | |
728b1429 EH |
1166 | #endif |
1167 | #if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \ | |
1168 | && !defined(TARGET_S390X) | |
1527badb | 1169 | qmp_unregister_command(&qmp_commands, "query-cpu-definitions"); |
728b1429 | 1170 | #endif |
5032a16d MAL |
1171 | } |
1172 | ||
6adf08dd | 1173 | static void monitor_init_qmp_commands(void) |
edcfaefe | 1174 | { |
635db18f MA |
1175 | /* |
1176 | * Two command lists: | |
1177 | * - qmp_commands contains all QMP commands | |
1178 | * - qmp_cap_negotiation_commands contains just | |
1179 | * "qmp_capabilities", to enforce capability negotiation | |
1180 | */ | |
1181 | ||
1527badb | 1182 | qmp_init_marshal(&qmp_commands); |
05875687 | 1183 | |
1527badb | 1184 | qmp_register_command(&qmp_commands, "query-qmp-schema", |
d6fe3d02 | 1185 | qmp_query_qmp_schema, QCO_ALLOW_PRECONFIG); |
1527badb | 1186 | qmp_register_command(&qmp_commands, "device_add", qmp_device_add, |
edcfaefe | 1187 | QCO_NO_OPTIONS); |
1527badb | 1188 | qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add, |
edcfaefe | 1189 | QCO_NO_OPTIONS); |
5032a16d | 1190 | |
05875687 | 1191 | qmp_unregister_commands_hack(); |
635db18f MA |
1192 | |
1193 | QTAILQ_INIT(&qmp_cap_negotiation_commands); | |
1194 | qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities", | |
d6fe3d02 | 1195 | qmp_marshal_qmp_capabilities, QCO_ALLOW_PRECONFIG); |
635db18f MA |
1196 | } |
1197 | ||
71da4667 PX |
1198 | static bool qmp_oob_enabled(Monitor *mon) |
1199 | { | |
279f9e08 | 1200 | return mon->qmp.capab[QMP_CAPABILITY_OOB]; |
02130314 PX |
1201 | } |
1202 | ||
279f9e08 | 1203 | static void monitor_qmp_caps_reset(Monitor *mon) |
635db18f | 1204 | { |
279f9e08 MA |
1205 | memset(mon->qmp.capab_offered, 0, sizeof(mon->qmp.capab_offered)); |
1206 | memset(mon->qmp.capab, 0, sizeof(mon->qmp.capab)); | |
1207 | mon->qmp.capab_offered[QMP_CAPABILITY_OOB] = mon->use_io_thread; | |
02130314 PX |
1208 | } |
1209 | ||
cf869d53 | 1210 | /* |
279f9e08 MA |
1211 | * Accept QMP capabilities in @list for @mon. |
1212 | * On success, set mon->qmp.capab[], and return true. | |
1213 | * On error, set @errp, and return false. | |
cf869d53 | 1214 | */ |
279f9e08 MA |
1215 | static bool qmp_caps_accept(Monitor *mon, QMPCapabilityList *list, |
1216 | Error **errp) | |
cf869d53 | 1217 | { |
279f9e08 MA |
1218 | GString *unavailable = NULL; |
1219 | bool capab[QMP_CAPABILITY__MAX]; | |
cf869d53 | 1220 | |
279f9e08 | 1221 | memset(capab, 0, sizeof(capab)); |
cf869d53 | 1222 | |
02130314 | 1223 | for (; list; list = list->next) { |
279f9e08 MA |
1224 | if (!mon->qmp.capab_offered[list->value]) { |
1225 | if (!unavailable) { | |
1226 | unavailable = g_string_new(QMPCapability_str(list->value)); | |
1227 | } else { | |
1228 | g_string_append_printf(unavailable, ", %s", | |
1229 | QMPCapability_str(list->value)); | |
02130314 | 1230 | } |
9ddb7456 | 1231 | } |
279f9e08 | 1232 | capab[list->value] = true; |
cf869d53 PX |
1233 | } |
1234 | ||
279f9e08 MA |
1235 | if (unavailable) { |
1236 | error_setg(errp, "Capability %s not available", unavailable->str); | |
1237 | g_string_free(unavailable, true); | |
1238 | return false; | |
cf869d53 PX |
1239 | } |
1240 | ||
279f9e08 | 1241 | memcpy(mon->qmp.capab, capab, sizeof(capab)); |
cf869d53 PX |
1242 | return true; |
1243 | } | |
1244 | ||
02130314 PX |
1245 | void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable, |
1246 | Error **errp) | |
1247 | { | |
635db18f MA |
1248 | if (cur_mon->qmp.commands == &qmp_commands) { |
1249 | error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND, | |
1250 | "Capabilities negotiation is already complete, command " | |
1251 | "ignored"); | |
1252 | return; | |
1253 | } | |
1254 | ||
279f9e08 MA |
1255 | if (!qmp_caps_accept(cur_mon, enable, errp)) { |
1256 | return; | |
02130314 PX |
1257 | } |
1258 | ||
635db18f | 1259 | cur_mon->qmp.commands = &qmp_commands; |
edcfaefe MAL |
1260 | } |
1261 | ||
d9f25280 | 1262 | /* Set the current CPU defined by the user. Callers must hold BQL. */ |
b025c8b4 | 1263 | int monitor_set_cpu(int cpu_index) |
6a00d601 | 1264 | { |
55e5c285 | 1265 | CPUState *cpu; |
6a00d601 | 1266 | |
1c8bb3cc AF |
1267 | cpu = qemu_get_cpu(cpu_index); |
1268 | if (cpu == NULL) { | |
1269 | return -1; | |
6a00d601 | 1270 | } |
751f8cfe GK |
1271 | g_free(cur_mon->mon_cpu_path); |
1272 | cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu)); | |
1c8bb3cc | 1273 | return 0; |
6a00d601 FB |
1274 | } |
1275 | ||
d9f25280 | 1276 | /* Callers must hold BQL. */ |
137b5cb6 | 1277 | static CPUState *mon_get_cpu_sync(bool synchronize) |
6a00d601 | 1278 | { |
751f8cfe GK |
1279 | CPUState *cpu; |
1280 | ||
1281 | if (cur_mon->mon_cpu_path) { | |
1282 | cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path, | |
1283 | TYPE_CPU, NULL); | |
1284 | if (!cpu) { | |
1285 | g_free(cur_mon->mon_cpu_path); | |
1286 | cur_mon->mon_cpu_path = NULL; | |
1287 | } | |
1288 | } | |
1289 | if (!cur_mon->mon_cpu_path) { | |
854e67fe TH |
1290 | if (!first_cpu) { |
1291 | return NULL; | |
1292 | } | |
27a83f8e | 1293 | monitor_set_cpu(first_cpu->cpu_index); |
751f8cfe | 1294 | cpu = first_cpu; |
6a00d601 | 1295 | } |
137b5cb6 VM |
1296 | if (synchronize) { |
1297 | cpu_synchronize_state(cpu); | |
1298 | } | |
751f8cfe | 1299 | return cpu; |
5bcda5f7 PC |
1300 | } |
1301 | ||
137b5cb6 VM |
1302 | CPUState *mon_get_cpu(void) |
1303 | { | |
1304 | return mon_get_cpu_sync(true); | |
1305 | } | |
1306 | ||
bf957284 | 1307 | CPUArchState *mon_get_cpu_env(void) |
5bcda5f7 | 1308 | { |
854e67fe TH |
1309 | CPUState *cs = mon_get_cpu(); |
1310 | ||
1311 | return cs ? cs->env_ptr : NULL; | |
6a00d601 FB |
1312 | } |
1313 | ||
99b7796f LC |
1314 | int monitor_get_cpu_index(void) |
1315 | { | |
137b5cb6 | 1316 | CPUState *cs = mon_get_cpu_sync(false); |
854e67fe TH |
1317 | |
1318 | return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX; | |
99b7796f LC |
1319 | } |
1320 | ||
1ce6be24 | 1321 | static void hmp_info_registers(Monitor *mon, const QDict *qdict) |
9307c4c1 | 1322 | { |
18f08282 SJS |
1323 | bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false); |
1324 | CPUState *cs; | |
854e67fe | 1325 | |
18f08282 SJS |
1326 | if (all_cpus) { |
1327 | CPU_FOREACH(cs) { | |
1328 | monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index); | |
1329 | cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU); | |
1330 | } | |
1331 | } else { | |
1332 | cs = mon_get_cpu(); | |
1333 | ||
1334 | if (!cs) { | |
1335 | monitor_printf(mon, "No CPU available\n"); | |
1336 | return; | |
1337 | } | |
1338 | ||
1339 | cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU); | |
854e67fe | 1340 | } |
9307c4c1 FB |
1341 | } |
1342 | ||
f0d14a95 | 1343 | #ifdef CONFIG_TCG |
1ce6be24 | 1344 | static void hmp_info_jit(Monitor *mon, const QDict *qdict) |
e3db7226 | 1345 | { |
b7da97ee TH |
1346 | if (!tcg_enabled()) { |
1347 | error_report("JIT information is only available with accel=tcg"); | |
1348 | return; | |
1349 | } | |
1350 | ||
376253ec | 1351 | dump_exec_info((FILE *)mon, monitor_fprintf); |
27498bef | 1352 | dump_drift_info((FILE *)mon, monitor_fprintf); |
e3db7226 FB |
1353 | } |
1354 | ||
1ce6be24 | 1355 | static void hmp_info_opcount(Monitor *mon, const QDict *qdict) |
246ae24d MF |
1356 | { |
1357 | dump_opcount_info((FILE *)mon, monitor_fprintf); | |
1358 | } | |
f0d14a95 | 1359 | #endif |
246ae24d | 1360 | |
97bfafe2 EC |
1361 | static void hmp_info_sync_profile(Monitor *mon, const QDict *qdict) |
1362 | { | |
1363 | int64_t max = qdict_get_try_int(qdict, "max", 10); | |
1364 | bool mean = qdict_get_try_bool(qdict, "mean", false); | |
1365 | bool coalesce = !qdict_get_try_bool(qdict, "no_coalesce", false); | |
1366 | enum QSPSortBy sort_by; | |
1367 | ||
1368 | sort_by = mean ? QSP_SORT_BY_AVG_WAIT_TIME : QSP_SORT_BY_TOTAL_WAIT_TIME; | |
1369 | qsp_report((FILE *)mon, monitor_fprintf, max, sort_by, coalesce); | |
1370 | } | |
1371 | ||
1ce6be24 | 1372 | static void hmp_info_history(Monitor *mon, const QDict *qdict) |
aa455485 FB |
1373 | { |
1374 | int i; | |
7e2515e8 | 1375 | const char *str; |
3b46e624 | 1376 | |
cde76ee1 AL |
1377 | if (!mon->rs) |
1378 | return; | |
7e2515e8 FB |
1379 | i = 0; |
1380 | for(;;) { | |
731b0364 | 1381 | str = readline_get_history(mon->rs, i); |
7e2515e8 FB |
1382 | if (!str) |
1383 | break; | |
376253ec | 1384 | monitor_printf(mon, "%d: '%s'\n", i, str); |
8e3a9fd2 | 1385 | i++; |
aa455485 FB |
1386 | } |
1387 | } | |
1388 | ||
1ce6be24 | 1389 | static void hmp_info_cpustats(Monitor *mon, const QDict *qdict) |
76a66253 | 1390 | { |
854e67fe TH |
1391 | CPUState *cs = mon_get_cpu(); |
1392 | ||
1393 | if (!cs) { | |
1394 | monitor_printf(mon, "No CPU available\n"); | |
1395 | return; | |
1396 | } | |
1397 | cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0); | |
76a66253 | 1398 | } |
76a66253 | 1399 | |
1ce6be24 | 1400 | static void hmp_info_trace_events(Monitor *mon, const QDict *qdict) |
22890ab5 | 1401 | { |
bd71211d | 1402 | const char *name = qdict_get_try_str(qdict, "name"); |
77e2b172 LV |
1403 | bool has_vcpu = qdict_haskey(qdict, "vcpu"); |
1404 | int vcpu = qdict_get_try_int(qdict, "vcpu", 0); | |
bd71211d | 1405 | TraceEventInfoList *events; |
14101d02 | 1406 | TraceEventInfoList *elem; |
bd71211d LV |
1407 | Error *local_err = NULL; |
1408 | ||
1409 | if (name == NULL) { | |
1410 | name = "*"; | |
1411 | } | |
77e2b172 LV |
1412 | if (vcpu < 0) { |
1413 | monitor_printf(mon, "argument vcpu must be positive"); | |
1414 | return; | |
1415 | } | |
bd71211d | 1416 | |
77e2b172 | 1417 | events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err); |
bd71211d LV |
1418 | if (local_err) { |
1419 | error_report_err(local_err); | |
1420 | return; | |
1421 | } | |
14101d02 LV |
1422 | |
1423 | for (elem = events; elem != NULL; elem = elem->next) { | |
1424 | monitor_printf(mon, "%s : state %u\n", | |
1425 | elem->value->name, | |
1426 | elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0); | |
1427 | } | |
1428 | qapi_free_TraceEventInfoList(events); | |
22890ab5 | 1429 | } |
22890ab5 | 1430 | |
b8a185bc MA |
1431 | void qmp_client_migrate_info(const char *protocol, const char *hostname, |
1432 | bool has_port, int64_t port, | |
1433 | bool has_tls_port, int64_t tls_port, | |
1434 | bool has_cert_subject, const char *cert_subject, | |
1435 | Error **errp) | |
e866e239 | 1436 | { |
e866e239 | 1437 | if (strcmp(protocol, "spice") == 0) { |
b8a185bc MA |
1438 | if (!qemu_using_spice(errp)) { |
1439 | return; | |
e866e239 GH |
1440 | } |
1441 | ||
b8a185bc | 1442 | if (!has_port && !has_tls_port) { |
c6bd8c70 | 1443 | error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port"); |
b8a185bc | 1444 | return; |
6ec5dae5 YH |
1445 | } |
1446 | ||
b8a185bc MA |
1447 | if (qemu_spice_migrate_info(hostname, |
1448 | has_port ? port : -1, | |
1449 | has_tls_port ? tls_port : -1, | |
1450 | cert_subject)) { | |
c6bd8c70 | 1451 | error_setg(errp, QERR_UNDEFINED_ERROR); |
b8a185bc | 1452 | return; |
e866e239 | 1453 | } |
b8a185bc | 1454 | return; |
e866e239 GH |
1455 | } |
1456 | ||
c6bd8c70 | 1457 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice"); |
e866e239 GH |
1458 | } |
1459 | ||
3e5a50d6 | 1460 | static void hmp_logfile(Monitor *mon, const QDict *qdict) |
e735b91c | 1461 | { |
daa76aa4 MA |
1462 | Error *err = NULL; |
1463 | ||
1464 | qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err); | |
1465 | if (err) { | |
1466 | error_report_err(err); | |
1467 | } | |
e735b91c PB |
1468 | } |
1469 | ||
3e5a50d6 | 1470 | static void hmp_log(Monitor *mon, const QDict *qdict) |
f193c797 FB |
1471 | { |
1472 | int mask; | |
d54908a5 | 1473 | const char *items = qdict_get_str(qdict, "items"); |
3b46e624 | 1474 | |
9307c4c1 | 1475 | if (!strcmp(items, "none")) { |
f193c797 FB |
1476 | mask = 0; |
1477 | } else { | |
4fde1eba | 1478 | mask = qemu_str_to_log_mask(items); |
f193c797 | 1479 | if (!mask) { |
376253ec | 1480 | help_cmd(mon, "log"); |
f193c797 FB |
1481 | return; |
1482 | } | |
1483 | } | |
24537a01 | 1484 | qemu_set_log(mask); |
f193c797 FB |
1485 | } |
1486 | ||
3e5a50d6 | 1487 | static void hmp_singlestep(Monitor *mon, const QDict *qdict) |
1b530a6d | 1488 | { |
d54908a5 | 1489 | const char *option = qdict_get_try_str(qdict, "option"); |
1b530a6d AJ |
1490 | if (!option || !strcmp(option, "on")) { |
1491 | singlestep = 1; | |
1492 | } else if (!strcmp(option, "off")) { | |
1493 | singlestep = 0; | |
1494 | } else { | |
1495 | monitor_printf(mon, "unexpected option %s\n", option); | |
1496 | } | |
1497 | } | |
1498 | ||
3e5a50d6 | 1499 | static void hmp_gdbserver(Monitor *mon, const QDict *qdict) |
59030a8c | 1500 | { |
d54908a5 | 1501 | const char *device = qdict_get_try_str(qdict, "device"); |
59030a8c AL |
1502 | if (!device) |
1503 | device = "tcp::" DEFAULT_GDBSTUB_PORT; | |
1504 | if (gdbserver_start(device) < 0) { | |
1505 | monitor_printf(mon, "Could not open gdbserver on device '%s'\n", | |
1506 | device); | |
1507 | } else if (strcmp(device, "none") == 0) { | |
36556b20 | 1508 | monitor_printf(mon, "Disabled gdbserver\n"); |
8a7ddc38 | 1509 | } else { |
59030a8c AL |
1510 | monitor_printf(mon, "Waiting for gdb connection on device '%s'\n", |
1511 | device); | |
8a7ddc38 FB |
1512 | } |
1513 | } | |
1514 | ||
3e5a50d6 | 1515 | static void hmp_watchdog_action(Monitor *mon, const QDict *qdict) |
9dd986cc | 1516 | { |
d54908a5 | 1517 | const char *action = qdict_get_str(qdict, "action"); |
9dd986cc RJ |
1518 | if (select_watchdog_action(action) == -1) { |
1519 | monitor_printf(mon, "Unknown watchdog action '%s'\n", action); | |
1520 | } | |
1521 | } | |
1522 | ||
376253ec | 1523 | static void monitor_printc(Monitor *mon, int c) |
9307c4c1 | 1524 | { |
376253ec | 1525 | monitor_printf(mon, "'"); |
9307c4c1 FB |
1526 | switch(c) { |
1527 | case '\'': | |
376253ec | 1528 | monitor_printf(mon, "\\'"); |
9307c4c1 FB |
1529 | break; |
1530 | case '\\': | |
376253ec | 1531 | monitor_printf(mon, "\\\\"); |
9307c4c1 FB |
1532 | break; |
1533 | case '\n': | |
376253ec | 1534 | monitor_printf(mon, "\\n"); |
9307c4c1 FB |
1535 | break; |
1536 | case '\r': | |
376253ec | 1537 | monitor_printf(mon, "\\r"); |
9307c4c1 FB |
1538 | break; |
1539 | default: | |
1540 | if (c >= 32 && c <= 126) { | |
376253ec | 1541 | monitor_printf(mon, "%c", c); |
9307c4c1 | 1542 | } else { |
376253ec | 1543 | monitor_printf(mon, "\\x%02x", c); |
9307c4c1 FB |
1544 | } |
1545 | break; | |
1546 | } | |
376253ec | 1547 | monitor_printf(mon, "'"); |
9307c4c1 FB |
1548 | } |
1549 | ||
376253ec | 1550 | static void memory_dump(Monitor *mon, int count, int format, int wsize, |
a8170e5e | 1551 | hwaddr addr, int is_physical) |
9307c4c1 | 1552 | { |
23842aab | 1553 | int l, line_size, i, max_digits, len; |
9307c4c1 FB |
1554 | uint8_t buf[16]; |
1555 | uint64_t v; | |
854e67fe TH |
1556 | CPUState *cs = mon_get_cpu(); |
1557 | ||
1558 | if (!cs && (format == 'i' || !is_physical)) { | |
1559 | monitor_printf(mon, "Can not dump without CPU\n"); | |
1560 | return; | |
1561 | } | |
9307c4c1 FB |
1562 | |
1563 | if (format == 'i') { | |
1d48474d | 1564 | monitor_disas(mon, cs, addr, count, is_physical); |
9307c4c1 FB |
1565 | return; |
1566 | } | |
1567 | ||
1568 | len = wsize * count; | |
1569 | if (wsize == 1) | |
1570 | line_size = 8; | |
1571 | else | |
1572 | line_size = 16; | |
9307c4c1 FB |
1573 | max_digits = 0; |
1574 | ||
1575 | switch(format) { | |
1576 | case 'o': | |
69db8dfc | 1577 | max_digits = DIV_ROUND_UP(wsize * 8, 3); |
9307c4c1 FB |
1578 | break; |
1579 | default: | |
1580 | case 'x': | |
1581 | max_digits = (wsize * 8) / 4; | |
1582 | break; | |
1583 | case 'u': | |
1584 | case 'd': | |
69db8dfc | 1585 | max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33); |
9307c4c1 FB |
1586 | break; |
1587 | case 'c': | |
1588 | wsize = 1; | |
1589 | break; | |
1590 | } | |
1591 | ||
1592 | while (len > 0) { | |
7743e588 | 1593 | if (is_physical) |
376253ec | 1594 | monitor_printf(mon, TARGET_FMT_plx ":", addr); |
7743e588 | 1595 | else |
376253ec | 1596 | monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr); |
9307c4c1 FB |
1597 | l = len; |
1598 | if (l > line_size) | |
1599 | l = line_size; | |
1600 | if (is_physical) { | |
6f89ae58 PM |
1601 | AddressSpace *as = cs ? cs->as : &address_space_memory; |
1602 | MemTxResult r = address_space_read(as, addr, | |
1603 | MEMTXATTRS_UNSPECIFIED, buf, l); | |
1604 | if (r != MEMTX_OK) { | |
1605 | monitor_printf(mon, " Cannot access memory\n"); | |
1606 | break; | |
1607 | } | |
9307c4c1 | 1608 | } else { |
854e67fe | 1609 | if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) { |
376253ec | 1610 | monitor_printf(mon, " Cannot access memory\n"); |
c8f79b67 AL |
1611 | break; |
1612 | } | |
9307c4c1 | 1613 | } |
5fafdf24 | 1614 | i = 0; |
9307c4c1 FB |
1615 | while (i < l) { |
1616 | switch(wsize) { | |
1617 | default: | |
1618 | case 1: | |
24e60305 | 1619 | v = ldub_p(buf + i); |
9307c4c1 FB |
1620 | break; |
1621 | case 2: | |
24e60305 | 1622 | v = lduw_p(buf + i); |
9307c4c1 FB |
1623 | break; |
1624 | case 4: | |
24e60305 | 1625 | v = (uint32_t)ldl_p(buf + i); |
9307c4c1 FB |
1626 | break; |
1627 | case 8: | |
24e60305 | 1628 | v = ldq_p(buf + i); |
9307c4c1 FB |
1629 | break; |
1630 | } | |
376253ec | 1631 | monitor_printf(mon, " "); |
9307c4c1 FB |
1632 | switch(format) { |
1633 | case 'o': | |
376253ec | 1634 | monitor_printf(mon, "%#*" PRIo64, max_digits, v); |
9307c4c1 FB |
1635 | break; |
1636 | case 'x': | |
376253ec | 1637 | monitor_printf(mon, "0x%0*" PRIx64, max_digits, v); |
9307c4c1 FB |
1638 | break; |
1639 | case 'u': | |
376253ec | 1640 | monitor_printf(mon, "%*" PRIu64, max_digits, v); |
9307c4c1 FB |
1641 | break; |
1642 | case 'd': | |
376253ec | 1643 | monitor_printf(mon, "%*" PRId64, max_digits, v); |
9307c4c1 FB |
1644 | break; |
1645 | case 'c': | |
376253ec | 1646 | monitor_printc(mon, v); |
9307c4c1 FB |
1647 | break; |
1648 | } | |
1649 | i += wsize; | |
1650 | } | |
376253ec | 1651 | monitor_printf(mon, "\n"); |
9307c4c1 FB |
1652 | addr += l; |
1653 | len -= l; | |
1654 | } | |
1655 | } | |
1656 | ||
3e5a50d6 | 1657 | static void hmp_memory_dump(Monitor *mon, const QDict *qdict) |
9307c4c1 | 1658 | { |
1bd1442e LC |
1659 | int count = qdict_get_int(qdict, "count"); |
1660 | int format = qdict_get_int(qdict, "format"); | |
1661 | int size = qdict_get_int(qdict, "size"); | |
1662 | target_long addr = qdict_get_int(qdict, "addr"); | |
1663 | ||
376253ec | 1664 | memory_dump(mon, count, format, size, addr, 0); |
9307c4c1 FB |
1665 | } |
1666 | ||
3e5a50d6 | 1667 | static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict) |
9307c4c1 | 1668 | { |
1bd1442e LC |
1669 | int count = qdict_get_int(qdict, "count"); |
1670 | int format = qdict_get_int(qdict, "format"); | |
1671 | int size = qdict_get_int(qdict, "size"); | |
a8170e5e | 1672 | hwaddr addr = qdict_get_int(qdict, "addr"); |
1bd1442e | 1673 | |
376253ec | 1674 | memory_dump(mon, count, format, size, addr, 1); |
9307c4c1 FB |
1675 | } |
1676 | ||
e9628441 PB |
1677 | static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp) |
1678 | { | |
1679 | MemoryRegionSection mrs = memory_region_find(get_system_memory(), | |
1680 | addr, 1); | |
1681 | ||
1682 | if (!mrs.mr) { | |
1683 | error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr); | |
1684 | return NULL; | |
1685 | } | |
1686 | ||
1687 | if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) { | |
1688 | error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr); | |
1689 | memory_region_unref(mrs.mr); | |
1690 | return NULL; | |
1691 | } | |
1692 | ||
1693 | *p_mr = mrs.mr; | |
1694 | return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region); | |
1695 | } | |
1696 | ||
1697 | static void hmp_gpa2hva(Monitor *mon, const QDict *qdict) | |
1698 | { | |
1699 | hwaddr addr = qdict_get_int(qdict, "addr"); | |
1700 | Error *local_err = NULL; | |
1701 | MemoryRegion *mr = NULL; | |
1702 | void *ptr; | |
1703 | ||
1704 | ptr = gpa2hva(&mr, addr, &local_err); | |
1705 | if (local_err) { | |
1706 | error_report_err(local_err); | |
1707 | return; | |
1708 | } | |
1709 | ||
1710 | monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx | |
1711 | " (%s) is %p\n", | |
1712 | addr, mr->name, ptr); | |
1713 | ||
1714 | memory_region_unref(mr); | |
1715 | } | |
1716 | ||
1717 | #ifdef CONFIG_LINUX | |
1718 | static uint64_t vtop(void *ptr, Error **errp) | |
1719 | { | |
1720 | uint64_t pinfo; | |
1721 | uint64_t ret = -1; | |
1722 | uintptr_t addr = (uintptr_t) ptr; | |
1723 | uintptr_t pagesize = getpagesize(); | |
1724 | off_t offset = addr / pagesize * sizeof(pinfo); | |
1725 | int fd; | |
1726 | ||
1727 | fd = open("/proc/self/pagemap", O_RDONLY); | |
1728 | if (fd == -1) { | |
1729 | error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap"); | |
1730 | return -1; | |
1731 | } | |
1732 | ||
1733 | /* Force copy-on-write if necessary. */ | |
1734 | atomic_add((uint8_t *)ptr, 0); | |
1735 | ||
1736 | if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) { | |
1737 | error_setg_errno(errp, errno, "Cannot read pagemap"); | |
1738 | goto out; | |
1739 | } | |
1740 | if ((pinfo & (1ull << 63)) == 0) { | |
1741 | error_setg(errp, "Page not present"); | |
1742 | goto out; | |
1743 | } | |
1744 | ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1)); | |
1745 | ||
1746 | out: | |
1747 | close(fd); | |
1748 | return ret; | |
1749 | } | |
1750 | ||
1751 | static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict) | |
1752 | { | |
1753 | hwaddr addr = qdict_get_int(qdict, "addr"); | |
1754 | Error *local_err = NULL; | |
1755 | MemoryRegion *mr = NULL; | |
1756 | void *ptr; | |
1757 | uint64_t physaddr; | |
1758 | ||
1759 | ptr = gpa2hva(&mr, addr, &local_err); | |
1760 | if (local_err) { | |
1761 | error_report_err(local_err); | |
1762 | return; | |
1763 | } | |
1764 | ||
1765 | physaddr = vtop(ptr, &local_err); | |
1766 | if (local_err) { | |
1767 | error_report_err(local_err); | |
1768 | } else { | |
1769 | monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx | |
1770 | " (%s) is 0x%" PRIx64 "\n", | |
1771 | addr, mr->name, (uint64_t) physaddr); | |
1772 | } | |
1773 | ||
1774 | memory_region_unref(mr); | |
1775 | } | |
1776 | #endif | |
1777 | ||
1bd1442e | 1778 | static void do_print(Monitor *mon, const QDict *qdict) |
9307c4c1 | 1779 | { |
1bd1442e | 1780 | int format = qdict_get_int(qdict, "format"); |
a8170e5e | 1781 | hwaddr val = qdict_get_int(qdict, "val"); |
1bd1442e | 1782 | |
9307c4c1 FB |
1783 | switch(format) { |
1784 | case 'o': | |
a8170e5e | 1785 | monitor_printf(mon, "%#" HWADDR_PRIo, val); |
9307c4c1 FB |
1786 | break; |
1787 | case 'x': | |
a8170e5e | 1788 | monitor_printf(mon, "%#" HWADDR_PRIx, val); |
9307c4c1 FB |
1789 | break; |
1790 | case 'u': | |
a8170e5e | 1791 | monitor_printf(mon, "%" HWADDR_PRIu, val); |
9307c4c1 FB |
1792 | break; |
1793 | default: | |
1794 | case 'd': | |
a8170e5e | 1795 | monitor_printf(mon, "%" HWADDR_PRId, val); |
9307c4c1 FB |
1796 | break; |
1797 | case 'c': | |
376253ec | 1798 | monitor_printc(mon, val); |
9307c4c1 FB |
1799 | break; |
1800 | } | |
376253ec | 1801 | monitor_printf(mon, "\n"); |
9307c4c1 FB |
1802 | } |
1803 | ||
3e5a50d6 | 1804 | static void hmp_sum(Monitor *mon, const QDict *qdict) |
e4cf1adc FB |
1805 | { |
1806 | uint32_t addr; | |
e4cf1adc | 1807 | uint16_t sum; |
f18c16de LC |
1808 | uint32_t start = qdict_get_int(qdict, "start"); |
1809 | uint32_t size = qdict_get_int(qdict, "size"); | |
e4cf1adc FB |
1810 | |
1811 | sum = 0; | |
1812 | for(addr = start; addr < (start + size); addr++) { | |
42874d3a PM |
1813 | uint8_t val = address_space_ldub(&address_space_memory, addr, |
1814 | MEMTXATTRS_UNSPECIFIED, NULL); | |
e4cf1adc FB |
1815 | /* BSD sum algorithm ('sum' Unix command) */ |
1816 | sum = (sum >> 1) | (sum << 15); | |
54f7b4a3 | 1817 | sum += val; |
e4cf1adc | 1818 | } |
376253ec | 1819 | monitor_printf(mon, "%05d\n", sum); |
e4cf1adc FB |
1820 | } |
1821 | ||
13224a87 FB |
1822 | static int mouse_button_state; |
1823 | ||
3e5a50d6 | 1824 | static void hmp_mouse_move(Monitor *mon, const QDict *qdict) |
13224a87 | 1825 | { |
c751a74a | 1826 | int dx, dy, dz, button; |
1d4daa91 LC |
1827 | const char *dx_str = qdict_get_str(qdict, "dx_str"); |
1828 | const char *dy_str = qdict_get_str(qdict, "dy_str"); | |
1829 | const char *dz_str = qdict_get_try_str(qdict, "dz_str"); | |
c751a74a | 1830 | |
13224a87 FB |
1831 | dx = strtol(dx_str, NULL, 0); |
1832 | dy = strtol(dy_str, NULL, 0); | |
c751a74a GH |
1833 | qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx); |
1834 | qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy); | |
1835 | ||
1836 | if (dz_str) { | |
13224a87 | 1837 | dz = strtol(dz_str, NULL, 0); |
c751a74a | 1838 | if (dz != 0) { |
f22d0af0 | 1839 | button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN; |
c751a74a GH |
1840 | qemu_input_queue_btn(NULL, button, true); |
1841 | qemu_input_event_sync(); | |
1842 | qemu_input_queue_btn(NULL, button, false); | |
1843 | } | |
1844 | } | |
1845 | qemu_input_event_sync(); | |
13224a87 FB |
1846 | } |
1847 | ||
3e5a50d6 | 1848 | static void hmp_mouse_button(Monitor *mon, const QDict *qdict) |
13224a87 | 1849 | { |
7fb1cf16 | 1850 | static uint32_t bmap[INPUT_BUTTON__MAX] = { |
c751a74a GH |
1851 | [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON, |
1852 | [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON, | |
1853 | [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON, | |
1854 | }; | |
d54908a5 | 1855 | int button_state = qdict_get_int(qdict, "button_state"); |
c751a74a GH |
1856 | |
1857 | if (mouse_button_state == button_state) { | |
1858 | return; | |
1859 | } | |
1860 | qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state); | |
1861 | qemu_input_event_sync(); | |
13224a87 | 1862 | mouse_button_state = button_state; |
13224a87 FB |
1863 | } |
1864 | ||
3e5a50d6 | 1865 | static void hmp_ioport_read(Monitor *mon, const QDict *qdict) |
3440557b | 1866 | { |
aa93e39c LC |
1867 | int size = qdict_get_int(qdict, "size"); |
1868 | int addr = qdict_get_int(qdict, "addr"); | |
1869 | int has_index = qdict_haskey(qdict, "index"); | |
3440557b FB |
1870 | uint32_t val; |
1871 | int suffix; | |
1872 | ||
1873 | if (has_index) { | |
aa93e39c | 1874 | int index = qdict_get_int(qdict, "index"); |
afcea8cb | 1875 | cpu_outb(addr & IOPORTS_MASK, index & 0xff); |
3440557b FB |
1876 | addr++; |
1877 | } | |
1878 | addr &= 0xffff; | |
1879 | ||
1880 | switch(size) { | |
1881 | default: | |
1882 | case 1: | |
afcea8cb | 1883 | val = cpu_inb(addr); |
3440557b FB |
1884 | suffix = 'b'; |
1885 | break; | |
1886 | case 2: | |
afcea8cb | 1887 | val = cpu_inw(addr); |
3440557b FB |
1888 | suffix = 'w'; |
1889 | break; | |
1890 | case 4: | |
afcea8cb | 1891 | val = cpu_inl(addr); |
3440557b FB |
1892 | suffix = 'l'; |
1893 | break; | |
1894 | } | |
376253ec AL |
1895 | monitor_printf(mon, "port%c[0x%04x] = %#0*x\n", |
1896 | suffix, addr, size * 2, val); | |
3440557b | 1897 | } |
a3a91a35 | 1898 | |
3e5a50d6 | 1899 | static void hmp_ioport_write(Monitor *mon, const QDict *qdict) |
f114784f | 1900 | { |
1bd1442e LC |
1901 | int size = qdict_get_int(qdict, "size"); |
1902 | int addr = qdict_get_int(qdict, "addr"); | |
1903 | int val = qdict_get_int(qdict, "val"); | |
1904 | ||
f114784f JK |
1905 | addr &= IOPORTS_MASK; |
1906 | ||
1907 | switch (size) { | |
1908 | default: | |
1909 | case 1: | |
afcea8cb | 1910 | cpu_outb(addr, val); |
f114784f JK |
1911 | break; |
1912 | case 2: | |
afcea8cb | 1913 | cpu_outw(addr, val); |
f114784f JK |
1914 | break; |
1915 | case 4: | |
afcea8cb | 1916 | cpu_outl(addr, val); |
f114784f JK |
1917 | break; |
1918 | } | |
1919 | } | |
1920 | ||
3e5a50d6 | 1921 | static void hmp_boot_set(Monitor *mon, const QDict *qdict) |
0ecdffbb | 1922 | { |
f1839938 | 1923 | Error *local_err = NULL; |
d54908a5 | 1924 | const char *bootdevice = qdict_get_str(qdict, "bootdevice"); |
0ecdffbb | 1925 | |
f1839938 GA |
1926 | qemu_boot_set(bootdevice, &local_err); |
1927 | if (local_err) { | |
193227f9 | 1928 | error_report_err(local_err); |
0ecdffbb | 1929 | } else { |
f1839938 | 1930 | monitor_printf(mon, "boot device list now set to %s\n", bootdevice); |
0ecdffbb AJ |
1931 | } |
1932 | } | |
1933 | ||
1ce6be24 | 1934 | static void hmp_info_mtree(Monitor *mon, const QDict *qdict) |
314e2987 | 1935 | { |
57bb40c9 | 1936 | bool flatview = qdict_get_try_bool(qdict, "flatview", false); |
5e8fd947 | 1937 | bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false); |
fc051ae6 | 1938 | bool owner = qdict_get_try_bool(qdict, "owner", false); |
57bb40c9 | 1939 | |
fc051ae6 AK |
1940 | mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree, |
1941 | owner); | |
314e2987 BS |
1942 | } |
1943 | ||
1ce6be24 | 1944 | static void hmp_info_numa(Monitor *mon, const QDict *qdict) |
030ea37b | 1945 | { |
b28b6230 | 1946 | int i; |
31959e82 | 1947 | NumaNodeMem *node_mem; |
f75cd44d | 1948 | CpuInfoList *cpu_list, *cpu; |
030ea37b | 1949 | |
f75cd44d | 1950 | cpu_list = qmp_query_cpus(&error_abort); |
31959e82 VG |
1951 | node_mem = g_new0(NumaNodeMem, nb_numa_nodes); |
1952 | ||
5b009e40 | 1953 | query_numa_node_mem(node_mem); |
030ea37b AL |
1954 | monitor_printf(mon, "%d nodes\n", nb_numa_nodes); |
1955 | for (i = 0; i < nb_numa_nodes; i++) { | |
1956 | monitor_printf(mon, "node %d cpus:", i); | |
f75cd44d IM |
1957 | for (cpu = cpu_list; cpu; cpu = cpu->next) { |
1958 | if (cpu->value->has_props && cpu->value->props->has_node_id && | |
1959 | cpu->value->props->node_id == i) { | |
1960 | monitor_printf(mon, " %" PRIi64, cpu->value->CPU); | |
030ea37b AL |
1961 | } |
1962 | } | |
1963 | monitor_printf(mon, "\n"); | |
1964 | monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i, | |
31959e82 VG |
1965 | node_mem[i].node_mem >> 20); |
1966 | monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i, | |
1967 | node_mem[i].node_plugged_mem >> 20); | |
030ea37b | 1968 | } |
f75cd44d | 1969 | qapi_free_CpuInfoList(cpu_list); |
5b009e40 | 1970 | g_free(node_mem); |
030ea37b AL |
1971 | } |
1972 | ||
5f1ce948 FB |
1973 | #ifdef CONFIG_PROFILER |
1974 | ||
e9a6625e AJ |
1975 | int64_t dev_time; |
1976 | ||
1ce6be24 | 1977 | static void hmp_info_profile(Monitor *mon, const QDict *qdict) |
5f1ce948 | 1978 | { |
72fd2efb EC |
1979 | static int64_t last_cpu_exec_time; |
1980 | int64_t cpu_exec_time; | |
1981 | int64_t delta; | |
1982 | ||
1983 | cpu_exec_time = tcg_cpu_exec_time(); | |
1984 | delta = cpu_exec_time - last_cpu_exec_time; | |
1985 | ||
376253ec | 1986 | monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n", |
73bcb24d | 1987 | dev_time, dev_time / (double)NANOSECONDS_PER_SECOND); |
376253ec | 1988 | monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n", |
72fd2efb EC |
1989 | delta, delta / (double)NANOSECONDS_PER_SECOND); |
1990 | last_cpu_exec_time = cpu_exec_time; | |
5f1ce948 | 1991 | dev_time = 0; |
5f1ce948 FB |
1992 | } |
1993 | #else | |
1ce6be24 | 1994 | static void hmp_info_profile(Monitor *mon, const QDict *qdict) |
5f1ce948 | 1995 | { |
376253ec | 1996 | monitor_printf(mon, "Internal profiler not compiled\n"); |
5f1ce948 FB |
1997 | } |
1998 | #endif | |
1999 | ||
ec36b695 | 2000 | /* Capture support */ |
72cf2d4f | 2001 | static QLIST_HEAD (capture_list_head, CaptureState) capture_head; |
ec36b695 | 2002 | |
1ce6be24 | 2003 | static void hmp_info_capture(Monitor *mon, const QDict *qdict) |
ec36b695 FB |
2004 | { |
2005 | int i; | |
2006 | CaptureState *s; | |
2007 | ||
2008 | for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { | |
376253ec | 2009 | monitor_printf(mon, "[%d]: ", i); |
ec36b695 FB |
2010 | s->ops.info (s->opaque); |
2011 | } | |
2012 | } | |
2013 | ||
3e5a50d6 | 2014 | static void hmp_stopcapture(Monitor *mon, const QDict *qdict) |
ec36b695 FB |
2015 | { |
2016 | int i; | |
d54908a5 | 2017 | int n = qdict_get_int(qdict, "n"); |
ec36b695 FB |
2018 | CaptureState *s; |
2019 | ||
2020 | for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { | |
2021 | if (i == n) { | |
2022 | s->ops.destroy (s->opaque); | |
72cf2d4f | 2023 | QLIST_REMOVE (s, entries); |
7267c094 | 2024 | g_free (s); |
ec36b695 FB |
2025 | return; |
2026 | } | |
2027 | } | |
2028 | } | |
2029 | ||
3e5a50d6 | 2030 | static void hmp_wavcapture(Monitor *mon, const QDict *qdict) |
c1925484 LC |
2031 | { |
2032 | const char *path = qdict_get_str(qdict, "path"); | |
2033 | int has_freq = qdict_haskey(qdict, "freq"); | |
2034 | int freq = qdict_get_try_int(qdict, "freq", -1); | |
2035 | int has_bits = qdict_haskey(qdict, "bits"); | |
2036 | int bits = qdict_get_try_int(qdict, "bits", -1); | |
2037 | int has_channels = qdict_haskey(qdict, "nchannels"); | |
2038 | int nchannels = qdict_get_try_int(qdict, "nchannels", -1); | |
ec36b695 FB |
2039 | CaptureState *s; |
2040 | ||
7267c094 | 2041 | s = g_malloc0 (sizeof (*s)); |
ec36b695 FB |
2042 | |
2043 | freq = has_freq ? freq : 44100; | |
2044 | bits = has_bits ? bits : 16; | |
2045 | nchannels = has_channels ? nchannels : 2; | |
2046 | ||
2047 | if (wav_start_capture (s, path, freq, bits, nchannels)) { | |
d00b2618 | 2048 | monitor_printf(mon, "Failed to add wave capture\n"); |
7267c094 | 2049 | g_free (s); |
d00b2618 | 2050 | return; |
ec36b695 | 2051 | } |
72cf2d4f | 2052 | QLIST_INSERT_HEAD (&capture_head, s, entries); |
ec36b695 | 2053 | } |
ec36b695 | 2054 | |
15dfcd45 | 2055 | static qemu_acl *find_acl(Monitor *mon, const char *name) |
76655d6d | 2056 | { |
15dfcd45 | 2057 | qemu_acl *acl = qemu_acl_find(name); |
76655d6d | 2058 | |
76655d6d | 2059 | if (!acl) { |
15dfcd45 | 2060 | monitor_printf(mon, "acl: unknown list '%s'\n", name); |
76655d6d | 2061 | } |
15dfcd45 JK |
2062 | return acl; |
2063 | } | |
2064 | ||
3e5a50d6 | 2065 | static void hmp_acl_show(Monitor *mon, const QDict *qdict) |
15dfcd45 | 2066 | { |
d54908a5 | 2067 | const char *aclname = qdict_get_str(qdict, "aclname"); |
15dfcd45 JK |
2068 | qemu_acl *acl = find_acl(mon, aclname); |
2069 | qemu_acl_entry *entry; | |
2070 | int i = 0; | |
76655d6d | 2071 | |
15dfcd45 | 2072 | if (acl) { |
28a76be8 | 2073 | monitor_printf(mon, "policy: %s\n", |
76655d6d | 2074 | acl->defaultDeny ? "deny" : "allow"); |
72cf2d4f | 2075 | QTAILQ_FOREACH(entry, &acl->entries, next) { |
28a76be8 AL |
2076 | i++; |
2077 | monitor_printf(mon, "%d: %s %s\n", i, | |
15dfcd45 | 2078 | entry->deny ? "deny" : "allow", entry->match); |
28a76be8 | 2079 | } |
15dfcd45 JK |
2080 | } |
2081 | } | |
2082 | ||
3e5a50d6 | 2083 | static void hmp_acl_reset(Monitor *mon, const QDict *qdict) |
15dfcd45 | 2084 | { |
d54908a5 | 2085 | const char *aclname = qdict_get_str(qdict, "aclname"); |
15dfcd45 JK |
2086 | qemu_acl *acl = find_acl(mon, aclname); |
2087 | ||
2088 | if (acl) { | |
28a76be8 AL |
2089 | qemu_acl_reset(acl); |
2090 | monitor_printf(mon, "acl: removed all rules\n"); | |
15dfcd45 JK |
2091 | } |
2092 | } | |
2093 | ||
3e5a50d6 | 2094 | static void hmp_acl_policy(Monitor *mon, const QDict *qdict) |
15dfcd45 | 2095 | { |
f18c16de LC |
2096 | const char *aclname = qdict_get_str(qdict, "aclname"); |
2097 | const char *policy = qdict_get_str(qdict, "policy"); | |
15dfcd45 | 2098 | qemu_acl *acl = find_acl(mon, aclname); |
28a76be8 | 2099 | |
15dfcd45 JK |
2100 | if (acl) { |
2101 | if (strcmp(policy, "allow") == 0) { | |
28a76be8 AL |
2102 | acl->defaultDeny = 0; |
2103 | monitor_printf(mon, "acl: policy set to 'allow'\n"); | |
15dfcd45 | 2104 | } else if (strcmp(policy, "deny") == 0) { |
28a76be8 AL |
2105 | acl->defaultDeny = 1; |
2106 | monitor_printf(mon, "acl: policy set to 'deny'\n"); | |
2107 | } else { | |
15dfcd45 JK |
2108 | monitor_printf(mon, "acl: unknown policy '%s', " |
2109 | "expected 'deny' or 'allow'\n", policy); | |
28a76be8 | 2110 | } |
15dfcd45 JK |
2111 | } |
2112 | } | |
28a76be8 | 2113 | |
3e5a50d6 | 2114 | static void hmp_acl_add(Monitor *mon, const QDict *qdict) |
15dfcd45 | 2115 | { |
1bd1442e LC |
2116 | const char *aclname = qdict_get_str(qdict, "aclname"); |
2117 | const char *match = qdict_get_str(qdict, "match"); | |
2118 | const char *policy = qdict_get_str(qdict, "policy"); | |
2119 | int has_index = qdict_haskey(qdict, "index"); | |
2120 | int index = qdict_get_try_int(qdict, "index", -1); | |
15dfcd45 JK |
2121 | qemu_acl *acl = find_acl(mon, aclname); |
2122 | int deny, ret; | |
2123 | ||
2124 | if (acl) { | |
2125 | if (strcmp(policy, "allow") == 0) { | |
2126 | deny = 0; | |
2127 | } else if (strcmp(policy, "deny") == 0) { | |
2128 | deny = 1; | |
2129 | } else { | |
2130 | monitor_printf(mon, "acl: unknown policy '%s', " | |
2131 | "expected 'deny' or 'allow'\n", policy); | |
28a76be8 AL |
2132 | return; |
2133 | } | |
28a76be8 AL |
2134 | if (has_index) |
2135 | ret = qemu_acl_insert(acl, deny, match, index); | |
2136 | else | |
2137 | ret = qemu_acl_append(acl, deny, match); | |
2138 | if (ret < 0) | |
2139 | monitor_printf(mon, "acl: unable to add acl entry\n"); | |
2140 | else | |
2141 | monitor_printf(mon, "acl: added rule at position %d\n", ret); | |
15dfcd45 JK |
2142 | } |
2143 | } | |
28a76be8 | 2144 | |
3e5a50d6 | 2145 | static void hmp_acl_remove(Monitor *mon, const QDict *qdict) |
15dfcd45 | 2146 | { |
f18c16de LC |
2147 | const char *aclname = qdict_get_str(qdict, "aclname"); |
2148 | const char *match = qdict_get_str(qdict, "match"); | |
15dfcd45 JK |
2149 | qemu_acl *acl = find_acl(mon, aclname); |
2150 | int ret; | |
28a76be8 | 2151 | |
15dfcd45 | 2152 | if (acl) { |
28a76be8 AL |
2153 | ret = qemu_acl_remove(acl, match); |
2154 | if (ret < 0) | |
2155 | monitor_printf(mon, "acl: no matching acl entry\n"); | |
2156 | else | |
2157 | monitor_printf(mon, "acl: removed rule at position %d\n", ret); | |
76655d6d AL |
2158 | } |
2159 | } | |
2160 | ||
208c9d1b | 2161 | void qmp_getfd(const char *fdname, Error **errp) |
f07918fd | 2162 | { |
c227f099 | 2163 | mon_fd_t *monfd; |
9409fc05 | 2164 | int fd, tmp_fd; |
f07918fd | 2165 | |
5345fdb4 | 2166 | fd = qemu_chr_fe_get_msgfd(&cur_mon->chr); |
f07918fd | 2167 | if (fd == -1) { |
c6bd8c70 | 2168 | error_setg(errp, QERR_FD_NOT_SUPPLIED); |
208c9d1b | 2169 | return; |
f07918fd MM |
2170 | } |
2171 | ||
2172 | if (qemu_isdigit(fdname[0])) { | |
0b9f0e2f | 2173 | close(fd); |
c6bd8c70 MA |
2174 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname", |
2175 | "a name not starting with a digit"); | |
208c9d1b | 2176 | return; |
f07918fd MM |
2177 | } |
2178 | ||
9409fc05 | 2179 | qemu_mutex_lock(&cur_mon->mon_lock); |
208c9d1b | 2180 | QLIST_FOREACH(monfd, &cur_mon->fds, next) { |
f07918fd MM |
2181 | if (strcmp(monfd->name, fdname) != 0) { |
2182 | continue; | |
2183 | } | |
2184 | ||
9409fc05 | 2185 | tmp_fd = monfd->fd; |
f07918fd | 2186 | monfd->fd = fd; |
9409fc05 | 2187 | qemu_mutex_unlock(&cur_mon->mon_lock); |
774a6b67 | 2188 | /* Make sure close() is outside critical section */ |
9409fc05 | 2189 | close(tmp_fd); |
208c9d1b | 2190 | return; |
f07918fd MM |
2191 | } |
2192 | ||
7267c094 AL |
2193 | monfd = g_malloc0(sizeof(mon_fd_t)); |
2194 | monfd->name = g_strdup(fdname); | |
f07918fd MM |
2195 | monfd->fd = fd; |
2196 | ||
208c9d1b | 2197 | QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next); |
9409fc05 | 2198 | qemu_mutex_unlock(&cur_mon->mon_lock); |
f07918fd MM |
2199 | } |
2200 | ||
208c9d1b | 2201 | void qmp_closefd(const char *fdname, Error **errp) |
f07918fd | 2202 | { |
c227f099 | 2203 | mon_fd_t *monfd; |
9409fc05 | 2204 | int tmp_fd; |
f07918fd | 2205 | |
9409fc05 | 2206 | qemu_mutex_lock(&cur_mon->mon_lock); |
208c9d1b | 2207 | QLIST_FOREACH(monfd, &cur_mon->fds, next) { |
f07918fd MM |
2208 | if (strcmp(monfd->name, fdname) != 0) { |
2209 | continue; | |
2210 | } | |
2211 | ||
72cf2d4f | 2212 | QLIST_REMOVE(monfd, next); |
9409fc05 | 2213 | tmp_fd = monfd->fd; |
7267c094 AL |
2214 | g_free(monfd->name); |
2215 | g_free(monfd); | |
9409fc05 | 2216 | qemu_mutex_unlock(&cur_mon->mon_lock); |
774a6b67 | 2217 | /* Make sure close() is outside critical section */ |
9409fc05 | 2218 | close(tmp_fd); |
208c9d1b | 2219 | return; |
f07918fd MM |
2220 | } |
2221 | ||
9409fc05 | 2222 | qemu_mutex_unlock(&cur_mon->mon_lock); |
c6bd8c70 | 2223 | error_setg(errp, QERR_FD_NOT_FOUND, fdname); |
f07918fd MM |
2224 | } |
2225 | ||
a9940fc4 | 2226 | int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp) |
7768e04c | 2227 | { |
c227f099 | 2228 | mon_fd_t *monfd; |
7768e04c | 2229 | |
9409fc05 | 2230 | qemu_mutex_lock(&mon->mon_lock); |
72cf2d4f | 2231 | QLIST_FOREACH(monfd, &mon->fds, next) { |
7768e04c MM |
2232 | int fd; |
2233 | ||
2234 | if (strcmp(monfd->name, fdname) != 0) { | |
2235 | continue; | |
2236 | } | |
2237 | ||
2238 | fd = monfd->fd; | |
2239 | ||
2240 | /* caller takes ownership of fd */ | |
72cf2d4f | 2241 | QLIST_REMOVE(monfd, next); |
7267c094 AL |
2242 | g_free(monfd->name); |
2243 | g_free(monfd); | |
9409fc05 | 2244 | qemu_mutex_unlock(&mon->mon_lock); |
7768e04c MM |
2245 | |
2246 | return fd; | |
2247 | } | |
2248 | ||
9409fc05 | 2249 | qemu_mutex_unlock(&mon->mon_lock); |
a9940fc4 | 2250 | error_setg(errp, "File descriptor named '%s' has not been found", fdname); |
7768e04c MM |
2251 | return -1; |
2252 | } | |
2253 | ||
ba1c048a CB |
2254 | static void monitor_fdset_cleanup(MonFdset *mon_fdset) |
2255 | { | |
2256 | MonFdsetFd *mon_fdset_fd; | |
2257 | MonFdsetFd *mon_fdset_fd_next; | |
2258 | ||
2259 | QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) { | |
ebe52b59 CB |
2260 | if ((mon_fdset_fd->removed || |
2261 | (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) && | |
2262 | runstate_is_running()) { | |
ba1c048a CB |
2263 | close(mon_fdset_fd->fd); |
2264 | g_free(mon_fdset_fd->opaque); | |
2265 | QLIST_REMOVE(mon_fdset_fd, next); | |
2266 | g_free(mon_fdset_fd); | |
2267 | } | |
2268 | } | |
2269 | ||
adb696f3 | 2270 | if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) { |
ba1c048a CB |
2271 | QLIST_REMOVE(mon_fdset, next); |
2272 | g_free(mon_fdset); | |
2273 | } | |
2274 | } | |
2275 | ||
efb87c16 CB |
2276 | static void monitor_fdsets_cleanup(void) |
2277 | { | |
2278 | MonFdset *mon_fdset; | |
2279 | MonFdset *mon_fdset_next; | |
2280 | ||
47451466 | 2281 | qemu_mutex_lock(&mon_fdsets_lock); |
efb87c16 CB |
2282 | QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) { |
2283 | monitor_fdset_cleanup(mon_fdset); | |
2284 | } | |
47451466 | 2285 | qemu_mutex_unlock(&mon_fdsets_lock); |
efb87c16 CB |
2286 | } |
2287 | ||
ba1c048a CB |
2288 | AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque, |
2289 | const char *opaque, Error **errp) | |
2290 | { | |
2291 | int fd; | |
2292 | Monitor *mon = cur_mon; | |
ba1c048a CB |
2293 | AddfdInfo *fdinfo; |
2294 | ||
5345fdb4 | 2295 | fd = qemu_chr_fe_get_msgfd(&mon->chr); |
ba1c048a | 2296 | if (fd == -1) { |
c6bd8c70 | 2297 | error_setg(errp, QERR_FD_NOT_SUPPLIED); |
ba1c048a CB |
2298 | goto error; |
2299 | } | |
2300 | ||
e446f70d CB |
2301 | fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id, |
2302 | has_opaque, opaque, errp); | |
2303 | if (fdinfo) { | |
2304 | return fdinfo; | |
ba1c048a | 2305 | } |
ba1c048a CB |
2306 | |
2307 | error: | |
2308 | if (fd != -1) { | |
2309 | close(fd); | |
2310 | } | |
2311 | return NULL; | |
2312 | } | |
2313 | ||
2314 | void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp) | |
2315 | { | |
2316 | MonFdset *mon_fdset; | |
2317 | MonFdsetFd *mon_fdset_fd; | |
2318 | char fd_str[60]; | |
2319 | ||
47451466 | 2320 | qemu_mutex_lock(&mon_fdsets_lock); |
ba1c048a CB |
2321 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { |
2322 | if (mon_fdset->id != fdset_id) { | |
2323 | continue; | |
2324 | } | |
2325 | QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) { | |
2326 | if (has_fd) { | |
2327 | if (mon_fdset_fd->fd != fd) { | |
2328 | continue; | |
2329 | } | |
2330 | mon_fdset_fd->removed = true; | |
2331 | break; | |
2332 | } else { | |
2333 | mon_fdset_fd->removed = true; | |
2334 | } | |
2335 | } | |
2336 | if (has_fd && !mon_fdset_fd) { | |
2337 | goto error; | |
2338 | } | |
2339 | monitor_fdset_cleanup(mon_fdset); | |
47451466 | 2340 | qemu_mutex_unlock(&mon_fdsets_lock); |
ba1c048a CB |
2341 | return; |
2342 | } | |
2343 | ||
2344 | error: | |
47451466 | 2345 | qemu_mutex_unlock(&mon_fdsets_lock); |
ba1c048a CB |
2346 | if (has_fd) { |
2347 | snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64, | |
2348 | fdset_id, fd); | |
2349 | } else { | |
2350 | snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id); | |
2351 | } | |
c6bd8c70 | 2352 | error_setg(errp, QERR_FD_NOT_FOUND, fd_str); |
ba1c048a CB |
2353 | } |
2354 | ||
2355 | FdsetInfoList *qmp_query_fdsets(Error **errp) | |
2356 | { | |
2357 | MonFdset *mon_fdset; | |
2358 | MonFdsetFd *mon_fdset_fd; | |
2359 | FdsetInfoList *fdset_list = NULL; | |
2360 | ||
47451466 | 2361 | qemu_mutex_lock(&mon_fdsets_lock); |
ba1c048a CB |
2362 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { |
2363 | FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info)); | |
2364 | FdsetFdInfoList *fdsetfd_list = NULL; | |
2365 | ||
2366 | fdset_info->value = g_malloc0(sizeof(*fdset_info->value)); | |
2367 | fdset_info->value->fdset_id = mon_fdset->id; | |
2368 | ||
2369 | QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) { | |
2370 | FdsetFdInfoList *fdsetfd_info; | |
2371 | ||
2372 | fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info)); | |
2373 | fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value)); | |
2374 | fdsetfd_info->value->fd = mon_fdset_fd->fd; | |
2375 | if (mon_fdset_fd->opaque) { | |
2376 | fdsetfd_info->value->has_opaque = true; | |
2377 | fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque); | |
2378 | } else { | |
2379 | fdsetfd_info->value->has_opaque = false; | |
2380 | } | |
2381 | ||
2382 | fdsetfd_info->next = fdsetfd_list; | |
2383 | fdsetfd_list = fdsetfd_info; | |
2384 | } | |
2385 | ||
2386 | fdset_info->value->fds = fdsetfd_list; | |
2387 | ||
2388 | fdset_info->next = fdset_list; | |
2389 | fdset_list = fdset_info; | |
2390 | } | |
47451466 | 2391 | qemu_mutex_unlock(&mon_fdsets_lock); |
ba1c048a CB |
2392 | |
2393 | return fdset_list; | |
2394 | } | |
2395 | ||
e446f70d CB |
2396 | AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id, |
2397 | bool has_opaque, const char *opaque, | |
2398 | Error **errp) | |
2399 | { | |
2400 | MonFdset *mon_fdset = NULL; | |
2401 | MonFdsetFd *mon_fdset_fd; | |
2402 | AddfdInfo *fdinfo; | |
2403 | ||
47451466 | 2404 | qemu_mutex_lock(&mon_fdsets_lock); |
e446f70d CB |
2405 | if (has_fdset_id) { |
2406 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { | |
2407 | /* Break if match found or match impossible due to ordering by ID */ | |
2408 | if (fdset_id <= mon_fdset->id) { | |
2409 | if (fdset_id < mon_fdset->id) { | |
2410 | mon_fdset = NULL; | |
2411 | } | |
2412 | break; | |
2413 | } | |
2414 | } | |
2415 | } | |
2416 | ||
2417 | if (mon_fdset == NULL) { | |
2418 | int64_t fdset_id_prev = -1; | |
2419 | MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets); | |
2420 | ||
2421 | if (has_fdset_id) { | |
2422 | if (fdset_id < 0) { | |
c6bd8c70 MA |
2423 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id", |
2424 | "a non-negative value"); | |
47451466 | 2425 | qemu_mutex_unlock(&mon_fdsets_lock); |
e446f70d CB |
2426 | 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 | ||
47451466 | 2476 | qemu_mutex_unlock(&mon_fdsets_lock); |
e446f70d CB |
2477 | return fdinfo; |
2478 | } | |
2479 | ||
adb696f3 CB |
2480 | int monitor_fdset_get_fd(int64_t fdset_id, int flags) |
2481 | { | |
47451466 PX |
2482 | #ifdef _WIN32 |
2483 | return -ENOENT; | |
2484 | #else | |
adb696f3 CB |
2485 | MonFdset *mon_fdset; |
2486 | MonFdsetFd *mon_fdset_fd; | |
2487 | int mon_fd_flags; | |
47451466 | 2488 | int ret; |
adb696f3 | 2489 | |
47451466 | 2490 | qemu_mutex_lock(&mon_fdsets_lock); |
adb696f3 CB |
2491 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { |
2492 | if (mon_fdset->id != fdset_id) { | |
2493 | continue; | |
2494 | } | |
2495 | QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) { | |
2496 | mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL); | |
2497 | if (mon_fd_flags == -1) { | |
47451466 PX |
2498 | ret = -errno; |
2499 | goto out; | |
adb696f3 CB |
2500 | } |
2501 | ||
2502 | if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) { | |
47451466 PX |
2503 | ret = mon_fdset_fd->fd; |
2504 | goto out; | |
adb696f3 CB |
2505 | } |
2506 | } | |
47451466 PX |
2507 | ret = -EACCES; |
2508 | goto out; | |
adb696f3 | 2509 | } |
47451466 | 2510 | ret = -ENOENT; |
adb696f3 | 2511 | |
47451466 PX |
2512 | out: |
2513 | qemu_mutex_unlock(&mon_fdsets_lock); | |
2514 | return ret; | |
2515 | #endif | |
adb696f3 CB |
2516 | } |
2517 | ||
2518 | int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd) | |
2519 | { | |
2520 | MonFdset *mon_fdset; | |
2521 | MonFdsetFd *mon_fdset_fd_dup; | |
2522 | ||
47451466 | 2523 | qemu_mutex_lock(&mon_fdsets_lock); |
adb696f3 CB |
2524 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { |
2525 | if (mon_fdset->id != fdset_id) { | |
2526 | continue; | |
2527 | } | |
2528 | QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) { | |
2529 | if (mon_fdset_fd_dup->fd == dup_fd) { | |
47451466 | 2530 | goto err; |
adb696f3 CB |
2531 | } |
2532 | } | |
2533 | mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup)); | |
2534 | mon_fdset_fd_dup->fd = dup_fd; | |
2535 | QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next); | |
47451466 | 2536 | qemu_mutex_unlock(&mon_fdsets_lock); |
adb696f3 CB |
2537 | return 0; |
2538 | } | |
47451466 PX |
2539 | |
2540 | err: | |
2541 | qemu_mutex_unlock(&mon_fdsets_lock); | |
adb696f3 CB |
2542 | return -1; |
2543 | } | |
2544 | ||
2545 | static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove) | |
2546 | { | |
2547 | MonFdset *mon_fdset; | |
2548 | MonFdsetFd *mon_fdset_fd_dup; | |
2549 | ||
47451466 | 2550 | qemu_mutex_lock(&mon_fdsets_lock); |
adb696f3 CB |
2551 | QLIST_FOREACH(mon_fdset, &mon_fdsets, next) { |
2552 | QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) { | |
2553 | if (mon_fdset_fd_dup->fd == dup_fd) { | |
2554 | if (remove) { | |
2555 | QLIST_REMOVE(mon_fdset_fd_dup, next); | |
2556 | if (QLIST_EMPTY(&mon_fdset->dup_fds)) { | |
2557 | monitor_fdset_cleanup(mon_fdset); | |
2558 | } | |
47451466 | 2559 | goto err; |
b3dd1b8c | 2560 | } else { |
47451466 | 2561 | qemu_mutex_unlock(&mon_fdsets_lock); |
b3dd1b8c | 2562 | return mon_fdset->id; |
adb696f3 | 2563 | } |
adb696f3 CB |
2564 | } |
2565 | } | |
2566 | } | |
47451466 PX |
2567 | |
2568 | err: | |
2569 | qemu_mutex_unlock(&mon_fdsets_lock); | |
adb696f3 CB |
2570 | return -1; |
2571 | } | |
2572 | ||
2573 | int monitor_fdset_dup_fd_find(int dup_fd) | |
2574 | { | |
2575 | return monitor_fdset_dup_fd_find_remove(dup_fd, false); | |
2576 | } | |
2577 | ||
b3dd1b8c | 2578 | void monitor_fdset_dup_fd_remove(int dup_fd) |
adb696f3 | 2579 | { |
b3dd1b8c | 2580 | monitor_fdset_dup_fd_find_remove(dup_fd, true); |
adb696f3 CB |
2581 | } |
2582 | ||
1677f4c6 | 2583 | int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp) |
5906366e LE |
2584 | { |
2585 | int fd; | |
2586 | Error *local_err = NULL; | |
a96ed02f | 2587 | |
5906366e | 2588 | if (!qemu_isdigit(fdname[0]) && mon) { |
a9940fc4 | 2589 | fd = monitor_get_fd(mon, fdname, &local_err); |
5906366e LE |
2590 | } else { |
2591 | fd = qemu_parse_fd(fdname); | |
a96ed02f | 2592 | if (fd == -1) { |
5906366e LE |
2593 | error_setg(&local_err, "Invalid file descriptor number '%s'", |
2594 | fdname); | |
a96ed02f | 2595 | } |
5906366e LE |
2596 | } |
2597 | if (local_err) { | |
2598 | error_propagate(errp, local_err); | |
2599 | assert(fd == -1); | |
a96ed02f | 2600 | } else { |
5906366e | 2601 | assert(fd != -1); |
a96ed02f NB |
2602 | } |
2603 | ||
2604 | return fd; | |
2605 | } | |
2606 | ||
acd0a093 | 2607 | /* Please update hmp-commands.hx when adding or changing commands */ |
816f8925 | 2608 | static mon_cmd_t info_cmds[] = { |
da76ee76 PB |
2609 | #include "hmp-commands-info.h" |
2610 | { NULL, NULL, }, | |
9dc39cba FB |
2611 | }; |
2612 | ||
a13ced59 WX |
2613 | /* mon_cmds and info_cmds would be sorted at runtime */ |
2614 | static mon_cmd_t mon_cmds[] = { | |
2615 | #include "hmp-commands.h" | |
2616 | { NULL, NULL, }, | |
2617 | }; | |
2618 | ||
9307c4c1 FB |
2619 | /*******************************************************************/ |
2620 | ||
2621 | static const char *pch; | |
6ab7e546 | 2622 | static sigjmp_buf expr_env; |
9307c4c1 | 2623 | |
9307c4c1 | 2624 | |
9c3175cc SW |
2625 | static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN |
2626 | expr_error(Monitor *mon, const char *fmt, ...) | |
9dc39cba | 2627 | { |
277acfe8 FZ |
2628 | va_list ap; |
2629 | va_start(ap, fmt); | |
2630 | monitor_vprintf(mon, fmt, ap); | |
2631 | monitor_printf(mon, "\n"); | |
2632 | va_end(ap); | |
6ab7e546 | 2633 | siglongjmp(expr_env, 1); |
9307c4c1 FB |
2634 | } |
2635 | ||
09b9418c | 2636 | /* return 0 if OK, -1 if not found */ |
92a31b1f | 2637 | static int get_monitor_def(target_long *pval, const char *name) |
9307c4c1 | 2638 | { |
bf957284 | 2639 | const MonitorDef *md = target_monitor_defs(); |
854e67fe | 2640 | CPUState *cs = mon_get_cpu(); |
92a31b1f | 2641 | void *ptr; |
0a9516c2 AK |
2642 | uint64_t tmp = 0; |
2643 | int ret; | |
92a31b1f | 2644 | |
854e67fe | 2645 | if (cs == NULL || md == NULL) { |
bf957284 PB |
2646 | return -1; |
2647 | } | |
2648 | ||
2649 | for(; md->name != NULL; md++) { | |
9307c4c1 FB |
2650 | if (compare_cmd(name, md->name)) { |
2651 | if (md->get_value) { | |
e95c8d51 | 2652 | *pval = md->get_value(md, md->offset); |
9307c4c1 | 2653 | } else { |
5bcda5f7 | 2654 | CPUArchState *env = mon_get_cpu_env(); |
6a00d601 | 2655 | ptr = (uint8_t *)env + md->offset; |
92a31b1f FB |
2656 | switch(md->type) { |
2657 | case MD_I32: | |
2658 | *pval = *(int32_t *)ptr; | |
2659 | break; | |
2660 | case MD_TLONG: | |
2661 | *pval = *(target_long *)ptr; | |
2662 | break; | |
2663 | default: | |
2664 | *pval = 0; | |
2665 | break; | |
2666 | } | |
9307c4c1 FB |
2667 | } |
2668 | return 0; | |
2669 | } | |
2670 | } | |
0a9516c2 | 2671 | |
854e67fe | 2672 | ret = target_get_monitor_def(cs, name, &tmp); |
0a9516c2 AK |
2673 | if (!ret) { |
2674 | *pval = (target_long) tmp; | |
2675 | } | |
2676 | ||
2677 | return ret; | |
9307c4c1 FB |
2678 | } |
2679 | ||
2680 | static void next(void) | |
2681 | { | |
660f11be | 2682 | if (*pch != '\0') { |
9307c4c1 | 2683 | pch++; |
cd390083 | 2684 | while (qemu_isspace(*pch)) |
9307c4c1 FB |
2685 | pch++; |
2686 | } | |
2687 | } | |
2688 | ||
376253ec | 2689 | static int64_t expr_sum(Monitor *mon); |
9307c4c1 | 2690 | |
376253ec | 2691 | static int64_t expr_unary(Monitor *mon) |
9307c4c1 | 2692 | { |
c2efc95d | 2693 | int64_t n; |
9307c4c1 | 2694 | char *p; |
6a00d601 | 2695 | int ret; |
9307c4c1 FB |
2696 | |
2697 | switch(*pch) { | |
2698 | case '+': | |
2699 | next(); | |
376253ec | 2700 | n = expr_unary(mon); |
9307c4c1 FB |
2701 | break; |
2702 | case '-': | |
2703 | next(); | |
376253ec | 2704 | n = -expr_unary(mon); |
9307c4c1 FB |
2705 | break; |
2706 | case '~': | |
2707 | next(); | |
376253ec | 2708 | n = ~expr_unary(mon); |
9307c4c1 FB |
2709 | break; |
2710 | case '(': | |
2711 | next(); | |
376253ec | 2712 | n = expr_sum(mon); |
9307c4c1 | 2713 | if (*pch != ')') { |
376253ec | 2714 | expr_error(mon, "')' expected"); |
9307c4c1 FB |
2715 | } |
2716 | next(); | |
2717 | break; | |
81d0912d FB |
2718 | case '\'': |
2719 | pch++; | |
2720 | if (*pch == '\0') | |
376253ec | 2721 | expr_error(mon, "character constant expected"); |
81d0912d FB |
2722 | n = *pch; |
2723 | pch++; | |
2724 | if (*pch != '\'') | |
376253ec | 2725 | expr_error(mon, "missing terminating \' character"); |
81d0912d FB |
2726 | next(); |
2727 | break; | |
9307c4c1 FB |
2728 | case '$': |
2729 | { | |
2730 | char buf[128], *q; | |
69b34976 | 2731 | target_long reg=0; |
3b46e624 | 2732 | |
9307c4c1 FB |
2733 | pch++; |
2734 | q = buf; | |
2735 | while ((*pch >= 'a' && *pch <= 'z') || | |
2736 | (*pch >= 'A' && *pch <= 'Z') || | |
2737 | (*pch >= '0' && *pch <= '9') || | |
57206fd4 | 2738 | *pch == '_' || *pch == '.') { |
9307c4c1 FB |
2739 | if ((q - buf) < sizeof(buf) - 1) |
2740 | *q++ = *pch; | |
2741 | pch++; | |
2742 | } | |
cd390083 | 2743 | while (qemu_isspace(*pch)) |
9307c4c1 FB |
2744 | pch++; |
2745 | *q = 0; | |
7743e588 | 2746 | ret = get_monitor_def(®, buf); |
09b9418c | 2747 | if (ret < 0) |
376253ec | 2748 | expr_error(mon, "unknown register"); |
7743e588 | 2749 | n = reg; |
9307c4c1 FB |
2750 | } |
2751 | break; | |
2752 | case '\0': | |
376253ec | 2753 | expr_error(mon, "unexpected end of expression"); |
9307c4c1 FB |
2754 | n = 0; |
2755 | break; | |
2756 | default: | |
6b0e33be | 2757 | errno = 0; |
4f4fbf77 | 2758 | n = strtoull(pch, &p, 0); |
6b0e33be LC |
2759 | if (errno == ERANGE) { |
2760 | expr_error(mon, "number too large"); | |
2761 | } | |
9307c4c1 | 2762 | if (pch == p) { |
277acfe8 | 2763 | expr_error(mon, "invalid char '%c' in expression", *p); |
9307c4c1 FB |
2764 | } |
2765 | pch = p; | |
cd390083 | 2766 | while (qemu_isspace(*pch)) |
9307c4c1 FB |
2767 | pch++; |
2768 | break; | |
2769 | } | |
2770 | return n; | |
2771 | } | |
2772 | ||
2773 | ||
376253ec | 2774 | static int64_t expr_prod(Monitor *mon) |
9307c4c1 | 2775 | { |
c2efc95d | 2776 | int64_t val, val2; |
92a31b1f | 2777 | int op; |
3b46e624 | 2778 | |
376253ec | 2779 | val = expr_unary(mon); |
9307c4c1 FB |
2780 | for(;;) { |
2781 | op = *pch; | |
2782 | if (op != '*' && op != '/' && op != '%') | |
2783 | break; | |
2784 | next(); | |
376253ec | 2785 | val2 = expr_unary(mon); |
9307c4c1 FB |
2786 | switch(op) { |
2787 | default: | |
2788 | case '*': | |
2789 | val *= val2; | |
2790 | break; | |
2791 | case '/': | |
2792 | case '%': | |
5fafdf24 | 2793 | if (val2 == 0) |
376253ec | 2794 | expr_error(mon, "division by zero"); |
9307c4c1 FB |
2795 | if (op == '/') |
2796 | val /= val2; | |
2797 | else | |
2798 | val %= val2; | |
2799 | break; | |
2800 | } | |
2801 | } | |
2802 | return val; | |
2803 | } | |
2804 | ||
376253ec | 2805 | static int64_t expr_logic(Monitor *mon) |
9307c4c1 | 2806 | { |
c2efc95d | 2807 | int64_t val, val2; |
92a31b1f | 2808 | int op; |
9307c4c1 | 2809 | |
376253ec | 2810 | val = expr_prod(mon); |
9307c4c1 FB |
2811 | for(;;) { |
2812 | op = *pch; | |
2813 | if (op != '&' && op != '|' && op != '^') | |
2814 | break; | |
2815 | next(); | |
376253ec | 2816 | val2 = expr_prod(mon); |
9307c4c1 FB |
2817 | switch(op) { |
2818 | default: | |
2819 | case '&': | |
2820 | val &= val2; | |
2821 | break; | |
2822 | case '|': | |
2823 | val |= val2; | |
2824 | break; | |
2825 | case '^': | |
2826 | val ^= val2; | |
2827 | break; | |
2828 | } | |
2829 | } | |
2830 | return val; | |
2831 | } | |
2832 | ||
376253ec | 2833 | static int64_t expr_sum(Monitor *mon) |
9307c4c1 | 2834 | { |
c2efc95d | 2835 | int64_t val, val2; |
92a31b1f | 2836 | int op; |
9307c4c1 | 2837 | |
376253ec | 2838 | val = expr_logic(mon); |
9307c4c1 FB |
2839 | for(;;) { |
2840 | op = *pch; | |
2841 | if (op != '+' && op != '-') | |
2842 | break; | |
2843 | next(); | |
376253ec | 2844 | val2 = expr_logic(mon); |
9307c4c1 FB |
2845 | if (op == '+') |
2846 | val += val2; | |
2847 | else | |
2848 | val -= val2; | |
2849 | } | |
2850 | return val; | |
2851 | } | |
2852 | ||
376253ec | 2853 | static int get_expr(Monitor *mon, int64_t *pval, const char **pp) |
9307c4c1 FB |
2854 | { |
2855 | pch = *pp; | |
6ab7e546 | 2856 | if (sigsetjmp(expr_env, 0)) { |
9307c4c1 FB |
2857 | *pp = pch; |
2858 | return -1; | |
2859 | } | |
cd390083 | 2860 | while (qemu_isspace(*pch)) |
9307c4c1 | 2861 | pch++; |
376253ec | 2862 | *pval = expr_sum(mon); |
9307c4c1 FB |
2863 | *pp = pch; |
2864 | return 0; | |
2865 | } | |
2866 | ||
3350a4dd MA |
2867 | static int get_double(Monitor *mon, double *pval, const char **pp) |
2868 | { | |
2869 | const char *p = *pp; | |
2870 | char *tailp; | |
2871 | double d; | |
2872 | ||
2873 | d = strtod(p, &tailp); | |
2874 | if (tailp == p) { | |
2875 | monitor_printf(mon, "Number expected\n"); | |
2876 | return -1; | |
2877 | } | |
2878 | if (d != d || d - d != 0) { | |
2879 | /* NaN or infinity */ | |
2880 | monitor_printf(mon, "Bad number\n"); | |
2881 | return -1; | |
2882 | } | |
2883 | *pval = d; | |
2884 | *pp = tailp; | |
2885 | return 0; | |
2886 | } | |
2887 | ||
4590fd80 LC |
2888 | /* |
2889 | * Store the command-name in cmdname, and return a pointer to | |
2890 | * the remaining of the command string. | |
2891 | */ | |
2892 | static const char *get_command_name(const char *cmdline, | |
2893 | char *cmdname, size_t nlen) | |
2894 | { | |
2895 | size_t len; | |
2896 | const char *p, *pstart; | |
2897 | ||
2898 | p = cmdline; | |
2899 | while (qemu_isspace(*p)) | |
2900 | p++; | |
2901 | if (*p == '\0') | |
2902 | return NULL; | |
2903 | pstart = p; | |
2904 | while (*p != '\0' && *p != '/' && !qemu_isspace(*p)) | |
2905 | p++; | |
2906 | len = p - pstart; | |
2907 | if (len > nlen - 1) | |
2908 | len = nlen - 1; | |
2909 | memcpy(cmdname, pstart, len); | |
2910 | cmdname[len] = '\0'; | |
2911 | return p; | |
2912 | } | |
2913 | ||
4d76d2ba LC |
2914 | /** |
2915 | * Read key of 'type' into 'key' and return the current | |
2916 | * 'type' pointer. | |
2917 | */ | |
2918 | static char *key_get_info(const char *type, char **key) | |
2919 | { | |
2920 | size_t len; | |
2921 | char *p, *str; | |
2922 | ||
2923 | if (*type == ',') | |
2924 | type++; | |
2925 | ||
2926 | p = strchr(type, ':'); | |
2927 | if (!p) { | |
2928 | *key = NULL; | |
2929 | return NULL; | |
2930 | } | |
2931 | len = p - type; | |
2932 | ||
7267c094 | 2933 | str = g_malloc(len + 1); |
4d76d2ba LC |
2934 | memcpy(str, type, len); |
2935 | str[len] = '\0'; | |
2936 | ||
2937 | *key = str; | |
2938 | return ++p; | |
2939 | } | |
2940 | ||
9307c4c1 FB |
2941 | static int default_fmt_format = 'x'; |
2942 | static int default_fmt_size = 4; | |
2943 | ||
fbc3d96c LS |
2944 | static int is_valid_option(const char *c, const char *typestr) |
2945 | { | |
2946 | char option[3]; | |
2947 | ||
2948 | option[0] = '-'; | |
2949 | option[1] = *c; | |
2950 | option[2] = '\0'; | |
2951 | ||
2952 | typestr = strstr(typestr, option); | |
2953 | return (typestr != NULL); | |
2954 | } | |
2955 | ||
945c5ac8 LC |
2956 | static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table, |
2957 | const char *cmdname) | |
7fd669a1 LC |
2958 | { |
2959 | const mon_cmd_t *cmd; | |
2960 | ||
945c5ac8 | 2961 | for (cmd = disp_table; cmd->name != NULL; cmd++) { |
7fd669a1 LC |
2962 | if (compare_cmd(cmdname, cmd->name)) { |
2963 | return cmd; | |
2964 | } | |
2965 | } | |
2966 | ||
2967 | return NULL; | |
2968 | } | |
2969 | ||
5f3d335f | 2970 | /* |
ae50212f BD |
2971 | * Parse command name from @cmdp according to command table @table. |
2972 | * If blank, return NULL. | |
2973 | * Else, if no valid command can be found, report to @mon, and return | |
2974 | * NULL. | |
2975 | * Else, change @cmdp to point right behind the name, and return its | |
2976 | * command table entry. | |
2977 | * Do not assume the return value points into @table! It doesn't when | |
2978 | * the command is found in a sub-command table. | |
5f3d335f | 2979 | */ |
c227f099 | 2980 | static const mon_cmd_t *monitor_parse_command(Monitor *mon, |
250b8197 | 2981 | const char *cmdp_start, |
ae50212f BD |
2982 | const char **cmdp, |
2983 | mon_cmd_t *table) | |
9307c4c1 | 2984 | { |
ae50212f | 2985 | const char *p; |
c227f099 | 2986 | const mon_cmd_t *cmd; |
9307c4c1 | 2987 | char cmdname[256]; |
9dc39cba | 2988 | |
9307c4c1 | 2989 | /* extract the command name */ |
ae50212f | 2990 | p = get_command_name(*cmdp, cmdname, sizeof(cmdname)); |
4590fd80 | 2991 | if (!p) |
55f81d96 | 2992 | return NULL; |
3b46e624 | 2993 | |
5f3d335f | 2994 | cmd = search_dispatch_table(table, cmdname); |
7fd669a1 | 2995 | if (!cmd) { |
5f3d335f | 2996 | monitor_printf(mon, "unknown command: '%.*s'\n", |
250b8197 | 2997 | (int)(p - cmdp_start), cmdp_start); |
55f81d96 | 2998 | return NULL; |
9307c4c1 | 2999 | } |
c3120f71 DDAG |
3000 | if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) { |
3001 | monitor_printf(mon, "Command '%.*s' not available with -preconfig " | |
3002 | "until after exit_preconfig.\n", | |
3003 | (int)(p - cmdp_start), cmdp_start); | |
3004 | return NULL; | |
3005 | } | |
9307c4c1 | 3006 | |
5f3d335f WX |
3007 | /* filter out following useless space */ |
3008 | while (qemu_isspace(*p)) { | |
3009 | p++; | |
3010 | } | |
ae50212f BD |
3011 | |
3012 | *cmdp = p; | |
5f3d335f | 3013 | /* search sub command */ |
ae50212f | 3014 | if (cmd->sub_table != NULL && *p != '\0') { |
250b8197 | 3015 | return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table); |
5f3d335f WX |
3016 | } |
3017 | ||
ae50212f BD |
3018 | return cmd; |
3019 | } | |
3020 | ||
3021 | /* | |
3022 | * Parse arguments for @cmd. | |
3023 | * If it can't be parsed, report to @mon, and return NULL. | |
3024 | * Else, insert command arguments into a QDict, and return it. | |
3025 | * Note: On success, caller has to free the QDict structure. | |
3026 | */ | |
3027 | ||
3028 | static QDict *monitor_parse_arguments(Monitor *mon, | |
3029 | const char **endp, | |
3030 | const mon_cmd_t *cmd) | |
3031 | { | |
3032 | const char *typestr; | |
3033 | char *key; | |
3034 | int c; | |
3035 | const char *p = *endp; | |
3036 | char buf[1024]; | |
3037 | QDict *qdict = qdict_new(); | |
3038 | ||
9307c4c1 FB |
3039 | /* parse the parameters */ |
3040 | typestr = cmd->args_type; | |
9dc39cba | 3041 | for(;;) { |
4d76d2ba LC |
3042 | typestr = key_get_info(typestr, &key); |
3043 | if (!typestr) | |
9dc39cba | 3044 | break; |
4d76d2ba | 3045 | c = *typestr; |
9307c4c1 FB |
3046 | typestr++; |
3047 | switch(c) { | |
3048 | case 'F': | |
81d0912d | 3049 | case 'B': |
9307c4c1 FB |
3050 | case 's': |
3051 | { | |
3052 | int ret; | |
3b46e624 | 3053 | |
cd390083 | 3054 | while (qemu_isspace(*p)) |
9307c4c1 FB |
3055 | p++; |
3056 | if (*typestr == '?') { | |
3057 | typestr++; | |
3058 | if (*p == '\0') { | |
3059 | /* no optional string: NULL argument */ | |
53773581 | 3060 | break; |
9307c4c1 FB |
3061 | } |
3062 | } | |
3063 | ret = get_str(buf, sizeof(buf), &p); | |
3064 | if (ret < 0) { | |
81d0912d FB |
3065 | switch(c) { |
3066 | case 'F': | |
376253ec | 3067 | monitor_printf(mon, "%s: filename expected\n", |
ae50212f | 3068 | cmd->name); |
81d0912d FB |
3069 | break; |
3070 | case 'B': | |
376253ec | 3071 | monitor_printf(mon, "%s: block device name expected\n", |
ae50212f | 3072 | cmd->name); |
81d0912d FB |
3073 | break; |
3074 | default: | |
ae50212f | 3075 | monitor_printf(mon, "%s: string expected\n", cmd->name); |
81d0912d FB |
3076 | break; |
3077 | } | |
9307c4c1 FB |
3078 | goto fail; |
3079 | } | |
46f5ac20 | 3080 | qdict_put_str(qdict, key, buf); |
9307c4c1 | 3081 | } |
9dc39cba | 3082 | break; |
361127df MA |
3083 | case 'O': |
3084 | { | |
3085 | QemuOptsList *opts_list; | |
3086 | QemuOpts *opts; | |
3087 | ||
3088 | opts_list = qemu_find_opts(key); | |
3089 | if (!opts_list || opts_list->desc->name) { | |
3090 | goto bad_type; | |
3091 | } | |
3092 | while (qemu_isspace(*p)) { | |
3093 | p++; | |
3094 | } | |
3095 | if (!*p) | |
3096 | break; | |
3097 | if (get_str(buf, sizeof(buf), &p) < 0) { | |
3098 | goto fail; | |
3099 | } | |
70b94331 | 3100 | opts = qemu_opts_parse_noisily(opts_list, buf, true); |
361127df MA |
3101 | if (!opts) { |
3102 | goto fail; | |
3103 | } | |
3104 | qemu_opts_to_qdict(opts, qdict); | |
3105 | qemu_opts_del(opts); | |
3106 | } | |
3107 | break; | |
9307c4c1 FB |
3108 | case '/': |
3109 | { | |
3110 | int count, format, size; | |
3b46e624 | 3111 | |
cd390083 | 3112 | while (qemu_isspace(*p)) |
9307c4c1 FB |
3113 | p++; |
3114 | if (*p == '/') { | |
3115 | /* format found */ | |
3116 | p++; | |
3117 | count = 1; | |
cd390083 | 3118 | if (qemu_isdigit(*p)) { |
9307c4c1 | 3119 | count = 0; |
cd390083 | 3120 | while (qemu_isdigit(*p)) { |
9307c4c1 FB |
3121 | count = count * 10 + (*p - '0'); |
3122 | p++; | |
3123 | } | |
3124 | } | |
3125 | size = -1; | |
3126 | format = -1; | |
3127 | for(;;) { | |
3128 | switch(*p) { | |
3129 | case 'o': | |
3130 | case 'd': | |
3131 | case 'u': | |
3132 | case 'x': | |
3133 | case 'i': | |
3134 | case 'c': | |
3135 | format = *p++; | |
3136 | break; | |
3137 | case 'b': | |
3138 | size = 1; | |
3139 | p++; | |
3140 | break; | |
3141 | case 'h': | |
3142 | size = 2; | |
3143 | p++; | |
3144 | break; | |
3145 | case 'w': | |
3146 | size = 4; | |
3147 | p++; | |
3148 | break; | |
3149 | case 'g': | |
3150 | case 'L': | |
3151 | size = 8; | |
3152 | p++; | |
3153 | break; | |
3154 | default: | |
3155 | goto next; | |
3156 | } | |
3157 | } | |
3158 | next: | |
cd390083 | 3159 | if (*p != '\0' && !qemu_isspace(*p)) { |
376253ec AL |
3160 | monitor_printf(mon, "invalid char in format: '%c'\n", |
3161 | *p); | |
9307c4c1 FB |
3162 | goto fail; |
3163 | } | |
9307c4c1 FB |
3164 | if (format < 0) |
3165 | format = default_fmt_format; | |
4c27ba27 FB |
3166 | if (format != 'i') { |
3167 | /* for 'i', not specifying a size gives -1 as size */ | |
3168 | if (size < 0) | |
3169 | size = default_fmt_size; | |
e90f009b | 3170 | default_fmt_size = size; |
4c27ba27 | 3171 | } |
9307c4c1 FB |
3172 | default_fmt_format = format; |
3173 | } else { | |
3174 | count = 1; | |
3175 | format = default_fmt_format; | |
4c27ba27 FB |
3176 | if (format != 'i') { |
3177 | size = default_fmt_size; | |
3178 | } else { | |
3179 | size = -1; | |
3180 | } | |
9307c4c1 | 3181 | } |
46f5ac20 EB |
3182 | qdict_put_int(qdict, "count", count); |
3183 | qdict_put_int(qdict, "format", format); | |
3184 | qdict_put_int(qdict, "size", size); | |
9307c4c1 | 3185 | } |
9dc39cba | 3186 | break; |
9307c4c1 | 3187 | case 'i': |
92a31b1f | 3188 | case 'l': |
b6e098d7 | 3189 | case 'M': |
9307c4c1 | 3190 | { |
c2efc95d | 3191 | int64_t val; |
7743e588 | 3192 | |
cd390083 | 3193 | while (qemu_isspace(*p)) |
9307c4c1 | 3194 | p++; |
3440557b | 3195 | if (*typestr == '?' || *typestr == '.') { |
3440557b | 3196 | if (*typestr == '?') { |
53773581 LC |
3197 | if (*p == '\0') { |
3198 | typestr++; | |
3199 | break; | |
3200 | } | |
3440557b FB |
3201 | } else { |
3202 | if (*p == '.') { | |
3203 | p++; | |
cd390083 | 3204 | while (qemu_isspace(*p)) |
3440557b | 3205 | p++; |
3440557b | 3206 | } else { |
53773581 LC |
3207 | typestr++; |
3208 | break; | |
3440557b FB |
3209 | } |
3210 | } | |
13224a87 | 3211 | typestr++; |
9307c4c1 | 3212 | } |
376253ec | 3213 | if (get_expr(mon, &val, &p)) |
9307c4c1 | 3214 | goto fail; |
675ebef9 LC |
3215 | /* Check if 'i' is greater than 32-bit */ |
3216 | if ((c == 'i') && ((val >> 32) & 0xffffffff)) { | |
ae50212f | 3217 | monitor_printf(mon, "\'%s\' has failed: ", cmd->name); |
675ebef9 LC |
3218 | monitor_printf(mon, "integer is for 32-bit values\n"); |
3219 | goto fail; | |
b6e098d7 | 3220 | } else if (c == 'M') { |
91162849 LC |
3221 | if (val < 0) { |
3222 | monitor_printf(mon, "enter a positive value\n"); | |
3223 | goto fail; | |
3224 | } | |
8ec338ac | 3225 | val *= MiB; |
675ebef9 | 3226 | } |
46f5ac20 | 3227 | qdict_put_int(qdict, key, val); |
9307c4c1 FB |
3228 | } |
3229 | break; | |
dbc0c67f JS |
3230 | case 'o': |
3231 | { | |
f17fd4fd | 3232 | int ret; |
f46bfdbf | 3233 | uint64_t val; |
af02f4c5 | 3234 | const char *end; |
dbc0c67f JS |
3235 | |
3236 | while (qemu_isspace(*p)) { | |
3237 | p++; | |
3238 | } | |
3239 | if (*typestr == '?') { | |
3240 | typestr++; | |
3241 | if (*p == '\0') { | |
3242 | break; | |
3243 | } | |
3244 | } | |
f17fd4fd | 3245 | ret = qemu_strtosz_MiB(p, &end, &val); |
f46bfdbf | 3246 | if (ret < 0 || val > INT64_MAX) { |
dbc0c67f JS |
3247 | monitor_printf(mon, "invalid size\n"); |
3248 | goto fail; | |
3249 | } | |
46f5ac20 | 3250 | qdict_put_int(qdict, key, val); |
dbc0c67f JS |
3251 | p = end; |
3252 | } | |
3253 | break; | |
fccfb11e | 3254 | case 'T': |
3350a4dd MA |
3255 | { |
3256 | double val; | |
3257 | ||
3258 | while (qemu_isspace(*p)) | |
3259 | p++; | |
3260 | if (*typestr == '?') { | |
3261 | typestr++; | |
3262 | if (*p == '\0') { | |
3263 | break; | |
3264 | } | |
3265 | } | |
3266 | if (get_double(mon, &val, &p) < 0) { | |
3267 | goto fail; | |
3268 | } | |
07de3e60 | 3269 | if (p[0] && p[1] == 's') { |
fccfb11e MA |
3270 | switch (*p) { |
3271 | case 'm': | |
3272 | val /= 1e3; p += 2; break; | |
3273 | case 'u': | |
3274 | val /= 1e6; p += 2; break; | |
3275 | case 'n': | |
3276 | val /= 1e9; p += 2; break; | |
3277 | } | |
3278 | } | |
3350a4dd MA |
3279 | if (*p && !qemu_isspace(*p)) { |
3280 | monitor_printf(mon, "Unknown unit suffix\n"); | |
3281 | goto fail; | |
3282 | } | |
01b2ffce | 3283 | qdict_put(qdict, key, qnum_from_double(val)); |
3350a4dd MA |
3284 | } |
3285 | break; | |
942cd1f2 MA |
3286 | case 'b': |
3287 | { | |
3288 | const char *beg; | |
fc48ffc3 | 3289 | bool val; |
942cd1f2 MA |
3290 | |
3291 | while (qemu_isspace(*p)) { | |
3292 | p++; | |
3293 | } | |
3294 | beg = p; | |
3295 | while (qemu_isgraph(*p)) { | |
3296 | p++; | |
3297 | } | |
3298 | if (p - beg == 2 && !memcmp(beg, "on", p - beg)) { | |
fc48ffc3 | 3299 | val = true; |
942cd1f2 | 3300 | } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) { |
fc48ffc3 | 3301 | val = false; |
942cd1f2 MA |
3302 | } else { |
3303 | monitor_printf(mon, "Expected 'on' or 'off'\n"); | |
3304 | goto fail; | |
3305 | } | |
46f5ac20 | 3306 | qdict_put_bool(qdict, key, val); |
942cd1f2 MA |
3307 | } |
3308 | break; | |
9307c4c1 FB |
3309 | case '-': |
3310 | { | |
fbc3d96c | 3311 | const char *tmp = p; |
eb159d13 | 3312 | int skip_key = 0; |
9307c4c1 | 3313 | /* option */ |
3b46e624 | 3314 | |
9307c4c1 FB |
3315 | c = *typestr++; |
3316 | if (c == '\0') | |
3317 | goto bad_type; | |
cd390083 | 3318 | while (qemu_isspace(*p)) |
9307c4c1 | 3319 | p++; |
9307c4c1 FB |
3320 | if (*p == '-') { |
3321 | p++; | |
fbc3d96c LS |
3322 | if(c != *p) { |
3323 | if(!is_valid_option(p, typestr)) { | |
3324 | ||
3325 | monitor_printf(mon, "%s: unsupported option -%c\n", | |
ae50212f | 3326 | cmd->name, *p); |
fbc3d96c LS |
3327 | goto fail; |
3328 | } else { | |
3329 | skip_key = 1; | |
3330 | } | |
3331 | } | |
3332 | if(skip_key) { | |
3333 | p = tmp; | |
3334 | } else { | |
eb159d13 | 3335 | /* has option */ |
fbc3d96c | 3336 | p++; |
46f5ac20 | 3337 | qdict_put_bool(qdict, key, true); |
9307c4c1 | 3338 | } |
9307c4c1 | 3339 | } |
9307c4c1 FB |
3340 | } |
3341 | break; | |
129be006 WX |
3342 | case 'S': |
3343 | { | |
3344 | /* package all remaining string */ | |
3345 | int len; | |
3346 | ||
3347 | while (qemu_isspace(*p)) { | |
3348 | p++; | |
3349 | } | |
3350 | if (*typestr == '?') { | |
3351 | typestr++; | |
3352 | if (*p == '\0') { | |
3353 | /* no remaining string: NULL argument */ | |
3354 | break; | |
3355 | } | |
3356 | } | |
3357 | len = strlen(p); | |
3358 | if (len <= 0) { | |
3359 | monitor_printf(mon, "%s: string expected\n", | |
ae50212f | 3360 | cmd->name); |
e549d2aa | 3361 | goto fail; |
129be006 | 3362 | } |
46f5ac20 | 3363 | qdict_put_str(qdict, key, p); |
129be006 WX |
3364 | p += len; |
3365 | } | |
3366 | break; | |
9307c4c1 FB |
3367 | default: |
3368 | bad_type: | |
ae50212f | 3369 | monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c); |
9307c4c1 FB |
3370 | goto fail; |
3371 | } | |
7267c094 | 3372 | g_free(key); |
4d76d2ba | 3373 | key = NULL; |
9dc39cba | 3374 | } |
9307c4c1 | 3375 | /* check that all arguments were parsed */ |
cd390083 | 3376 | while (qemu_isspace(*p)) |
9307c4c1 FB |
3377 | p++; |
3378 | if (*p != '\0') { | |
376253ec | 3379 | monitor_printf(mon, "%s: extraneous characters at the end of line\n", |
ae50212f | 3380 | cmd->name); |
9307c4c1 | 3381 | goto fail; |
9dc39cba | 3382 | } |
9307c4c1 | 3383 | |
ae50212f | 3384 | return qdict; |
ac7531ec | 3385 | |
55f81d96 | 3386 | fail: |
cb3e7f08 | 3387 | qobject_unref(qdict); |
7267c094 | 3388 | g_free(key); |
55f81d96 LC |
3389 | return NULL; |
3390 | } | |
3391 | ||
7ef6cf63 | 3392 | static void handle_hmp_command(Monitor *mon, const char *cmdline) |
55f81d96 | 3393 | { |
55f81d96 | 3394 | QDict *qdict; |
c227f099 | 3395 | const mon_cmd_t *cmd; |
317c52cc | 3396 | const char *cmd_start = cmdline; |
55f81d96 | 3397 | |
79cad8b4 SH |
3398 | trace_handle_hmp_command(mon, cmdline); |
3399 | ||
250b8197 | 3400 | cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table); |
ae50212f BD |
3401 | if (!cmd) { |
3402 | return; | |
3403 | } | |
55f81d96 | 3404 | |
ae50212f BD |
3405 | qdict = monitor_parse_arguments(mon, &cmdline, cmd); |
3406 | if (!qdict) { | |
317c52cc CW |
3407 | while (cmdline > cmd_start && qemu_isspace(cmdline[-1])) { |
3408 | cmdline--; | |
3409 | } | |
3410 | monitor_printf(mon, "Try \"help %.*s\" for more information\n", | |
3411 | (int)(cmdline - cmd_start), cmd_start); | |
ae50212f | 3412 | return; |
55f81d96 LC |
3413 | } |
3414 | ||
2b9e3576 | 3415 | cmd->cmd(mon, qdict); |
cb3e7f08 | 3416 | qobject_unref(qdict); |
9dc39cba FB |
3417 | } |
3418 | ||
cd5c6bba | 3419 | static void cmd_completion(Monitor *mon, const char *name, const char *list) |
81d0912d FB |
3420 | { |
3421 | const char *p, *pstart; | |
3422 | char cmd[128]; | |
3423 | int len; | |
3424 | ||
3425 | p = list; | |
3426 | for(;;) { | |
3427 | pstart = p; | |
5c99fa37 | 3428 | p = qemu_strchrnul(p, '|'); |
81d0912d FB |
3429 | len = p - pstart; |
3430 | if (len > sizeof(cmd) - 2) | |
3431 | len = sizeof(cmd) - 2; | |
3432 | memcpy(cmd, pstart, len); | |
3433 | cmd[len] = '\0'; | |
3434 | if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) { | |
cd5c6bba | 3435 | readline_add_completion(mon->rs, cmd); |
81d0912d FB |
3436 | } |
3437 | if (*p == '\0') | |
3438 | break; | |
3439 | p++; | |
3440 | } | |
3441 | } | |
3442 | ||
cb8f68b1 | 3443 | static void file_completion(Monitor *mon, const char *input) |
81d0912d FB |
3444 | { |
3445 | DIR *ffs; | |
3446 | struct dirent *d; | |
3447 | char path[1024]; | |
3448 | char file[1024], file_prefix[1024]; | |
3449 | int input_path_len; | |
3450 | const char *p; | |
3451 | ||
5fafdf24 | 3452 | p = strrchr(input, '/'); |
81d0912d FB |
3453 | if (!p) { |
3454 | input_path_len = 0; | |
3455 | pstrcpy(file_prefix, sizeof(file_prefix), input); | |
363a37d5 | 3456 | pstrcpy(path, sizeof(path), "."); |
81d0912d FB |
3457 | } else { |
3458 | input_path_len = p - input + 1; | |
3459 | memcpy(path, input, input_path_len); | |
3460 | if (input_path_len > sizeof(path) - 1) | |
3461 | input_path_len = sizeof(path) - 1; | |
3462 | path[input_path_len] = '\0'; | |
3463 | pstrcpy(file_prefix, sizeof(file_prefix), p + 1); | |
3464 | } | |
19f2db5c | 3465 | |
81d0912d FB |
3466 | ffs = opendir(path); |
3467 | if (!ffs) | |
3468 | return; | |
3469 | for(;;) { | |
3470 | struct stat sb; | |
3471 | d = readdir(ffs); | |
3472 | if (!d) | |
3473 | break; | |
46c7fc18 KK |
3474 | |
3475 | if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) { | |
3476 | continue; | |
3477 | } | |
3478 | ||
81d0912d FB |
3479 | if (strstart(d->d_name, file_prefix, NULL)) { |
3480 | memcpy(file, input, input_path_len); | |
363a37d5 BS |
3481 | if (input_path_len < sizeof(file)) |
3482 | pstrcpy(file + input_path_len, sizeof(file) - input_path_len, | |
3483 | d->d_name); | |
81d0912d FB |
3484 | /* stat the file to find out if it's a directory. |
3485 | * In that case add a slash to speed up typing long paths | |
3486 | */ | |
c951d9a6 | 3487 | if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) { |
363a37d5 | 3488 | pstrcat(file, sizeof(file), "/"); |
c951d9a6 | 3489 | } |
cb8f68b1 | 3490 | readline_add_completion(mon->rs, file); |
81d0912d FB |
3491 | } |
3492 | } | |
3493 | closedir(ffs); | |
3494 | } | |
3495 | ||
4d76d2ba LC |
3496 | static const char *next_arg_type(const char *typestr) |
3497 | { | |
3498 | const char *p = strchr(typestr, ':'); | |
3499 | return (p != NULL ? ++p : typestr); | |
3500 | } | |
3501 | ||
40d19394 HB |
3502 | static void add_completion_option(ReadLineState *rs, const char *str, |
3503 | const char *option) | |
3504 | { | |
3505 | if (!str || !option) { | |
3506 | return; | |
3507 | } | |
3508 | if (!strncmp(option, str, strlen(str))) { | |
3509 | readline_add_completion(rs, option); | |
3510 | } | |
3511 | } | |
3512 | ||
13e315da HB |
3513 | void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str) |
3514 | { | |
3515 | size_t len; | |
3516 | ChardevBackendInfoList *list, *start; | |
3517 | ||
3518 | if (nb_args != 2) { | |
3519 | return; | |
3520 | } | |
3521 | len = strlen(str); | |
3522 | readline_set_completion_index(rs, len); | |
3523 | ||
3524 | start = list = qmp_query_chardev_backends(NULL); | |
3525 | while (list) { | |
3526 | const char *chr_name = list->value->name; | |
3527 | ||
3528 | if (!strncmp(chr_name, str, len)) { | |
3529 | readline_add_completion(rs, chr_name); | |
3530 | } | |
3531 | list = list->next; | |
3532 | } | |
3533 | qapi_free_ChardevBackendInfoList(start); | |
3534 | } | |
3535 | ||
b162b49a HB |
3536 | void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str) |
3537 | { | |
3538 | size_t len; | |
3539 | int i; | |
3540 | ||
3541 | if (nb_args != 2) { | |
3542 | return; | |
3543 | } | |
3544 | len = strlen(str); | |
3545 | readline_set_completion_index(rs, len); | |
1c236ba5 | 3546 | for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) { |
977c736f | 3547 | add_completion_option(rs, str, NetClientDriver_str(i)); |
b162b49a HB |
3548 | } |
3549 | } | |
3550 | ||
2da1b3ab | 3551 | void device_add_completion(ReadLineState *rs, int nb_args, const char *str) |
992d3e64 HB |
3552 | { |
3553 | GSList *list, *elt; | |
3554 | size_t len; | |
3555 | ||
2da1b3ab HB |
3556 | if (nb_args != 2) { |
3557 | return; | |
3558 | } | |
3559 | ||
992d3e64 HB |
3560 | len = strlen(str); |
3561 | readline_set_completion_index(rs, len); | |
3562 | list = elt = object_class_get_list(TYPE_DEVICE, false); | |
3563 | while (elt) { | |
3564 | const char *name; | |
3565 | DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data, | |
3566 | TYPE_DEVICE); | |
3567 | name = object_class_get_name(OBJECT_CLASS(dc)); | |
2da1b3ab | 3568 | |
e90f2a8c | 3569 | if (dc->user_creatable |
2da1b3ab | 3570 | && !strncmp(name, str, len)) { |
992d3e64 HB |
3571 | readline_add_completion(rs, name); |
3572 | } | |
3573 | elt = elt->next; | |
3574 | } | |
3575 | g_slist_free(list); | |
3576 | } | |
3577 | ||
bfa40f77 | 3578 | void object_add_completion(ReadLineState *rs, int nb_args, const char *str) |
1094fd3a HB |
3579 | { |
3580 | GSList *list, *elt; | |
3581 | size_t len; | |
3582 | ||
bfa40f77 HB |
3583 | if (nb_args != 2) { |
3584 | return; | |
3585 | } | |
3586 | ||
1094fd3a HB |
3587 | len = strlen(str); |
3588 | readline_set_completion_index(rs, len); | |
3589 | list = elt = object_class_get_list(TYPE_USER_CREATABLE, false); | |
3590 | while (elt) { | |
3591 | const char *name; | |
3592 | ||
3593 | name = object_class_get_name(OBJECT_CLASS(elt->data)); | |
3594 | if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) { | |
3595 | readline_add_completion(rs, name); | |
3596 | } | |
3597 | elt = elt->next; | |
3598 | } | |
3599 | g_slist_free(list); | |
3600 | } | |
3601 | ||
6a1fa9f5 ZG |
3602 | static void peripheral_device_del_completion(ReadLineState *rs, |
3603 | const char *str, size_t len) | |
3604 | { | |
4cae4d5a MA |
3605 | Object *peripheral = container_get(qdev_get_machine(), "/peripheral"); |
3606 | GSList *list, *item; | |
6a1fa9f5 | 3607 | |
4cae4d5a MA |
3608 | list = qdev_build_hotpluggable_device_list(peripheral); |
3609 | if (!list) { | |
6a1fa9f5 ZG |
3610 | return; |
3611 | } | |
3612 | ||
6a1fa9f5 ZG |
3613 | for (item = list; item; item = g_slist_next(item)) { |
3614 | DeviceState *dev = item->data; | |
3615 | ||
3616 | if (dev->id && !strncmp(str, dev->id, len)) { | |
3617 | readline_add_completion(rs, dev->id); | |
3618 | } | |
3619 | } | |
3620 | ||
3621 | g_slist_free(list); | |
3622 | } | |
3623 | ||
6297d9a2 HB |
3624 | void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str) |
3625 | { | |
3626 | size_t len; | |
3627 | ChardevInfoList *list, *start; | |
3628 | ||
3629 | if (nb_args != 2) { | |
3630 | return; | |
3631 | } | |
3632 | len = strlen(str); | |
3633 | readline_set_completion_index(rs, len); | |
3634 | ||
3635 | start = list = qmp_query_chardev(NULL); | |
3636 | while (list) { | |
3637 | ChardevInfo *chr = list->value; | |
3638 | ||
3639 | if (!strncmp(chr->label, str, len)) { | |
3640 | readline_add_completion(rs, chr->label); | |
3641 | } | |
3642 | list = list->next; | |
3643 | } | |
3644 | qapi_free_ChardevInfoList(start); | |
3645 | } | |
3646 | ||
8e597779 HB |
3647 | static void ringbuf_completion(ReadLineState *rs, const char *str) |
3648 | { | |
3649 | size_t len; | |
3650 | ChardevInfoList *list, *start; | |
3651 | ||
3652 | len = strlen(str); | |
3653 | readline_set_completion_index(rs, len); | |
3654 | ||
3655 | start = list = qmp_query_chardev(NULL); | |
3656 | while (list) { | |
3657 | ChardevInfo *chr_info = list->value; | |
3658 | ||
3659 | if (!strncmp(chr_info->label, str, len)) { | |
0ec7b3e7 | 3660 | Chardev *chr = qemu_chr_find(chr_info->label); |
777357d7 | 3661 | if (chr && CHARDEV_IS_RINGBUF(chr)) { |
8e597779 HB |
3662 | readline_add_completion(rs, chr_info->label); |
3663 | } | |
3664 | } | |
3665 | list = list->next; | |
3666 | } | |
3667 | qapi_free_ChardevInfoList(start); | |
3668 | } | |
3669 | ||
8e597779 HB |
3670 | void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str) |
3671 | { | |
3672 | if (nb_args != 2) { | |
3673 | return; | |
3674 | } | |
3675 | ringbuf_completion(rs, str); | |
3676 | } | |
3677 | ||
2da1b3ab HB |
3678 | void device_del_completion(ReadLineState *rs, int nb_args, const char *str) |
3679 | { | |
3680 | size_t len; | |
3681 | ||
3682 | if (nb_args != 2) { | |
3683 | return; | |
3684 | } | |
3685 | ||
3686 | len = strlen(str); | |
3687 | readline_set_completion_index(rs, len); | |
6a1fa9f5 | 3688 | peripheral_device_del_completion(rs, str, len); |
2da1b3ab HB |
3689 | } |
3690 | ||
bfa40f77 | 3691 | void object_del_completion(ReadLineState *rs, int nb_args, const char *str) |
b48fa074 HB |
3692 | { |
3693 | ObjectPropertyInfoList *list, *start; | |
3694 | size_t len; | |
3695 | ||
bfa40f77 HB |
3696 | if (nb_args != 2) { |
3697 | return; | |
3698 | } | |
b48fa074 HB |
3699 | len = strlen(str); |
3700 | readline_set_completion_index(rs, len); | |
3701 | ||
3702 | start = list = qmp_qom_list("/objects", NULL); | |
3703 | while (list) { | |
3704 | ObjectPropertyInfo *info = list->value; | |
3705 | ||
3706 | if (!strncmp(info->type, "child<", 5) | |
3707 | && !strncmp(info->name, str, len)) { | |
3708 | readline_add_completion(rs, info->name); | |
3709 | } | |
3710 | list = list->next; | |
3711 | } | |
3712 | qapi_free_ObjectPropertyInfoList(start); | |
3713 | } | |
3714 | ||
29136cd8 HB |
3715 | void sendkey_completion(ReadLineState *rs, int nb_args, const char *str) |
3716 | { | |
3717 | int i; | |
3718 | char *sep; | |
3719 | size_t len; | |
3720 | ||
3721 | if (nb_args != 2) { | |
3722 | return; | |
3723 | } | |
3724 | sep = strrchr(str, '-'); | |
3725 | if (sep) { | |
3726 | str = sep + 1; | |
3727 | } | |
3728 | len = strlen(str); | |
3729 | readline_set_completion_index(rs, len); | |
7fb1cf16 | 3730 | for (i = 0; i < Q_KEY_CODE__MAX; i++) { |
977c736f MA |
3731 | if (!strncmp(str, QKeyCode_str(i), len)) { |
3732 | readline_add_completion(rs, QKeyCode_str(i)); | |
29136cd8 HB |
3733 | } |
3734 | } | |
3735 | } | |
3736 | ||
40d19394 HB |
3737 | void set_link_completion(ReadLineState *rs, int nb_args, const char *str) |
3738 | { | |
3739 | size_t len; | |
3740 | ||
3741 | len = strlen(str); | |
3742 | readline_set_completion_index(rs, len); | |
3743 | if (nb_args == 2) { | |
eaed483c | 3744 | NetClientState *ncs[MAX_QUEUE_NUM]; |
40d19394 HB |
3745 | int count, i; |
3746 | count = qemu_find_net_clients_except(NULL, ncs, | |
f394b2e2 | 3747 | NET_CLIENT_DRIVER_NONE, |
eaed483c | 3748 | MAX_QUEUE_NUM); |
bcfa4d60 | 3749 | for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) { |
40d19394 HB |
3750 | const char *name = ncs[i]->name; |
3751 | if (!strncmp(str, name, len)) { | |
3752 | readline_add_completion(rs, name); | |
3753 | } | |
3754 | } | |
3755 | } else if (nb_args == 3) { | |
3756 | add_completion_option(rs, str, "on"); | |
3757 | add_completion_option(rs, str, "off"); | |
3758 | } | |
3759 | } | |
3760 | ||
11b389f2 HB |
3761 | void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str) |
3762 | { | |
3763 | int len, count, i; | |
eaed483c | 3764 | NetClientState *ncs[MAX_QUEUE_NUM]; |
11b389f2 HB |
3765 | |
3766 | if (nb_args != 2) { | |
3767 | return; | |
3768 | } | |
3769 | ||
3770 | len = strlen(str); | |
3771 | readline_set_completion_index(rs, len); | |
f394b2e2 | 3772 | count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC, |
eaed483c | 3773 | MAX_QUEUE_NUM); |
bcfa4d60 | 3774 | for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) { |
11b389f2 HB |
3775 | QemuOpts *opts; |
3776 | const char *name = ncs[i]->name; | |
3777 | if (strncmp(str, name, len)) { | |
3778 | continue; | |
3779 | } | |
3780 | opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name); | |
3781 | if (opts) { | |
3782 | readline_add_completion(rs, name); | |
3783 | } | |
3784 | } | |
3785 | } | |
3786 | ||
bd71211d LV |
3787 | void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str) |
3788 | { | |
3789 | size_t len; | |
3790 | ||
3791 | len = strlen(str); | |
3792 | readline_set_completion_index(rs, len); | |
3793 | if (nb_args == 2) { | |
0d4e995c DB |
3794 | TraceEventIter iter; |
3795 | TraceEvent *ev; | |
3796 | char *pattern = g_strdup_printf("%s*", str); | |
3797 | trace_event_iter_init(&iter, pattern); | |
3798 | while ((ev = trace_event_iter_next(&iter)) != NULL) { | |
3799 | readline_add_completion(rs, trace_event_get_name(ev)); | |
bd71211d | 3800 | } |
0d4e995c | 3801 | g_free(pattern); |
bd71211d LV |
3802 | } |
3803 | } | |
3804 | ||
987bd270 DDAG |
3805 | void trace_event_completion(ReadLineState *rs, int nb_args, const char *str) |
3806 | { | |
3807 | size_t len; | |
3808 | ||
3809 | len = strlen(str); | |
3810 | readline_set_completion_index(rs, len); | |
3811 | if (nb_args == 2) { | |
0d4e995c DB |
3812 | TraceEventIter iter; |
3813 | TraceEvent *ev; | |
3814 | char *pattern = g_strdup_printf("%s*", str); | |
3815 | trace_event_iter_init(&iter, pattern); | |
3816 | while ((ev = trace_event_iter_next(&iter)) != NULL) { | |
3817 | readline_add_completion(rs, trace_event_get_name(ev)); | |
3818 | } | |
3819 | g_free(pattern); | |
987bd270 DDAG |
3820 | } else if (nb_args == 3) { |
3821 | add_completion_option(rs, str, "on"); | |
3822 | add_completion_option(rs, str, "off"); | |
3823 | } | |
3824 | } | |
3825 | ||
d0ece345 HB |
3826 | void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str) |
3827 | { | |
4bb08af3 HB |
3828 | int i; |
3829 | ||
d0ece345 HB |
3830 | if (nb_args != 2) { |
3831 | return; | |
3832 | } | |
3833 | readline_set_completion_index(rs, strlen(str)); | |
14d53b4f MP |
3834 | for (i = 0; i < WATCHDOG_ACTION__MAX; i++) { |
3835 | add_completion_option(rs, str, WatchdogAction_str(i)); | |
4bb08af3 | 3836 | } |
d0ece345 HB |
3837 | } |
3838 | ||
c68a0409 HB |
3839 | void migrate_set_capability_completion(ReadLineState *rs, int nb_args, |
3840 | const char *str) | |
3841 | { | |
3842 | size_t len; | |
3843 | ||
3844 | len = strlen(str); | |
3845 | readline_set_completion_index(rs, len); | |
3846 | if (nb_args == 2) { | |
3847 | int i; | |
7fb1cf16 | 3848 | for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) { |
977c736f | 3849 | const char *name = MigrationCapability_str(i); |
c68a0409 HB |
3850 | if (!strncmp(str, name, len)) { |
3851 | readline_add_completion(rs, name); | |
3852 | } | |
3853 | } | |
3854 | } else if (nb_args == 3) { | |
3855 | add_completion_option(rs, str, "on"); | |
3856 | add_completion_option(rs, str, "off"); | |
3857 | } | |
3858 | } | |
3859 | ||
50e9a629 LL |
3860 | void migrate_set_parameter_completion(ReadLineState *rs, int nb_args, |
3861 | const char *str) | |
3862 | { | |
3863 | size_t len; | |
3864 | ||
3865 | len = strlen(str); | |
3866 | readline_set_completion_index(rs, len); | |
3867 | if (nb_args == 2) { | |
3868 | int i; | |
7fb1cf16 | 3869 | for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) { |
977c736f | 3870 | const char *name = MigrationParameter_str(i); |
50e9a629 LL |
3871 | if (!strncmp(str, name, len)) { |
3872 | readline_add_completion(rs, name); | |
3873 | } | |
3874 | } | |
3875 | } | |
3876 | } | |
3877 | ||
b21631f3 HB |
3878 | static void vm_completion(ReadLineState *rs, const char *str) |
3879 | { | |
3880 | size_t len; | |
7c8eece4 | 3881 | BlockDriverState *bs; |
88be7b4b | 3882 | BdrvNextIterator it; |
b21631f3 HB |
3883 | |
3884 | len = strlen(str); | |
3885 | readline_set_completion_index(rs, len); | |
7c8eece4 | 3886 | |
88be7b4b | 3887 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
b21631f3 | 3888 | SnapshotInfoList *snapshots, *snapshot; |
6bf1faa8 DL |
3889 | AioContext *ctx = bdrv_get_aio_context(bs); |
3890 | bool ok = false; | |
b21631f3 | 3891 | |
6bf1faa8 DL |
3892 | aio_context_acquire(ctx); |
3893 | if (bdrv_can_snapshot(bs)) { | |
3894 | ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0; | |
b21631f3 | 3895 | } |
6bf1faa8 DL |
3896 | aio_context_release(ctx); |
3897 | if (!ok) { | |
b21631f3 HB |
3898 | continue; |
3899 | } | |
6bf1faa8 | 3900 | |
b21631f3 HB |
3901 | snapshot = snapshots; |
3902 | while (snapshot) { | |
3903 | char *completion = snapshot->value->name; | |
3904 | if (!strncmp(str, completion, len)) { | |
3905 | readline_add_completion(rs, completion); | |
3906 | } | |
3907 | completion = snapshot->value->id; | |
3908 | if (!strncmp(str, completion, len)) { | |
3909 | readline_add_completion(rs, completion); | |
3910 | } | |
3911 | snapshot = snapshot->next; | |
3912 | } | |
3913 | qapi_free_SnapshotInfoList(snapshots); | |
3914 | } | |
3915 | ||
3916 | } | |
3917 | ||
3918 | void delvm_completion(ReadLineState *rs, int nb_args, const char *str) | |
3919 | { | |
3920 | if (nb_args == 2) { | |
3921 | vm_completion(rs, str); | |
3922 | } | |
3923 | } | |
3924 | ||
3925 | void loadvm_completion(ReadLineState *rs, int nb_args, const char *str) | |
3926 | { | |
3927 | if (nb_args == 2) { | |
3928 | vm_completion(rs, str); | |
3929 | } | |
3930 | } | |
3931 | ||
c35b6400 WX |
3932 | static void monitor_find_completion_by_table(Monitor *mon, |
3933 | const mon_cmd_t *cmd_table, | |
3934 | char **args, | |
3935 | int nb_args) | |
81d0912d FB |
3936 | { |
3937 | const char *cmdname; | |
c35b6400 | 3938 | int i; |
bf67f1c0 | 3939 | const char *ptype, *old_ptype, *str, *name; |
c227f099 | 3940 | const mon_cmd_t *cmd; |
da27a00e | 3941 | BlockBackend *blk = NULL; |
81d0912d | 3942 | |
81d0912d FB |
3943 | if (nb_args <= 1) { |
3944 | /* command completion */ | |
3945 | if (nb_args == 0) | |
3946 | cmdname = ""; | |
3947 | else | |
3948 | cmdname = args[0]; | |
d2674b2c | 3949 | readline_set_completion_index(mon->rs, strlen(cmdname)); |
c35b6400 | 3950 | for (cmd = cmd_table; cmd->name != NULL; cmd++) { |
6d9f7839 DDAG |
3951 | if (!runstate_check(RUN_STATE_PRECONFIG) || |
3952 | cmd_can_preconfig(cmd)) { | |
3953 | cmd_completion(mon, cmdname, cmd->name); | |
3954 | } | |
81d0912d FB |
3955 | } |
3956 | } else { | |
3957 | /* find the command */ | |
c35b6400 | 3958 | for (cmd = cmd_table; cmd->name != NULL; cmd++) { |
6d9f7839 DDAG |
3959 | if (compare_cmd(args[0], cmd->name) && |
3960 | (!runstate_check(RUN_STATE_PRECONFIG) || | |
3961 | cmd_can_preconfig(cmd))) { | |
03a63484 JK |
3962 | break; |
3963 | } | |
81d0912d | 3964 | } |
03a63484 | 3965 | if (!cmd->name) { |
c35b6400 | 3966 | return; |
03a63484 JK |
3967 | } |
3968 | ||
d903a779 WX |
3969 | if (cmd->sub_table) { |
3970 | /* do the job again */ | |
e7ae771f SW |
3971 | monitor_find_completion_by_table(mon, cmd->sub_table, |
3972 | &args[1], nb_args - 1); | |
3973 | return; | |
d903a779 | 3974 | } |
bfa40f77 | 3975 | if (cmd->command_completion) { |
e7ae771f SW |
3976 | cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]); |
3977 | return; | |
bfa40f77 | 3978 | } |
d903a779 | 3979 | |
4d76d2ba | 3980 | ptype = next_arg_type(cmd->args_type); |
81d0912d FB |
3981 | for(i = 0; i < nb_args - 2; i++) { |
3982 | if (*ptype != '\0') { | |
4d76d2ba | 3983 | ptype = next_arg_type(ptype); |
81d0912d | 3984 | while (*ptype == '?') |
4d76d2ba | 3985 | ptype = next_arg_type(ptype); |
81d0912d FB |
3986 | } |
3987 | } | |
3988 | str = args[nb_args - 1]; | |
bf67f1c0 DDAG |
3989 | old_ptype = NULL; |
3990 | while (*ptype == '-' && old_ptype != ptype) { | |
3991 | old_ptype = ptype; | |
3b6dbf27 | 3992 | ptype = next_arg_type(ptype); |
2a1704a7 | 3993 | } |
81d0912d FB |
3994 | switch(*ptype) { |
3995 | case 'F': | |
3996 | /* file completion */ | |
d2674b2c | 3997 | readline_set_completion_index(mon->rs, strlen(str)); |
cb8f68b1 | 3998 | file_completion(mon, str); |
81d0912d FB |
3999 | break; |
4000 | case 'B': | |
4001 | /* block device name completion */ | |
599a926a | 4002 | readline_set_completion_index(mon->rs, strlen(str)); |
da27a00e HR |
4003 | while ((blk = blk_next(blk)) != NULL) { |
4004 | name = blk_name(blk); | |
fea68bb6 MA |
4005 | if (str[0] == '\0' || |
4006 | !strncmp(name, str, strlen(str))) { | |
4007 | readline_add_completion(mon->rs, name); | |
4008 | } | |
4009 | } | |
81d0912d | 4010 | break; |
7fe48483 | 4011 | case 's': |
129be006 | 4012 | case 'S': |
29136cd8 | 4013 | if (!strcmp(cmd->name, "help|?")) { |
7ca0e061 WX |
4014 | monitor_find_completion_by_table(mon, cmd_table, |
4015 | &args[1], nb_args - 1); | |
7fe48483 FB |
4016 | } |
4017 | break; | |
81d0912d FB |
4018 | default: |
4019 | break; | |
4020 | } | |
4021 | } | |
c35b6400 WX |
4022 | } |
4023 | ||
c60bf339 | 4024 | static void monitor_find_completion(void *opaque, |
c35b6400 WX |
4025 | const char *cmdline) |
4026 | { | |
c60bf339 | 4027 | Monitor *mon = opaque; |
c35b6400 WX |
4028 | char *args[MAX_ARGS]; |
4029 | int nb_args, len; | |
4030 | ||
4031 | /* 1. parse the cmdline */ | |
4032 | if (parse_cmdline(cmdline, &nb_args, args) < 0) { | |
4033 | return; | |
4034 | } | |
c35b6400 WX |
4035 | |
4036 | /* if the line ends with a space, it means we want to complete the | |
4037 | next arg */ | |
4038 | len = strlen(cmdline); | |
4039 | if (len > 0 && qemu_isspace(cmdline[len - 1])) { | |
4040 | if (nb_args >= MAX_ARGS) { | |
4041 | goto cleanup; | |
4042 | } | |
4043 | args[nb_args++] = g_strdup(""); | |
4044 | } | |
4045 | ||
4046 | /* 2. auto complete according to args */ | |
4047 | monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args); | |
03a63484 JK |
4048 | |
4049 | cleanup: | |
dcc70cdf | 4050 | free_cmdline_args(args, nb_args); |
81d0912d FB |
4051 | } |
4052 | ||
731b0364 | 4053 | static int monitor_can_read(void *opaque) |
9dc39cba | 4054 | { |
731b0364 AL |
4055 | Monitor *mon = opaque; |
4056 | ||
df152fb9 | 4057 | return !atomic_mb_read(&mon->suspend_cnt); |
9dc39cba FB |
4058 | } |
4059 | ||
546aa566 | 4060 | /* |
7cb2123f MA |
4061 | * Emit QMP response @rsp with ID @id to @mon. |
4062 | * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP. | |
4063 | * Nothing is emitted then. | |
546aa566 | 4064 | */ |
7cb2123f | 4065 | static void monitor_qmp_respond(Monitor *mon, QDict *rsp, QObject *id) |
546aa566 | 4066 | { |
546aa566 PX |
4067 | if (rsp) { |
4068 | if (id) { | |
d43b1694 | 4069 | qdict_put_obj(rsp, "id", qobject_ref(id)); |
546aa566 PX |
4070 | } |
4071 | ||
27656018 | 4072 | qmp_send_response(mon, rsp); |
546aa566 | 4073 | } |
546aa566 PX |
4074 | } |
4075 | ||
b2731456 | 4076 | static void monitor_qmp_dispatch(Monitor *mon, QObject *req, QObject *id) |
5fa737a4 | 4077 | { |
b2731456 | 4078 | Monitor *old_mon; |
d43b1694 | 4079 | QDict *rsp; |
69240fe6 | 4080 | QDict *error; |
b097efc0 | 4081 | |
227a0755 PX |
4082 | old_mon = cur_mon; |
4083 | cur_mon = mon; | |
4084 | ||
674ed722 | 4085 | rsp = qmp_dispatch(mon->qmp.commands, req, qmp_oob_enabled(mon)); |
5fa737a4 | 4086 | |
227a0755 PX |
4087 | cur_mon = old_mon; |
4088 | ||
69240fe6 | 4089 | if (mon->qmp.commands == &qmp_cap_negotiation_commands) { |
d43b1694 | 4090 | error = qdict_get_qdict(rsp, "error"); |
69240fe6 MA |
4091 | if (error |
4092 | && !g_strcmp0(qdict_get_try_str(error, "class"), | |
4093 | QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) { | |
4094 | /* Provide a more useful error message */ | |
4095 | qdict_del(error, "desc"); | |
4096 | qdict_put_str(error, "desc", "Expecting capabilities negotiation" | |
4097 | " with 'qmp_capabilities'"); | |
4098 | } | |
71da4667 | 4099 | } |
5fa737a4 | 4100 | |
7cb2123f MA |
4101 | monitor_qmp_respond(mon, rsp, id); |
4102 | qobject_unref(rsp); | |
5fa737a4 LC |
4103 | } |
4104 | ||
71da4667 | 4105 | /* |
774a6b67 MA |
4106 | * Pop a QMP request from a monitor request queue. |
4107 | * Return the request, or NULL all request queues are empty. | |
71da4667 PX |
4108 | * We are using round-robin fashion to pop the request, to avoid |
4109 | * processing commands only on a very busy monitor. To achieve that, | |
4110 | * when we process one request on a specific monitor, we put that | |
4111 | * monitor to the end of mon_list queue. | |
9ab84470 PX |
4112 | * |
4113 | * Note: if the function returned with non-NULL, then the caller will | |
4114 | * be with mon->qmp.qmp_queue_lock held, and the caller is responsible | |
4115 | * to release it. | |
71da4667 | 4116 | */ |
9ab84470 | 4117 | static QMPRequest *monitor_qmp_requests_pop_any_with_lock(void) |
71da4667 PX |
4118 | { |
4119 | QMPRequest *req_obj = NULL; | |
4120 | Monitor *mon; | |
4121 | ||
4122 | qemu_mutex_lock(&monitor_lock); | |
4123 | ||
4124 | QTAILQ_FOREACH(mon, &mon_list, entry) { | |
4125 | qemu_mutex_lock(&mon->qmp.qmp_queue_lock); | |
4126 | req_obj = g_queue_pop_head(mon->qmp.qmp_requests); | |
71da4667 | 4127 | if (req_obj) { |
9ab84470 | 4128 | /* With the lock of corresponding queue held */ |
71da4667 PX |
4129 | break; |
4130 | } | |
9ab84470 | 4131 | qemu_mutex_unlock(&mon->qmp.qmp_queue_lock); |
71da4667 PX |
4132 | } |
4133 | ||
4134 | if (req_obj) { | |
4135 | /* | |
4136 | * We found one request on the monitor. Degrade this monitor's | |
4137 | * priority to lowest by re-inserting it to end of queue. | |
4138 | */ | |
4139 | QTAILQ_REMOVE(&mon_list, mon, entry); | |
4140 | QTAILQ_INSERT_TAIL(&mon_list, mon, entry); | |
4141 | } | |
4142 | ||
4143 | qemu_mutex_unlock(&monitor_lock); | |
4144 | ||
4145 | return req_obj; | |
4146 | } | |
4147 | ||
4148 | static void monitor_qmp_bh_dispatcher(void *data) | |
4149 | { | |
9ab84470 | 4150 | QMPRequest *req_obj = monitor_qmp_requests_pop_any_with_lock(); |
7cb2123f | 4151 | QDict *rsp; |
176160ce | 4152 | bool need_resume; |
9ab84470 | 4153 | Monitor *mon; |
71da4667 | 4154 | |
b2731456 MA |
4155 | if (!req_obj) { |
4156 | return; | |
71da4667 | 4157 | } |
b2731456 | 4158 | |
9ab84470 | 4159 | mon = req_obj->mon; |
176160ce | 4160 | /* qmp_oob_enabled() might change after "qmp_capabilities" */ |
9ab84470 PX |
4161 | need_resume = !qmp_oob_enabled(mon) || |
4162 | mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1; | |
4163 | qemu_mutex_unlock(&mon->qmp.qmp_queue_lock); | |
1cc37471 | 4164 | if (req_obj->req) { |
cf869d53 | 4165 | trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj->id) ?: ""); |
9ab84470 | 4166 | monitor_qmp_dispatch(mon, req_obj->req, req_obj->id); |
1cc37471 MA |
4167 | } else { |
4168 | assert(req_obj->err); | |
7cb2123f | 4169 | rsp = qmp_error_response(req_obj->err); |
42eab8db | 4170 | req_obj->err = NULL; |
9ab84470 | 4171 | monitor_qmp_respond(mon, rsp, NULL); |
7cb2123f | 4172 | qobject_unref(rsp); |
1cc37471 MA |
4173 | } |
4174 | ||
176160ce | 4175 | if (need_resume) { |
b2731456 | 4176 | /* Pairs with the monitor_suspend() in handle_qmp_command() */ |
9ab84470 | 4177 | monitor_resume(mon); |
71da4667 | 4178 | } |
b2731456 MA |
4179 | qmp_request_free(req_obj); |
4180 | ||
4181 | /* Reschedule instead of looping so the main loop stays responsive */ | |
cab5ad86 | 4182 | qemu_bh_schedule(qmp_dispatcher_bh); |
71da4667 PX |
4183 | } |
4184 | ||
62815d85 | 4185 | static void handle_qmp_command(void *opaque, QObject *req, Error *err) |
71da4667 | 4186 | { |
62815d85 MA |
4187 | Monitor *mon = opaque; |
4188 | QObject *id = NULL; | |
0fa39d0b | 4189 | QDict *qdict; |
71da4667 PX |
4190 | QMPRequest *req_obj; |
4191 | ||
84a56f38 | 4192 | assert(!req != !err); |
cf869d53 | 4193 | |
0fa39d0b MA |
4194 | qdict = qobject_to(QDict, req); |
4195 | if (qdict) { | |
4196 | id = qobject_ref(qdict_get(qdict, "id")); | |
4197 | qdict_del(qdict, "id"); | |
4198 | } /* else will fail qmp_dispatch() */ | |
71da4667 | 4199 | |
8720e63e | 4200 | if (req && trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) { |
45434ba4 MA |
4201 | QString *req_json = qobject_to_json(req); |
4202 | trace_handle_qmp_command(mon, qstring_get_str(req_json)); | |
4203 | qobject_unref(req_json); | |
cf869d53 PX |
4204 | } |
4205 | ||
69240fe6 | 4206 | if (qdict && qmp_is_oob(qdict)) { |
774a6b67 | 4207 | /* OOB commands are executed immediately */ |
b2731456 | 4208 | trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id) |
cf869d53 | 4209 | ?: ""); |
b2731456 | 4210 | monitor_qmp_dispatch(mon, req, id); |
cb9ec42f MAL |
4211 | qobject_unref(req); |
4212 | qobject_unref(id); | |
cf869d53 | 4213 | return; |
cf869d53 PX |
4214 | } |
4215 | ||
71da4667 PX |
4216 | req_obj = g_new0(QMPRequest, 1); |
4217 | req_obj->mon = mon; | |
b2731456 | 4218 | req_obj->id = id; |
71da4667 | 4219 | req_obj->req = req; |
1cc37471 | 4220 | req_obj->err = err; |
71da4667 | 4221 | |
bf1e7301 PX |
4222 | /* Protect qmp_requests and fetching its length. */ |
4223 | qemu_mutex_lock(&mon->qmp.qmp_queue_lock); | |
4224 | ||
71da4667 | 4225 | /* |
9ab84470 PX |
4226 | * Suspend the monitor when we can't queue more requests after |
4227 | * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume | |
4228 | * it. Note that when OOB is disabled, we queue at most one | |
4229 | * command, for backward compatibility. | |
71da4667 | 4230 | */ |
9ab84470 PX |
4231 | if (!qmp_oob_enabled(mon) || |
4232 | mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) { | |
71da4667 | 4233 | monitor_suspend(mon); |
71da4667 PX |
4234 | } |
4235 | ||
4236 | /* | |
4237 | * Put the request to the end of queue so that requests will be | |
4238 | * handled in time order. Ownership for req_obj, req, id, | |
4239 | * etc. will be delivered to the handler side. | |
4240 | */ | |
9ab84470 | 4241 | assert(mon->qmp.qmp_requests->length < QMP_REQ_QUEUE_LEN_MAX); |
71da4667 PX |
4242 | g_queue_push_tail(mon->qmp.qmp_requests, req_obj); |
4243 | qemu_mutex_unlock(&mon->qmp.qmp_queue_lock); | |
4244 | ||
4245 | /* Kick the dispatcher routine */ | |
cab5ad86 | 4246 | qemu_bh_schedule(qmp_dispatcher_bh); |
71da4667 PX |
4247 | } |
4248 | ||
c83fe23b | 4249 | static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size) |
9b57c02e | 4250 | { |
227a0755 | 4251 | Monitor *mon = opaque; |
9b57c02e | 4252 | |
227a0755 | 4253 | json_message_parser_feed(&mon->qmp.parser, (const char *) buf, size); |
9b57c02e LC |
4254 | } |
4255 | ||
731b0364 | 4256 | static void monitor_read(void *opaque, const uint8_t *buf, int size) |
9dc39cba | 4257 | { |
731b0364 | 4258 | Monitor *old_mon = cur_mon; |
7e2515e8 | 4259 | int i; |
376253ec | 4260 | |
731b0364 AL |
4261 | cur_mon = opaque; |
4262 | ||
cde76ee1 AL |
4263 | if (cur_mon->rs) { |
4264 | for (i = 0; i < size; i++) | |
4265 | readline_handle_byte(cur_mon->rs, buf[i]); | |
4266 | } else { | |
4267 | if (size == 0 || buf[size - 1] != 0) | |
4268 | monitor_printf(cur_mon, "corrupted command\n"); | |
4269 | else | |
7ef6cf63 | 4270 | handle_hmp_command(cur_mon, (char *)buf); |
cde76ee1 | 4271 | } |
9dc39cba | 4272 | |
731b0364 AL |
4273 | cur_mon = old_mon; |
4274 | } | |
d8f44609 | 4275 | |
c60bf339 SH |
4276 | static void monitor_command_cb(void *opaque, const char *cmdline, |
4277 | void *readline_opaque) | |
aa455485 | 4278 | { |
c60bf339 SH |
4279 | Monitor *mon = opaque; |
4280 | ||
731b0364 | 4281 | monitor_suspend(mon); |
7ef6cf63 | 4282 | handle_hmp_command(mon, cmdline); |
731b0364 | 4283 | monitor_resume(mon); |
d8f44609 AL |
4284 | } |
4285 | ||
cde76ee1 | 4286 | int monitor_suspend(Monitor *mon) |
d8f44609 | 4287 | { |
e3e977d4 | 4288 | if (monitor_is_hmp_non_interactive(mon)) { |
cde76ee1 | 4289 | return -ENOTTY; |
e3e977d4 PX |
4290 | } |
4291 | ||
df152fb9 | 4292 | atomic_inc(&mon->suspend_cnt); |
e3e977d4 | 4293 | |
ef12a703 | 4294 | if (mon->use_io_thread) { |
e3e977d4 | 4295 | /* |
c5f57ed0 | 4296 | * Kick I/O thread to make sure this takes effect. It'll be |
e3e977d4 PX |
4297 | * evaluated again in prepare() of the watch object. |
4298 | */ | |
cab5ad86 | 4299 | aio_notify(iothread_get_aio_context(mon_iothread)); |
e3e977d4 PX |
4300 | } |
4301 | ||
4302 | trace_monitor_suspend(mon, 1); | |
cde76ee1 | 4303 | return 0; |
d8f44609 AL |
4304 | } |
4305 | ||
ef12a703 MAL |
4306 | static void monitor_accept_input(void *opaque) |
4307 | { | |
4308 | Monitor *mon = opaque; | |
4309 | ||
4310 | qemu_chr_fe_accept_input(&mon->chr); | |
4311 | } | |
4312 | ||
376253ec | 4313 | void monitor_resume(Monitor *mon) |
d8f44609 | 4314 | { |
e3e977d4 | 4315 | if (monitor_is_hmp_non_interactive(mon)) { |
cde76ee1 | 4316 | return; |
e3e977d4 PX |
4317 | } |
4318 | ||
df152fb9 | 4319 | if (atomic_dec_fetch(&mon->suspend_cnt) == 0) { |
ef12a703 MAL |
4320 | AioContext *ctx; |
4321 | ||
4322 | if (mon->use_io_thread) { | |
4323 | ctx = iothread_get_aio_context(mon_iothread); | |
e3e977d4 | 4324 | } else { |
ef12a703 MAL |
4325 | ctx = qemu_get_aio_context(); |
4326 | } | |
4327 | ||
4328 | if (!monitor_is_qmp(mon)) { | |
e3e977d4 PX |
4329 | assert(mon->rs); |
4330 | readline_show_prompt(mon->rs); | |
4331 | } | |
ef12a703 MAL |
4332 | |
4333 | aio_bh_schedule_oneshot(ctx, monitor_accept_input, mon); | |
df152fb9 | 4334 | } |
ef12a703 | 4335 | |
e3e977d4 | 4336 | trace_monitor_suspend(mon, -1); |
aa455485 FB |
4337 | } |
4338 | ||
1816604b | 4339 | static QDict *qmp_greeting(Monitor *mon) |
ca9567e2 | 4340 | { |
02130314 | 4341 | QList *cap_list = qlist_new(); |
b9c15f16 | 4342 | QObject *ver = NULL; |
02130314 | 4343 | QMPCapability cap; |
ca9567e2 | 4344 | |
7fad30f0 | 4345 | qmp_marshal_query_version(NULL, &ver, NULL); |
c823501e | 4346 | |
02130314 | 4347 | for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) { |
279f9e08 MA |
4348 | if (mon->qmp.capab_offered[cap]) { |
4349 | qlist_append_str(cap_list, QMPCapability_str(cap)); | |
02130314 | 4350 | } |
02130314 PX |
4351 | } |
4352 | ||
1816604b MA |
4353 | return qdict_from_jsonf_nofail( |
4354 | "{'QMP': {'version': %p, 'capabilities': %p}}", | |
4355 | ver, cap_list); | |
ca9567e2 LC |
4356 | } |
4357 | ||
c83fe23b | 4358 | static void monitor_qmp_event(void *opaque, int event) |
9b57c02e | 4359 | { |
1816604b | 4360 | QDict *data; |
47116d1c | 4361 | Monitor *mon = opaque; |
9b57c02e | 4362 | |
47116d1c LC |
4363 | switch (event) { |
4364 | case CHR_EVENT_OPENED: | |
635db18f | 4365 | mon->qmp.commands = &qmp_cap_negotiation_commands; |
02130314 | 4366 | monitor_qmp_caps_reset(mon); |
1816604b | 4367 | data = qmp_greeting(mon); |
27656018 | 4368 | qmp_send_response(mon, data); |
cb3e7f08 | 4369 | qobject_unref(data); |
efb87c16 | 4370 | mon_refcount++; |
47116d1c LC |
4371 | break; |
4372 | case CHR_EVENT_CLOSED: | |
c73a843b PX |
4373 | /* |
4374 | * Note: this is only useful when the output of the chardev | |
4375 | * backend is still open. For example, when the backend is | |
4376 | * stdio, it's possible that stdout is still open when stdin | |
4377 | * is closed. | |
4378 | */ | |
6d2d563f | 4379 | monitor_qmp_cleanup_queues(mon); |
74358f2a | 4380 | json_message_parser_destroy(&mon->qmp.parser); |
62815d85 MA |
4381 | json_message_parser_init(&mon->qmp.parser, handle_qmp_command, |
4382 | mon, NULL); | |
efb87c16 CB |
4383 | mon_refcount--; |
4384 | monitor_fdsets_cleanup(); | |
47116d1c | 4385 | break; |
9b57c02e LC |
4386 | } |
4387 | } | |
4388 | ||
731b0364 | 4389 | static void monitor_event(void *opaque, int event) |
86e94dea | 4390 | { |
376253ec AL |
4391 | Monitor *mon = opaque; |
4392 | ||
2724b180 AL |
4393 | switch (event) { |
4394 | case CHR_EVENT_MUX_IN: | |
dc7cbcd8 | 4395 | qemu_mutex_lock(&mon->mon_lock); |
a7aec5da | 4396 | mon->mux_out = 0; |
dc7cbcd8 | 4397 | qemu_mutex_unlock(&mon->mon_lock); |
a7aec5da GH |
4398 | if (mon->reset_seen) { |
4399 | readline_restart(mon->rs); | |
4400 | monitor_resume(mon); | |
4401 | monitor_flush(mon); | |
4402 | } else { | |
df152fb9 | 4403 | atomic_mb_set(&mon->suspend_cnt, 0); |
a7aec5da | 4404 | } |
2724b180 AL |
4405 | break; |
4406 | ||
4407 | case CHR_EVENT_MUX_OUT: | |
a7aec5da | 4408 | if (mon->reset_seen) { |
df152fb9 | 4409 | if (atomic_mb_read(&mon->suspend_cnt) == 0) { |
a7aec5da GH |
4410 | monitor_printf(mon, "\n"); |
4411 | } | |
4412 | monitor_flush(mon); | |
4413 | monitor_suspend(mon); | |
4414 | } else { | |
df152fb9 | 4415 | atomic_inc(&mon->suspend_cnt); |
a7aec5da | 4416 | } |
dc7cbcd8 | 4417 | qemu_mutex_lock(&mon->mon_lock); |
a7aec5da | 4418 | mon->mux_out = 1; |
dc7cbcd8 | 4419 | qemu_mutex_unlock(&mon->mon_lock); |
2724b180 | 4420 | break; |
86e94dea | 4421 | |
b6b8df56 | 4422 | case CHR_EVENT_OPENED: |
2724b180 AL |
4423 | monitor_printf(mon, "QEMU %s monitor - type 'help' for more " |
4424 | "information\n", QEMU_VERSION); | |
a7aec5da | 4425 | if (!mon->mux_out) { |
e5554e20 | 4426 | readline_restart(mon->rs); |
2724b180 | 4427 | readline_show_prompt(mon->rs); |
a7aec5da GH |
4428 | } |
4429 | mon->reset_seen = 1; | |
efb87c16 CB |
4430 | mon_refcount++; |
4431 | break; | |
4432 | ||
4433 | case CHR_EVENT_CLOSED: | |
4434 | mon_refcount--; | |
4435 | monitor_fdsets_cleanup(); | |
2724b180 AL |
4436 | break; |
4437 | } | |
86e94dea TS |
4438 | } |
4439 | ||
816f8925 WX |
4440 | static int |
4441 | compare_mon_cmd(const void *a, const void *b) | |
4442 | { | |
4443 | return strcmp(((const mon_cmd_t *)a)->name, | |
4444 | ((const mon_cmd_t *)b)->name); | |
4445 | } | |
4446 | ||
4447 | static void sortcmdlist(void) | |
4448 | { | |
4449 | int array_num; | |
4450 | int elem_size = sizeof(mon_cmd_t); | |
4451 | ||
4452 | array_num = sizeof(mon_cmds)/elem_size-1; | |
4453 | qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd); | |
4454 | ||
4455 | array_num = sizeof(info_cmds)/elem_size-1; | |
4456 | qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd); | |
4457 | } | |
4458 | ||
a5ed3525 PX |
4459 | static void monitor_iothread_init(void) |
4460 | { | |
cab5ad86 | 4461 | mon_iothread = iothread_create("mon_iothread", &error_abort); |
a5ed3525 PX |
4462 | } |
4463 | ||
6adf08dd PX |
4464 | void monitor_init_globals(void) |
4465 | { | |
4466 | monitor_init_qmp_commands(); | |
4467 | monitor_qapi_event_init(); | |
4468 | sortcmdlist(); | |
4469 | qemu_mutex_init(&monitor_lock); | |
47451466 | 4470 | qemu_mutex_init(&mon_fdsets_lock); |
85117701 WB |
4471 | |
4472 | /* | |
4473 | * The dispatcher BH must run in the main loop thread, since we | |
4474 | * have commands assuming that context. It would be nice to get | |
4475 | * rid of those assumptions. | |
4476 | */ | |
4477 | qmp_dispatcher_bh = aio_bh_new(iohandler_get_aio_context(), | |
4478 | monitor_qmp_bh_dispatcher, | |
4479 | NULL); | |
6adf08dd PX |
4480 | } |
4481 | ||
c60bf339 SH |
4482 | /* These functions just adapt the readline interface in a typesafe way. We |
4483 | * could cast function pointers but that discards compiler checks. | |
4484 | */ | |
d5d1507b SW |
4485 | static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque, |
4486 | const char *fmt, ...) | |
c60bf339 SH |
4487 | { |
4488 | va_list ap; | |
4489 | va_start(ap, fmt); | |
4490 | monitor_vprintf(opaque, fmt, ap); | |
4491 | va_end(ap); | |
4492 | } | |
4493 | ||
4494 | static void monitor_readline_flush(void *opaque) | |
4495 | { | |
4496 | monitor_flush(opaque); | |
4497 | } | |
4498 | ||
397d30e9 | 4499 | /* |
a95db58f | 4500 | * Print to current monitor if we have one, else to stream. |
397d30e9 PB |
4501 | * TODO should return int, so callers can calculate width, but that |
4502 | * requires surgery to monitor_vprintf(). Left for another day. | |
4503 | */ | |
a95db58f | 4504 | void monitor_vfprintf(FILE *stream, const char *fmt, va_list ap) |
397d30e9 PB |
4505 | { |
4506 | if (cur_mon && !monitor_cur_is_qmp()) { | |
4507 | monitor_vprintf(cur_mon, fmt, ap); | |
4508 | } else { | |
a95db58f | 4509 | vfprintf(stream, fmt, ap); |
397d30e9 PB |
4510 | } |
4511 | } | |
4512 | ||
a95db58f MAL |
4513 | /* |
4514 | * Print to current monitor if we have one, else to stderr. | |
4515 | * TODO should return int, so callers can calculate width, but that | |
4516 | * requires surgery to monitor_vprintf(). Left for another day. | |
4517 | */ | |
4518 | void error_vprintf(const char *fmt, va_list ap) | |
4519 | { | |
4520 | monitor_vfprintf(stderr, fmt, ap); | |
4521 | } | |
4522 | ||
397d30e9 PB |
4523 | void error_vprintf_unless_qmp(const char *fmt, va_list ap) |
4524 | { | |
4525 | if (cur_mon && !monitor_cur_is_qmp()) { | |
4526 | monitor_vprintf(cur_mon, fmt, ap); | |
0d6b50d4 MAL |
4527 | } else if (!cur_mon) { |
4528 | vfprintf(stderr, fmt, ap); | |
397d30e9 PB |
4529 | } |
4530 | } | |
4531 | ||
a5ed3525 PX |
4532 | static void monitor_list_append(Monitor *mon) |
4533 | { | |
4534 | qemu_mutex_lock(&monitor_lock); | |
8dac00bb MAL |
4535 | /* |
4536 | * This prevents inserting new monitors during monitor_cleanup(). | |
4537 | * A cleaner solution would involve the main thread telling other | |
4538 | * threads to terminate, waiting for their termination. | |
4539 | */ | |
4540 | if (!monitor_destroyed) { | |
4541 | QTAILQ_INSERT_HEAD(&mon_list, mon, entry); | |
4542 | mon = NULL; | |
4543 | } | |
a5ed3525 | 4544 | qemu_mutex_unlock(&monitor_lock); |
8dac00bb MAL |
4545 | |
4546 | if (mon) { | |
4547 | monitor_data_destroy(mon); | |
4548 | g_free(mon); | |
4549 | } | |
a5ed3525 PX |
4550 | } |
4551 | ||
4552 | static void monitor_qmp_setup_handlers_bh(void *opaque) | |
4553 | { | |
4554 | Monitor *mon = opaque; | |
4555 | GMainContext *context; | |
4556 | ||
3d7a1c44 | 4557 | assert(mon->use_io_thread); |
88e40e43 | 4558 | context = iothread_get_g_main_context(mon_iothread); |
3d7a1c44 | 4559 | assert(context); |
a5ed3525 PX |
4560 | qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read, |
4561 | monitor_qmp_event, NULL, mon, context, true); | |
4562 | monitor_list_append(mon); | |
4563 | } | |
4564 | ||
0ec7b3e7 | 4565 | void monitor_init(Chardev *chr, int flags) |
aa455485 | 4566 | { |
6adf08dd | 4567 | Monitor *mon = g_malloc(sizeof(*mon)); |
be933ffc | 4568 | bool use_readline = flags & MONITOR_USE_READLINE; |
87127161 | 4569 | |
8258292e PX |
4570 | /* Note: we run QMP monitor in I/O thread when @chr supports that */ |
4571 | monitor_data_init(mon, false, | |
4572 | (flags & MONITOR_USE_CONTROL) | |
4573 | && qemu_chr_has_feature(chr, | |
4574 | QEMU_CHAR_FEATURE_GCONTEXT)); | |
20d8a3ed | 4575 | |
32a6ebec | 4576 | qemu_chr_fe_init(&mon->chr, chr, &error_abort); |
731b0364 | 4577 | mon->flags = flags; |
be933ffc | 4578 | if (use_readline) { |
c60bf339 SH |
4579 | mon->rs = readline_init(monitor_readline_printf, |
4580 | monitor_readline_flush, | |
4581 | mon, | |
4582 | monitor_find_completion); | |
cde76ee1 AL |
4583 | monitor_read_command(mon, 0); |
4584 | } | |
87127161 | 4585 | |
9f3982f2 | 4586 | if (monitor_is_qmp(mon)) { |
5345fdb4 | 4587 | qemu_chr_fe_set_echo(&mon->chr, true); |
62815d85 MA |
4588 | json_message_parser_init(&mon->qmp.parser, handle_qmp_command, |
4589 | mon, NULL); | |
f91dc2a0 | 4590 | if (mon->use_io_thread) { |
a5ed3525 PX |
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 | |
774a6b67 MA |
4598 | * since chardev might be running in the monitor I/O |
4599 | * thread. Schedule a bottom half. | |
a5ed3525 | 4600 | */ |
88e40e43 | 4601 | aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread), |
a5ed3525 | 4602 | monitor_qmp_setup_handlers_bh, mon); |
774a6b67 | 4603 | /* The bottom half will add @mon to @mon_list */ |
a5ed3525 PX |
4604 | return; |
4605 | } else { | |
4606 | qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, | |
4607 | monitor_qmp_read, monitor_qmp_event, | |
4608 | NULL, mon, NULL, true); | |
4609 | } | |
9b57c02e | 4610 | } else { |
5345fdb4 | 4611 | qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read, |
81517ba3 | 4612 | monitor_event, NULL, mon, NULL, true); |
9b57c02e | 4613 | } |
87127161 | 4614 | |
a5ed3525 | 4615 | monitor_list_append(mon); |
aa455485 FB |
4616 | } |
4617 | ||
2ef45716 MAL |
4618 | void monitor_cleanup(void) |
4619 | { | |
a5ed3525 | 4620 | /* |
c5f57ed0 | 4621 | * We need to explicitly stop the I/O thread (but not destroy it), |
774a6b67 | 4622 | * clean up the monitor resources, then destroy the I/O thread since |
a5ed3525 PX |
4623 | * we need to unregister from chardev below in |
4624 | * monitor_data_destroy(), and chardev is not thread-safe yet | |
4625 | */ | |
85117701 WB |
4626 | if (mon_iothread) { |
4627 | iothread_stop(mon_iothread); | |
4628 | } | |
a5ed3525 | 4629 | |
774a6b67 | 4630 | /* Flush output buffers and destroy monitors */ |
2ef45716 | 4631 | qemu_mutex_lock(&monitor_lock); |
8dac00bb | 4632 | monitor_destroyed = true; |
82e870ba PB |
4633 | while (!QTAILQ_EMPTY(&mon_list)) { |
4634 | Monitor *mon = QTAILQ_FIRST(&mon_list); | |
238d9f34 | 4635 | QTAILQ_REMOVE(&mon_list, mon, entry); |
34f1f3e0 MAL |
4636 | /* Permit QAPI event emission from character frontend release */ |
4637 | qemu_mutex_unlock(&monitor_lock); | |
abe3cd0f | 4638 | monitor_flush(mon); |
2ef45716 | 4639 | monitor_data_destroy(mon); |
34f1f3e0 | 4640 | qemu_mutex_lock(&monitor_lock); |
2ef45716 MAL |
4641 | g_free(mon); |
4642 | } | |
4643 | qemu_mutex_unlock(&monitor_lock); | |
a5ed3525 | 4644 | |
c5f57ed0 | 4645 | /* QEMUBHs needs to be deleted before destroying the I/O thread */ |
cab5ad86 MA |
4646 | qemu_bh_delete(qmp_dispatcher_bh); |
4647 | qmp_dispatcher_bh = NULL; | |
85117701 WB |
4648 | if (mon_iothread) { |
4649 | iothread_destroy(mon_iothread); | |
4650 | mon_iothread = NULL; | |
4651 | } | |
2ef45716 MAL |
4652 | } |
4653 | ||
4d454574 PB |
4654 | QemuOptsList qemu_mon_opts = { |
4655 | .name = "mon", | |
4656 | .implied_opt_name = "chardev", | |
4657 | .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head), | |
4658 | .desc = { | |
4659 | { | |
4660 | .name = "mode", | |
4661 | .type = QEMU_OPT_STRING, | |
4662 | },{ | |
4663 | .name = "chardev", | |
4664 | .type = QEMU_OPT_STRING, | |
4d454574 PB |
4665 | },{ |
4666 | .name = "pretty", | |
4667 | .type = QEMU_OPT_BOOL, | |
4668 | }, | |
4669 | { /* end of list */ } | |
4670 | }, | |
4671 | }; | |
f2ae8abf MT |
4672 | |
4673 | #ifndef TARGET_I386 | |
4674 | void qmp_rtc_reset_reinjection(Error **errp) | |
4675 | { | |
c6bd8c70 | 4676 | error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection"); |
f2ae8abf | 4677 | } |
08a161fd BS |
4678 | |
4679 | SevInfo *qmp_query_sev(Error **errp) | |
4680 | { | |
4681 | error_setg(errp, QERR_FEATURE_DISABLED, "query-sev"); | |
4682 | return NULL; | |
4683 | } | |
1b6a034f BS |
4684 | |
4685 | SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp) | |
4686 | { | |
4687 | error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-launch-measure"); | |
4688 | return NULL; | |
4689 | } | |
31dd67f6 BS |
4690 | |
4691 | SevCapability *qmp_query_sev_capabilities(Error **errp) | |
4692 | { | |
4693 | error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-capabilities"); | |
4694 | return NULL; | |
4695 | } | |
f2ae8abf | 4696 | #endif |
7ee0c3e3 JH |
4697 | |
4698 | #ifndef TARGET_S390X | |
4699 | void qmp_dump_skeys(const char *filename, Error **errp) | |
4700 | { | |
4701 | error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys"); | |
4702 | } | |
4703 | #endif | |
ae50a770 PX |
4704 | |
4705 | #ifndef TARGET_ARM | |
4706 | GICCapabilityList *qmp_query_gic_capabilities(Error **errp) | |
4707 | { | |
4708 | error_setg(errp, QERR_FEATURE_DISABLED, "query-gic-capabilities"); | |
4709 | return NULL; | |
4710 | } | |
4711 | #endif | |
d4633541 IM |
4712 | |
4713 | HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp) | |
4714 | { | |
4715 | MachineState *ms = MACHINE(qdev_get_machine()); | |
4716 | MachineClass *mc = MACHINE_GET_CLASS(ms); | |
4717 | ||
c5514d0e | 4718 | if (!mc->has_hotpluggable_cpus) { |
d4633541 IM |
4719 | error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus"); |
4720 | return NULL; | |
4721 | } | |
4722 | ||
c5514d0e | 4723 | return machine_query_hotpluggable_cpus(ms); |
d4633541 | 4724 | } |