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