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