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