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