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