]> git.proxmox.com Git - mirror_qemu.git/blob - monitor.c
qapi: make query-cpu-definitions depend on specific targets
[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 static void monitor_init_qmp_commands(void)
1135 {
1136 /*
1137 * Two command lists:
1138 * - qmp_commands contains all QMP commands
1139 * - qmp_cap_negotiation_commands contains just
1140 * "qmp_capabilities", to enforce capability negotiation
1141 */
1142
1143 qmp_init_marshal(&qmp_commands);
1144
1145 qmp_register_command(&qmp_commands, "query-qmp-schema",
1146 qmp_query_qmp_schema, QCO_ALLOW_PRECONFIG);
1147 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
1148 QCO_NO_OPTIONS);
1149 qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add,
1150 QCO_NO_OPTIONS);
1151
1152 QTAILQ_INIT(&qmp_cap_negotiation_commands);
1153 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
1154 qmp_marshal_qmp_capabilities, QCO_ALLOW_PRECONFIG);
1155 }
1156
1157 static bool qmp_oob_enabled(Monitor *mon)
1158 {
1159 return mon->qmp.capab[QMP_CAPABILITY_OOB];
1160 }
1161
1162 static void monitor_qmp_caps_reset(Monitor *mon)
1163 {
1164 memset(mon->qmp.capab_offered, 0, sizeof(mon->qmp.capab_offered));
1165 memset(mon->qmp.capab, 0, sizeof(mon->qmp.capab));
1166 mon->qmp.capab_offered[QMP_CAPABILITY_OOB] = mon->use_io_thread;
1167 }
1168
1169 /*
1170 * Accept QMP capabilities in @list for @mon.
1171 * On success, set mon->qmp.capab[], and return true.
1172 * On error, set @errp, and return false.
1173 */
1174 static bool qmp_caps_accept(Monitor *mon, QMPCapabilityList *list,
1175 Error **errp)
1176 {
1177 GString *unavailable = NULL;
1178 bool capab[QMP_CAPABILITY__MAX];
1179
1180 memset(capab, 0, sizeof(capab));
1181
1182 for (; list; list = list->next) {
1183 if (!mon->qmp.capab_offered[list->value]) {
1184 if (!unavailable) {
1185 unavailable = g_string_new(QMPCapability_str(list->value));
1186 } else {
1187 g_string_append_printf(unavailable, ", %s",
1188 QMPCapability_str(list->value));
1189 }
1190 }
1191 capab[list->value] = true;
1192 }
1193
1194 if (unavailable) {
1195 error_setg(errp, "Capability %s not available", unavailable->str);
1196 g_string_free(unavailable, true);
1197 return false;
1198 }
1199
1200 memcpy(mon->qmp.capab, capab, sizeof(capab));
1201 return true;
1202 }
1203
1204 void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
1205 Error **errp)
1206 {
1207 if (cur_mon->qmp.commands == &qmp_commands) {
1208 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1209 "Capabilities negotiation is already complete, command "
1210 "ignored");
1211 return;
1212 }
1213
1214 if (!qmp_caps_accept(cur_mon, enable, errp)) {
1215 return;
1216 }
1217
1218 cur_mon->qmp.commands = &qmp_commands;
1219 }
1220
1221 /* Set the current CPU defined by the user. Callers must hold BQL. */
1222 int monitor_set_cpu(int cpu_index)
1223 {
1224 CPUState *cpu;
1225
1226 cpu = qemu_get_cpu(cpu_index);
1227 if (cpu == NULL) {
1228 return -1;
1229 }
1230 g_free(cur_mon->mon_cpu_path);
1231 cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
1232 return 0;
1233 }
1234
1235 /* Callers must hold BQL. */
1236 static CPUState *mon_get_cpu_sync(bool synchronize)
1237 {
1238 CPUState *cpu;
1239
1240 if (cur_mon->mon_cpu_path) {
1241 cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path,
1242 TYPE_CPU, NULL);
1243 if (!cpu) {
1244 g_free(cur_mon->mon_cpu_path);
1245 cur_mon->mon_cpu_path = NULL;
1246 }
1247 }
1248 if (!cur_mon->mon_cpu_path) {
1249 if (!first_cpu) {
1250 return NULL;
1251 }
1252 monitor_set_cpu(first_cpu->cpu_index);
1253 cpu = first_cpu;
1254 }
1255 if (synchronize) {
1256 cpu_synchronize_state(cpu);
1257 }
1258 return cpu;
1259 }
1260
1261 CPUState *mon_get_cpu(void)
1262 {
1263 return mon_get_cpu_sync(true);
1264 }
1265
1266 CPUArchState *mon_get_cpu_env(void)
1267 {
1268 CPUState *cs = mon_get_cpu();
1269
1270 return cs ? cs->env_ptr : NULL;
1271 }
1272
1273 int monitor_get_cpu_index(void)
1274 {
1275 CPUState *cs = mon_get_cpu_sync(false);
1276
1277 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
1278 }
1279
1280 static void hmp_info_registers(Monitor *mon, const QDict *qdict)
1281 {
1282 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
1283 CPUState *cs;
1284
1285 if (all_cpus) {
1286 CPU_FOREACH(cs) {
1287 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
1288 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1289 }
1290 } else {
1291 cs = mon_get_cpu();
1292
1293 if (!cs) {
1294 monitor_printf(mon, "No CPU available\n");
1295 return;
1296 }
1297
1298 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1299 }
1300 }
1301
1302 #ifdef CONFIG_TCG
1303 static void hmp_info_jit(Monitor *mon, const QDict *qdict)
1304 {
1305 if (!tcg_enabled()) {
1306 error_report("JIT information is only available with accel=tcg");
1307 return;
1308 }
1309
1310 dump_exec_info((FILE *)mon, monitor_fprintf);
1311 dump_drift_info((FILE *)mon, monitor_fprintf);
1312 }
1313
1314 static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
1315 {
1316 dump_opcount_info((FILE *)mon, monitor_fprintf);
1317 }
1318 #endif
1319
1320 static void hmp_info_sync_profile(Monitor *mon, const QDict *qdict)
1321 {
1322 int64_t max = qdict_get_try_int(qdict, "max", 10);
1323 bool mean = qdict_get_try_bool(qdict, "mean", false);
1324 bool coalesce = !qdict_get_try_bool(qdict, "no_coalesce", false);
1325 enum QSPSortBy sort_by;
1326
1327 sort_by = mean ? QSP_SORT_BY_AVG_WAIT_TIME : QSP_SORT_BY_TOTAL_WAIT_TIME;
1328 qsp_report((FILE *)mon, monitor_fprintf, max, sort_by, coalesce);
1329 }
1330
1331 static void hmp_info_history(Monitor *mon, const QDict *qdict)
1332 {
1333 int i;
1334 const char *str;
1335
1336 if (!mon->rs)
1337 return;
1338 i = 0;
1339 for(;;) {
1340 str = readline_get_history(mon->rs, i);
1341 if (!str)
1342 break;
1343 monitor_printf(mon, "%d: '%s'\n", i, str);
1344 i++;
1345 }
1346 }
1347
1348 static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
1349 {
1350 CPUState *cs = mon_get_cpu();
1351
1352 if (!cs) {
1353 monitor_printf(mon, "No CPU available\n");
1354 return;
1355 }
1356 cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0);
1357 }
1358
1359 static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
1360 {
1361 const char *name = qdict_get_try_str(qdict, "name");
1362 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1363 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
1364 TraceEventInfoList *events;
1365 TraceEventInfoList *elem;
1366 Error *local_err = NULL;
1367
1368 if (name == NULL) {
1369 name = "*";
1370 }
1371 if (vcpu < 0) {
1372 monitor_printf(mon, "argument vcpu must be positive");
1373 return;
1374 }
1375
1376 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
1377 if (local_err) {
1378 error_report_err(local_err);
1379 return;
1380 }
1381
1382 for (elem = events; elem != NULL; elem = elem->next) {
1383 monitor_printf(mon, "%s : state %u\n",
1384 elem->value->name,
1385 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1386 }
1387 qapi_free_TraceEventInfoList(events);
1388 }
1389
1390 void qmp_client_migrate_info(const char *protocol, const char *hostname,
1391 bool has_port, int64_t port,
1392 bool has_tls_port, int64_t tls_port,
1393 bool has_cert_subject, const char *cert_subject,
1394 Error **errp)
1395 {
1396 if (strcmp(protocol, "spice") == 0) {
1397 if (!qemu_using_spice(errp)) {
1398 return;
1399 }
1400
1401 if (!has_port && !has_tls_port) {
1402 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1403 return;
1404 }
1405
1406 if (qemu_spice_migrate_info(hostname,
1407 has_port ? port : -1,
1408 has_tls_port ? tls_port : -1,
1409 cert_subject)) {
1410 error_setg(errp, QERR_UNDEFINED_ERROR);
1411 return;
1412 }
1413 return;
1414 }
1415
1416 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
1417 }
1418
1419 static void hmp_logfile(Monitor *mon, const QDict *qdict)
1420 {
1421 Error *err = NULL;
1422
1423 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
1424 if (err) {
1425 error_report_err(err);
1426 }
1427 }
1428
1429 static void hmp_log(Monitor *mon, const QDict *qdict)
1430 {
1431 int mask;
1432 const char *items = qdict_get_str(qdict, "items");
1433
1434 if (!strcmp(items, "none")) {
1435 mask = 0;
1436 } else {
1437 mask = qemu_str_to_log_mask(items);
1438 if (!mask) {
1439 help_cmd(mon, "log");
1440 return;
1441 }
1442 }
1443 qemu_set_log(mask);
1444 }
1445
1446 static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1447 {
1448 const char *option = qdict_get_try_str(qdict, "option");
1449 if (!option || !strcmp(option, "on")) {
1450 singlestep = 1;
1451 } else if (!strcmp(option, "off")) {
1452 singlestep = 0;
1453 } else {
1454 monitor_printf(mon, "unexpected option %s\n", option);
1455 }
1456 }
1457
1458 static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
1459 {
1460 const char *device = qdict_get_try_str(qdict, "device");
1461 if (!device)
1462 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1463 if (gdbserver_start(device) < 0) {
1464 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1465 device);
1466 } else if (strcmp(device, "none") == 0) {
1467 monitor_printf(mon, "Disabled gdbserver\n");
1468 } else {
1469 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1470 device);
1471 }
1472 }
1473
1474 static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
1475 {
1476 const char *action = qdict_get_str(qdict, "action");
1477 if (select_watchdog_action(action) == -1) {
1478 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1479 }
1480 }
1481
1482 static void monitor_printc(Monitor *mon, int c)
1483 {
1484 monitor_printf(mon, "'");
1485 switch(c) {
1486 case '\'':
1487 monitor_printf(mon, "\\'");
1488 break;
1489 case '\\':
1490 monitor_printf(mon, "\\\\");
1491 break;
1492 case '\n':
1493 monitor_printf(mon, "\\n");
1494 break;
1495 case '\r':
1496 monitor_printf(mon, "\\r");
1497 break;
1498 default:
1499 if (c >= 32 && c <= 126) {
1500 monitor_printf(mon, "%c", c);
1501 } else {
1502 monitor_printf(mon, "\\x%02x", c);
1503 }
1504 break;
1505 }
1506 monitor_printf(mon, "'");
1507 }
1508
1509 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1510 hwaddr addr, int is_physical)
1511 {
1512 int l, line_size, i, max_digits, len;
1513 uint8_t buf[16];
1514 uint64_t v;
1515 CPUState *cs = mon_get_cpu();
1516
1517 if (!cs && (format == 'i' || !is_physical)) {
1518 monitor_printf(mon, "Can not dump without CPU\n");
1519 return;
1520 }
1521
1522 if (format == 'i') {
1523 monitor_disas(mon, cs, addr, count, is_physical);
1524 return;
1525 }
1526
1527 len = wsize * count;
1528 if (wsize == 1)
1529 line_size = 8;
1530 else
1531 line_size = 16;
1532 max_digits = 0;
1533
1534 switch(format) {
1535 case 'o':
1536 max_digits = DIV_ROUND_UP(wsize * 8, 3);
1537 break;
1538 default:
1539 case 'x':
1540 max_digits = (wsize * 8) / 4;
1541 break;
1542 case 'u':
1543 case 'd':
1544 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
1545 break;
1546 case 'c':
1547 wsize = 1;
1548 break;
1549 }
1550
1551 while (len > 0) {
1552 if (is_physical)
1553 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1554 else
1555 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1556 l = len;
1557 if (l > line_size)
1558 l = line_size;
1559 if (is_physical) {
1560 AddressSpace *as = cs ? cs->as : &address_space_memory;
1561 MemTxResult r = address_space_read(as, addr,
1562 MEMTXATTRS_UNSPECIFIED, buf, l);
1563 if (r != MEMTX_OK) {
1564 monitor_printf(mon, " Cannot access memory\n");
1565 break;
1566 }
1567 } else {
1568 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
1569 monitor_printf(mon, " Cannot access memory\n");
1570 break;
1571 }
1572 }
1573 i = 0;
1574 while (i < l) {
1575 switch(wsize) {
1576 default:
1577 case 1:
1578 v = ldub_p(buf + i);
1579 break;
1580 case 2:
1581 v = lduw_p(buf + i);
1582 break;
1583 case 4:
1584 v = (uint32_t)ldl_p(buf + i);
1585 break;
1586 case 8:
1587 v = ldq_p(buf + i);
1588 break;
1589 }
1590 monitor_printf(mon, " ");
1591 switch(format) {
1592 case 'o':
1593 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1594 break;
1595 case 'x':
1596 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1597 break;
1598 case 'u':
1599 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1600 break;
1601 case 'd':
1602 monitor_printf(mon, "%*" PRId64, max_digits, v);
1603 break;
1604 case 'c':
1605 monitor_printc(mon, v);
1606 break;
1607 }
1608 i += wsize;
1609 }
1610 monitor_printf(mon, "\n");
1611 addr += l;
1612 len -= l;
1613 }
1614 }
1615
1616 static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
1617 {
1618 int count = qdict_get_int(qdict, "count");
1619 int format = qdict_get_int(qdict, "format");
1620 int size = qdict_get_int(qdict, "size");
1621 target_long addr = qdict_get_int(qdict, "addr");
1622
1623 memory_dump(mon, count, format, size, addr, 0);
1624 }
1625
1626 static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
1627 {
1628 int count = qdict_get_int(qdict, "count");
1629 int format = qdict_get_int(qdict, "format");
1630 int size = qdict_get_int(qdict, "size");
1631 hwaddr addr = qdict_get_int(qdict, "addr");
1632
1633 memory_dump(mon, count, format, size, addr, 1);
1634 }
1635
1636 static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp)
1637 {
1638 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
1639 addr, 1);
1640
1641 if (!mrs.mr) {
1642 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
1643 return NULL;
1644 }
1645
1646 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
1647 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
1648 memory_region_unref(mrs.mr);
1649 return NULL;
1650 }
1651
1652 *p_mr = mrs.mr;
1653 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
1654 }
1655
1656 static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
1657 {
1658 hwaddr addr = qdict_get_int(qdict, "addr");
1659 Error *local_err = NULL;
1660 MemoryRegion *mr = NULL;
1661 void *ptr;
1662
1663 ptr = gpa2hva(&mr, addr, &local_err);
1664 if (local_err) {
1665 error_report_err(local_err);
1666 return;
1667 }
1668
1669 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
1670 " (%s) is %p\n",
1671 addr, mr->name, ptr);
1672
1673 memory_region_unref(mr);
1674 }
1675
1676 #ifdef CONFIG_LINUX
1677 static uint64_t vtop(void *ptr, Error **errp)
1678 {
1679 uint64_t pinfo;
1680 uint64_t ret = -1;
1681 uintptr_t addr = (uintptr_t) ptr;
1682 uintptr_t pagesize = getpagesize();
1683 off_t offset = addr / pagesize * sizeof(pinfo);
1684 int fd;
1685
1686 fd = open("/proc/self/pagemap", O_RDONLY);
1687 if (fd == -1) {
1688 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
1689 return -1;
1690 }
1691
1692 /* Force copy-on-write if necessary. */
1693 atomic_add((uint8_t *)ptr, 0);
1694
1695 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
1696 error_setg_errno(errp, errno, "Cannot read pagemap");
1697 goto out;
1698 }
1699 if ((pinfo & (1ull << 63)) == 0) {
1700 error_setg(errp, "Page not present");
1701 goto out;
1702 }
1703 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
1704
1705 out:
1706 close(fd);
1707 return ret;
1708 }
1709
1710 static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
1711 {
1712 hwaddr addr = qdict_get_int(qdict, "addr");
1713 Error *local_err = NULL;
1714 MemoryRegion *mr = NULL;
1715 void *ptr;
1716 uint64_t physaddr;
1717
1718 ptr = gpa2hva(&mr, addr, &local_err);
1719 if (local_err) {
1720 error_report_err(local_err);
1721 return;
1722 }
1723
1724 physaddr = vtop(ptr, &local_err);
1725 if (local_err) {
1726 error_report_err(local_err);
1727 } else {
1728 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
1729 " (%s) is 0x%" PRIx64 "\n",
1730 addr, mr->name, (uint64_t) physaddr);
1731 }
1732
1733 memory_region_unref(mr);
1734 }
1735 #endif
1736
1737 static void do_print(Monitor *mon, const QDict *qdict)
1738 {
1739 int format = qdict_get_int(qdict, "format");
1740 hwaddr val = qdict_get_int(qdict, "val");
1741
1742 switch(format) {
1743 case 'o':
1744 monitor_printf(mon, "%#" HWADDR_PRIo, val);
1745 break;
1746 case 'x':
1747 monitor_printf(mon, "%#" HWADDR_PRIx, val);
1748 break;
1749 case 'u':
1750 monitor_printf(mon, "%" HWADDR_PRIu, val);
1751 break;
1752 default:
1753 case 'd':
1754 monitor_printf(mon, "%" HWADDR_PRId, val);
1755 break;
1756 case 'c':
1757 monitor_printc(mon, val);
1758 break;
1759 }
1760 monitor_printf(mon, "\n");
1761 }
1762
1763 static void hmp_sum(Monitor *mon, const QDict *qdict)
1764 {
1765 uint32_t addr;
1766 uint16_t sum;
1767 uint32_t start = qdict_get_int(qdict, "start");
1768 uint32_t size = qdict_get_int(qdict, "size");
1769
1770 sum = 0;
1771 for(addr = start; addr < (start + size); addr++) {
1772 uint8_t val = address_space_ldub(&address_space_memory, addr,
1773 MEMTXATTRS_UNSPECIFIED, NULL);
1774 /* BSD sum algorithm ('sum' Unix command) */
1775 sum = (sum >> 1) | (sum << 15);
1776 sum += val;
1777 }
1778 monitor_printf(mon, "%05d\n", sum);
1779 }
1780
1781 static int mouse_button_state;
1782
1783 static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
1784 {
1785 int dx, dy, dz, button;
1786 const char *dx_str = qdict_get_str(qdict, "dx_str");
1787 const char *dy_str = qdict_get_str(qdict, "dy_str");
1788 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1789
1790 dx = strtol(dx_str, NULL, 0);
1791 dy = strtol(dy_str, NULL, 0);
1792 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1793 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1794
1795 if (dz_str) {
1796 dz = strtol(dz_str, NULL, 0);
1797 if (dz != 0) {
1798 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1799 qemu_input_queue_btn(NULL, button, true);
1800 qemu_input_event_sync();
1801 qemu_input_queue_btn(NULL, button, false);
1802 }
1803 }
1804 qemu_input_event_sync();
1805 }
1806
1807 static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
1808 {
1809 static uint32_t bmap[INPUT_BUTTON__MAX] = {
1810 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1811 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1812 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1813 };
1814 int button_state = qdict_get_int(qdict, "button_state");
1815
1816 if (mouse_button_state == button_state) {
1817 return;
1818 }
1819 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1820 qemu_input_event_sync();
1821 mouse_button_state = button_state;
1822 }
1823
1824 static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
1825 {
1826 int size = qdict_get_int(qdict, "size");
1827 int addr = qdict_get_int(qdict, "addr");
1828 int has_index = qdict_haskey(qdict, "index");
1829 uint32_t val;
1830 int suffix;
1831
1832 if (has_index) {
1833 int index = qdict_get_int(qdict, "index");
1834 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1835 addr++;
1836 }
1837 addr &= 0xffff;
1838
1839 switch(size) {
1840 default:
1841 case 1:
1842 val = cpu_inb(addr);
1843 suffix = 'b';
1844 break;
1845 case 2:
1846 val = cpu_inw(addr);
1847 suffix = 'w';
1848 break;
1849 case 4:
1850 val = cpu_inl(addr);
1851 suffix = 'l';
1852 break;
1853 }
1854 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1855 suffix, addr, size * 2, val);
1856 }
1857
1858 static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
1859 {
1860 int size = qdict_get_int(qdict, "size");
1861 int addr = qdict_get_int(qdict, "addr");
1862 int val = qdict_get_int(qdict, "val");
1863
1864 addr &= IOPORTS_MASK;
1865
1866 switch (size) {
1867 default:
1868 case 1:
1869 cpu_outb(addr, val);
1870 break;
1871 case 2:
1872 cpu_outw(addr, val);
1873 break;
1874 case 4:
1875 cpu_outl(addr, val);
1876 break;
1877 }
1878 }
1879
1880 static void hmp_boot_set(Monitor *mon, const QDict *qdict)
1881 {
1882 Error *local_err = NULL;
1883 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1884
1885 qemu_boot_set(bootdevice, &local_err);
1886 if (local_err) {
1887 error_report_err(local_err);
1888 } else {
1889 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1890 }
1891 }
1892
1893 static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
1894 {
1895 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
1896 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
1897 bool owner = qdict_get_try_bool(qdict, "owner", false);
1898
1899 mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree,
1900 owner);
1901 }
1902
1903 static void hmp_info_numa(Monitor *mon, const QDict *qdict)
1904 {
1905 int i;
1906 NumaNodeMem *node_mem;
1907 CpuInfoList *cpu_list, *cpu;
1908
1909 cpu_list = qmp_query_cpus(&error_abort);
1910 node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
1911
1912 query_numa_node_mem(node_mem);
1913 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1914 for (i = 0; i < nb_numa_nodes; i++) {
1915 monitor_printf(mon, "node %d cpus:", i);
1916 for (cpu = cpu_list; cpu; cpu = cpu->next) {
1917 if (cpu->value->has_props && cpu->value->props->has_node_id &&
1918 cpu->value->props->node_id == i) {
1919 monitor_printf(mon, " %" PRIi64, cpu->value->CPU);
1920 }
1921 }
1922 monitor_printf(mon, "\n");
1923 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1924 node_mem[i].node_mem >> 20);
1925 monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i,
1926 node_mem[i].node_plugged_mem >> 20);
1927 }
1928 qapi_free_CpuInfoList(cpu_list);
1929 g_free(node_mem);
1930 }
1931
1932 #ifdef CONFIG_PROFILER
1933
1934 int64_t dev_time;
1935
1936 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1937 {
1938 static int64_t last_cpu_exec_time;
1939 int64_t cpu_exec_time;
1940 int64_t delta;
1941
1942 cpu_exec_time = tcg_cpu_exec_time();
1943 delta = cpu_exec_time - last_cpu_exec_time;
1944
1945 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1946 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
1947 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1948 delta, delta / (double)NANOSECONDS_PER_SECOND);
1949 last_cpu_exec_time = cpu_exec_time;
1950 dev_time = 0;
1951 }
1952 #else
1953 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1954 {
1955 monitor_printf(mon, "Internal profiler not compiled\n");
1956 }
1957 #endif
1958
1959 /* Capture support */
1960 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
1961
1962 static void hmp_info_capture(Monitor *mon, const QDict *qdict)
1963 {
1964 int i;
1965 CaptureState *s;
1966
1967 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1968 monitor_printf(mon, "[%d]: ", i);
1969 s->ops.info (s->opaque);
1970 }
1971 }
1972
1973 static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
1974 {
1975 int i;
1976 int n = qdict_get_int(qdict, "n");
1977 CaptureState *s;
1978
1979 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1980 if (i == n) {
1981 s->ops.destroy (s->opaque);
1982 QLIST_REMOVE (s, entries);
1983 g_free (s);
1984 return;
1985 }
1986 }
1987 }
1988
1989 static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
1990 {
1991 const char *path = qdict_get_str(qdict, "path");
1992 int has_freq = qdict_haskey(qdict, "freq");
1993 int freq = qdict_get_try_int(qdict, "freq", -1);
1994 int has_bits = qdict_haskey(qdict, "bits");
1995 int bits = qdict_get_try_int(qdict, "bits", -1);
1996 int has_channels = qdict_haskey(qdict, "nchannels");
1997 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
1998 CaptureState *s;
1999
2000 s = g_malloc0 (sizeof (*s));
2001
2002 freq = has_freq ? freq : 44100;
2003 bits = has_bits ? bits : 16;
2004 nchannels = has_channels ? nchannels : 2;
2005
2006 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2007 monitor_printf(mon, "Failed to add wave capture\n");
2008 g_free (s);
2009 return;
2010 }
2011 QLIST_INSERT_HEAD (&capture_head, s, entries);
2012 }
2013
2014 static qemu_acl *find_acl(Monitor *mon, const char *name)
2015 {
2016 qemu_acl *acl = qemu_acl_find(name);
2017
2018 if (!acl) {
2019 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2020 }
2021 return acl;
2022 }
2023
2024 static void hmp_acl_show(Monitor *mon, const QDict *qdict)
2025 {
2026 const char *aclname = qdict_get_str(qdict, "aclname");
2027 qemu_acl *acl = find_acl(mon, aclname);
2028 qemu_acl_entry *entry;
2029 int i = 0;
2030
2031 if (acl) {
2032 monitor_printf(mon, "policy: %s\n",
2033 acl->defaultDeny ? "deny" : "allow");
2034 QTAILQ_FOREACH(entry, &acl->entries, next) {
2035 i++;
2036 monitor_printf(mon, "%d: %s %s\n", i,
2037 entry->deny ? "deny" : "allow", entry->match);
2038 }
2039 }
2040 }
2041
2042 static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
2043 {
2044 const char *aclname = qdict_get_str(qdict, "aclname");
2045 qemu_acl *acl = find_acl(mon, aclname);
2046
2047 if (acl) {
2048 qemu_acl_reset(acl);
2049 monitor_printf(mon, "acl: removed all rules\n");
2050 }
2051 }
2052
2053 static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
2054 {
2055 const char *aclname = qdict_get_str(qdict, "aclname");
2056 const char *policy = qdict_get_str(qdict, "policy");
2057 qemu_acl *acl = find_acl(mon, aclname);
2058
2059 if (acl) {
2060 if (strcmp(policy, "allow") == 0) {
2061 acl->defaultDeny = 0;
2062 monitor_printf(mon, "acl: policy set to 'allow'\n");
2063 } else if (strcmp(policy, "deny") == 0) {
2064 acl->defaultDeny = 1;
2065 monitor_printf(mon, "acl: policy set to 'deny'\n");
2066 } else {
2067 monitor_printf(mon, "acl: unknown policy '%s', "
2068 "expected 'deny' or 'allow'\n", policy);
2069 }
2070 }
2071 }
2072
2073 static void hmp_acl_add(Monitor *mon, const QDict *qdict)
2074 {
2075 const char *aclname = qdict_get_str(qdict, "aclname");
2076 const char *match = qdict_get_str(qdict, "match");
2077 const char *policy = qdict_get_str(qdict, "policy");
2078 int has_index = qdict_haskey(qdict, "index");
2079 int index = qdict_get_try_int(qdict, "index", -1);
2080 qemu_acl *acl = find_acl(mon, aclname);
2081 int deny, ret;
2082
2083 if (acl) {
2084 if (strcmp(policy, "allow") == 0) {
2085 deny = 0;
2086 } else if (strcmp(policy, "deny") == 0) {
2087 deny = 1;
2088 } else {
2089 monitor_printf(mon, "acl: unknown policy '%s', "
2090 "expected 'deny' or 'allow'\n", policy);
2091 return;
2092 }
2093 if (has_index)
2094 ret = qemu_acl_insert(acl, deny, match, index);
2095 else
2096 ret = qemu_acl_append(acl, deny, match);
2097 if (ret < 0)
2098 monitor_printf(mon, "acl: unable to add acl entry\n");
2099 else
2100 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2101 }
2102 }
2103
2104 static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
2105 {
2106 const char *aclname = qdict_get_str(qdict, "aclname");
2107 const char *match = qdict_get_str(qdict, "match");
2108 qemu_acl *acl = find_acl(mon, aclname);
2109 int ret;
2110
2111 if (acl) {
2112 ret = qemu_acl_remove(acl, match);
2113 if (ret < 0)
2114 monitor_printf(mon, "acl: no matching acl entry\n");
2115 else
2116 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2117 }
2118 }
2119
2120 void qmp_getfd(const char *fdname, Error **errp)
2121 {
2122 mon_fd_t *monfd;
2123 int fd, tmp_fd;
2124
2125 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
2126 if (fd == -1) {
2127 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2128 return;
2129 }
2130
2131 if (qemu_isdigit(fdname[0])) {
2132 close(fd);
2133 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2134 "a name not starting with a digit");
2135 return;
2136 }
2137
2138 qemu_mutex_lock(&cur_mon->mon_lock);
2139 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2140 if (strcmp(monfd->name, fdname) != 0) {
2141 continue;
2142 }
2143
2144 tmp_fd = monfd->fd;
2145 monfd->fd = fd;
2146 qemu_mutex_unlock(&cur_mon->mon_lock);
2147 /* Make sure close() is outside critical section */
2148 close(tmp_fd);
2149 return;
2150 }
2151
2152 monfd = g_malloc0(sizeof(mon_fd_t));
2153 monfd->name = g_strdup(fdname);
2154 monfd->fd = fd;
2155
2156 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
2157 qemu_mutex_unlock(&cur_mon->mon_lock);
2158 }
2159
2160 void qmp_closefd(const char *fdname, Error **errp)
2161 {
2162 mon_fd_t *monfd;
2163 int tmp_fd;
2164
2165 qemu_mutex_lock(&cur_mon->mon_lock);
2166 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2167 if (strcmp(monfd->name, fdname) != 0) {
2168 continue;
2169 }
2170
2171 QLIST_REMOVE(monfd, next);
2172 tmp_fd = monfd->fd;
2173 g_free(monfd->name);
2174 g_free(monfd);
2175 qemu_mutex_unlock(&cur_mon->mon_lock);
2176 /* Make sure close() is outside critical section */
2177 close(tmp_fd);
2178 return;
2179 }
2180
2181 qemu_mutex_unlock(&cur_mon->mon_lock);
2182 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
2183 }
2184
2185 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
2186 {
2187 mon_fd_t *monfd;
2188
2189 qemu_mutex_lock(&mon->mon_lock);
2190 QLIST_FOREACH(monfd, &mon->fds, next) {
2191 int fd;
2192
2193 if (strcmp(monfd->name, fdname) != 0) {
2194 continue;
2195 }
2196
2197 fd = monfd->fd;
2198
2199 /* caller takes ownership of fd */
2200 QLIST_REMOVE(monfd, next);
2201 g_free(monfd->name);
2202 g_free(monfd);
2203 qemu_mutex_unlock(&mon->mon_lock);
2204
2205 return fd;
2206 }
2207
2208 qemu_mutex_unlock(&mon->mon_lock);
2209 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
2210 return -1;
2211 }
2212
2213 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2214 {
2215 MonFdsetFd *mon_fdset_fd;
2216 MonFdsetFd *mon_fdset_fd_next;
2217
2218 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2219 if ((mon_fdset_fd->removed ||
2220 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2221 runstate_is_running()) {
2222 close(mon_fdset_fd->fd);
2223 g_free(mon_fdset_fd->opaque);
2224 QLIST_REMOVE(mon_fdset_fd, next);
2225 g_free(mon_fdset_fd);
2226 }
2227 }
2228
2229 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2230 QLIST_REMOVE(mon_fdset, next);
2231 g_free(mon_fdset);
2232 }
2233 }
2234
2235 static void monitor_fdsets_cleanup(void)
2236 {
2237 MonFdset *mon_fdset;
2238 MonFdset *mon_fdset_next;
2239
2240 qemu_mutex_lock(&mon_fdsets_lock);
2241 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2242 monitor_fdset_cleanup(mon_fdset);
2243 }
2244 qemu_mutex_unlock(&mon_fdsets_lock);
2245 }
2246
2247 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2248 const char *opaque, Error **errp)
2249 {
2250 int fd;
2251 Monitor *mon = cur_mon;
2252 AddfdInfo *fdinfo;
2253
2254 fd = qemu_chr_fe_get_msgfd(&mon->chr);
2255 if (fd == -1) {
2256 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2257 goto error;
2258 }
2259
2260 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2261 has_opaque, opaque, errp);
2262 if (fdinfo) {
2263 return fdinfo;
2264 }
2265
2266 error:
2267 if (fd != -1) {
2268 close(fd);
2269 }
2270 return NULL;
2271 }
2272
2273 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2274 {
2275 MonFdset *mon_fdset;
2276 MonFdsetFd *mon_fdset_fd;
2277 char fd_str[60];
2278
2279 qemu_mutex_lock(&mon_fdsets_lock);
2280 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2281 if (mon_fdset->id != fdset_id) {
2282 continue;
2283 }
2284 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2285 if (has_fd) {
2286 if (mon_fdset_fd->fd != fd) {
2287 continue;
2288 }
2289 mon_fdset_fd->removed = true;
2290 break;
2291 } else {
2292 mon_fdset_fd->removed = true;
2293 }
2294 }
2295 if (has_fd && !mon_fdset_fd) {
2296 goto error;
2297 }
2298 monitor_fdset_cleanup(mon_fdset);
2299 qemu_mutex_unlock(&mon_fdsets_lock);
2300 return;
2301 }
2302
2303 error:
2304 qemu_mutex_unlock(&mon_fdsets_lock);
2305 if (has_fd) {
2306 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2307 fdset_id, fd);
2308 } else {
2309 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2310 }
2311 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
2312 }
2313
2314 FdsetInfoList *qmp_query_fdsets(Error **errp)
2315 {
2316 MonFdset *mon_fdset;
2317 MonFdsetFd *mon_fdset_fd;
2318 FdsetInfoList *fdset_list = NULL;
2319
2320 qemu_mutex_lock(&mon_fdsets_lock);
2321 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2322 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2323 FdsetFdInfoList *fdsetfd_list = NULL;
2324
2325 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2326 fdset_info->value->fdset_id = mon_fdset->id;
2327
2328 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2329 FdsetFdInfoList *fdsetfd_info;
2330
2331 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2332 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2333 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2334 if (mon_fdset_fd->opaque) {
2335 fdsetfd_info->value->has_opaque = true;
2336 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2337 } else {
2338 fdsetfd_info->value->has_opaque = false;
2339 }
2340
2341 fdsetfd_info->next = fdsetfd_list;
2342 fdsetfd_list = fdsetfd_info;
2343 }
2344
2345 fdset_info->value->fds = fdsetfd_list;
2346
2347 fdset_info->next = fdset_list;
2348 fdset_list = fdset_info;
2349 }
2350 qemu_mutex_unlock(&mon_fdsets_lock);
2351
2352 return fdset_list;
2353 }
2354
2355 AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2356 bool has_opaque, const char *opaque,
2357 Error **errp)
2358 {
2359 MonFdset *mon_fdset = NULL;
2360 MonFdsetFd *mon_fdset_fd;
2361 AddfdInfo *fdinfo;
2362
2363 qemu_mutex_lock(&mon_fdsets_lock);
2364 if (has_fdset_id) {
2365 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2366 /* Break if match found or match impossible due to ordering by ID */
2367 if (fdset_id <= mon_fdset->id) {
2368 if (fdset_id < mon_fdset->id) {
2369 mon_fdset = NULL;
2370 }
2371 break;
2372 }
2373 }
2374 }
2375
2376 if (mon_fdset == NULL) {
2377 int64_t fdset_id_prev = -1;
2378 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2379
2380 if (has_fdset_id) {
2381 if (fdset_id < 0) {
2382 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2383 "a non-negative value");
2384 qemu_mutex_unlock(&mon_fdsets_lock);
2385 return NULL;
2386 }
2387 /* Use specified fdset ID */
2388 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2389 mon_fdset_cur = mon_fdset;
2390 if (fdset_id < mon_fdset_cur->id) {
2391 break;
2392 }
2393 }
2394 } else {
2395 /* Use first available fdset ID */
2396 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2397 mon_fdset_cur = mon_fdset;
2398 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2399 fdset_id_prev = mon_fdset_cur->id;
2400 continue;
2401 }
2402 break;
2403 }
2404 }
2405
2406 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2407 if (has_fdset_id) {
2408 mon_fdset->id = fdset_id;
2409 } else {
2410 mon_fdset->id = fdset_id_prev + 1;
2411 }
2412
2413 /* The fdset list is ordered by fdset ID */
2414 if (!mon_fdset_cur) {
2415 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2416 } else if (mon_fdset->id < mon_fdset_cur->id) {
2417 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2418 } else {
2419 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2420 }
2421 }
2422
2423 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2424 mon_fdset_fd->fd = fd;
2425 mon_fdset_fd->removed = false;
2426 if (has_opaque) {
2427 mon_fdset_fd->opaque = g_strdup(opaque);
2428 }
2429 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2430
2431 fdinfo = g_malloc0(sizeof(*fdinfo));
2432 fdinfo->fdset_id = mon_fdset->id;
2433 fdinfo->fd = mon_fdset_fd->fd;
2434
2435 qemu_mutex_unlock(&mon_fdsets_lock);
2436 return fdinfo;
2437 }
2438
2439 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2440 {
2441 #ifdef _WIN32
2442 return -ENOENT;
2443 #else
2444 MonFdset *mon_fdset;
2445 MonFdsetFd *mon_fdset_fd;
2446 int mon_fd_flags;
2447 int ret;
2448
2449 qemu_mutex_lock(&mon_fdsets_lock);
2450 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2451 if (mon_fdset->id != fdset_id) {
2452 continue;
2453 }
2454 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2455 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2456 if (mon_fd_flags == -1) {
2457 ret = -errno;
2458 goto out;
2459 }
2460
2461 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2462 ret = mon_fdset_fd->fd;
2463 goto out;
2464 }
2465 }
2466 ret = -EACCES;
2467 goto out;
2468 }
2469 ret = -ENOENT;
2470
2471 out:
2472 qemu_mutex_unlock(&mon_fdsets_lock);
2473 return ret;
2474 #endif
2475 }
2476
2477 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2478 {
2479 MonFdset *mon_fdset;
2480 MonFdsetFd *mon_fdset_fd_dup;
2481
2482 qemu_mutex_lock(&mon_fdsets_lock);
2483 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2484 if (mon_fdset->id != fdset_id) {
2485 continue;
2486 }
2487 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2488 if (mon_fdset_fd_dup->fd == dup_fd) {
2489 goto err;
2490 }
2491 }
2492 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2493 mon_fdset_fd_dup->fd = dup_fd;
2494 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2495 qemu_mutex_unlock(&mon_fdsets_lock);
2496 return 0;
2497 }
2498
2499 err:
2500 qemu_mutex_unlock(&mon_fdsets_lock);
2501 return -1;
2502 }
2503
2504 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2505 {
2506 MonFdset *mon_fdset;
2507 MonFdsetFd *mon_fdset_fd_dup;
2508
2509 qemu_mutex_lock(&mon_fdsets_lock);
2510 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2511 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2512 if (mon_fdset_fd_dup->fd == dup_fd) {
2513 if (remove) {
2514 QLIST_REMOVE(mon_fdset_fd_dup, next);
2515 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2516 monitor_fdset_cleanup(mon_fdset);
2517 }
2518 goto err;
2519 } else {
2520 qemu_mutex_unlock(&mon_fdsets_lock);
2521 return mon_fdset->id;
2522 }
2523 }
2524 }
2525 }
2526
2527 err:
2528 qemu_mutex_unlock(&mon_fdsets_lock);
2529 return -1;
2530 }
2531
2532 int monitor_fdset_dup_fd_find(int dup_fd)
2533 {
2534 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2535 }
2536
2537 void monitor_fdset_dup_fd_remove(int dup_fd)
2538 {
2539 monitor_fdset_dup_fd_find_remove(dup_fd, true);
2540 }
2541
2542 int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
2543 {
2544 int fd;
2545 Error *local_err = NULL;
2546
2547 if (!qemu_isdigit(fdname[0]) && mon) {
2548 fd = monitor_get_fd(mon, fdname, &local_err);
2549 } else {
2550 fd = qemu_parse_fd(fdname);
2551 if (fd == -1) {
2552 error_setg(&local_err, "Invalid file descriptor number '%s'",
2553 fdname);
2554 }
2555 }
2556 if (local_err) {
2557 error_propagate(errp, local_err);
2558 assert(fd == -1);
2559 } else {
2560 assert(fd != -1);
2561 }
2562
2563 return fd;
2564 }
2565
2566 /* Please update hmp-commands.hx when adding or changing commands */
2567 static mon_cmd_t info_cmds[] = {
2568 #include "hmp-commands-info.h"
2569 { NULL, NULL, },
2570 };
2571
2572 /* mon_cmds and info_cmds would be sorted at runtime */
2573 static mon_cmd_t mon_cmds[] = {
2574 #include "hmp-commands.h"
2575 { NULL, NULL, },
2576 };
2577
2578 /*******************************************************************/
2579
2580 static const char *pch;
2581 static sigjmp_buf expr_env;
2582
2583
2584 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2585 expr_error(Monitor *mon, const char *fmt, ...)
2586 {
2587 va_list ap;
2588 va_start(ap, fmt);
2589 monitor_vprintf(mon, fmt, ap);
2590 monitor_printf(mon, "\n");
2591 va_end(ap);
2592 siglongjmp(expr_env, 1);
2593 }
2594
2595 /* return 0 if OK, -1 if not found */
2596 static int get_monitor_def(target_long *pval, const char *name)
2597 {
2598 const MonitorDef *md = target_monitor_defs();
2599 CPUState *cs = mon_get_cpu();
2600 void *ptr;
2601 uint64_t tmp = 0;
2602 int ret;
2603
2604 if (cs == NULL || md == NULL) {
2605 return -1;
2606 }
2607
2608 for(; md->name != NULL; md++) {
2609 if (compare_cmd(name, md->name)) {
2610 if (md->get_value) {
2611 *pval = md->get_value(md, md->offset);
2612 } else {
2613 CPUArchState *env = mon_get_cpu_env();
2614 ptr = (uint8_t *)env + md->offset;
2615 switch(md->type) {
2616 case MD_I32:
2617 *pval = *(int32_t *)ptr;
2618 break;
2619 case MD_TLONG:
2620 *pval = *(target_long *)ptr;
2621 break;
2622 default:
2623 *pval = 0;
2624 break;
2625 }
2626 }
2627 return 0;
2628 }
2629 }
2630
2631 ret = target_get_monitor_def(cs, name, &tmp);
2632 if (!ret) {
2633 *pval = (target_long) tmp;
2634 }
2635
2636 return ret;
2637 }
2638
2639 static void next(void)
2640 {
2641 if (*pch != '\0') {
2642 pch++;
2643 while (qemu_isspace(*pch))
2644 pch++;
2645 }
2646 }
2647
2648 static int64_t expr_sum(Monitor *mon);
2649
2650 static int64_t expr_unary(Monitor *mon)
2651 {
2652 int64_t n;
2653 char *p;
2654 int ret;
2655
2656 switch(*pch) {
2657 case '+':
2658 next();
2659 n = expr_unary(mon);
2660 break;
2661 case '-':
2662 next();
2663 n = -expr_unary(mon);
2664 break;
2665 case '~':
2666 next();
2667 n = ~expr_unary(mon);
2668 break;
2669 case '(':
2670 next();
2671 n = expr_sum(mon);
2672 if (*pch != ')') {
2673 expr_error(mon, "')' expected");
2674 }
2675 next();
2676 break;
2677 case '\'':
2678 pch++;
2679 if (*pch == '\0')
2680 expr_error(mon, "character constant expected");
2681 n = *pch;
2682 pch++;
2683 if (*pch != '\'')
2684 expr_error(mon, "missing terminating \' character");
2685 next();
2686 break;
2687 case '$':
2688 {
2689 char buf[128], *q;
2690 target_long reg=0;
2691
2692 pch++;
2693 q = buf;
2694 while ((*pch >= 'a' && *pch <= 'z') ||
2695 (*pch >= 'A' && *pch <= 'Z') ||
2696 (*pch >= '0' && *pch <= '9') ||
2697 *pch == '_' || *pch == '.') {
2698 if ((q - buf) < sizeof(buf) - 1)
2699 *q++ = *pch;
2700 pch++;
2701 }
2702 while (qemu_isspace(*pch))
2703 pch++;
2704 *q = 0;
2705 ret = get_monitor_def(&reg, buf);
2706 if (ret < 0)
2707 expr_error(mon, "unknown register");
2708 n = reg;
2709 }
2710 break;
2711 case '\0':
2712 expr_error(mon, "unexpected end of expression");
2713 n = 0;
2714 break;
2715 default:
2716 errno = 0;
2717 n = strtoull(pch, &p, 0);
2718 if (errno == ERANGE) {
2719 expr_error(mon, "number too large");
2720 }
2721 if (pch == p) {
2722 expr_error(mon, "invalid char '%c' in expression", *p);
2723 }
2724 pch = p;
2725 while (qemu_isspace(*pch))
2726 pch++;
2727 break;
2728 }
2729 return n;
2730 }
2731
2732
2733 static int64_t expr_prod(Monitor *mon)
2734 {
2735 int64_t val, val2;
2736 int op;
2737
2738 val = expr_unary(mon);
2739 for(;;) {
2740 op = *pch;
2741 if (op != '*' && op != '/' && op != '%')
2742 break;
2743 next();
2744 val2 = expr_unary(mon);
2745 switch(op) {
2746 default:
2747 case '*':
2748 val *= val2;
2749 break;
2750 case '/':
2751 case '%':
2752 if (val2 == 0)
2753 expr_error(mon, "division by zero");
2754 if (op == '/')
2755 val /= val2;
2756 else
2757 val %= val2;
2758 break;
2759 }
2760 }
2761 return val;
2762 }
2763
2764 static int64_t expr_logic(Monitor *mon)
2765 {
2766 int64_t val, val2;
2767 int op;
2768
2769 val = expr_prod(mon);
2770 for(;;) {
2771 op = *pch;
2772 if (op != '&' && op != '|' && op != '^')
2773 break;
2774 next();
2775 val2 = expr_prod(mon);
2776 switch(op) {
2777 default:
2778 case '&':
2779 val &= val2;
2780 break;
2781 case '|':
2782 val |= val2;
2783 break;
2784 case '^':
2785 val ^= val2;
2786 break;
2787 }
2788 }
2789 return val;
2790 }
2791
2792 static int64_t expr_sum(Monitor *mon)
2793 {
2794 int64_t val, val2;
2795 int op;
2796
2797 val = expr_logic(mon);
2798 for(;;) {
2799 op = *pch;
2800 if (op != '+' && op != '-')
2801 break;
2802 next();
2803 val2 = expr_logic(mon);
2804 if (op == '+')
2805 val += val2;
2806 else
2807 val -= val2;
2808 }
2809 return val;
2810 }
2811
2812 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2813 {
2814 pch = *pp;
2815 if (sigsetjmp(expr_env, 0)) {
2816 *pp = pch;
2817 return -1;
2818 }
2819 while (qemu_isspace(*pch))
2820 pch++;
2821 *pval = expr_sum(mon);
2822 *pp = pch;
2823 return 0;
2824 }
2825
2826 static int get_double(Monitor *mon, double *pval, const char **pp)
2827 {
2828 const char *p = *pp;
2829 char *tailp;
2830 double d;
2831
2832 d = strtod(p, &tailp);
2833 if (tailp == p) {
2834 monitor_printf(mon, "Number expected\n");
2835 return -1;
2836 }
2837 if (d != d || d - d != 0) {
2838 /* NaN or infinity */
2839 monitor_printf(mon, "Bad number\n");
2840 return -1;
2841 }
2842 *pval = d;
2843 *pp = tailp;
2844 return 0;
2845 }
2846
2847 /*
2848 * Store the command-name in cmdname, and return a pointer to
2849 * the remaining of the command string.
2850 */
2851 static const char *get_command_name(const char *cmdline,
2852 char *cmdname, size_t nlen)
2853 {
2854 size_t len;
2855 const char *p, *pstart;
2856
2857 p = cmdline;
2858 while (qemu_isspace(*p))
2859 p++;
2860 if (*p == '\0')
2861 return NULL;
2862 pstart = p;
2863 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2864 p++;
2865 len = p - pstart;
2866 if (len > nlen - 1)
2867 len = nlen - 1;
2868 memcpy(cmdname, pstart, len);
2869 cmdname[len] = '\0';
2870 return p;
2871 }
2872
2873 /**
2874 * Read key of 'type' into 'key' and return the current
2875 * 'type' pointer.
2876 */
2877 static char *key_get_info(const char *type, char **key)
2878 {
2879 size_t len;
2880 char *p, *str;
2881
2882 if (*type == ',')
2883 type++;
2884
2885 p = strchr(type, ':');
2886 if (!p) {
2887 *key = NULL;
2888 return NULL;
2889 }
2890 len = p - type;
2891
2892 str = g_malloc(len + 1);
2893 memcpy(str, type, len);
2894 str[len] = '\0';
2895
2896 *key = str;
2897 return ++p;
2898 }
2899
2900 static int default_fmt_format = 'x';
2901 static int default_fmt_size = 4;
2902
2903 static int is_valid_option(const char *c, const char *typestr)
2904 {
2905 char option[3];
2906
2907 option[0] = '-';
2908 option[1] = *c;
2909 option[2] = '\0';
2910
2911 typestr = strstr(typestr, option);
2912 return (typestr != NULL);
2913 }
2914
2915 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
2916 const char *cmdname)
2917 {
2918 const mon_cmd_t *cmd;
2919
2920 for (cmd = disp_table; cmd->name != NULL; cmd++) {
2921 if (compare_cmd(cmdname, cmd->name)) {
2922 return cmd;
2923 }
2924 }
2925
2926 return NULL;
2927 }
2928
2929 /*
2930 * Parse command name from @cmdp according to command table @table.
2931 * If blank, return NULL.
2932 * Else, if no valid command can be found, report to @mon, and return
2933 * NULL.
2934 * Else, change @cmdp to point right behind the name, and return its
2935 * command table entry.
2936 * Do not assume the return value points into @table! It doesn't when
2937 * the command is found in a sub-command table.
2938 */
2939 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
2940 const char *cmdp_start,
2941 const char **cmdp,
2942 mon_cmd_t *table)
2943 {
2944 const char *p;
2945 const mon_cmd_t *cmd;
2946 char cmdname[256];
2947
2948 /* extract the command name */
2949 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
2950 if (!p)
2951 return NULL;
2952
2953 cmd = search_dispatch_table(table, cmdname);
2954 if (!cmd) {
2955 monitor_printf(mon, "unknown command: '%.*s'\n",
2956 (int)(p - cmdp_start), cmdp_start);
2957 return NULL;
2958 }
2959 if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) {
2960 monitor_printf(mon, "Command '%.*s' not available with -preconfig "
2961 "until after exit_preconfig.\n",
2962 (int)(p - cmdp_start), cmdp_start);
2963 return NULL;
2964 }
2965
2966 /* filter out following useless space */
2967 while (qemu_isspace(*p)) {
2968 p++;
2969 }
2970
2971 *cmdp = p;
2972 /* search sub command */
2973 if (cmd->sub_table != NULL && *p != '\0') {
2974 return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table);
2975 }
2976
2977 return cmd;
2978 }
2979
2980 /*
2981 * Parse arguments for @cmd.
2982 * If it can't be parsed, report to @mon, and return NULL.
2983 * Else, insert command arguments into a QDict, and return it.
2984 * Note: On success, caller has to free the QDict structure.
2985 */
2986
2987 static QDict *monitor_parse_arguments(Monitor *mon,
2988 const char **endp,
2989 const mon_cmd_t *cmd)
2990 {
2991 const char *typestr;
2992 char *key;
2993 int c;
2994 const char *p = *endp;
2995 char buf[1024];
2996 QDict *qdict = qdict_new();
2997
2998 /* parse the parameters */
2999 typestr = cmd->args_type;
3000 for(;;) {
3001 typestr = key_get_info(typestr, &key);
3002 if (!typestr)
3003 break;
3004 c = *typestr;
3005 typestr++;
3006 switch(c) {
3007 case 'F':
3008 case 'B':
3009 case 's':
3010 {
3011 int ret;
3012
3013 while (qemu_isspace(*p))
3014 p++;
3015 if (*typestr == '?') {
3016 typestr++;
3017 if (*p == '\0') {
3018 /* no optional string: NULL argument */
3019 break;
3020 }
3021 }
3022 ret = get_str(buf, sizeof(buf), &p);
3023 if (ret < 0) {
3024 switch(c) {
3025 case 'F':
3026 monitor_printf(mon, "%s: filename expected\n",
3027 cmd->name);
3028 break;
3029 case 'B':
3030 monitor_printf(mon, "%s: block device name expected\n",
3031 cmd->name);
3032 break;
3033 default:
3034 monitor_printf(mon, "%s: string expected\n", cmd->name);
3035 break;
3036 }
3037 goto fail;
3038 }
3039 qdict_put_str(qdict, key, buf);
3040 }
3041 break;
3042 case 'O':
3043 {
3044 QemuOptsList *opts_list;
3045 QemuOpts *opts;
3046
3047 opts_list = qemu_find_opts(key);
3048 if (!opts_list || opts_list->desc->name) {
3049 goto bad_type;
3050 }
3051 while (qemu_isspace(*p)) {
3052 p++;
3053 }
3054 if (!*p)
3055 break;
3056 if (get_str(buf, sizeof(buf), &p) < 0) {
3057 goto fail;
3058 }
3059 opts = qemu_opts_parse_noisily(opts_list, buf, true);
3060 if (!opts) {
3061 goto fail;
3062 }
3063 qemu_opts_to_qdict(opts, qdict);
3064 qemu_opts_del(opts);
3065 }
3066 break;
3067 case '/':
3068 {
3069 int count, format, size;
3070
3071 while (qemu_isspace(*p))
3072 p++;
3073 if (*p == '/') {
3074 /* format found */
3075 p++;
3076 count = 1;
3077 if (qemu_isdigit(*p)) {
3078 count = 0;
3079 while (qemu_isdigit(*p)) {
3080 count = count * 10 + (*p - '0');
3081 p++;
3082 }
3083 }
3084 size = -1;
3085 format = -1;
3086 for(;;) {
3087 switch(*p) {
3088 case 'o':
3089 case 'd':
3090 case 'u':
3091 case 'x':
3092 case 'i':
3093 case 'c':
3094 format = *p++;
3095 break;
3096 case 'b':
3097 size = 1;
3098 p++;
3099 break;
3100 case 'h':
3101 size = 2;
3102 p++;
3103 break;
3104 case 'w':
3105 size = 4;
3106 p++;
3107 break;
3108 case 'g':
3109 case 'L':
3110 size = 8;
3111 p++;
3112 break;
3113 default:
3114 goto next;
3115 }
3116 }
3117 next:
3118 if (*p != '\0' && !qemu_isspace(*p)) {
3119 monitor_printf(mon, "invalid char in format: '%c'\n",
3120 *p);
3121 goto fail;
3122 }
3123 if (format < 0)
3124 format = default_fmt_format;
3125 if (format != 'i') {
3126 /* for 'i', not specifying a size gives -1 as size */
3127 if (size < 0)
3128 size = default_fmt_size;
3129 default_fmt_size = size;
3130 }
3131 default_fmt_format = format;
3132 } else {
3133 count = 1;
3134 format = default_fmt_format;
3135 if (format != 'i') {
3136 size = default_fmt_size;
3137 } else {
3138 size = -1;
3139 }
3140 }
3141 qdict_put_int(qdict, "count", count);
3142 qdict_put_int(qdict, "format", format);
3143 qdict_put_int(qdict, "size", size);
3144 }
3145 break;
3146 case 'i':
3147 case 'l':
3148 case 'M':
3149 {
3150 int64_t val;
3151
3152 while (qemu_isspace(*p))
3153 p++;
3154 if (*typestr == '?' || *typestr == '.') {
3155 if (*typestr == '?') {
3156 if (*p == '\0') {
3157 typestr++;
3158 break;
3159 }
3160 } else {
3161 if (*p == '.') {
3162 p++;
3163 while (qemu_isspace(*p))
3164 p++;
3165 } else {
3166 typestr++;
3167 break;
3168 }
3169 }
3170 typestr++;
3171 }
3172 if (get_expr(mon, &val, &p))
3173 goto fail;
3174 /* Check if 'i' is greater than 32-bit */
3175 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3176 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
3177 monitor_printf(mon, "integer is for 32-bit values\n");
3178 goto fail;
3179 } else if (c == 'M') {
3180 if (val < 0) {
3181 monitor_printf(mon, "enter a positive value\n");
3182 goto fail;
3183 }
3184 val *= MiB;
3185 }
3186 qdict_put_int(qdict, key, val);
3187 }
3188 break;
3189 case 'o':
3190 {
3191 int ret;
3192 uint64_t val;
3193 const char *end;
3194
3195 while (qemu_isspace(*p)) {
3196 p++;
3197 }
3198 if (*typestr == '?') {
3199 typestr++;
3200 if (*p == '\0') {
3201 break;
3202 }
3203 }
3204 ret = qemu_strtosz_MiB(p, &end, &val);
3205 if (ret < 0 || val > INT64_MAX) {
3206 monitor_printf(mon, "invalid size\n");
3207 goto fail;
3208 }
3209 qdict_put_int(qdict, key, val);
3210 p = end;
3211 }
3212 break;
3213 case 'T':
3214 {
3215 double val;
3216
3217 while (qemu_isspace(*p))
3218 p++;
3219 if (*typestr == '?') {
3220 typestr++;
3221 if (*p == '\0') {
3222 break;
3223 }
3224 }
3225 if (get_double(mon, &val, &p) < 0) {
3226 goto fail;
3227 }
3228 if (p[0] && p[1] == 's') {
3229 switch (*p) {
3230 case 'm':
3231 val /= 1e3; p += 2; break;
3232 case 'u':
3233 val /= 1e6; p += 2; break;
3234 case 'n':
3235 val /= 1e9; p += 2; break;
3236 }
3237 }
3238 if (*p && !qemu_isspace(*p)) {
3239 monitor_printf(mon, "Unknown unit suffix\n");
3240 goto fail;
3241 }
3242 qdict_put(qdict, key, qnum_from_double(val));
3243 }
3244 break;
3245 case 'b':
3246 {
3247 const char *beg;
3248 bool val;
3249
3250 while (qemu_isspace(*p)) {
3251 p++;
3252 }
3253 beg = p;
3254 while (qemu_isgraph(*p)) {
3255 p++;
3256 }
3257 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3258 val = true;
3259 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3260 val = false;
3261 } else {
3262 monitor_printf(mon, "Expected 'on' or 'off'\n");
3263 goto fail;
3264 }
3265 qdict_put_bool(qdict, key, val);
3266 }
3267 break;
3268 case '-':
3269 {
3270 const char *tmp = p;
3271 int skip_key = 0;
3272 /* option */
3273
3274 c = *typestr++;
3275 if (c == '\0')
3276 goto bad_type;
3277 while (qemu_isspace(*p))
3278 p++;
3279 if (*p == '-') {
3280 p++;
3281 if(c != *p) {
3282 if(!is_valid_option(p, typestr)) {
3283
3284 monitor_printf(mon, "%s: unsupported option -%c\n",
3285 cmd->name, *p);
3286 goto fail;
3287 } else {
3288 skip_key = 1;
3289 }
3290 }
3291 if(skip_key) {
3292 p = tmp;
3293 } else {
3294 /* has option */
3295 p++;
3296 qdict_put_bool(qdict, key, true);
3297 }
3298 }
3299 }
3300 break;
3301 case 'S':
3302 {
3303 /* package all remaining string */
3304 int len;
3305
3306 while (qemu_isspace(*p)) {
3307 p++;
3308 }
3309 if (*typestr == '?') {
3310 typestr++;
3311 if (*p == '\0') {
3312 /* no remaining string: NULL argument */
3313 break;
3314 }
3315 }
3316 len = strlen(p);
3317 if (len <= 0) {
3318 monitor_printf(mon, "%s: string expected\n",
3319 cmd->name);
3320 goto fail;
3321 }
3322 qdict_put_str(qdict, key, p);
3323 p += len;
3324 }
3325 break;
3326 default:
3327 bad_type:
3328 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
3329 goto fail;
3330 }
3331 g_free(key);
3332 key = NULL;
3333 }
3334 /* check that all arguments were parsed */
3335 while (qemu_isspace(*p))
3336 p++;
3337 if (*p != '\0') {
3338 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3339 cmd->name);
3340 goto fail;
3341 }
3342
3343 return qdict;
3344
3345 fail:
3346 qobject_unref(qdict);
3347 g_free(key);
3348 return NULL;
3349 }
3350
3351 static void handle_hmp_command(Monitor *mon, const char *cmdline)
3352 {
3353 QDict *qdict;
3354 const mon_cmd_t *cmd;
3355 const char *cmd_start = cmdline;
3356
3357 trace_handle_hmp_command(mon, cmdline);
3358
3359 cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table);
3360 if (!cmd) {
3361 return;
3362 }
3363
3364 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3365 if (!qdict) {
3366 while (cmdline > cmd_start && qemu_isspace(cmdline[-1])) {
3367 cmdline--;
3368 }
3369 monitor_printf(mon, "Try \"help %.*s\" for more information\n",
3370 (int)(cmdline - cmd_start), cmd_start);
3371 return;
3372 }
3373
3374 cmd->cmd(mon, qdict);
3375 qobject_unref(qdict);
3376 }
3377
3378 static void cmd_completion(Monitor *mon, const char *name, const char *list)
3379 {
3380 const char *p, *pstart;
3381 char cmd[128];
3382 int len;
3383
3384 p = list;
3385 for(;;) {
3386 pstart = p;
3387 p = qemu_strchrnul(p, '|');
3388 len = p - pstart;
3389 if (len > sizeof(cmd) - 2)
3390 len = sizeof(cmd) - 2;
3391 memcpy(cmd, pstart, len);
3392 cmd[len] = '\0';
3393 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3394 readline_add_completion(mon->rs, cmd);
3395 }
3396 if (*p == '\0')
3397 break;
3398 p++;
3399 }
3400 }
3401
3402 static void file_completion(Monitor *mon, const char *input)
3403 {
3404 DIR *ffs;
3405 struct dirent *d;
3406 char path[1024];
3407 char file[1024], file_prefix[1024];
3408 int input_path_len;
3409 const char *p;
3410
3411 p = strrchr(input, '/');
3412 if (!p) {
3413 input_path_len = 0;
3414 pstrcpy(file_prefix, sizeof(file_prefix), input);
3415 pstrcpy(path, sizeof(path), ".");
3416 } else {
3417 input_path_len = p - input + 1;
3418 memcpy(path, input, input_path_len);
3419 if (input_path_len > sizeof(path) - 1)
3420 input_path_len = sizeof(path) - 1;
3421 path[input_path_len] = '\0';
3422 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3423 }
3424
3425 ffs = opendir(path);
3426 if (!ffs)
3427 return;
3428 for(;;) {
3429 struct stat sb;
3430 d = readdir(ffs);
3431 if (!d)
3432 break;
3433
3434 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3435 continue;
3436 }
3437
3438 if (strstart(d->d_name, file_prefix, NULL)) {
3439 memcpy(file, input, input_path_len);
3440 if (input_path_len < sizeof(file))
3441 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3442 d->d_name);
3443 /* stat the file to find out if it's a directory.
3444 * In that case add a slash to speed up typing long paths
3445 */
3446 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3447 pstrcat(file, sizeof(file), "/");
3448 }
3449 readline_add_completion(mon->rs, file);
3450 }
3451 }
3452 closedir(ffs);
3453 }
3454
3455 static const char *next_arg_type(const char *typestr)
3456 {
3457 const char *p = strchr(typestr, ':');
3458 return (p != NULL ? ++p : typestr);
3459 }
3460
3461 static void add_completion_option(ReadLineState *rs, const char *str,
3462 const char *option)
3463 {
3464 if (!str || !option) {
3465 return;
3466 }
3467 if (!strncmp(option, str, strlen(str))) {
3468 readline_add_completion(rs, option);
3469 }
3470 }
3471
3472 void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3473 {
3474 size_t len;
3475 ChardevBackendInfoList *list, *start;
3476
3477 if (nb_args != 2) {
3478 return;
3479 }
3480 len = strlen(str);
3481 readline_set_completion_index(rs, len);
3482
3483 start = list = qmp_query_chardev_backends(NULL);
3484 while (list) {
3485 const char *chr_name = list->value->name;
3486
3487 if (!strncmp(chr_name, str, len)) {
3488 readline_add_completion(rs, chr_name);
3489 }
3490 list = list->next;
3491 }
3492 qapi_free_ChardevBackendInfoList(start);
3493 }
3494
3495 void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3496 {
3497 size_t len;
3498 int i;
3499
3500 if (nb_args != 2) {
3501 return;
3502 }
3503 len = strlen(str);
3504 readline_set_completion_index(rs, len);
3505 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
3506 add_completion_option(rs, str, NetClientDriver_str(i));
3507 }
3508 }
3509
3510 void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
3511 {
3512 GSList *list, *elt;
3513 size_t len;
3514
3515 if (nb_args != 2) {
3516 return;
3517 }
3518
3519 len = strlen(str);
3520 readline_set_completion_index(rs, len);
3521 list = elt = object_class_get_list(TYPE_DEVICE, false);
3522 while (elt) {
3523 const char *name;
3524 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3525 TYPE_DEVICE);
3526 name = object_class_get_name(OBJECT_CLASS(dc));
3527
3528 if (dc->user_creatable
3529 && !strncmp(name, str, len)) {
3530 readline_add_completion(rs, name);
3531 }
3532 elt = elt->next;
3533 }
3534 g_slist_free(list);
3535 }
3536
3537 void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
3538 {
3539 GSList *list, *elt;
3540 size_t len;
3541
3542 if (nb_args != 2) {
3543 return;
3544 }
3545
3546 len = strlen(str);
3547 readline_set_completion_index(rs, len);
3548 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3549 while (elt) {
3550 const char *name;
3551
3552 name = object_class_get_name(OBJECT_CLASS(elt->data));
3553 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3554 readline_add_completion(rs, name);
3555 }
3556 elt = elt->next;
3557 }
3558 g_slist_free(list);
3559 }
3560
3561 static void peripheral_device_del_completion(ReadLineState *rs,
3562 const char *str, size_t len)
3563 {
3564 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3565 GSList *list, *item;
3566
3567 list = qdev_build_hotpluggable_device_list(peripheral);
3568 if (!list) {
3569 return;
3570 }
3571
3572 for (item = list; item; item = g_slist_next(item)) {
3573 DeviceState *dev = item->data;
3574
3575 if (dev->id && !strncmp(str, dev->id, len)) {
3576 readline_add_completion(rs, dev->id);
3577 }
3578 }
3579
3580 g_slist_free(list);
3581 }
3582
3583 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3584 {
3585 size_t len;
3586 ChardevInfoList *list, *start;
3587
3588 if (nb_args != 2) {
3589 return;
3590 }
3591 len = strlen(str);
3592 readline_set_completion_index(rs, len);
3593
3594 start = list = qmp_query_chardev(NULL);
3595 while (list) {
3596 ChardevInfo *chr = list->value;
3597
3598 if (!strncmp(chr->label, str, len)) {
3599 readline_add_completion(rs, chr->label);
3600 }
3601 list = list->next;
3602 }
3603 qapi_free_ChardevInfoList(start);
3604 }
3605
3606 static void ringbuf_completion(ReadLineState *rs, const char *str)
3607 {
3608 size_t len;
3609 ChardevInfoList *list, *start;
3610
3611 len = strlen(str);
3612 readline_set_completion_index(rs, len);
3613
3614 start = list = qmp_query_chardev(NULL);
3615 while (list) {
3616 ChardevInfo *chr_info = list->value;
3617
3618 if (!strncmp(chr_info->label, str, len)) {
3619 Chardev *chr = qemu_chr_find(chr_info->label);
3620 if (chr && CHARDEV_IS_RINGBUF(chr)) {
3621 readline_add_completion(rs, chr_info->label);
3622 }
3623 }
3624 list = list->next;
3625 }
3626 qapi_free_ChardevInfoList(start);
3627 }
3628
3629 void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3630 {
3631 if (nb_args != 2) {
3632 return;
3633 }
3634 ringbuf_completion(rs, str);
3635 }
3636
3637 void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3638 {
3639 size_t len;
3640
3641 if (nb_args != 2) {
3642 return;
3643 }
3644
3645 len = strlen(str);
3646 readline_set_completion_index(rs, len);
3647 peripheral_device_del_completion(rs, str, len);
3648 }
3649
3650 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
3651 {
3652 ObjectPropertyInfoList *list, *start;
3653 size_t len;
3654
3655 if (nb_args != 2) {
3656 return;
3657 }
3658 len = strlen(str);
3659 readline_set_completion_index(rs, len);
3660
3661 start = list = qmp_qom_list("/objects", NULL);
3662 while (list) {
3663 ObjectPropertyInfo *info = list->value;
3664
3665 if (!strncmp(info->type, "child<", 5)
3666 && !strncmp(info->name, str, len)) {
3667 readline_add_completion(rs, info->name);
3668 }
3669 list = list->next;
3670 }
3671 qapi_free_ObjectPropertyInfoList(start);
3672 }
3673
3674 void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3675 {
3676 int i;
3677 char *sep;
3678 size_t len;
3679
3680 if (nb_args != 2) {
3681 return;
3682 }
3683 sep = strrchr(str, '-');
3684 if (sep) {
3685 str = sep + 1;
3686 }
3687 len = strlen(str);
3688 readline_set_completion_index(rs, len);
3689 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
3690 if (!strncmp(str, QKeyCode_str(i), len)) {
3691 readline_add_completion(rs, QKeyCode_str(i));
3692 }
3693 }
3694 }
3695
3696 void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
3697 {
3698 size_t len;
3699
3700 len = strlen(str);
3701 readline_set_completion_index(rs, len);
3702 if (nb_args == 2) {
3703 NetClientState *ncs[MAX_QUEUE_NUM];
3704 int count, i;
3705 count = qemu_find_net_clients_except(NULL, ncs,
3706 NET_CLIENT_DRIVER_NONE,
3707 MAX_QUEUE_NUM);
3708 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3709 const char *name = ncs[i]->name;
3710 if (!strncmp(str, name, len)) {
3711 readline_add_completion(rs, name);
3712 }
3713 }
3714 } else if (nb_args == 3) {
3715 add_completion_option(rs, str, "on");
3716 add_completion_option(rs, str, "off");
3717 }
3718 }
3719
3720 void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
3721 {
3722 int len, count, i;
3723 NetClientState *ncs[MAX_QUEUE_NUM];
3724
3725 if (nb_args != 2) {
3726 return;
3727 }
3728
3729 len = strlen(str);
3730 readline_set_completion_index(rs, len);
3731 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
3732 MAX_QUEUE_NUM);
3733 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3734 QemuOpts *opts;
3735 const char *name = ncs[i]->name;
3736 if (strncmp(str, name, len)) {
3737 continue;
3738 }
3739 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
3740 if (opts) {
3741 readline_add_completion(rs, name);
3742 }
3743 }
3744 }
3745
3746 void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
3747 {
3748 size_t len;
3749
3750 len = strlen(str);
3751 readline_set_completion_index(rs, len);
3752 if (nb_args == 2) {
3753 TraceEventIter iter;
3754 TraceEvent *ev;
3755 char *pattern = g_strdup_printf("%s*", str);
3756 trace_event_iter_init(&iter, pattern);
3757 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3758 readline_add_completion(rs, trace_event_get_name(ev));
3759 }
3760 g_free(pattern);
3761 }
3762 }
3763
3764 void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
3765 {
3766 size_t len;
3767
3768 len = strlen(str);
3769 readline_set_completion_index(rs, len);
3770 if (nb_args == 2) {
3771 TraceEventIter iter;
3772 TraceEvent *ev;
3773 char *pattern = g_strdup_printf("%s*", str);
3774 trace_event_iter_init(&iter, pattern);
3775 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3776 readline_add_completion(rs, trace_event_get_name(ev));
3777 }
3778 g_free(pattern);
3779 } else if (nb_args == 3) {
3780 add_completion_option(rs, str, "on");
3781 add_completion_option(rs, str, "off");
3782 }
3783 }
3784
3785 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
3786 {
3787 int i;
3788
3789 if (nb_args != 2) {
3790 return;
3791 }
3792 readline_set_completion_index(rs, strlen(str));
3793 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
3794 add_completion_option(rs, str, WatchdogAction_str(i));
3795 }
3796 }
3797
3798 void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
3799 const char *str)
3800 {
3801 size_t len;
3802
3803 len = strlen(str);
3804 readline_set_completion_index(rs, len);
3805 if (nb_args == 2) {
3806 int i;
3807 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
3808 const char *name = MigrationCapability_str(i);
3809 if (!strncmp(str, name, len)) {
3810 readline_add_completion(rs, name);
3811 }
3812 }
3813 } else if (nb_args == 3) {
3814 add_completion_option(rs, str, "on");
3815 add_completion_option(rs, str, "off");
3816 }
3817 }
3818
3819 void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
3820 const char *str)
3821 {
3822 size_t len;
3823
3824 len = strlen(str);
3825 readline_set_completion_index(rs, len);
3826 if (nb_args == 2) {
3827 int i;
3828 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
3829 const char *name = MigrationParameter_str(i);
3830 if (!strncmp(str, name, len)) {
3831 readline_add_completion(rs, name);
3832 }
3833 }
3834 }
3835 }
3836
3837 static void vm_completion(ReadLineState *rs, const char *str)
3838 {
3839 size_t len;
3840 BlockDriverState *bs;
3841 BdrvNextIterator it;
3842
3843 len = strlen(str);
3844 readline_set_completion_index(rs, len);
3845
3846 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3847 SnapshotInfoList *snapshots, *snapshot;
3848 AioContext *ctx = bdrv_get_aio_context(bs);
3849 bool ok = false;
3850
3851 aio_context_acquire(ctx);
3852 if (bdrv_can_snapshot(bs)) {
3853 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
3854 }
3855 aio_context_release(ctx);
3856 if (!ok) {
3857 continue;
3858 }
3859
3860 snapshot = snapshots;
3861 while (snapshot) {
3862 char *completion = snapshot->value->name;
3863 if (!strncmp(str, completion, len)) {
3864 readline_add_completion(rs, completion);
3865 }
3866 completion = snapshot->value->id;
3867 if (!strncmp(str, completion, len)) {
3868 readline_add_completion(rs, completion);
3869 }
3870 snapshot = snapshot->next;
3871 }
3872 qapi_free_SnapshotInfoList(snapshots);
3873 }
3874
3875 }
3876
3877 void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
3878 {
3879 if (nb_args == 2) {
3880 vm_completion(rs, str);
3881 }
3882 }
3883
3884 void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
3885 {
3886 if (nb_args == 2) {
3887 vm_completion(rs, str);
3888 }
3889 }
3890
3891 static void monitor_find_completion_by_table(Monitor *mon,
3892 const mon_cmd_t *cmd_table,
3893 char **args,
3894 int nb_args)
3895 {
3896 const char *cmdname;
3897 int i;
3898 const char *ptype, *old_ptype, *str, *name;
3899 const mon_cmd_t *cmd;
3900 BlockBackend *blk = NULL;
3901
3902 if (nb_args <= 1) {
3903 /* command completion */
3904 if (nb_args == 0)
3905 cmdname = "";
3906 else
3907 cmdname = args[0];
3908 readline_set_completion_index(mon->rs, strlen(cmdname));
3909 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3910 if (!runstate_check(RUN_STATE_PRECONFIG) ||
3911 cmd_can_preconfig(cmd)) {
3912 cmd_completion(mon, cmdname, cmd->name);
3913 }
3914 }
3915 } else {
3916 /* find the command */
3917 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3918 if (compare_cmd(args[0], cmd->name) &&
3919 (!runstate_check(RUN_STATE_PRECONFIG) ||
3920 cmd_can_preconfig(cmd))) {
3921 break;
3922 }
3923 }
3924 if (!cmd->name) {
3925 return;
3926 }
3927
3928 if (cmd->sub_table) {
3929 /* do the job again */
3930 monitor_find_completion_by_table(mon, cmd->sub_table,
3931 &args[1], nb_args - 1);
3932 return;
3933 }
3934 if (cmd->command_completion) {
3935 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
3936 return;
3937 }
3938
3939 ptype = next_arg_type(cmd->args_type);
3940 for(i = 0; i < nb_args - 2; i++) {
3941 if (*ptype != '\0') {
3942 ptype = next_arg_type(ptype);
3943 while (*ptype == '?')
3944 ptype = next_arg_type(ptype);
3945 }
3946 }
3947 str = args[nb_args - 1];
3948 old_ptype = NULL;
3949 while (*ptype == '-' && old_ptype != ptype) {
3950 old_ptype = ptype;
3951 ptype = next_arg_type(ptype);
3952 }
3953 switch(*ptype) {
3954 case 'F':
3955 /* file completion */
3956 readline_set_completion_index(mon->rs, strlen(str));
3957 file_completion(mon, str);
3958 break;
3959 case 'B':
3960 /* block device name completion */
3961 readline_set_completion_index(mon->rs, strlen(str));
3962 while ((blk = blk_next(blk)) != NULL) {
3963 name = blk_name(blk);
3964 if (str[0] == '\0' ||
3965 !strncmp(name, str, strlen(str))) {
3966 readline_add_completion(mon->rs, name);
3967 }
3968 }
3969 break;
3970 case 's':
3971 case 'S':
3972 if (!strcmp(cmd->name, "help|?")) {
3973 monitor_find_completion_by_table(mon, cmd_table,
3974 &args[1], nb_args - 1);
3975 }
3976 break;
3977 default:
3978 break;
3979 }
3980 }
3981 }
3982
3983 static void monitor_find_completion(void *opaque,
3984 const char *cmdline)
3985 {
3986 Monitor *mon = opaque;
3987 char *args[MAX_ARGS];
3988 int nb_args, len;
3989
3990 /* 1. parse the cmdline */
3991 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
3992 return;
3993 }
3994
3995 /* if the line ends with a space, it means we want to complete the
3996 next arg */
3997 len = strlen(cmdline);
3998 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3999 if (nb_args >= MAX_ARGS) {
4000 goto cleanup;
4001 }
4002 args[nb_args++] = g_strdup("");
4003 }
4004
4005 /* 2. auto complete according to args */
4006 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
4007
4008 cleanup:
4009 free_cmdline_args(args, nb_args);
4010 }
4011
4012 static int monitor_can_read(void *opaque)
4013 {
4014 Monitor *mon = opaque;
4015
4016 return !atomic_mb_read(&mon->suspend_cnt);
4017 }
4018
4019 /*
4020 * Emit QMP response @rsp with ID @id to @mon.
4021 * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
4022 * Nothing is emitted then.
4023 */
4024 static void monitor_qmp_respond(Monitor *mon, QDict *rsp, QObject *id)
4025 {
4026 if (rsp) {
4027 if (id) {
4028 qdict_put_obj(rsp, "id", qobject_ref(id));
4029 }
4030
4031 qmp_send_response(mon, rsp);
4032 }
4033 }
4034
4035 static void monitor_qmp_dispatch(Monitor *mon, QObject *req, QObject *id)
4036 {
4037 Monitor *old_mon;
4038 QDict *rsp;
4039 QDict *error;
4040
4041 old_mon = cur_mon;
4042 cur_mon = mon;
4043
4044 rsp = qmp_dispatch(mon->qmp.commands, req, qmp_oob_enabled(mon));
4045
4046 cur_mon = old_mon;
4047
4048 if (mon->qmp.commands == &qmp_cap_negotiation_commands) {
4049 error = qdict_get_qdict(rsp, "error");
4050 if (error
4051 && !g_strcmp0(qdict_get_try_str(error, "class"),
4052 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) {
4053 /* Provide a more useful error message */
4054 qdict_del(error, "desc");
4055 qdict_put_str(error, "desc", "Expecting capabilities negotiation"
4056 " with 'qmp_capabilities'");
4057 }
4058 }
4059
4060 monitor_qmp_respond(mon, rsp, id);
4061 qobject_unref(rsp);
4062 }
4063
4064 /*
4065 * Pop a QMP request from a monitor request queue.
4066 * Return the request, or NULL all request queues are empty.
4067 * We are using round-robin fashion to pop the request, to avoid
4068 * processing commands only on a very busy monitor. To achieve that,
4069 * when we process one request on a specific monitor, we put that
4070 * monitor to the end of mon_list queue.
4071 *
4072 * Note: if the function returned with non-NULL, then the caller will
4073 * be with mon->qmp.qmp_queue_lock held, and the caller is responsible
4074 * to release it.
4075 */
4076 static QMPRequest *monitor_qmp_requests_pop_any_with_lock(void)
4077 {
4078 QMPRequest *req_obj = NULL;
4079 Monitor *mon;
4080
4081 qemu_mutex_lock(&monitor_lock);
4082
4083 QTAILQ_FOREACH(mon, &mon_list, entry) {
4084 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4085 req_obj = g_queue_pop_head(mon->qmp.qmp_requests);
4086 if (req_obj) {
4087 /* With the lock of corresponding queue held */
4088 break;
4089 }
4090 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4091 }
4092
4093 if (req_obj) {
4094 /*
4095 * We found one request on the monitor. Degrade this monitor's
4096 * priority to lowest by re-inserting it to end of queue.
4097 */
4098 QTAILQ_REMOVE(&mon_list, mon, entry);
4099 QTAILQ_INSERT_TAIL(&mon_list, mon, entry);
4100 }
4101
4102 qemu_mutex_unlock(&monitor_lock);
4103
4104 return req_obj;
4105 }
4106
4107 static void monitor_qmp_bh_dispatcher(void *data)
4108 {
4109 QMPRequest *req_obj = monitor_qmp_requests_pop_any_with_lock();
4110 QDict *rsp;
4111 bool need_resume;
4112 Monitor *mon;
4113
4114 if (!req_obj) {
4115 return;
4116 }
4117
4118 mon = req_obj->mon;
4119 /* qmp_oob_enabled() might change after "qmp_capabilities" */
4120 need_resume = !qmp_oob_enabled(mon) ||
4121 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1;
4122 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4123 if (req_obj->req) {
4124 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj->id) ?: "");
4125 monitor_qmp_dispatch(mon, req_obj->req, req_obj->id);
4126 } else {
4127 assert(req_obj->err);
4128 rsp = qmp_error_response(req_obj->err);
4129 req_obj->err = NULL;
4130 monitor_qmp_respond(mon, rsp, NULL);
4131 qobject_unref(rsp);
4132 }
4133
4134 if (need_resume) {
4135 /* Pairs with the monitor_suspend() in handle_qmp_command() */
4136 monitor_resume(mon);
4137 }
4138 qmp_request_free(req_obj);
4139
4140 /* Reschedule instead of looping so the main loop stays responsive */
4141 qemu_bh_schedule(qmp_dispatcher_bh);
4142 }
4143
4144 static void handle_qmp_command(void *opaque, QObject *req, Error *err)
4145 {
4146 Monitor *mon = opaque;
4147 QObject *id = NULL;
4148 QDict *qdict;
4149 QMPRequest *req_obj;
4150
4151 assert(!req != !err);
4152
4153 qdict = qobject_to(QDict, req);
4154 if (qdict) {
4155 id = qobject_ref(qdict_get(qdict, "id"));
4156 qdict_del(qdict, "id");
4157 } /* else will fail qmp_dispatch() */
4158
4159 if (req && trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
4160 QString *req_json = qobject_to_json(req);
4161 trace_handle_qmp_command(mon, qstring_get_str(req_json));
4162 qobject_unref(req_json);
4163 }
4164
4165 if (qdict && qmp_is_oob(qdict)) {
4166 /* OOB commands are executed immediately */
4167 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id)
4168 ?: "");
4169 monitor_qmp_dispatch(mon, req, id);
4170 qobject_unref(req);
4171 qobject_unref(id);
4172 return;
4173 }
4174
4175 req_obj = g_new0(QMPRequest, 1);
4176 req_obj->mon = mon;
4177 req_obj->id = id;
4178 req_obj->req = req;
4179 req_obj->err = err;
4180
4181 /* Protect qmp_requests and fetching its length. */
4182 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4183
4184 /*
4185 * Suspend the monitor when we can't queue more requests after
4186 * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume
4187 * it. Note that when OOB is disabled, we queue at most one
4188 * command, for backward compatibility.
4189 */
4190 if (!qmp_oob_enabled(mon) ||
4191 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) {
4192 monitor_suspend(mon);
4193 }
4194
4195 /*
4196 * Put the request to the end of queue so that requests will be
4197 * handled in time order. Ownership for req_obj, req, id,
4198 * etc. will be delivered to the handler side.
4199 */
4200 assert(mon->qmp.qmp_requests->length < QMP_REQ_QUEUE_LEN_MAX);
4201 g_queue_push_tail(mon->qmp.qmp_requests, req_obj);
4202 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4203
4204 /* Kick the dispatcher routine */
4205 qemu_bh_schedule(qmp_dispatcher_bh);
4206 }
4207
4208 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
4209 {
4210 Monitor *mon = opaque;
4211
4212 json_message_parser_feed(&mon->qmp.parser, (const char *) buf, size);
4213 }
4214
4215 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4216 {
4217 Monitor *old_mon = cur_mon;
4218 int i;
4219
4220 cur_mon = opaque;
4221
4222 if (cur_mon->rs) {
4223 for (i = 0; i < size; i++)
4224 readline_handle_byte(cur_mon->rs, buf[i]);
4225 } else {
4226 if (size == 0 || buf[size - 1] != 0)
4227 monitor_printf(cur_mon, "corrupted command\n");
4228 else
4229 handle_hmp_command(cur_mon, (char *)buf);
4230 }
4231
4232 cur_mon = old_mon;
4233 }
4234
4235 static void monitor_command_cb(void *opaque, const char *cmdline,
4236 void *readline_opaque)
4237 {
4238 Monitor *mon = opaque;
4239
4240 monitor_suspend(mon);
4241 handle_hmp_command(mon, cmdline);
4242 monitor_resume(mon);
4243 }
4244
4245 int monitor_suspend(Monitor *mon)
4246 {
4247 if (monitor_is_hmp_non_interactive(mon)) {
4248 return -ENOTTY;
4249 }
4250
4251 atomic_inc(&mon->suspend_cnt);
4252
4253 if (mon->use_io_thread) {
4254 /*
4255 * Kick I/O thread to make sure this takes effect. It'll be
4256 * evaluated again in prepare() of the watch object.
4257 */
4258 aio_notify(iothread_get_aio_context(mon_iothread));
4259 }
4260
4261 trace_monitor_suspend(mon, 1);
4262 return 0;
4263 }
4264
4265 static void monitor_accept_input(void *opaque)
4266 {
4267 Monitor *mon = opaque;
4268
4269 qemu_chr_fe_accept_input(&mon->chr);
4270 }
4271
4272 void monitor_resume(Monitor *mon)
4273 {
4274 if (monitor_is_hmp_non_interactive(mon)) {
4275 return;
4276 }
4277
4278 if (atomic_dec_fetch(&mon->suspend_cnt) == 0) {
4279 AioContext *ctx;
4280
4281 if (mon->use_io_thread) {
4282 ctx = iothread_get_aio_context(mon_iothread);
4283 } else {
4284 ctx = qemu_get_aio_context();
4285 }
4286
4287 if (!monitor_is_qmp(mon)) {
4288 assert(mon->rs);
4289 readline_show_prompt(mon->rs);
4290 }
4291
4292 aio_bh_schedule_oneshot(ctx, monitor_accept_input, mon);
4293 }
4294
4295 trace_monitor_suspend(mon, -1);
4296 }
4297
4298 static QDict *qmp_greeting(Monitor *mon)
4299 {
4300 QList *cap_list = qlist_new();
4301 QObject *ver = NULL;
4302 QMPCapability cap;
4303
4304 qmp_marshal_query_version(NULL, &ver, NULL);
4305
4306 for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
4307 if (mon->qmp.capab_offered[cap]) {
4308 qlist_append_str(cap_list, QMPCapability_str(cap));
4309 }
4310 }
4311
4312 return qdict_from_jsonf_nofail(
4313 "{'QMP': {'version': %p, 'capabilities': %p}}",
4314 ver, cap_list);
4315 }
4316
4317 static void monitor_qmp_event(void *opaque, int event)
4318 {
4319 QDict *data;
4320 Monitor *mon = opaque;
4321
4322 switch (event) {
4323 case CHR_EVENT_OPENED:
4324 mon->qmp.commands = &qmp_cap_negotiation_commands;
4325 monitor_qmp_caps_reset(mon);
4326 data = qmp_greeting(mon);
4327 qmp_send_response(mon, data);
4328 qobject_unref(data);
4329 mon_refcount++;
4330 break;
4331 case CHR_EVENT_CLOSED:
4332 /*
4333 * Note: this is only useful when the output of the chardev
4334 * backend is still open. For example, when the backend is
4335 * stdio, it's possible that stdout is still open when stdin
4336 * is closed.
4337 */
4338 monitor_qmp_cleanup_queues(mon);
4339 json_message_parser_destroy(&mon->qmp.parser);
4340 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4341 mon, NULL);
4342 mon_refcount--;
4343 monitor_fdsets_cleanup();
4344 break;
4345 }
4346 }
4347
4348 static void monitor_event(void *opaque, int event)
4349 {
4350 Monitor *mon = opaque;
4351
4352 switch (event) {
4353 case CHR_EVENT_MUX_IN:
4354 qemu_mutex_lock(&mon->mon_lock);
4355 mon->mux_out = 0;
4356 qemu_mutex_unlock(&mon->mon_lock);
4357 if (mon->reset_seen) {
4358 readline_restart(mon->rs);
4359 monitor_resume(mon);
4360 monitor_flush(mon);
4361 } else {
4362 atomic_mb_set(&mon->suspend_cnt, 0);
4363 }
4364 break;
4365
4366 case CHR_EVENT_MUX_OUT:
4367 if (mon->reset_seen) {
4368 if (atomic_mb_read(&mon->suspend_cnt) == 0) {
4369 monitor_printf(mon, "\n");
4370 }
4371 monitor_flush(mon);
4372 monitor_suspend(mon);
4373 } else {
4374 atomic_inc(&mon->suspend_cnt);
4375 }
4376 qemu_mutex_lock(&mon->mon_lock);
4377 mon->mux_out = 1;
4378 qemu_mutex_unlock(&mon->mon_lock);
4379 break;
4380
4381 case CHR_EVENT_OPENED:
4382 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4383 "information\n", QEMU_VERSION);
4384 if (!mon->mux_out) {
4385 readline_restart(mon->rs);
4386 readline_show_prompt(mon->rs);
4387 }
4388 mon->reset_seen = 1;
4389 mon_refcount++;
4390 break;
4391
4392 case CHR_EVENT_CLOSED:
4393 mon_refcount--;
4394 monitor_fdsets_cleanup();
4395 break;
4396 }
4397 }
4398
4399 static int
4400 compare_mon_cmd(const void *a, const void *b)
4401 {
4402 return strcmp(((const mon_cmd_t *)a)->name,
4403 ((const mon_cmd_t *)b)->name);
4404 }
4405
4406 static void sortcmdlist(void)
4407 {
4408 int array_num;
4409 int elem_size = sizeof(mon_cmd_t);
4410
4411 array_num = sizeof(mon_cmds)/elem_size-1;
4412 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4413
4414 array_num = sizeof(info_cmds)/elem_size-1;
4415 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4416 }
4417
4418 static void monitor_iothread_init(void)
4419 {
4420 mon_iothread = iothread_create("mon_iothread", &error_abort);
4421 }
4422
4423 void monitor_init_globals(void)
4424 {
4425 monitor_init_qmp_commands();
4426 monitor_qapi_event_init();
4427 sortcmdlist();
4428 qemu_mutex_init(&monitor_lock);
4429 qemu_mutex_init(&mon_fdsets_lock);
4430
4431 /*
4432 * The dispatcher BH must run in the main loop thread, since we
4433 * have commands assuming that context. It would be nice to get
4434 * rid of those assumptions.
4435 */
4436 qmp_dispatcher_bh = aio_bh_new(iohandler_get_aio_context(),
4437 monitor_qmp_bh_dispatcher,
4438 NULL);
4439 }
4440
4441 /* These functions just adapt the readline interface in a typesafe way. We
4442 * could cast function pointers but that discards compiler checks.
4443 */
4444 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
4445 const char *fmt, ...)
4446 {
4447 va_list ap;
4448 va_start(ap, fmt);
4449 monitor_vprintf(opaque, fmt, ap);
4450 va_end(ap);
4451 }
4452
4453 static void monitor_readline_flush(void *opaque)
4454 {
4455 monitor_flush(opaque);
4456 }
4457
4458 /*
4459 * Print to current monitor if we have one, else to stream.
4460 * TODO should return int, so callers can calculate width, but that
4461 * requires surgery to monitor_vprintf(). Left for another day.
4462 */
4463 void monitor_vfprintf(FILE *stream, const char *fmt, va_list ap)
4464 {
4465 if (cur_mon && !monitor_cur_is_qmp()) {
4466 monitor_vprintf(cur_mon, fmt, ap);
4467 } else {
4468 vfprintf(stream, fmt, ap);
4469 }
4470 }
4471
4472 /*
4473 * Print to current monitor if we have one, else to stderr.
4474 * TODO should return int, so callers can calculate width, but that
4475 * requires surgery to monitor_vprintf(). Left for another day.
4476 */
4477 void error_vprintf(const char *fmt, va_list ap)
4478 {
4479 monitor_vfprintf(stderr, fmt, ap);
4480 }
4481
4482 void error_vprintf_unless_qmp(const char *fmt, va_list ap)
4483 {
4484 if (cur_mon && !monitor_cur_is_qmp()) {
4485 monitor_vprintf(cur_mon, fmt, ap);
4486 } else if (!cur_mon) {
4487 vfprintf(stderr, fmt, ap);
4488 }
4489 }
4490
4491 static void monitor_list_append(Monitor *mon)
4492 {
4493 qemu_mutex_lock(&monitor_lock);
4494 /*
4495 * This prevents inserting new monitors during monitor_cleanup().
4496 * A cleaner solution would involve the main thread telling other
4497 * threads to terminate, waiting for their termination.
4498 */
4499 if (!monitor_destroyed) {
4500 QTAILQ_INSERT_HEAD(&mon_list, mon, entry);
4501 mon = NULL;
4502 }
4503 qemu_mutex_unlock(&monitor_lock);
4504
4505 if (mon) {
4506 monitor_data_destroy(mon);
4507 g_free(mon);
4508 }
4509 }
4510
4511 static void monitor_qmp_setup_handlers_bh(void *opaque)
4512 {
4513 Monitor *mon = opaque;
4514 GMainContext *context;
4515
4516 assert(mon->use_io_thread);
4517 context = iothread_get_g_main_context(mon_iothread);
4518 assert(context);
4519 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
4520 monitor_qmp_event, NULL, mon, context, true);
4521 monitor_list_append(mon);
4522 }
4523
4524 void monitor_init(Chardev *chr, int flags)
4525 {
4526 Monitor *mon = g_malloc(sizeof(*mon));
4527 bool use_readline = flags & MONITOR_USE_READLINE;
4528
4529 /* Note: we run QMP monitor in I/O thread when @chr supports that */
4530 monitor_data_init(mon, false,
4531 (flags & MONITOR_USE_CONTROL)
4532 && qemu_chr_has_feature(chr,
4533 QEMU_CHAR_FEATURE_GCONTEXT));
4534
4535 qemu_chr_fe_init(&mon->chr, chr, &error_abort);
4536 mon->flags = flags;
4537 if (use_readline) {
4538 mon->rs = readline_init(monitor_readline_printf,
4539 monitor_readline_flush,
4540 mon,
4541 monitor_find_completion);
4542 monitor_read_command(mon, 0);
4543 }
4544
4545 if (monitor_is_qmp(mon)) {
4546 qemu_chr_fe_set_echo(&mon->chr, true);
4547 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4548 mon, NULL);
4549 if (mon->use_io_thread) {
4550 /*
4551 * Make sure the old iowatch is gone. It's possible when
4552 * e.g. the chardev is in client mode, with wait=on.
4553 */
4554 remove_fd_in_watch(chr);
4555 /*
4556 * We can't call qemu_chr_fe_set_handlers() directly here
4557 * since chardev might be running in the monitor I/O
4558 * thread. Schedule a bottom half.
4559 */
4560 aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread),
4561 monitor_qmp_setup_handlers_bh, mon);
4562 /* The bottom half will add @mon to @mon_list */
4563 return;
4564 } else {
4565 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read,
4566 monitor_qmp_read, monitor_qmp_event,
4567 NULL, mon, NULL, true);
4568 }
4569 } else {
4570 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
4571 monitor_event, NULL, mon, NULL, true);
4572 }
4573
4574 monitor_list_append(mon);
4575 }
4576
4577 void monitor_cleanup(void)
4578 {
4579 /*
4580 * We need to explicitly stop the I/O thread (but not destroy it),
4581 * clean up the monitor resources, then destroy the I/O thread since
4582 * we need to unregister from chardev below in
4583 * monitor_data_destroy(), and chardev is not thread-safe yet
4584 */
4585 if (mon_iothread) {
4586 iothread_stop(mon_iothread);
4587 }
4588
4589 /* Flush output buffers and destroy monitors */
4590 qemu_mutex_lock(&monitor_lock);
4591 monitor_destroyed = true;
4592 while (!QTAILQ_EMPTY(&mon_list)) {
4593 Monitor *mon = QTAILQ_FIRST(&mon_list);
4594 QTAILQ_REMOVE(&mon_list, mon, entry);
4595 /* Permit QAPI event emission from character frontend release */
4596 qemu_mutex_unlock(&monitor_lock);
4597 monitor_flush(mon);
4598 monitor_data_destroy(mon);
4599 qemu_mutex_lock(&monitor_lock);
4600 g_free(mon);
4601 }
4602 qemu_mutex_unlock(&monitor_lock);
4603
4604 /* QEMUBHs needs to be deleted before destroying the I/O thread */
4605 qemu_bh_delete(qmp_dispatcher_bh);
4606 qmp_dispatcher_bh = NULL;
4607 if (mon_iothread) {
4608 iothread_destroy(mon_iothread);
4609 mon_iothread = NULL;
4610 }
4611 }
4612
4613 QemuOptsList qemu_mon_opts = {
4614 .name = "mon",
4615 .implied_opt_name = "chardev",
4616 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4617 .desc = {
4618 {
4619 .name = "mode",
4620 .type = QEMU_OPT_STRING,
4621 },{
4622 .name = "chardev",
4623 .type = QEMU_OPT_STRING,
4624 },{
4625 .name = "pretty",
4626 .type = QEMU_OPT_BOOL,
4627 },
4628 { /* end of list */ }
4629 },
4630 };
4631
4632 HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
4633 {
4634 MachineState *ms = MACHINE(qdev_get_machine());
4635 MachineClass *mc = MACHINE_GET_CLASS(ms);
4636
4637 if (!mc->has_hotpluggable_cpus) {
4638 error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
4639 return NULL;
4640 }
4641
4642 return machine_query_hotpluggable_cpus(ms);
4643 }