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