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