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