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