]> git.proxmox.com Git - mirror_qemu.git/blob - monitor.c
hmp-commands-info: move info_cmds content out of monitor.c
[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 <dirent.h>
25 #include "hw/hw.h"
26 #include "monitor/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/i386/pc.h"
29 #include "hw/pci/pci.h"
30 #include "sysemu/watchdog.h"
31 #include "hw/loader.h"
32 #include "exec/gdbstub.h"
33 #include "net/net.h"
34 #include "net/slirp.h"
35 #include "sysemu/char.h"
36 #include "ui/qemu-spice.h"
37 #include "sysemu/sysemu.h"
38 #include "sysemu/numa.h"
39 #include "monitor/monitor.h"
40 #include "qemu/readline.h"
41 #include "ui/console.h"
42 #include "ui/input.h"
43 #include "sysemu/blockdev.h"
44 #include "audio/audio.h"
45 #include "disas/disas.h"
46 #include "sysemu/balloon.h"
47 #include "qemu/timer.h"
48 #include "migration/migration.h"
49 #include "sysemu/kvm.h"
50 #include "qemu/acl.h"
51 #include "sysemu/tpm.h"
52 #include "qapi/qmp/qerror.h"
53 #include "qapi/qmp/qint.h"
54 #include "qapi/qmp/qfloat.h"
55 #include "qapi/qmp/qlist.h"
56 #include "qapi/qmp/qbool.h"
57 #include "qapi/qmp/qstring.h"
58 #include "qapi/qmp/qjson.h"
59 #include "qapi/qmp/json-streamer.h"
60 #include "qapi/qmp/json-parser.h"
61 #include <qom/object_interfaces.h>
62 #include "qemu/osdep.h"
63 #include "cpu.h"
64 #include "trace.h"
65 #include "trace/control.h"
66 #ifdef CONFIG_TRACE_SIMPLE
67 #include "trace/simple.h"
68 #endif
69 #include "exec/memory.h"
70 #include "exec/cpu_ldst.h"
71 #include "qmp-commands.h"
72 #include "hmp.h"
73 #include "qemu/thread.h"
74 #include "block/qapi.h"
75 #include "qapi/qmp-event.h"
76 #include "qapi-event.h"
77 #include "sysemu/block-backend.h"
78
79 /* for hmp_info_irq/pic */
80 #if defined(TARGET_SPARC)
81 #include "hw/sparc/sun4m.h"
82 #endif
83 #include "hw/lm32/lm32_pic.h"
84
85 #if defined(TARGET_S390X)
86 #include "hw/s390x/storage-keys.h"
87 #endif
88
89 /*
90 * Supported types:
91 *
92 * 'F' filename
93 * 'B' block device name
94 * 's' string (accept optional quote)
95 * 'S' it just appends the rest of the string (accept optional quote)
96 * 'O' option string of the form NAME=VALUE,...
97 * parsed according to QemuOptsList given by its name
98 * Example: 'device:O' uses qemu_device_opts.
99 * Restriction: only lists with empty desc are supported
100 * TODO lift the restriction
101 * 'i' 32 bit integer
102 * 'l' target long (32 or 64 bit)
103 * 'M' Non-negative target long (32 or 64 bit), in user mode the
104 * value is multiplied by 2^20 (think Mebibyte)
105 * 'o' octets (aka bytes)
106 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
107 * K, k suffix, which multiplies the value by 2^60 for suffixes E
108 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
109 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
110 * 'T' double
111 * user mode accepts an optional ms, us, ns suffix,
112 * which divides the value by 1e3, 1e6, 1e9, respectively
113 * '/' optional gdb-like print format (like "/10x")
114 *
115 * '?' optional type (for all types, except '/')
116 * '.' other form of optional type (for 'i' and 'l')
117 * 'b' boolean
118 * user mode accepts "on" or "off"
119 * '-' optional parameter (eg. '-f')
120 *
121 */
122
123 typedef struct mon_cmd_t {
124 const char *name;
125 const char *args_type;
126 const char *params;
127 const char *help;
128 union {
129 void (*cmd)(Monitor *mon, const QDict *qdict);
130 void (*cmd_new)(QDict *params, QObject **ret_data, Error **errp);
131 } mhandler;
132 /* @sub_table is a list of 2nd level of commands. If it do not exist,
133 * mhandler should be used. If it exist, sub_table[?].mhandler should be
134 * used, and mhandler of 1st level plays the role of help function.
135 */
136 struct mon_cmd_t *sub_table;
137 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
138 } mon_cmd_t;
139
140 /* file descriptors passed via SCM_RIGHTS */
141 typedef struct mon_fd_t mon_fd_t;
142 struct mon_fd_t {
143 char *name;
144 int fd;
145 QLIST_ENTRY(mon_fd_t) next;
146 };
147
148 /* file descriptor associated with a file descriptor set */
149 typedef struct MonFdsetFd MonFdsetFd;
150 struct MonFdsetFd {
151 int fd;
152 bool removed;
153 char *opaque;
154 QLIST_ENTRY(MonFdsetFd) next;
155 };
156
157 /* file descriptor set containing fds passed via SCM_RIGHTS */
158 typedef struct MonFdset MonFdset;
159 struct MonFdset {
160 int64_t id;
161 QLIST_HEAD(, MonFdsetFd) fds;
162 QLIST_HEAD(, MonFdsetFd) dup_fds;
163 QLIST_ENTRY(MonFdset) next;
164 };
165
166 typedef struct {
167 QObject *id;
168 JSONMessageParser parser;
169 /*
170 * When a client connects, we're in capabilities negotiation mode.
171 * When command qmp_capabilities succeeds, we go into command
172 * mode.
173 */
174 bool in_command_mode; /* are we in command mode? */
175 } MonitorQMP;
176
177 /*
178 * To prevent flooding clients, events can be throttled. The
179 * throttling is calculated globally, rather than per-Monitor
180 * instance.
181 */
182 typedef struct MonitorQAPIEventState {
183 QAPIEvent event; /* Event being tracked */
184 int64_t rate; /* Minimum time (in ns) between two events */
185 int64_t last; /* QEMU_CLOCK_REALTIME value at last emission */
186 QEMUTimer *timer; /* Timer for handling delayed events */
187 QObject *data; /* Event pending delayed dispatch */
188 } MonitorQAPIEventState;
189
190 struct Monitor {
191 CharDriverState *chr;
192 int reset_seen;
193 int flags;
194 int suspend_cnt;
195 bool skip_flush;
196
197 QemuMutex out_lock;
198 QString *outbuf;
199 guint out_watch;
200
201 /* Read under either BQL or out_lock, written with BQL+out_lock. */
202 int mux_out;
203
204 ReadLineState *rs;
205 MonitorQMP qmp;
206 CPUState *mon_cpu;
207 BlockCompletionFunc *password_completion_cb;
208 void *password_opaque;
209 mon_cmd_t *cmd_table;
210 QLIST_HEAD(,mon_fd_t) fds;
211 QLIST_ENTRY(Monitor) entry;
212 };
213
214 /* QMP checker flags */
215 #define QMP_ACCEPT_UNKNOWNS 1
216
217 /* Protects mon_list, monitor_event_state. */
218 static QemuMutex monitor_lock;
219
220 static QLIST_HEAD(mon_list, Monitor) mon_list;
221 static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
222 static int mon_refcount;
223
224 static mon_cmd_t mon_cmds[];
225 static mon_cmd_t info_cmds[];
226
227 static const mon_cmd_t qmp_cmds[];
228
229 Monitor *cur_mon;
230
231 static void monitor_command_cb(void *opaque, const char *cmdline,
232 void *readline_opaque);
233
234 /**
235 * Is @mon a QMP monitor?
236 */
237 static inline bool monitor_is_qmp(const Monitor *mon)
238 {
239 return (mon->flags & MONITOR_USE_CONTROL);
240 }
241
242 /**
243 * Is the current monitor, if any, a QMP monitor?
244 */
245 bool monitor_cur_is_qmp(void)
246 {
247 return cur_mon && monitor_is_qmp(cur_mon);
248 }
249
250 void monitor_read_command(Monitor *mon, int show_prompt)
251 {
252 if (!mon->rs)
253 return;
254
255 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
256 if (show_prompt)
257 readline_show_prompt(mon->rs);
258 }
259
260 int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
261 void *opaque)
262 {
263 if (mon->rs) {
264 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
265 /* prompt is printed on return from the command handler */
266 return 0;
267 } else {
268 monitor_printf(mon, "terminal does not support password prompting\n");
269 return -ENOTTY;
270 }
271 }
272
273 static void monitor_flush_locked(Monitor *mon);
274
275 static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
276 void *opaque)
277 {
278 Monitor *mon = opaque;
279
280 qemu_mutex_lock(&mon->out_lock);
281 mon->out_watch = 0;
282 monitor_flush_locked(mon);
283 qemu_mutex_unlock(&mon->out_lock);
284 return FALSE;
285 }
286
287 /* Called with mon->out_lock held. */
288 static void monitor_flush_locked(Monitor *mon)
289 {
290 int rc;
291 size_t len;
292 const char *buf;
293
294 if (mon->skip_flush) {
295 return;
296 }
297
298 buf = qstring_get_str(mon->outbuf);
299 len = qstring_get_length(mon->outbuf);
300
301 if (len && !mon->mux_out) {
302 rc = qemu_chr_fe_write(mon->chr, (const uint8_t *) buf, len);
303 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
304 /* all flushed or error */
305 QDECREF(mon->outbuf);
306 mon->outbuf = qstring_new();
307 return;
308 }
309 if (rc > 0) {
310 /* partinal write */
311 QString *tmp = qstring_from_str(buf + rc);
312 QDECREF(mon->outbuf);
313 mon->outbuf = tmp;
314 }
315 if (mon->out_watch == 0) {
316 mon->out_watch = 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 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
375 const char *fmt, ...)
376 {
377 va_list ap;
378 va_start(ap, fmt);
379 monitor_vprintf((Monitor *)stream, fmt, ap);
380 va_end(ap);
381 return 0;
382 }
383
384 static void monitor_json_emitter(Monitor *mon, const QObject *data)
385 {
386 QString *json;
387
388 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
389 qobject_to_json(data);
390 assert(json != NULL);
391
392 qstring_append_chr(json, '\n');
393 monitor_puts(mon, qstring_get_str(json));
394
395 QDECREF(json);
396 }
397
398 static QDict *build_qmp_error_dict(Error *err)
399 {
400 QObject *obj;
401
402 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %s } }",
403 ErrorClass_lookup[error_get_class(err)],
404 error_get_pretty(err));
405
406 return qobject_to_qdict(obj);
407 }
408
409 static void monitor_protocol_emitter(Monitor *mon, QObject *data,
410 Error *err)
411 {
412 QDict *qmp;
413
414 trace_monitor_protocol_emitter(mon);
415
416 if (!err) {
417 /* success response */
418 qmp = qdict_new();
419 if (data) {
420 qobject_incref(data);
421 qdict_put_obj(qmp, "return", data);
422 } else {
423 /* return an empty QDict by default */
424 qdict_put(qmp, "return", qdict_new());
425 }
426 } else {
427 /* error response */
428 qmp = build_qmp_error_dict(err);
429 }
430
431 if (mon->qmp.id) {
432 qdict_put_obj(qmp, "id", mon->qmp.id);
433 mon->qmp.id = NULL;
434 }
435
436 monitor_json_emitter(mon, QOBJECT(qmp));
437 QDECREF(qmp);
438 }
439
440
441 static MonitorQAPIEventState monitor_qapi_event_state[QAPI_EVENT_MAX];
442
443 /*
444 * Emits the event to every monitor instance, @event is only used for trace
445 * Called with monitor_lock held.
446 */
447 static void monitor_qapi_event_emit(QAPIEvent event, QObject *data)
448 {
449 Monitor *mon;
450
451 trace_monitor_protocol_event_emit(event, data);
452 QLIST_FOREACH(mon, &mon_list, entry) {
453 if (monitor_is_qmp(mon) && mon->qmp.in_command_mode) {
454 monitor_json_emitter(mon, data);
455 }
456 }
457 }
458
459 /*
460 * Queue a new event for emission to Monitor instances,
461 * applying any rate limiting if required.
462 */
463 static void
464 monitor_qapi_event_queue(QAPIEvent event, QDict *data, Error **errp)
465 {
466 MonitorQAPIEventState *evstate;
467 assert(event < QAPI_EVENT_MAX);
468 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
469
470 evstate = &(monitor_qapi_event_state[event]);
471 trace_monitor_protocol_event_queue(event,
472 data,
473 evstate->rate,
474 evstate->last,
475 now);
476
477 /* Rate limit of 0 indicates no throttling */
478 qemu_mutex_lock(&monitor_lock);
479 if (!evstate->rate) {
480 monitor_qapi_event_emit(event, QOBJECT(data));
481 evstate->last = now;
482 } else {
483 int64_t delta = now - evstate->last;
484 if (evstate->data ||
485 delta < evstate->rate) {
486 /* If there's an existing event pending, replace
487 * it with the new event, otherwise schedule a
488 * timer for delayed emission
489 */
490 if (evstate->data) {
491 qobject_decref(evstate->data);
492 } else {
493 int64_t then = evstate->last + evstate->rate;
494 timer_mod_ns(evstate->timer, then);
495 }
496 evstate->data = QOBJECT(data);
497 qobject_incref(evstate->data);
498 } else {
499 monitor_qapi_event_emit(event, QOBJECT(data));
500 evstate->last = now;
501 }
502 }
503 qemu_mutex_unlock(&monitor_lock);
504 }
505
506 /*
507 * The callback invoked by QemuTimer when a delayed
508 * event is ready to be emitted
509 */
510 static void monitor_qapi_event_handler(void *opaque)
511 {
512 MonitorQAPIEventState *evstate = opaque;
513 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
514
515 trace_monitor_protocol_event_handler(evstate->event,
516 evstate->data,
517 evstate->last,
518 now);
519 qemu_mutex_lock(&monitor_lock);
520 if (evstate->data) {
521 monitor_qapi_event_emit(evstate->event, evstate->data);
522 qobject_decref(evstate->data);
523 evstate->data = NULL;
524 }
525 evstate->last = now;
526 qemu_mutex_unlock(&monitor_lock);
527 }
528
529 /*
530 * @event: the event ID to be limited
531 * @rate: the rate limit in milliseconds
532 *
533 * Sets a rate limit on a particular event, so no
534 * more than 1 event will be emitted within @rate
535 * milliseconds
536 */
537 static void
538 monitor_qapi_event_throttle(QAPIEvent event, int64_t rate)
539 {
540 MonitorQAPIEventState *evstate;
541 assert(event < QAPI_EVENT_MAX);
542
543 evstate = &(monitor_qapi_event_state[event]);
544
545 trace_monitor_protocol_event_throttle(event, rate);
546 evstate->event = event;
547 assert(rate * SCALE_MS <= INT64_MAX);
548 evstate->rate = rate * SCALE_MS;
549 evstate->last = 0;
550 evstate->data = NULL;
551 evstate->timer = timer_new(QEMU_CLOCK_REALTIME,
552 SCALE_MS,
553 monitor_qapi_event_handler,
554 evstate);
555 }
556
557 static void monitor_qapi_event_init(void)
558 {
559 /* Limit guest-triggerable events to 1 per second */
560 monitor_qapi_event_throttle(QAPI_EVENT_RTC_CHANGE, 1000);
561 monitor_qapi_event_throttle(QAPI_EVENT_WATCHDOG, 1000);
562 monitor_qapi_event_throttle(QAPI_EVENT_BALLOON_CHANGE, 1000);
563 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_REPORT_BAD, 1000);
564 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_FAILURE, 1000);
565 monitor_qapi_event_throttle(QAPI_EVENT_VSERPORT_CHANGE, 1000);
566
567 qmp_event_set_func_emit(monitor_qapi_event_queue);
568 }
569
570 static void qmp_capabilities(QDict *params, QObject **ret_data, Error **errp)
571 {
572 cur_mon->qmp.in_command_mode = true;
573 }
574
575 static void handle_hmp_command(Monitor *mon, const char *cmdline);
576
577 static void monitor_data_init(Monitor *mon)
578 {
579 memset(mon, 0, sizeof(Monitor));
580 qemu_mutex_init(&mon->out_lock);
581 mon->outbuf = qstring_new();
582 /* Use *mon_cmds by default. */
583 mon->cmd_table = mon_cmds;
584 }
585
586 static void monitor_data_destroy(Monitor *mon)
587 {
588 QDECREF(mon->outbuf);
589 qemu_mutex_destroy(&mon->out_lock);
590 }
591
592 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
593 int64_t cpu_index, Error **errp)
594 {
595 char *output = NULL;
596 Monitor *old_mon, hmp;
597
598 monitor_data_init(&hmp);
599 hmp.skip_flush = true;
600
601 old_mon = cur_mon;
602 cur_mon = &hmp;
603
604 if (has_cpu_index) {
605 int ret = monitor_set_cpu(cpu_index);
606 if (ret < 0) {
607 cur_mon = old_mon;
608 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
609 "a CPU number");
610 goto out;
611 }
612 }
613
614 handle_hmp_command(&hmp, command_line);
615 cur_mon = old_mon;
616
617 qemu_mutex_lock(&hmp.out_lock);
618 if (qstring_get_length(hmp.outbuf) > 0) {
619 output = g_strdup(qstring_get_str(hmp.outbuf));
620 } else {
621 output = g_strdup("");
622 }
623 qemu_mutex_unlock(&hmp.out_lock);
624
625 out:
626 monitor_data_destroy(&hmp);
627 return output;
628 }
629
630 static int compare_cmd(const char *name, const char *list)
631 {
632 const char *p, *pstart;
633 int len;
634 len = strlen(name);
635 p = list;
636 for(;;) {
637 pstart = p;
638 p = strchr(p, '|');
639 if (!p)
640 p = pstart + strlen(pstart);
641 if ((p - pstart) == len && !memcmp(pstart, name, len))
642 return 1;
643 if (*p == '\0')
644 break;
645 p++;
646 }
647 return 0;
648 }
649
650 static int get_str(char *buf, int buf_size, const char **pp)
651 {
652 const char *p;
653 char *q;
654 int c;
655
656 q = buf;
657 p = *pp;
658 while (qemu_isspace(*p)) {
659 p++;
660 }
661 if (*p == '\0') {
662 fail:
663 *q = '\0';
664 *pp = p;
665 return -1;
666 }
667 if (*p == '\"') {
668 p++;
669 while (*p != '\0' && *p != '\"') {
670 if (*p == '\\') {
671 p++;
672 c = *p++;
673 switch (c) {
674 case 'n':
675 c = '\n';
676 break;
677 case 'r':
678 c = '\r';
679 break;
680 case '\\':
681 case '\'':
682 case '\"':
683 break;
684 default:
685 printf("unsupported escape code: '\\%c'\n", c);
686 goto fail;
687 }
688 if ((q - buf) < buf_size - 1) {
689 *q++ = c;
690 }
691 } else {
692 if ((q - buf) < buf_size - 1) {
693 *q++ = *p;
694 }
695 p++;
696 }
697 }
698 if (*p != '\"') {
699 printf("unterminated string\n");
700 goto fail;
701 }
702 p++;
703 } else {
704 while (*p != '\0' && !qemu_isspace(*p)) {
705 if ((q - buf) < buf_size - 1) {
706 *q++ = *p;
707 }
708 p++;
709 }
710 }
711 *q = '\0';
712 *pp = p;
713 return 0;
714 }
715
716 #define MAX_ARGS 16
717
718 static void free_cmdline_args(char **args, int nb_args)
719 {
720 int i;
721
722 assert(nb_args <= MAX_ARGS);
723
724 for (i = 0; i < nb_args; i++) {
725 g_free(args[i]);
726 }
727
728 }
729
730 /*
731 * Parse the command line to get valid args.
732 * @cmdline: command line to be parsed.
733 * @pnb_args: location to store the number of args, must NOT be NULL.
734 * @args: location to store the args, which should be freed by caller, must
735 * NOT be NULL.
736 *
737 * Returns 0 on success, negative on failure.
738 *
739 * NOTE: this parser is an approximate form of the real command parser. Number
740 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
741 * return with failure.
742 */
743 static int parse_cmdline(const char *cmdline,
744 int *pnb_args, char **args)
745 {
746 const char *p;
747 int nb_args, ret;
748 char buf[1024];
749
750 p = cmdline;
751 nb_args = 0;
752 for (;;) {
753 while (qemu_isspace(*p)) {
754 p++;
755 }
756 if (*p == '\0') {
757 break;
758 }
759 if (nb_args >= MAX_ARGS) {
760 goto fail;
761 }
762 ret = get_str(buf, sizeof(buf), &p);
763 if (ret < 0) {
764 goto fail;
765 }
766 args[nb_args] = g_strdup(buf);
767 nb_args++;
768 }
769 *pnb_args = nb_args;
770 return 0;
771
772 fail:
773 free_cmdline_args(args, nb_args);
774 return -1;
775 }
776
777 static void help_cmd_dump_one(Monitor *mon,
778 const mon_cmd_t *cmd,
779 char **prefix_args,
780 int prefix_args_nb)
781 {
782 int i;
783
784 for (i = 0; i < prefix_args_nb; i++) {
785 monitor_printf(mon, "%s ", prefix_args[i]);
786 }
787 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
788 }
789
790 /* @args[@arg_index] is the valid command need to find in @cmds */
791 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
792 char **args, int nb_args, int arg_index)
793 {
794 const mon_cmd_t *cmd;
795
796 /* No valid arg need to compare with, dump all in *cmds */
797 if (arg_index >= nb_args) {
798 for (cmd = cmds; cmd->name != NULL; cmd++) {
799 help_cmd_dump_one(mon, cmd, args, arg_index);
800 }
801 return;
802 }
803
804 /* Find one entry to dump */
805 for (cmd = cmds; cmd->name != NULL; cmd++) {
806 if (compare_cmd(args[arg_index], cmd->name)) {
807 if (cmd->sub_table) {
808 /* continue with next arg */
809 help_cmd_dump(mon, cmd->sub_table,
810 args, nb_args, arg_index + 1);
811 } else {
812 help_cmd_dump_one(mon, cmd, args, arg_index);
813 }
814 break;
815 }
816 }
817 }
818
819 static void help_cmd(Monitor *mon, const char *name)
820 {
821 char *args[MAX_ARGS];
822 int nb_args = 0;
823
824 /* 1. parse user input */
825 if (name) {
826 /* special case for log, directly dump and return */
827 if (!strcmp(name, "log")) {
828 const QEMULogItem *item;
829 monitor_printf(mon, "Log items (comma separated):\n");
830 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
831 for (item = qemu_log_items; item->mask != 0; item++) {
832 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
833 }
834 return;
835 }
836
837 if (parse_cmdline(name, &nb_args, args) < 0) {
838 return;
839 }
840 }
841
842 /* 2. dump the contents according to parsed args */
843 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
844
845 free_cmdline_args(args, nb_args);
846 }
847
848 static void do_help_cmd(Monitor *mon, const QDict *qdict)
849 {
850 help_cmd(mon, qdict_get_try_str(qdict, "name"));
851 }
852
853 static void hmp_trace_event(Monitor *mon, const QDict *qdict)
854 {
855 const char *tp_name = qdict_get_str(qdict, "name");
856 bool new_state = qdict_get_bool(qdict, "option");
857 Error *local_err = NULL;
858
859 qmp_trace_event_set_state(tp_name, new_state, true, true, &local_err);
860 if (local_err) {
861 error_report_err(local_err);
862 }
863 }
864
865 #ifdef CONFIG_TRACE_SIMPLE
866 static void hmp_trace_file(Monitor *mon, const QDict *qdict)
867 {
868 const char *op = qdict_get_try_str(qdict, "op");
869 const char *arg = qdict_get_try_str(qdict, "arg");
870
871 if (!op) {
872 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
873 } else if (!strcmp(op, "on")) {
874 st_set_trace_file_enabled(true);
875 } else if (!strcmp(op, "off")) {
876 st_set_trace_file_enabled(false);
877 } else if (!strcmp(op, "flush")) {
878 st_flush_trace_buffer();
879 } else if (!strcmp(op, "set")) {
880 if (arg) {
881 st_set_trace_file(arg);
882 }
883 } else {
884 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
885 help_cmd(mon, "trace-file");
886 }
887 }
888 #endif
889
890 static void hmp_info_help(Monitor *mon, const QDict *qdict)
891 {
892 help_cmd(mon, "info");
893 }
894
895 CommandInfoList *qmp_query_commands(Error **errp)
896 {
897 CommandInfoList *info, *cmd_list = NULL;
898 const mon_cmd_t *cmd;
899
900 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
901 info = g_malloc0(sizeof(*info));
902 info->value = g_malloc0(sizeof(*info->value));
903 info->value->name = g_strdup(cmd->name);
904
905 info->next = cmd_list;
906 cmd_list = info;
907 }
908
909 return cmd_list;
910 }
911
912 EventInfoList *qmp_query_events(Error **errp)
913 {
914 EventInfoList *info, *ev_list = NULL;
915 QAPIEvent e;
916
917 for (e = 0 ; e < QAPI_EVENT_MAX ; e++) {
918 const char *event_name = QAPIEvent_lookup[e];
919 assert(event_name != NULL);
920 info = g_malloc0(sizeof(*info));
921 info->value = g_malloc0(sizeof(*info->value));
922 info->value->name = g_strdup(event_name);
923
924 info->next = ev_list;
925 ev_list = info;
926 }
927
928 return ev_list;
929 }
930
931 /* set the current CPU defined by the user */
932 int monitor_set_cpu(int cpu_index)
933 {
934 CPUState *cpu;
935
936 cpu = qemu_get_cpu(cpu_index);
937 if (cpu == NULL) {
938 return -1;
939 }
940 cur_mon->mon_cpu = cpu;
941 return 0;
942 }
943
944 static CPUState *mon_get_cpu(void)
945 {
946 if (!cur_mon->mon_cpu) {
947 monitor_set_cpu(0);
948 }
949 cpu_synchronize_state(cur_mon->mon_cpu);
950 return cur_mon->mon_cpu;
951 }
952
953 static CPUArchState *mon_get_cpu_env(void)
954 {
955 return mon_get_cpu()->env_ptr;
956 }
957
958 int monitor_get_cpu_index(void)
959 {
960 return mon_get_cpu()->cpu_index;
961 }
962
963 static void hmp_info_registers(Monitor *mon, const QDict *qdict)
964 {
965 cpu_dump_state(mon_get_cpu(), (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
966 }
967
968 static void hmp_info_jit(Monitor *mon, const QDict *qdict)
969 {
970 dump_exec_info((FILE *)mon, monitor_fprintf);
971 dump_drift_info((FILE *)mon, monitor_fprintf);
972 }
973
974 static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
975 {
976 dump_opcount_info((FILE *)mon, monitor_fprintf);
977 }
978
979 static void hmp_info_history(Monitor *mon, const QDict *qdict)
980 {
981 int i;
982 const char *str;
983
984 if (!mon->rs)
985 return;
986 i = 0;
987 for(;;) {
988 str = readline_get_history(mon->rs, i);
989 if (!str)
990 break;
991 monitor_printf(mon, "%d: '%s'\n", i, str);
992 i++;
993 }
994 }
995
996 static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
997 {
998 cpu_dump_statistics(mon_get_cpu(), (FILE *)mon, &monitor_fprintf, 0);
999 }
1000
1001 static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
1002 {
1003 TraceEventInfoList *events = qmp_trace_event_get_state("*", NULL);
1004 TraceEventInfoList *elem;
1005
1006 for (elem = events; elem != NULL; elem = elem->next) {
1007 monitor_printf(mon, "%s : state %u\n",
1008 elem->value->name,
1009 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1010 }
1011 qapi_free_TraceEventInfoList(events);
1012 }
1013
1014 void qmp_client_migrate_info(const char *protocol, const char *hostname,
1015 bool has_port, int64_t port,
1016 bool has_tls_port, int64_t tls_port,
1017 bool has_cert_subject, const char *cert_subject,
1018 Error **errp)
1019 {
1020 if (strcmp(protocol, "spice") == 0) {
1021 if (!qemu_using_spice(errp)) {
1022 return;
1023 }
1024
1025 if (!has_port && !has_tls_port) {
1026 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1027 return;
1028 }
1029
1030 if (qemu_spice_migrate_info(hostname,
1031 has_port ? port : -1,
1032 has_tls_port ? tls_port : -1,
1033 cert_subject)) {
1034 error_setg(errp, QERR_UNDEFINED_ERROR);
1035 return;
1036 }
1037 return;
1038 }
1039
1040 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
1041 }
1042
1043 static void hmp_logfile(Monitor *mon, const QDict *qdict)
1044 {
1045 qemu_set_log_filename(qdict_get_str(qdict, "filename"));
1046 }
1047
1048 static void hmp_log(Monitor *mon, const QDict *qdict)
1049 {
1050 int mask;
1051 const char *items = qdict_get_str(qdict, "items");
1052
1053 if (!strcmp(items, "none")) {
1054 mask = 0;
1055 } else {
1056 mask = qemu_str_to_log_mask(items);
1057 if (!mask) {
1058 help_cmd(mon, "log");
1059 return;
1060 }
1061 }
1062 qemu_set_log(mask);
1063 }
1064
1065 static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1066 {
1067 const char *option = qdict_get_try_str(qdict, "option");
1068 if (!option || !strcmp(option, "on")) {
1069 singlestep = 1;
1070 } else if (!strcmp(option, "off")) {
1071 singlestep = 0;
1072 } else {
1073 monitor_printf(mon, "unexpected option %s\n", option);
1074 }
1075 }
1076
1077 static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
1078 {
1079 const char *device = qdict_get_try_str(qdict, "device");
1080 if (!device)
1081 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1082 if (gdbserver_start(device) < 0) {
1083 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1084 device);
1085 } else if (strcmp(device, "none") == 0) {
1086 monitor_printf(mon, "Disabled gdbserver\n");
1087 } else {
1088 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1089 device);
1090 }
1091 }
1092
1093 static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
1094 {
1095 const char *action = qdict_get_str(qdict, "action");
1096 if (select_watchdog_action(action) == -1) {
1097 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1098 }
1099 }
1100
1101 static void monitor_printc(Monitor *mon, int c)
1102 {
1103 monitor_printf(mon, "'");
1104 switch(c) {
1105 case '\'':
1106 monitor_printf(mon, "\\'");
1107 break;
1108 case '\\':
1109 monitor_printf(mon, "\\\\");
1110 break;
1111 case '\n':
1112 monitor_printf(mon, "\\n");
1113 break;
1114 case '\r':
1115 monitor_printf(mon, "\\r");
1116 break;
1117 default:
1118 if (c >= 32 && c <= 126) {
1119 monitor_printf(mon, "%c", c);
1120 } else {
1121 monitor_printf(mon, "\\x%02x", c);
1122 }
1123 break;
1124 }
1125 monitor_printf(mon, "'");
1126 }
1127
1128 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1129 hwaddr addr, int is_physical)
1130 {
1131 int l, line_size, i, max_digits, len;
1132 uint8_t buf[16];
1133 uint64_t v;
1134
1135 if (format == 'i') {
1136 int flags = 0;
1137 #ifdef TARGET_I386
1138 CPUArchState *env = mon_get_cpu_env();
1139 if (wsize == 2) {
1140 flags = 1;
1141 } else if (wsize == 4) {
1142 flags = 0;
1143 } else {
1144 /* as default we use the current CS size */
1145 flags = 0;
1146 if (env) {
1147 #ifdef TARGET_X86_64
1148 if ((env->efer & MSR_EFER_LMA) &&
1149 (env->segs[R_CS].flags & DESC_L_MASK))
1150 flags = 2;
1151 else
1152 #endif
1153 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1154 flags = 1;
1155 }
1156 }
1157 #endif
1158 #ifdef TARGET_PPC
1159 CPUArchState *env = mon_get_cpu_env();
1160 flags = msr_le << 16;
1161 flags |= env->bfd_mach;
1162 #endif
1163 monitor_disas(mon, mon_get_cpu(), addr, count, is_physical, flags);
1164 return;
1165 }
1166
1167 len = wsize * count;
1168 if (wsize == 1)
1169 line_size = 8;
1170 else
1171 line_size = 16;
1172 max_digits = 0;
1173
1174 switch(format) {
1175 case 'o':
1176 max_digits = (wsize * 8 + 2) / 3;
1177 break;
1178 default:
1179 case 'x':
1180 max_digits = (wsize * 8) / 4;
1181 break;
1182 case 'u':
1183 case 'd':
1184 max_digits = (wsize * 8 * 10 + 32) / 33;
1185 break;
1186 case 'c':
1187 wsize = 1;
1188 break;
1189 }
1190
1191 while (len > 0) {
1192 if (is_physical)
1193 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1194 else
1195 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1196 l = len;
1197 if (l > line_size)
1198 l = line_size;
1199 if (is_physical) {
1200 cpu_physical_memory_read(addr, buf, l);
1201 } else {
1202 if (cpu_memory_rw_debug(mon_get_cpu(), addr, buf, l, 0) < 0) {
1203 monitor_printf(mon, " Cannot access memory\n");
1204 break;
1205 }
1206 }
1207 i = 0;
1208 while (i < l) {
1209 switch(wsize) {
1210 default:
1211 case 1:
1212 v = ldub_p(buf + i);
1213 break;
1214 case 2:
1215 v = lduw_p(buf + i);
1216 break;
1217 case 4:
1218 v = (uint32_t)ldl_p(buf + i);
1219 break;
1220 case 8:
1221 v = ldq_p(buf + i);
1222 break;
1223 }
1224 monitor_printf(mon, " ");
1225 switch(format) {
1226 case 'o':
1227 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1228 break;
1229 case 'x':
1230 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1231 break;
1232 case 'u':
1233 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1234 break;
1235 case 'd':
1236 monitor_printf(mon, "%*" PRId64, max_digits, v);
1237 break;
1238 case 'c':
1239 monitor_printc(mon, v);
1240 break;
1241 }
1242 i += wsize;
1243 }
1244 monitor_printf(mon, "\n");
1245 addr += l;
1246 len -= l;
1247 }
1248 }
1249
1250 static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
1251 {
1252 int count = qdict_get_int(qdict, "count");
1253 int format = qdict_get_int(qdict, "format");
1254 int size = qdict_get_int(qdict, "size");
1255 target_long addr = qdict_get_int(qdict, "addr");
1256
1257 memory_dump(mon, count, format, size, addr, 0);
1258 }
1259
1260 static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
1261 {
1262 int count = qdict_get_int(qdict, "count");
1263 int format = qdict_get_int(qdict, "format");
1264 int size = qdict_get_int(qdict, "size");
1265 hwaddr addr = qdict_get_int(qdict, "addr");
1266
1267 memory_dump(mon, count, format, size, addr, 1);
1268 }
1269
1270 static void do_print(Monitor *mon, const QDict *qdict)
1271 {
1272 int format = qdict_get_int(qdict, "format");
1273 hwaddr val = qdict_get_int(qdict, "val");
1274
1275 switch(format) {
1276 case 'o':
1277 monitor_printf(mon, "%#" HWADDR_PRIo, val);
1278 break;
1279 case 'x':
1280 monitor_printf(mon, "%#" HWADDR_PRIx, val);
1281 break;
1282 case 'u':
1283 monitor_printf(mon, "%" HWADDR_PRIu, val);
1284 break;
1285 default:
1286 case 'd':
1287 monitor_printf(mon, "%" HWADDR_PRId, val);
1288 break;
1289 case 'c':
1290 monitor_printc(mon, val);
1291 break;
1292 }
1293 monitor_printf(mon, "\n");
1294 }
1295
1296 static void hmp_sum(Monitor *mon, const QDict *qdict)
1297 {
1298 uint32_t addr;
1299 uint16_t sum;
1300 uint32_t start = qdict_get_int(qdict, "start");
1301 uint32_t size = qdict_get_int(qdict, "size");
1302
1303 sum = 0;
1304 for(addr = start; addr < (start + size); addr++) {
1305 uint8_t val = address_space_ldub(&address_space_memory, addr,
1306 MEMTXATTRS_UNSPECIFIED, NULL);
1307 /* BSD sum algorithm ('sum' Unix command) */
1308 sum = (sum >> 1) | (sum << 15);
1309 sum += val;
1310 }
1311 monitor_printf(mon, "%05d\n", sum);
1312 }
1313
1314 static int mouse_button_state;
1315
1316 static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
1317 {
1318 int dx, dy, dz, button;
1319 const char *dx_str = qdict_get_str(qdict, "dx_str");
1320 const char *dy_str = qdict_get_str(qdict, "dy_str");
1321 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1322
1323 dx = strtol(dx_str, NULL, 0);
1324 dy = strtol(dy_str, NULL, 0);
1325 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1326 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1327
1328 if (dz_str) {
1329 dz = strtol(dz_str, NULL, 0);
1330 if (dz != 0) {
1331 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1332 qemu_input_queue_btn(NULL, button, true);
1333 qemu_input_event_sync();
1334 qemu_input_queue_btn(NULL, button, false);
1335 }
1336 }
1337 qemu_input_event_sync();
1338 }
1339
1340 static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
1341 {
1342 static uint32_t bmap[INPUT_BUTTON_MAX] = {
1343 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1344 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1345 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1346 };
1347 int button_state = qdict_get_int(qdict, "button_state");
1348
1349 if (mouse_button_state == button_state) {
1350 return;
1351 }
1352 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1353 qemu_input_event_sync();
1354 mouse_button_state = button_state;
1355 }
1356
1357 static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
1358 {
1359 int size = qdict_get_int(qdict, "size");
1360 int addr = qdict_get_int(qdict, "addr");
1361 int has_index = qdict_haskey(qdict, "index");
1362 uint32_t val;
1363 int suffix;
1364
1365 if (has_index) {
1366 int index = qdict_get_int(qdict, "index");
1367 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1368 addr++;
1369 }
1370 addr &= 0xffff;
1371
1372 switch(size) {
1373 default:
1374 case 1:
1375 val = cpu_inb(addr);
1376 suffix = 'b';
1377 break;
1378 case 2:
1379 val = cpu_inw(addr);
1380 suffix = 'w';
1381 break;
1382 case 4:
1383 val = cpu_inl(addr);
1384 suffix = 'l';
1385 break;
1386 }
1387 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1388 suffix, addr, size * 2, val);
1389 }
1390
1391 static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
1392 {
1393 int size = qdict_get_int(qdict, "size");
1394 int addr = qdict_get_int(qdict, "addr");
1395 int val = qdict_get_int(qdict, "val");
1396
1397 addr &= IOPORTS_MASK;
1398
1399 switch (size) {
1400 default:
1401 case 1:
1402 cpu_outb(addr, val);
1403 break;
1404 case 2:
1405 cpu_outw(addr, val);
1406 break;
1407 case 4:
1408 cpu_outl(addr, val);
1409 break;
1410 }
1411 }
1412
1413 static void hmp_boot_set(Monitor *mon, const QDict *qdict)
1414 {
1415 Error *local_err = NULL;
1416 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1417
1418 qemu_boot_set(bootdevice, &local_err);
1419 if (local_err) {
1420 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
1421 error_free(local_err);
1422 } else {
1423 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1424 }
1425 }
1426
1427 #if defined(TARGET_I386)
1428 static void print_pte(Monitor *mon, hwaddr addr,
1429 hwaddr pte,
1430 hwaddr mask)
1431 {
1432 #ifdef TARGET_X86_64
1433 if (addr & (1ULL << 47)) {
1434 addr |= -1LL << 48;
1435 }
1436 #endif
1437 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1438 " %c%c%c%c%c%c%c%c%c\n",
1439 addr,
1440 pte & mask,
1441 pte & PG_NX_MASK ? 'X' : '-',
1442 pte & PG_GLOBAL_MASK ? 'G' : '-',
1443 pte & PG_PSE_MASK ? 'P' : '-',
1444 pte & PG_DIRTY_MASK ? 'D' : '-',
1445 pte & PG_ACCESSED_MASK ? 'A' : '-',
1446 pte & PG_PCD_MASK ? 'C' : '-',
1447 pte & PG_PWT_MASK ? 'T' : '-',
1448 pte & PG_USER_MASK ? 'U' : '-',
1449 pte & PG_RW_MASK ? 'W' : '-');
1450 }
1451
1452 static void tlb_info_32(Monitor *mon, CPUArchState *env)
1453 {
1454 unsigned int l1, l2;
1455 uint32_t pgd, pde, pte;
1456
1457 pgd = env->cr[3] & ~0xfff;
1458 for(l1 = 0; l1 < 1024; l1++) {
1459 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1460 pde = le32_to_cpu(pde);
1461 if (pde & PG_PRESENT_MASK) {
1462 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1463 /* 4M pages */
1464 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1465 } else {
1466 for(l2 = 0; l2 < 1024; l2++) {
1467 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1468 pte = le32_to_cpu(pte);
1469 if (pte & PG_PRESENT_MASK) {
1470 print_pte(mon, (l1 << 22) + (l2 << 12),
1471 pte & ~PG_PSE_MASK,
1472 ~0xfff);
1473 }
1474 }
1475 }
1476 }
1477 }
1478 }
1479
1480 static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
1481 {
1482 unsigned int l1, l2, l3;
1483 uint64_t pdpe, pde, pte;
1484 uint64_t pdp_addr, pd_addr, pt_addr;
1485
1486 pdp_addr = env->cr[3] & ~0x1f;
1487 for (l1 = 0; l1 < 4; l1++) {
1488 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1489 pdpe = le64_to_cpu(pdpe);
1490 if (pdpe & PG_PRESENT_MASK) {
1491 pd_addr = pdpe & 0x3fffffffff000ULL;
1492 for (l2 = 0; l2 < 512; l2++) {
1493 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1494 pde = le64_to_cpu(pde);
1495 if (pde & PG_PRESENT_MASK) {
1496 if (pde & PG_PSE_MASK) {
1497 /* 2M pages with PAE, CR4.PSE is ignored */
1498 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1499 ~((hwaddr)(1 << 20) - 1));
1500 } else {
1501 pt_addr = pde & 0x3fffffffff000ULL;
1502 for (l3 = 0; l3 < 512; l3++) {
1503 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1504 pte = le64_to_cpu(pte);
1505 if (pte & PG_PRESENT_MASK) {
1506 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1507 + (l3 << 12),
1508 pte & ~PG_PSE_MASK,
1509 ~(hwaddr)0xfff);
1510 }
1511 }
1512 }
1513 }
1514 }
1515 }
1516 }
1517 }
1518
1519 #ifdef TARGET_X86_64
1520 static void tlb_info_64(Monitor *mon, CPUArchState *env)
1521 {
1522 uint64_t l1, l2, l3, l4;
1523 uint64_t pml4e, pdpe, pde, pte;
1524 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1525
1526 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1527 for (l1 = 0; l1 < 512; l1++) {
1528 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1529 pml4e = le64_to_cpu(pml4e);
1530 if (pml4e & PG_PRESENT_MASK) {
1531 pdp_addr = pml4e & 0x3fffffffff000ULL;
1532 for (l2 = 0; l2 < 512; l2++) {
1533 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1534 pdpe = le64_to_cpu(pdpe);
1535 if (pdpe & PG_PRESENT_MASK) {
1536 if (pdpe & PG_PSE_MASK) {
1537 /* 1G pages, CR4.PSE is ignored */
1538 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1539 0x3ffffc0000000ULL);
1540 } else {
1541 pd_addr = pdpe & 0x3fffffffff000ULL;
1542 for (l3 = 0; l3 < 512; l3++) {
1543 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1544 pde = le64_to_cpu(pde);
1545 if (pde & PG_PRESENT_MASK) {
1546 if (pde & PG_PSE_MASK) {
1547 /* 2M pages, CR4.PSE is ignored */
1548 print_pte(mon, (l1 << 39) + (l2 << 30) +
1549 (l3 << 21), pde,
1550 0x3ffffffe00000ULL);
1551 } else {
1552 pt_addr = pde & 0x3fffffffff000ULL;
1553 for (l4 = 0; l4 < 512; l4++) {
1554 cpu_physical_memory_read(pt_addr
1555 + l4 * 8,
1556 &pte, 8);
1557 pte = le64_to_cpu(pte);
1558 if (pte & PG_PRESENT_MASK) {
1559 print_pte(mon, (l1 << 39) +
1560 (l2 << 30) +
1561 (l3 << 21) + (l4 << 12),
1562 pte & ~PG_PSE_MASK,
1563 0x3fffffffff000ULL);
1564 }
1565 }
1566 }
1567 }
1568 }
1569 }
1570 }
1571 }
1572 }
1573 }
1574 }
1575 #endif
1576
1577 static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
1578 {
1579 CPUArchState *env;
1580
1581 env = mon_get_cpu_env();
1582
1583 if (!(env->cr[0] & CR0_PG_MASK)) {
1584 monitor_printf(mon, "PG disabled\n");
1585 return;
1586 }
1587 if (env->cr[4] & CR4_PAE_MASK) {
1588 #ifdef TARGET_X86_64
1589 if (env->hflags & HF_LMA_MASK) {
1590 tlb_info_64(mon, env);
1591 } else
1592 #endif
1593 {
1594 tlb_info_pae32(mon, env);
1595 }
1596 } else {
1597 tlb_info_32(mon, env);
1598 }
1599 }
1600
1601 static void mem_print(Monitor *mon, hwaddr *pstart,
1602 int *plast_prot,
1603 hwaddr end, int prot)
1604 {
1605 int prot1;
1606 prot1 = *plast_prot;
1607 if (prot != prot1) {
1608 if (*pstart != -1) {
1609 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1610 TARGET_FMT_plx " %c%c%c\n",
1611 *pstart, end, end - *pstart,
1612 prot1 & PG_USER_MASK ? 'u' : '-',
1613 'r',
1614 prot1 & PG_RW_MASK ? 'w' : '-');
1615 }
1616 if (prot != 0)
1617 *pstart = end;
1618 else
1619 *pstart = -1;
1620 *plast_prot = prot;
1621 }
1622 }
1623
1624 static void mem_info_32(Monitor *mon, CPUArchState *env)
1625 {
1626 unsigned int l1, l2;
1627 int prot, last_prot;
1628 uint32_t pgd, pde, pte;
1629 hwaddr start, end;
1630
1631 pgd = env->cr[3] & ~0xfff;
1632 last_prot = 0;
1633 start = -1;
1634 for(l1 = 0; l1 < 1024; l1++) {
1635 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1636 pde = le32_to_cpu(pde);
1637 end = l1 << 22;
1638 if (pde & PG_PRESENT_MASK) {
1639 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1640 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1641 mem_print(mon, &start, &last_prot, end, prot);
1642 } else {
1643 for(l2 = 0; l2 < 1024; l2++) {
1644 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1645 pte = le32_to_cpu(pte);
1646 end = (l1 << 22) + (l2 << 12);
1647 if (pte & PG_PRESENT_MASK) {
1648 prot = pte & pde &
1649 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1650 } else {
1651 prot = 0;
1652 }
1653 mem_print(mon, &start, &last_prot, end, prot);
1654 }
1655 }
1656 } else {
1657 prot = 0;
1658 mem_print(mon, &start, &last_prot, end, prot);
1659 }
1660 }
1661 /* Flush last range */
1662 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
1663 }
1664
1665 static void mem_info_pae32(Monitor *mon, CPUArchState *env)
1666 {
1667 unsigned int l1, l2, l3;
1668 int prot, last_prot;
1669 uint64_t pdpe, pde, pte;
1670 uint64_t pdp_addr, pd_addr, pt_addr;
1671 hwaddr start, end;
1672
1673 pdp_addr = env->cr[3] & ~0x1f;
1674 last_prot = 0;
1675 start = -1;
1676 for (l1 = 0; l1 < 4; l1++) {
1677 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1678 pdpe = le64_to_cpu(pdpe);
1679 end = l1 << 30;
1680 if (pdpe & PG_PRESENT_MASK) {
1681 pd_addr = pdpe & 0x3fffffffff000ULL;
1682 for (l2 = 0; l2 < 512; l2++) {
1683 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1684 pde = le64_to_cpu(pde);
1685 end = (l1 << 30) + (l2 << 21);
1686 if (pde & PG_PRESENT_MASK) {
1687 if (pde & PG_PSE_MASK) {
1688 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1689 PG_PRESENT_MASK);
1690 mem_print(mon, &start, &last_prot, end, prot);
1691 } else {
1692 pt_addr = pde & 0x3fffffffff000ULL;
1693 for (l3 = 0; l3 < 512; l3++) {
1694 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1695 pte = le64_to_cpu(pte);
1696 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1697 if (pte & PG_PRESENT_MASK) {
1698 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1699 PG_PRESENT_MASK);
1700 } else {
1701 prot = 0;
1702 }
1703 mem_print(mon, &start, &last_prot, end, prot);
1704 }
1705 }
1706 } else {
1707 prot = 0;
1708 mem_print(mon, &start, &last_prot, end, prot);
1709 }
1710 }
1711 } else {
1712 prot = 0;
1713 mem_print(mon, &start, &last_prot, end, prot);
1714 }
1715 }
1716 /* Flush last range */
1717 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
1718 }
1719
1720
1721 #ifdef TARGET_X86_64
1722 static void mem_info_64(Monitor *mon, CPUArchState *env)
1723 {
1724 int prot, last_prot;
1725 uint64_t l1, l2, l3, l4;
1726 uint64_t pml4e, pdpe, pde, pte;
1727 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1728
1729 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1730 last_prot = 0;
1731 start = -1;
1732 for (l1 = 0; l1 < 512; l1++) {
1733 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1734 pml4e = le64_to_cpu(pml4e);
1735 end = l1 << 39;
1736 if (pml4e & PG_PRESENT_MASK) {
1737 pdp_addr = pml4e & 0x3fffffffff000ULL;
1738 for (l2 = 0; l2 < 512; l2++) {
1739 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1740 pdpe = le64_to_cpu(pdpe);
1741 end = (l1 << 39) + (l2 << 30);
1742 if (pdpe & PG_PRESENT_MASK) {
1743 if (pdpe & PG_PSE_MASK) {
1744 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1745 PG_PRESENT_MASK);
1746 prot &= pml4e;
1747 mem_print(mon, &start, &last_prot, end, prot);
1748 } else {
1749 pd_addr = pdpe & 0x3fffffffff000ULL;
1750 for (l3 = 0; l3 < 512; l3++) {
1751 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1752 pde = le64_to_cpu(pde);
1753 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1754 if (pde & PG_PRESENT_MASK) {
1755 if (pde & PG_PSE_MASK) {
1756 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1757 PG_PRESENT_MASK);
1758 prot &= pml4e & pdpe;
1759 mem_print(mon, &start, &last_prot, end, prot);
1760 } else {
1761 pt_addr = pde & 0x3fffffffff000ULL;
1762 for (l4 = 0; l4 < 512; l4++) {
1763 cpu_physical_memory_read(pt_addr
1764 + l4 * 8,
1765 &pte, 8);
1766 pte = le64_to_cpu(pte);
1767 end = (l1 << 39) + (l2 << 30) +
1768 (l3 << 21) + (l4 << 12);
1769 if (pte & PG_PRESENT_MASK) {
1770 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1771 PG_PRESENT_MASK);
1772 prot &= pml4e & pdpe & pde;
1773 } else {
1774 prot = 0;
1775 }
1776 mem_print(mon, &start, &last_prot, end, prot);
1777 }
1778 }
1779 } else {
1780 prot = 0;
1781 mem_print(mon, &start, &last_prot, end, prot);
1782 }
1783 }
1784 }
1785 } else {
1786 prot = 0;
1787 mem_print(mon, &start, &last_prot, end, prot);
1788 }
1789 }
1790 } else {
1791 prot = 0;
1792 mem_print(mon, &start, &last_prot, end, prot);
1793 }
1794 }
1795 /* Flush last range */
1796 mem_print(mon, &start, &last_prot, (hwaddr)1 << 48, 0);
1797 }
1798 #endif
1799
1800 static void hmp_info_mem(Monitor *mon, const QDict *qdict)
1801 {
1802 CPUArchState *env;
1803
1804 env = mon_get_cpu_env();
1805
1806 if (!(env->cr[0] & CR0_PG_MASK)) {
1807 monitor_printf(mon, "PG disabled\n");
1808 return;
1809 }
1810 if (env->cr[4] & CR4_PAE_MASK) {
1811 #ifdef TARGET_X86_64
1812 if (env->hflags & HF_LMA_MASK) {
1813 mem_info_64(mon, env);
1814 } else
1815 #endif
1816 {
1817 mem_info_pae32(mon, env);
1818 }
1819 } else {
1820 mem_info_32(mon, env);
1821 }
1822 }
1823 #endif
1824
1825 #if defined(TARGET_SH4)
1826
1827 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1828 {
1829 monitor_printf(mon, " tlb%i:\t"
1830 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1831 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1832 "dirty=%hhu writethrough=%hhu\n",
1833 idx,
1834 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1835 tlb->v, tlb->sh, tlb->c, tlb->pr,
1836 tlb->d, tlb->wt);
1837 }
1838
1839 static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
1840 {
1841 CPUArchState *env = mon_get_cpu_env();
1842 int i;
1843
1844 monitor_printf (mon, "ITLB:\n");
1845 for (i = 0 ; i < ITLB_SIZE ; i++)
1846 print_tlb (mon, i, &env->itlb[i]);
1847 monitor_printf (mon, "UTLB:\n");
1848 for (i = 0 ; i < UTLB_SIZE ; i++)
1849 print_tlb (mon, i, &env->utlb[i]);
1850 }
1851
1852 #endif
1853
1854 #if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
1855 static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
1856 {
1857 CPUArchState *env1 = mon_get_cpu_env();
1858
1859 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1860 }
1861 #endif
1862
1863 static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
1864 {
1865 mtree_info((fprintf_function)monitor_printf, mon);
1866 }
1867
1868 static void hmp_info_numa(Monitor *mon, const QDict *qdict)
1869 {
1870 int i;
1871 CPUState *cpu;
1872 uint64_t *node_mem;
1873
1874 node_mem = g_new0(uint64_t, nb_numa_nodes);
1875 query_numa_node_mem(node_mem);
1876 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1877 for (i = 0; i < nb_numa_nodes; i++) {
1878 monitor_printf(mon, "node %d cpus:", i);
1879 CPU_FOREACH(cpu) {
1880 if (cpu->numa_node == i) {
1881 monitor_printf(mon, " %d", cpu->cpu_index);
1882 }
1883 }
1884 monitor_printf(mon, "\n");
1885 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1886 node_mem[i] >> 20);
1887 }
1888 g_free(node_mem);
1889 }
1890
1891 #ifdef CONFIG_PROFILER
1892
1893 int64_t tcg_time;
1894 int64_t dev_time;
1895
1896 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1897 {
1898 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1899 dev_time, dev_time / (double)get_ticks_per_sec());
1900 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1901 tcg_time, tcg_time / (double)get_ticks_per_sec());
1902 tcg_time = 0;
1903 dev_time = 0;
1904 }
1905 #else
1906 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1907 {
1908 monitor_printf(mon, "Internal profiler not compiled\n");
1909 }
1910 #endif
1911
1912 /* Capture support */
1913 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
1914
1915 static void hmp_info_capture(Monitor *mon, const QDict *qdict)
1916 {
1917 int i;
1918 CaptureState *s;
1919
1920 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1921 monitor_printf(mon, "[%d]: ", i);
1922 s->ops.info (s->opaque);
1923 }
1924 }
1925
1926 static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
1927 {
1928 int i;
1929 int n = qdict_get_int(qdict, "n");
1930 CaptureState *s;
1931
1932 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1933 if (i == n) {
1934 s->ops.destroy (s->opaque);
1935 QLIST_REMOVE (s, entries);
1936 g_free (s);
1937 return;
1938 }
1939 }
1940 }
1941
1942 static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
1943 {
1944 const char *path = qdict_get_str(qdict, "path");
1945 int has_freq = qdict_haskey(qdict, "freq");
1946 int freq = qdict_get_try_int(qdict, "freq", -1);
1947 int has_bits = qdict_haskey(qdict, "bits");
1948 int bits = qdict_get_try_int(qdict, "bits", -1);
1949 int has_channels = qdict_haskey(qdict, "nchannels");
1950 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
1951 CaptureState *s;
1952
1953 s = g_malloc0 (sizeof (*s));
1954
1955 freq = has_freq ? freq : 44100;
1956 bits = has_bits ? bits : 16;
1957 nchannels = has_channels ? nchannels : 2;
1958
1959 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1960 monitor_printf(mon, "Failed to add wave capture\n");
1961 g_free (s);
1962 return;
1963 }
1964 QLIST_INSERT_HEAD (&capture_head, s, entries);
1965 }
1966
1967 static qemu_acl *find_acl(Monitor *mon, const char *name)
1968 {
1969 qemu_acl *acl = qemu_acl_find(name);
1970
1971 if (!acl) {
1972 monitor_printf(mon, "acl: unknown list '%s'\n", name);
1973 }
1974 return acl;
1975 }
1976
1977 static void hmp_acl_show(Monitor *mon, const QDict *qdict)
1978 {
1979 const char *aclname = qdict_get_str(qdict, "aclname");
1980 qemu_acl *acl = find_acl(mon, aclname);
1981 qemu_acl_entry *entry;
1982 int i = 0;
1983
1984 if (acl) {
1985 monitor_printf(mon, "policy: %s\n",
1986 acl->defaultDeny ? "deny" : "allow");
1987 QTAILQ_FOREACH(entry, &acl->entries, next) {
1988 i++;
1989 monitor_printf(mon, "%d: %s %s\n", i,
1990 entry->deny ? "deny" : "allow", entry->match);
1991 }
1992 }
1993 }
1994
1995 static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
1996 {
1997 const char *aclname = qdict_get_str(qdict, "aclname");
1998 qemu_acl *acl = find_acl(mon, aclname);
1999
2000 if (acl) {
2001 qemu_acl_reset(acl);
2002 monitor_printf(mon, "acl: removed all rules\n");
2003 }
2004 }
2005
2006 static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
2007 {
2008 const char *aclname = qdict_get_str(qdict, "aclname");
2009 const char *policy = qdict_get_str(qdict, "policy");
2010 qemu_acl *acl = find_acl(mon, aclname);
2011
2012 if (acl) {
2013 if (strcmp(policy, "allow") == 0) {
2014 acl->defaultDeny = 0;
2015 monitor_printf(mon, "acl: policy set to 'allow'\n");
2016 } else if (strcmp(policy, "deny") == 0) {
2017 acl->defaultDeny = 1;
2018 monitor_printf(mon, "acl: policy set to 'deny'\n");
2019 } else {
2020 monitor_printf(mon, "acl: unknown policy '%s', "
2021 "expected 'deny' or 'allow'\n", policy);
2022 }
2023 }
2024 }
2025
2026 static void hmp_acl_add(Monitor *mon, const QDict *qdict)
2027 {
2028 const char *aclname = qdict_get_str(qdict, "aclname");
2029 const char *match = qdict_get_str(qdict, "match");
2030 const char *policy = qdict_get_str(qdict, "policy");
2031 int has_index = qdict_haskey(qdict, "index");
2032 int index = qdict_get_try_int(qdict, "index", -1);
2033 qemu_acl *acl = find_acl(mon, aclname);
2034 int deny, ret;
2035
2036 if (acl) {
2037 if (strcmp(policy, "allow") == 0) {
2038 deny = 0;
2039 } else if (strcmp(policy, "deny") == 0) {
2040 deny = 1;
2041 } else {
2042 monitor_printf(mon, "acl: unknown policy '%s', "
2043 "expected 'deny' or 'allow'\n", policy);
2044 return;
2045 }
2046 if (has_index)
2047 ret = qemu_acl_insert(acl, deny, match, index);
2048 else
2049 ret = qemu_acl_append(acl, deny, match);
2050 if (ret < 0)
2051 monitor_printf(mon, "acl: unable to add acl entry\n");
2052 else
2053 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2054 }
2055 }
2056
2057 static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
2058 {
2059 const char *aclname = qdict_get_str(qdict, "aclname");
2060 const char *match = qdict_get_str(qdict, "match");
2061 qemu_acl *acl = find_acl(mon, aclname);
2062 int ret;
2063
2064 if (acl) {
2065 ret = qemu_acl_remove(acl, match);
2066 if (ret < 0)
2067 monitor_printf(mon, "acl: no matching acl entry\n");
2068 else
2069 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2070 }
2071 }
2072
2073 #if defined(TARGET_I386)
2074 static void hmp_mce(Monitor *mon, const QDict *qdict)
2075 {
2076 X86CPU *cpu;
2077 CPUState *cs;
2078 int cpu_index = qdict_get_int(qdict, "cpu_index");
2079 int bank = qdict_get_int(qdict, "bank");
2080 uint64_t status = qdict_get_int(qdict, "status");
2081 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2082 uint64_t addr = qdict_get_int(qdict, "addr");
2083 uint64_t misc = qdict_get_int(qdict, "misc");
2084 int flags = MCE_INJECT_UNCOND_AO;
2085
2086 if (qdict_get_try_bool(qdict, "broadcast", false)) {
2087 flags |= MCE_INJECT_BROADCAST;
2088 }
2089 cs = qemu_get_cpu(cpu_index);
2090 if (cs != NULL) {
2091 cpu = X86_CPU(cs);
2092 cpu_x86_inject_mce(mon, cpu, bank, status, mcg_status, addr, misc,
2093 flags);
2094 }
2095 }
2096 #endif
2097
2098 void qmp_getfd(const char *fdname, Error **errp)
2099 {
2100 mon_fd_t *monfd;
2101 int fd;
2102
2103 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
2104 if (fd == -1) {
2105 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2106 return;
2107 }
2108
2109 if (qemu_isdigit(fdname[0])) {
2110 close(fd);
2111 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2112 "a name not starting with a digit");
2113 return;
2114 }
2115
2116 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2117 if (strcmp(monfd->name, fdname) != 0) {
2118 continue;
2119 }
2120
2121 close(monfd->fd);
2122 monfd->fd = fd;
2123 return;
2124 }
2125
2126 monfd = g_malloc0(sizeof(mon_fd_t));
2127 monfd->name = g_strdup(fdname);
2128 monfd->fd = fd;
2129
2130 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
2131 }
2132
2133 void qmp_closefd(const char *fdname, Error **errp)
2134 {
2135 mon_fd_t *monfd;
2136
2137 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2138 if (strcmp(monfd->name, fdname) != 0) {
2139 continue;
2140 }
2141
2142 QLIST_REMOVE(monfd, next);
2143 close(monfd->fd);
2144 g_free(monfd->name);
2145 g_free(monfd);
2146 return;
2147 }
2148
2149 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
2150 }
2151
2152 static void hmp_loadvm(Monitor *mon, const QDict *qdict)
2153 {
2154 int saved_vm_running = runstate_is_running();
2155 const char *name = qdict_get_str(qdict, "name");
2156
2157 vm_stop(RUN_STATE_RESTORE_VM);
2158
2159 if (load_vmstate(name) == 0 && saved_vm_running) {
2160 vm_start();
2161 }
2162 }
2163
2164 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
2165 {
2166 mon_fd_t *monfd;
2167
2168 QLIST_FOREACH(monfd, &mon->fds, next) {
2169 int fd;
2170
2171 if (strcmp(monfd->name, fdname) != 0) {
2172 continue;
2173 }
2174
2175 fd = monfd->fd;
2176
2177 /* caller takes ownership of fd */
2178 QLIST_REMOVE(monfd, next);
2179 g_free(monfd->name);
2180 g_free(monfd);
2181
2182 return fd;
2183 }
2184
2185 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
2186 return -1;
2187 }
2188
2189 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2190 {
2191 MonFdsetFd *mon_fdset_fd;
2192 MonFdsetFd *mon_fdset_fd_next;
2193
2194 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2195 if ((mon_fdset_fd->removed ||
2196 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2197 runstate_is_running()) {
2198 close(mon_fdset_fd->fd);
2199 g_free(mon_fdset_fd->opaque);
2200 QLIST_REMOVE(mon_fdset_fd, next);
2201 g_free(mon_fdset_fd);
2202 }
2203 }
2204
2205 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2206 QLIST_REMOVE(mon_fdset, next);
2207 g_free(mon_fdset);
2208 }
2209 }
2210
2211 static void monitor_fdsets_cleanup(void)
2212 {
2213 MonFdset *mon_fdset;
2214 MonFdset *mon_fdset_next;
2215
2216 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2217 monitor_fdset_cleanup(mon_fdset);
2218 }
2219 }
2220
2221 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2222 const char *opaque, Error **errp)
2223 {
2224 int fd;
2225 Monitor *mon = cur_mon;
2226 AddfdInfo *fdinfo;
2227
2228 fd = qemu_chr_fe_get_msgfd(mon->chr);
2229 if (fd == -1) {
2230 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2231 goto error;
2232 }
2233
2234 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2235 has_opaque, opaque, errp);
2236 if (fdinfo) {
2237 return fdinfo;
2238 }
2239
2240 error:
2241 if (fd != -1) {
2242 close(fd);
2243 }
2244 return NULL;
2245 }
2246
2247 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2248 {
2249 MonFdset *mon_fdset;
2250 MonFdsetFd *mon_fdset_fd;
2251 char fd_str[60];
2252
2253 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2254 if (mon_fdset->id != fdset_id) {
2255 continue;
2256 }
2257 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2258 if (has_fd) {
2259 if (mon_fdset_fd->fd != fd) {
2260 continue;
2261 }
2262 mon_fdset_fd->removed = true;
2263 break;
2264 } else {
2265 mon_fdset_fd->removed = true;
2266 }
2267 }
2268 if (has_fd && !mon_fdset_fd) {
2269 goto error;
2270 }
2271 monitor_fdset_cleanup(mon_fdset);
2272 return;
2273 }
2274
2275 error:
2276 if (has_fd) {
2277 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2278 fdset_id, fd);
2279 } else {
2280 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2281 }
2282 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
2283 }
2284
2285 FdsetInfoList *qmp_query_fdsets(Error **errp)
2286 {
2287 MonFdset *mon_fdset;
2288 MonFdsetFd *mon_fdset_fd;
2289 FdsetInfoList *fdset_list = NULL;
2290
2291 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2292 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2293 FdsetFdInfoList *fdsetfd_list = NULL;
2294
2295 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2296 fdset_info->value->fdset_id = mon_fdset->id;
2297
2298 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2299 FdsetFdInfoList *fdsetfd_info;
2300
2301 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2302 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2303 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2304 if (mon_fdset_fd->opaque) {
2305 fdsetfd_info->value->has_opaque = true;
2306 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2307 } else {
2308 fdsetfd_info->value->has_opaque = false;
2309 }
2310
2311 fdsetfd_info->next = fdsetfd_list;
2312 fdsetfd_list = fdsetfd_info;
2313 }
2314
2315 fdset_info->value->fds = fdsetfd_list;
2316
2317 fdset_info->next = fdset_list;
2318 fdset_list = fdset_info;
2319 }
2320
2321 return fdset_list;
2322 }
2323
2324 AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2325 bool has_opaque, const char *opaque,
2326 Error **errp)
2327 {
2328 MonFdset *mon_fdset = NULL;
2329 MonFdsetFd *mon_fdset_fd;
2330 AddfdInfo *fdinfo;
2331
2332 if (has_fdset_id) {
2333 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2334 /* Break if match found or match impossible due to ordering by ID */
2335 if (fdset_id <= mon_fdset->id) {
2336 if (fdset_id < mon_fdset->id) {
2337 mon_fdset = NULL;
2338 }
2339 break;
2340 }
2341 }
2342 }
2343
2344 if (mon_fdset == NULL) {
2345 int64_t fdset_id_prev = -1;
2346 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2347
2348 if (has_fdset_id) {
2349 if (fdset_id < 0) {
2350 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2351 "a non-negative value");
2352 return NULL;
2353 }
2354 /* Use specified fdset ID */
2355 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2356 mon_fdset_cur = mon_fdset;
2357 if (fdset_id < mon_fdset_cur->id) {
2358 break;
2359 }
2360 }
2361 } else {
2362 /* Use first available fdset ID */
2363 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2364 mon_fdset_cur = mon_fdset;
2365 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2366 fdset_id_prev = mon_fdset_cur->id;
2367 continue;
2368 }
2369 break;
2370 }
2371 }
2372
2373 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2374 if (has_fdset_id) {
2375 mon_fdset->id = fdset_id;
2376 } else {
2377 mon_fdset->id = fdset_id_prev + 1;
2378 }
2379
2380 /* The fdset list is ordered by fdset ID */
2381 if (!mon_fdset_cur) {
2382 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2383 } else if (mon_fdset->id < mon_fdset_cur->id) {
2384 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2385 } else {
2386 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2387 }
2388 }
2389
2390 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2391 mon_fdset_fd->fd = fd;
2392 mon_fdset_fd->removed = false;
2393 if (has_opaque) {
2394 mon_fdset_fd->opaque = g_strdup(opaque);
2395 }
2396 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2397
2398 fdinfo = g_malloc0(sizeof(*fdinfo));
2399 fdinfo->fdset_id = mon_fdset->id;
2400 fdinfo->fd = mon_fdset_fd->fd;
2401
2402 return fdinfo;
2403 }
2404
2405 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2406 {
2407 #ifndef _WIN32
2408 MonFdset *mon_fdset;
2409 MonFdsetFd *mon_fdset_fd;
2410 int mon_fd_flags;
2411
2412 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2413 if (mon_fdset->id != fdset_id) {
2414 continue;
2415 }
2416 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2417 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2418 if (mon_fd_flags == -1) {
2419 return -1;
2420 }
2421
2422 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2423 return mon_fdset_fd->fd;
2424 }
2425 }
2426 errno = EACCES;
2427 return -1;
2428 }
2429 #endif
2430
2431 errno = ENOENT;
2432 return -1;
2433 }
2434
2435 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2436 {
2437 MonFdset *mon_fdset;
2438 MonFdsetFd *mon_fdset_fd_dup;
2439
2440 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2441 if (mon_fdset->id != fdset_id) {
2442 continue;
2443 }
2444 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2445 if (mon_fdset_fd_dup->fd == dup_fd) {
2446 return -1;
2447 }
2448 }
2449 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2450 mon_fdset_fd_dup->fd = dup_fd;
2451 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2452 return 0;
2453 }
2454 return -1;
2455 }
2456
2457 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2458 {
2459 MonFdset *mon_fdset;
2460 MonFdsetFd *mon_fdset_fd_dup;
2461
2462 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2463 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2464 if (mon_fdset_fd_dup->fd == dup_fd) {
2465 if (remove) {
2466 QLIST_REMOVE(mon_fdset_fd_dup, next);
2467 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2468 monitor_fdset_cleanup(mon_fdset);
2469 }
2470 return -1;
2471 } else {
2472 return mon_fdset->id;
2473 }
2474 }
2475 }
2476 }
2477 return -1;
2478 }
2479
2480 int monitor_fdset_dup_fd_find(int dup_fd)
2481 {
2482 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2483 }
2484
2485 void monitor_fdset_dup_fd_remove(int dup_fd)
2486 {
2487 monitor_fdset_dup_fd_find_remove(dup_fd, true);
2488 }
2489
2490 int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
2491 {
2492 int fd;
2493 Error *local_err = NULL;
2494
2495 if (!qemu_isdigit(fdname[0]) && mon) {
2496 fd = monitor_get_fd(mon, fdname, &local_err);
2497 } else {
2498 fd = qemu_parse_fd(fdname);
2499 if (fd == -1) {
2500 error_setg(&local_err, "Invalid file descriptor number '%s'",
2501 fdname);
2502 }
2503 }
2504 if (local_err) {
2505 error_propagate(errp, local_err);
2506 assert(fd == -1);
2507 } else {
2508 assert(fd != -1);
2509 }
2510
2511 return fd;
2512 }
2513
2514 /* Please update hmp-commands.hx when adding or changing commands */
2515 static mon_cmd_t info_cmds[] = {
2516 #include "hmp-commands-info.h"
2517 { NULL, NULL, },
2518 };
2519
2520 /* mon_cmds and info_cmds would be sorted at runtime */
2521 static mon_cmd_t mon_cmds[] = {
2522 #include "hmp-commands.h"
2523 { NULL, NULL, },
2524 };
2525
2526 static const mon_cmd_t qmp_cmds[] = {
2527 #include "qmp-commands-old.h"
2528 { /* NULL */ },
2529 };
2530
2531 /*******************************************************************/
2532
2533 static const char *pch;
2534 static sigjmp_buf expr_env;
2535
2536 #define MD_TLONG 0
2537 #define MD_I32 1
2538
2539 typedef struct MonitorDef {
2540 const char *name;
2541 int offset;
2542 target_long (*get_value)(const struct MonitorDef *md, int val);
2543 int type;
2544 } MonitorDef;
2545
2546 #if defined(TARGET_I386)
2547 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2548 {
2549 CPUArchState *env = mon_get_cpu_env();
2550 return env->eip + env->segs[R_CS].base;
2551 }
2552 #endif
2553
2554 #if defined(TARGET_PPC)
2555 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2556 {
2557 CPUArchState *env = mon_get_cpu_env();
2558 unsigned int u;
2559 int i;
2560
2561 u = 0;
2562 for (i = 0; i < 8; i++)
2563 u |= env->crf[i] << (32 - (4 * (i + 1)));
2564
2565 return u;
2566 }
2567
2568 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2569 {
2570 CPUArchState *env = mon_get_cpu_env();
2571 return env->msr;
2572 }
2573
2574 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2575 {
2576 CPUArchState *env = mon_get_cpu_env();
2577 return env->xer;
2578 }
2579
2580 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2581 {
2582 CPUArchState *env = mon_get_cpu_env();
2583 return cpu_ppc_load_decr(env);
2584 }
2585
2586 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2587 {
2588 CPUArchState *env = mon_get_cpu_env();
2589 return cpu_ppc_load_tbu(env);
2590 }
2591
2592 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2593 {
2594 CPUArchState *env = mon_get_cpu_env();
2595 return cpu_ppc_load_tbl(env);
2596 }
2597 #endif
2598
2599 #if defined(TARGET_SPARC)
2600 #ifndef TARGET_SPARC64
2601 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2602 {
2603 CPUArchState *env = mon_get_cpu_env();
2604
2605 return cpu_get_psr(env);
2606 }
2607 #endif
2608
2609 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2610 {
2611 CPUArchState *env = mon_get_cpu_env();
2612 return env->regwptr[val];
2613 }
2614 #endif
2615
2616 static const MonitorDef monitor_defs[] = {
2617 #ifdef TARGET_I386
2618
2619 #define SEG(name, seg) \
2620 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2621 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2622 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
2623
2624 { "eax", offsetof(CPUX86State, regs[0]) },
2625 { "ecx", offsetof(CPUX86State, regs[1]) },
2626 { "edx", offsetof(CPUX86State, regs[2]) },
2627 { "ebx", offsetof(CPUX86State, regs[3]) },
2628 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2629 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2630 { "esi", offsetof(CPUX86State, regs[6]) },
2631 { "edi", offsetof(CPUX86State, regs[7]) },
2632 #ifdef TARGET_X86_64
2633 { "r8", offsetof(CPUX86State, regs[8]) },
2634 { "r9", offsetof(CPUX86State, regs[9]) },
2635 { "r10", offsetof(CPUX86State, regs[10]) },
2636 { "r11", offsetof(CPUX86State, regs[11]) },
2637 { "r12", offsetof(CPUX86State, regs[12]) },
2638 { "r13", offsetof(CPUX86State, regs[13]) },
2639 { "r14", offsetof(CPUX86State, regs[14]) },
2640 { "r15", offsetof(CPUX86State, regs[15]) },
2641 #endif
2642 { "eflags", offsetof(CPUX86State, eflags) },
2643 { "eip", offsetof(CPUX86State, eip) },
2644 SEG("cs", R_CS)
2645 SEG("ds", R_DS)
2646 SEG("es", R_ES)
2647 SEG("ss", R_SS)
2648 SEG("fs", R_FS)
2649 SEG("gs", R_GS)
2650 { "pc", 0, monitor_get_pc, },
2651 #elif defined(TARGET_PPC)
2652 /* General purpose registers */
2653 { "r0", offsetof(CPUPPCState, gpr[0]) },
2654 { "r1", offsetof(CPUPPCState, gpr[1]) },
2655 { "r2", offsetof(CPUPPCState, gpr[2]) },
2656 { "r3", offsetof(CPUPPCState, gpr[3]) },
2657 { "r4", offsetof(CPUPPCState, gpr[4]) },
2658 { "r5", offsetof(CPUPPCState, gpr[5]) },
2659 { "r6", offsetof(CPUPPCState, gpr[6]) },
2660 { "r7", offsetof(CPUPPCState, gpr[7]) },
2661 { "r8", offsetof(CPUPPCState, gpr[8]) },
2662 { "r9", offsetof(CPUPPCState, gpr[9]) },
2663 { "r10", offsetof(CPUPPCState, gpr[10]) },
2664 { "r11", offsetof(CPUPPCState, gpr[11]) },
2665 { "r12", offsetof(CPUPPCState, gpr[12]) },
2666 { "r13", offsetof(CPUPPCState, gpr[13]) },
2667 { "r14", offsetof(CPUPPCState, gpr[14]) },
2668 { "r15", offsetof(CPUPPCState, gpr[15]) },
2669 { "r16", offsetof(CPUPPCState, gpr[16]) },
2670 { "r17", offsetof(CPUPPCState, gpr[17]) },
2671 { "r18", offsetof(CPUPPCState, gpr[18]) },
2672 { "r19", offsetof(CPUPPCState, gpr[19]) },
2673 { "r20", offsetof(CPUPPCState, gpr[20]) },
2674 { "r21", offsetof(CPUPPCState, gpr[21]) },
2675 { "r22", offsetof(CPUPPCState, gpr[22]) },
2676 { "r23", offsetof(CPUPPCState, gpr[23]) },
2677 { "r24", offsetof(CPUPPCState, gpr[24]) },
2678 { "r25", offsetof(CPUPPCState, gpr[25]) },
2679 { "r26", offsetof(CPUPPCState, gpr[26]) },
2680 { "r27", offsetof(CPUPPCState, gpr[27]) },
2681 { "r28", offsetof(CPUPPCState, gpr[28]) },
2682 { "r29", offsetof(CPUPPCState, gpr[29]) },
2683 { "r30", offsetof(CPUPPCState, gpr[30]) },
2684 { "r31", offsetof(CPUPPCState, gpr[31]) },
2685 /* Floating point registers */
2686 { "f0", offsetof(CPUPPCState, fpr[0]) },
2687 { "f1", offsetof(CPUPPCState, fpr[1]) },
2688 { "f2", offsetof(CPUPPCState, fpr[2]) },
2689 { "f3", offsetof(CPUPPCState, fpr[3]) },
2690 { "f4", offsetof(CPUPPCState, fpr[4]) },
2691 { "f5", offsetof(CPUPPCState, fpr[5]) },
2692 { "f6", offsetof(CPUPPCState, fpr[6]) },
2693 { "f7", offsetof(CPUPPCState, fpr[7]) },
2694 { "f8", offsetof(CPUPPCState, fpr[8]) },
2695 { "f9", offsetof(CPUPPCState, fpr[9]) },
2696 { "f10", offsetof(CPUPPCState, fpr[10]) },
2697 { "f11", offsetof(CPUPPCState, fpr[11]) },
2698 { "f12", offsetof(CPUPPCState, fpr[12]) },
2699 { "f13", offsetof(CPUPPCState, fpr[13]) },
2700 { "f14", offsetof(CPUPPCState, fpr[14]) },
2701 { "f15", offsetof(CPUPPCState, fpr[15]) },
2702 { "f16", offsetof(CPUPPCState, fpr[16]) },
2703 { "f17", offsetof(CPUPPCState, fpr[17]) },
2704 { "f18", offsetof(CPUPPCState, fpr[18]) },
2705 { "f19", offsetof(CPUPPCState, fpr[19]) },
2706 { "f20", offsetof(CPUPPCState, fpr[20]) },
2707 { "f21", offsetof(CPUPPCState, fpr[21]) },
2708 { "f22", offsetof(CPUPPCState, fpr[22]) },
2709 { "f23", offsetof(CPUPPCState, fpr[23]) },
2710 { "f24", offsetof(CPUPPCState, fpr[24]) },
2711 { "f25", offsetof(CPUPPCState, fpr[25]) },
2712 { "f26", offsetof(CPUPPCState, fpr[26]) },
2713 { "f27", offsetof(CPUPPCState, fpr[27]) },
2714 { "f28", offsetof(CPUPPCState, fpr[28]) },
2715 { "f29", offsetof(CPUPPCState, fpr[29]) },
2716 { "f30", offsetof(CPUPPCState, fpr[30]) },
2717 { "f31", offsetof(CPUPPCState, fpr[31]) },
2718 { "fpscr", offsetof(CPUPPCState, fpscr) },
2719 /* Next instruction pointer */
2720 { "nip|pc", offsetof(CPUPPCState, nip) },
2721 { "lr", offsetof(CPUPPCState, lr) },
2722 { "ctr", offsetof(CPUPPCState, ctr) },
2723 { "decr", 0, &monitor_get_decr, },
2724 { "ccr", 0, &monitor_get_ccr, },
2725 /* Machine state register */
2726 { "msr", 0, &monitor_get_msr, },
2727 { "xer", 0, &monitor_get_xer, },
2728 { "tbu", 0, &monitor_get_tbu, },
2729 { "tbl", 0, &monitor_get_tbl, },
2730 /* Segment registers */
2731 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
2732 { "sr0", offsetof(CPUPPCState, sr[0]) },
2733 { "sr1", offsetof(CPUPPCState, sr[1]) },
2734 { "sr2", offsetof(CPUPPCState, sr[2]) },
2735 { "sr3", offsetof(CPUPPCState, sr[3]) },
2736 { "sr4", offsetof(CPUPPCState, sr[4]) },
2737 { "sr5", offsetof(CPUPPCState, sr[5]) },
2738 { "sr6", offsetof(CPUPPCState, sr[6]) },
2739 { "sr7", offsetof(CPUPPCState, sr[7]) },
2740 { "sr8", offsetof(CPUPPCState, sr[8]) },
2741 { "sr9", offsetof(CPUPPCState, sr[9]) },
2742 { "sr10", offsetof(CPUPPCState, sr[10]) },
2743 { "sr11", offsetof(CPUPPCState, sr[11]) },
2744 { "sr12", offsetof(CPUPPCState, sr[12]) },
2745 { "sr13", offsetof(CPUPPCState, sr[13]) },
2746 { "sr14", offsetof(CPUPPCState, sr[14]) },
2747 { "sr15", offsetof(CPUPPCState, sr[15]) },
2748 /* Too lazy to put BATs... */
2749 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
2750
2751 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
2752 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
2753 { "dar", offsetof(CPUPPCState, spr[SPR_DAR]) },
2754 { "dsisr", offsetof(CPUPPCState, spr[SPR_DSISR]) },
2755 { "cfar", offsetof(CPUPPCState, spr[SPR_CFAR]) },
2756 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
2757 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
2758 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
2759 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
2760 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
2761 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
2762 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
2763 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
2764 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
2765 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
2766 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
2767 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
2768 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
2769 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
2770 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
2771 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
2772 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
2773 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
2774 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
2775 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
2776 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
2777 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
2778 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
2779 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
2780 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
2781 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
2782 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
2783 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
2784 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
2785 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
2786 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
2787 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
2788 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
2789 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
2790 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
2791 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
2792 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
2793 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
2794 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
2795 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
2796 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
2797 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
2798 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
2799 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
2800 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
2801 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
2802 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
2803 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
2804 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
2805 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
2806 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
2807 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
2808 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
2809 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
2810 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
2811 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
2812 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
2813 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
2814 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
2815 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
2816 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
2817 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
2818 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
2819 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
2820
2821 #elif defined(TARGET_SPARC)
2822 { "g0", offsetof(CPUSPARCState, gregs[0]) },
2823 { "g1", offsetof(CPUSPARCState, gregs[1]) },
2824 { "g2", offsetof(CPUSPARCState, gregs[2]) },
2825 { "g3", offsetof(CPUSPARCState, gregs[3]) },
2826 { "g4", offsetof(CPUSPARCState, gregs[4]) },
2827 { "g5", offsetof(CPUSPARCState, gregs[5]) },
2828 { "g6", offsetof(CPUSPARCState, gregs[6]) },
2829 { "g7", offsetof(CPUSPARCState, gregs[7]) },
2830 { "o0", 0, monitor_get_reg },
2831 { "o1", 1, monitor_get_reg },
2832 { "o2", 2, monitor_get_reg },
2833 { "o3", 3, monitor_get_reg },
2834 { "o4", 4, monitor_get_reg },
2835 { "o5", 5, monitor_get_reg },
2836 { "o6", 6, monitor_get_reg },
2837 { "o7", 7, monitor_get_reg },
2838 { "l0", 8, monitor_get_reg },
2839 { "l1", 9, monitor_get_reg },
2840 { "l2", 10, monitor_get_reg },
2841 { "l3", 11, monitor_get_reg },
2842 { "l4", 12, monitor_get_reg },
2843 { "l5", 13, monitor_get_reg },
2844 { "l6", 14, monitor_get_reg },
2845 { "l7", 15, monitor_get_reg },
2846 { "i0", 16, monitor_get_reg },
2847 { "i1", 17, monitor_get_reg },
2848 { "i2", 18, monitor_get_reg },
2849 { "i3", 19, monitor_get_reg },
2850 { "i4", 20, monitor_get_reg },
2851 { "i5", 21, monitor_get_reg },
2852 { "i6", 22, monitor_get_reg },
2853 { "i7", 23, monitor_get_reg },
2854 { "pc", offsetof(CPUSPARCState, pc) },
2855 { "npc", offsetof(CPUSPARCState, npc) },
2856 { "y", offsetof(CPUSPARCState, y) },
2857 #ifndef TARGET_SPARC64
2858 { "psr", 0, &monitor_get_psr, },
2859 { "wim", offsetof(CPUSPARCState, wim) },
2860 #endif
2861 { "tbr", offsetof(CPUSPARCState, tbr) },
2862 { "fsr", offsetof(CPUSPARCState, fsr) },
2863 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
2864 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
2865 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
2866 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
2867 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
2868 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
2869 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
2870 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
2871 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
2872 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
2873 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
2874 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
2875 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
2876 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
2877 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
2878 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
2879 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
2880 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
2881 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
2882 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
2883 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
2884 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
2885 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
2886 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
2887 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
2888 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
2889 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
2890 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
2891 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
2892 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
2893 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
2894 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
2895 #ifdef TARGET_SPARC64
2896 { "f32", offsetof(CPUSPARCState, fpr[16]) },
2897 { "f34", offsetof(CPUSPARCState, fpr[17]) },
2898 { "f36", offsetof(CPUSPARCState, fpr[18]) },
2899 { "f38", offsetof(CPUSPARCState, fpr[19]) },
2900 { "f40", offsetof(CPUSPARCState, fpr[20]) },
2901 { "f42", offsetof(CPUSPARCState, fpr[21]) },
2902 { "f44", offsetof(CPUSPARCState, fpr[22]) },
2903 { "f46", offsetof(CPUSPARCState, fpr[23]) },
2904 { "f48", offsetof(CPUSPARCState, fpr[24]) },
2905 { "f50", offsetof(CPUSPARCState, fpr[25]) },
2906 { "f52", offsetof(CPUSPARCState, fpr[26]) },
2907 { "f54", offsetof(CPUSPARCState, fpr[27]) },
2908 { "f56", offsetof(CPUSPARCState, fpr[28]) },
2909 { "f58", offsetof(CPUSPARCState, fpr[29]) },
2910 { "f60", offsetof(CPUSPARCState, fpr[30]) },
2911 { "f62", offsetof(CPUSPARCState, fpr[31]) },
2912 { "asi", offsetof(CPUSPARCState, asi) },
2913 { "pstate", offsetof(CPUSPARCState, pstate) },
2914 { "cansave", offsetof(CPUSPARCState, cansave) },
2915 { "canrestore", offsetof(CPUSPARCState, canrestore) },
2916 { "otherwin", offsetof(CPUSPARCState, otherwin) },
2917 { "wstate", offsetof(CPUSPARCState, wstate) },
2918 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
2919 { "fprs", offsetof(CPUSPARCState, fprs) },
2920 #endif
2921 #endif
2922 { NULL },
2923 };
2924
2925 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2926 expr_error(Monitor *mon, const char *fmt, ...)
2927 {
2928 va_list ap;
2929 va_start(ap, fmt);
2930 monitor_vprintf(mon, fmt, ap);
2931 monitor_printf(mon, "\n");
2932 va_end(ap);
2933 siglongjmp(expr_env, 1);
2934 }
2935
2936 /* return 0 if OK, -1 if not found */
2937 static int get_monitor_def(target_long *pval, const char *name)
2938 {
2939 const MonitorDef *md;
2940 void *ptr;
2941
2942 for(md = monitor_defs; md->name != NULL; md++) {
2943 if (compare_cmd(name, md->name)) {
2944 if (md->get_value) {
2945 *pval = md->get_value(md, md->offset);
2946 } else {
2947 CPUArchState *env = mon_get_cpu_env();
2948 ptr = (uint8_t *)env + md->offset;
2949 switch(md->type) {
2950 case MD_I32:
2951 *pval = *(int32_t *)ptr;
2952 break;
2953 case MD_TLONG:
2954 *pval = *(target_long *)ptr;
2955 break;
2956 default:
2957 *pval = 0;
2958 break;
2959 }
2960 }
2961 return 0;
2962 }
2963 }
2964 return -1;
2965 }
2966
2967 static void next(void)
2968 {
2969 if (*pch != '\0') {
2970 pch++;
2971 while (qemu_isspace(*pch))
2972 pch++;
2973 }
2974 }
2975
2976 static int64_t expr_sum(Monitor *mon);
2977
2978 static int64_t expr_unary(Monitor *mon)
2979 {
2980 int64_t n;
2981 char *p;
2982 int ret;
2983
2984 switch(*pch) {
2985 case '+':
2986 next();
2987 n = expr_unary(mon);
2988 break;
2989 case '-':
2990 next();
2991 n = -expr_unary(mon);
2992 break;
2993 case '~':
2994 next();
2995 n = ~expr_unary(mon);
2996 break;
2997 case '(':
2998 next();
2999 n = expr_sum(mon);
3000 if (*pch != ')') {
3001 expr_error(mon, "')' expected");
3002 }
3003 next();
3004 break;
3005 case '\'':
3006 pch++;
3007 if (*pch == '\0')
3008 expr_error(mon, "character constant expected");
3009 n = *pch;
3010 pch++;
3011 if (*pch != '\'')
3012 expr_error(mon, "missing terminating \' character");
3013 next();
3014 break;
3015 case '$':
3016 {
3017 char buf[128], *q;
3018 target_long reg=0;
3019
3020 pch++;
3021 q = buf;
3022 while ((*pch >= 'a' && *pch <= 'z') ||
3023 (*pch >= 'A' && *pch <= 'Z') ||
3024 (*pch >= '0' && *pch <= '9') ||
3025 *pch == '_' || *pch == '.') {
3026 if ((q - buf) < sizeof(buf) - 1)
3027 *q++ = *pch;
3028 pch++;
3029 }
3030 while (qemu_isspace(*pch))
3031 pch++;
3032 *q = 0;
3033 ret = get_monitor_def(&reg, buf);
3034 if (ret < 0)
3035 expr_error(mon, "unknown register");
3036 n = reg;
3037 }
3038 break;
3039 case '\0':
3040 expr_error(mon, "unexpected end of expression");
3041 n = 0;
3042 break;
3043 default:
3044 errno = 0;
3045 n = strtoull(pch, &p, 0);
3046 if (errno == ERANGE) {
3047 expr_error(mon, "number too large");
3048 }
3049 if (pch == p) {
3050 expr_error(mon, "invalid char '%c' in expression", *p);
3051 }
3052 pch = p;
3053 while (qemu_isspace(*pch))
3054 pch++;
3055 break;
3056 }
3057 return n;
3058 }
3059
3060
3061 static int64_t expr_prod(Monitor *mon)
3062 {
3063 int64_t val, val2;
3064 int op;
3065
3066 val = expr_unary(mon);
3067 for(;;) {
3068 op = *pch;
3069 if (op != '*' && op != '/' && op != '%')
3070 break;
3071 next();
3072 val2 = expr_unary(mon);
3073 switch(op) {
3074 default:
3075 case '*':
3076 val *= val2;
3077 break;
3078 case '/':
3079 case '%':
3080 if (val2 == 0)
3081 expr_error(mon, "division by zero");
3082 if (op == '/')
3083 val /= val2;
3084 else
3085 val %= val2;
3086 break;
3087 }
3088 }
3089 return val;
3090 }
3091
3092 static int64_t expr_logic(Monitor *mon)
3093 {
3094 int64_t val, val2;
3095 int op;
3096
3097 val = expr_prod(mon);
3098 for(;;) {
3099 op = *pch;
3100 if (op != '&' && op != '|' && op != '^')
3101 break;
3102 next();
3103 val2 = expr_prod(mon);
3104 switch(op) {
3105 default:
3106 case '&':
3107 val &= val2;
3108 break;
3109 case '|':
3110 val |= val2;
3111 break;
3112 case '^':
3113 val ^= val2;
3114 break;
3115 }
3116 }
3117 return val;
3118 }
3119
3120 static int64_t expr_sum(Monitor *mon)
3121 {
3122 int64_t val, val2;
3123 int op;
3124
3125 val = expr_logic(mon);
3126 for(;;) {
3127 op = *pch;
3128 if (op != '+' && op != '-')
3129 break;
3130 next();
3131 val2 = expr_logic(mon);
3132 if (op == '+')
3133 val += val2;
3134 else
3135 val -= val2;
3136 }
3137 return val;
3138 }
3139
3140 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3141 {
3142 pch = *pp;
3143 if (sigsetjmp(expr_env, 0)) {
3144 *pp = pch;
3145 return -1;
3146 }
3147 while (qemu_isspace(*pch))
3148 pch++;
3149 *pval = expr_sum(mon);
3150 *pp = pch;
3151 return 0;
3152 }
3153
3154 static int get_double(Monitor *mon, double *pval, const char **pp)
3155 {
3156 const char *p = *pp;
3157 char *tailp;
3158 double d;
3159
3160 d = strtod(p, &tailp);
3161 if (tailp == p) {
3162 monitor_printf(mon, "Number expected\n");
3163 return -1;
3164 }
3165 if (d != d || d - d != 0) {
3166 /* NaN or infinity */
3167 monitor_printf(mon, "Bad number\n");
3168 return -1;
3169 }
3170 *pval = d;
3171 *pp = tailp;
3172 return 0;
3173 }
3174
3175 /*
3176 * Store the command-name in cmdname, and return a pointer to
3177 * the remaining of the command string.
3178 */
3179 static const char *get_command_name(const char *cmdline,
3180 char *cmdname, size_t nlen)
3181 {
3182 size_t len;
3183 const char *p, *pstart;
3184
3185 p = cmdline;
3186 while (qemu_isspace(*p))
3187 p++;
3188 if (*p == '\0')
3189 return NULL;
3190 pstart = p;
3191 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3192 p++;
3193 len = p - pstart;
3194 if (len > nlen - 1)
3195 len = nlen - 1;
3196 memcpy(cmdname, pstart, len);
3197 cmdname[len] = '\0';
3198 return p;
3199 }
3200
3201 /**
3202 * Read key of 'type' into 'key' and return the current
3203 * 'type' pointer.
3204 */
3205 static char *key_get_info(const char *type, char **key)
3206 {
3207 size_t len;
3208 char *p, *str;
3209
3210 if (*type == ',')
3211 type++;
3212
3213 p = strchr(type, ':');
3214 if (!p) {
3215 *key = NULL;
3216 return NULL;
3217 }
3218 len = p - type;
3219
3220 str = g_malloc(len + 1);
3221 memcpy(str, type, len);
3222 str[len] = '\0';
3223
3224 *key = str;
3225 return ++p;
3226 }
3227
3228 static int default_fmt_format = 'x';
3229 static int default_fmt_size = 4;
3230
3231 static int is_valid_option(const char *c, const char *typestr)
3232 {
3233 char option[3];
3234
3235 option[0] = '-';
3236 option[1] = *c;
3237 option[2] = '\0';
3238
3239 typestr = strstr(typestr, option);
3240 return (typestr != NULL);
3241 }
3242
3243 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3244 const char *cmdname)
3245 {
3246 const mon_cmd_t *cmd;
3247
3248 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3249 if (compare_cmd(cmdname, cmd->name)) {
3250 return cmd;
3251 }
3252 }
3253
3254 return NULL;
3255 }
3256
3257 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3258 {
3259 return search_dispatch_table(qmp_cmds, cmdname);
3260 }
3261
3262 /*
3263 * Parse command name from @cmdp according to command table @table.
3264 * If blank, return NULL.
3265 * Else, if no valid command can be found, report to @mon, and return
3266 * NULL.
3267 * Else, change @cmdp to point right behind the name, and return its
3268 * command table entry.
3269 * Do not assume the return value points into @table! It doesn't when
3270 * the command is found in a sub-command table.
3271 */
3272 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3273 const char **cmdp,
3274 mon_cmd_t *table)
3275 {
3276 const char *p;
3277 const mon_cmd_t *cmd;
3278 char cmdname[256];
3279
3280 /* extract the command name */
3281 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
3282 if (!p)
3283 return NULL;
3284
3285 cmd = search_dispatch_table(table, cmdname);
3286 if (!cmd) {
3287 monitor_printf(mon, "unknown command: '%.*s'\n",
3288 (int)(p - *cmdp), *cmdp);
3289 return NULL;
3290 }
3291
3292 /* filter out following useless space */
3293 while (qemu_isspace(*p)) {
3294 p++;
3295 }
3296
3297 *cmdp = p;
3298 /* search sub command */
3299 if (cmd->sub_table != NULL && *p != '\0') {
3300 return monitor_parse_command(mon, cmdp, cmd->sub_table);
3301 }
3302
3303 return cmd;
3304 }
3305
3306 /*
3307 * Parse arguments for @cmd.
3308 * If it can't be parsed, report to @mon, and return NULL.
3309 * Else, insert command arguments into a QDict, and return it.
3310 * Note: On success, caller has to free the QDict structure.
3311 */
3312
3313 static QDict *monitor_parse_arguments(Monitor *mon,
3314 const char **endp,
3315 const mon_cmd_t *cmd)
3316 {
3317 const char *typestr;
3318 char *key;
3319 int c;
3320 const char *p = *endp;
3321 char buf[1024];
3322 QDict *qdict = qdict_new();
3323
3324 /* parse the parameters */
3325 typestr = cmd->args_type;
3326 for(;;) {
3327 typestr = key_get_info(typestr, &key);
3328 if (!typestr)
3329 break;
3330 c = *typestr;
3331 typestr++;
3332 switch(c) {
3333 case 'F':
3334 case 'B':
3335 case 's':
3336 {
3337 int ret;
3338
3339 while (qemu_isspace(*p))
3340 p++;
3341 if (*typestr == '?') {
3342 typestr++;
3343 if (*p == '\0') {
3344 /* no optional string: NULL argument */
3345 break;
3346 }
3347 }
3348 ret = get_str(buf, sizeof(buf), &p);
3349 if (ret < 0) {
3350 switch(c) {
3351 case 'F':
3352 monitor_printf(mon, "%s: filename expected\n",
3353 cmd->name);
3354 break;
3355 case 'B':
3356 monitor_printf(mon, "%s: block device name expected\n",
3357 cmd->name);
3358 break;
3359 default:
3360 monitor_printf(mon, "%s: string expected\n", cmd->name);
3361 break;
3362 }
3363 goto fail;
3364 }
3365 qdict_put(qdict, key, qstring_from_str(buf));
3366 }
3367 break;
3368 case 'O':
3369 {
3370 QemuOptsList *opts_list;
3371 QemuOpts *opts;
3372
3373 opts_list = qemu_find_opts(key);
3374 if (!opts_list || opts_list->desc->name) {
3375 goto bad_type;
3376 }
3377 while (qemu_isspace(*p)) {
3378 p++;
3379 }
3380 if (!*p)
3381 break;
3382 if (get_str(buf, sizeof(buf), &p) < 0) {
3383 goto fail;
3384 }
3385 opts = qemu_opts_parse_noisily(opts_list, buf, true);
3386 if (!opts) {
3387 goto fail;
3388 }
3389 qemu_opts_to_qdict(opts, qdict);
3390 qemu_opts_del(opts);
3391 }
3392 break;
3393 case '/':
3394 {
3395 int count, format, size;
3396
3397 while (qemu_isspace(*p))
3398 p++;
3399 if (*p == '/') {
3400 /* format found */
3401 p++;
3402 count = 1;
3403 if (qemu_isdigit(*p)) {
3404 count = 0;
3405 while (qemu_isdigit(*p)) {
3406 count = count * 10 + (*p - '0');
3407 p++;
3408 }
3409 }
3410 size = -1;
3411 format = -1;
3412 for(;;) {
3413 switch(*p) {
3414 case 'o':
3415 case 'd':
3416 case 'u':
3417 case 'x':
3418 case 'i':
3419 case 'c':
3420 format = *p++;
3421 break;
3422 case 'b':
3423 size = 1;
3424 p++;
3425 break;
3426 case 'h':
3427 size = 2;
3428 p++;
3429 break;
3430 case 'w':
3431 size = 4;
3432 p++;
3433 break;
3434 case 'g':
3435 case 'L':
3436 size = 8;
3437 p++;
3438 break;
3439 default:
3440 goto next;
3441 }
3442 }
3443 next:
3444 if (*p != '\0' && !qemu_isspace(*p)) {
3445 monitor_printf(mon, "invalid char in format: '%c'\n",
3446 *p);
3447 goto fail;
3448 }
3449 if (format < 0)
3450 format = default_fmt_format;
3451 if (format != 'i') {
3452 /* for 'i', not specifying a size gives -1 as size */
3453 if (size < 0)
3454 size = default_fmt_size;
3455 default_fmt_size = size;
3456 }
3457 default_fmt_format = format;
3458 } else {
3459 count = 1;
3460 format = default_fmt_format;
3461 if (format != 'i') {
3462 size = default_fmt_size;
3463 } else {
3464 size = -1;
3465 }
3466 }
3467 qdict_put(qdict, "count", qint_from_int(count));
3468 qdict_put(qdict, "format", qint_from_int(format));
3469 qdict_put(qdict, "size", qint_from_int(size));
3470 }
3471 break;
3472 case 'i':
3473 case 'l':
3474 case 'M':
3475 {
3476 int64_t val;
3477
3478 while (qemu_isspace(*p))
3479 p++;
3480 if (*typestr == '?' || *typestr == '.') {
3481 if (*typestr == '?') {
3482 if (*p == '\0') {
3483 typestr++;
3484 break;
3485 }
3486 } else {
3487 if (*p == '.') {
3488 p++;
3489 while (qemu_isspace(*p))
3490 p++;
3491 } else {
3492 typestr++;
3493 break;
3494 }
3495 }
3496 typestr++;
3497 }
3498 if (get_expr(mon, &val, &p))
3499 goto fail;
3500 /* Check if 'i' is greater than 32-bit */
3501 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3502 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
3503 monitor_printf(mon, "integer is for 32-bit values\n");
3504 goto fail;
3505 } else if (c == 'M') {
3506 if (val < 0) {
3507 monitor_printf(mon, "enter a positive value\n");
3508 goto fail;
3509 }
3510 val <<= 20;
3511 }
3512 qdict_put(qdict, key, qint_from_int(val));
3513 }
3514 break;
3515 case 'o':
3516 {
3517 int64_t val;
3518 char *end;
3519
3520 while (qemu_isspace(*p)) {
3521 p++;
3522 }
3523 if (*typestr == '?') {
3524 typestr++;
3525 if (*p == '\0') {
3526 break;
3527 }
3528 }
3529 val = strtosz(p, &end);
3530 if (val < 0) {
3531 monitor_printf(mon, "invalid size\n");
3532 goto fail;
3533 }
3534 qdict_put(qdict, key, qint_from_int(val));
3535 p = end;
3536 }
3537 break;
3538 case 'T':
3539 {
3540 double val;
3541
3542 while (qemu_isspace(*p))
3543 p++;
3544 if (*typestr == '?') {
3545 typestr++;
3546 if (*p == '\0') {
3547 break;
3548 }
3549 }
3550 if (get_double(mon, &val, &p) < 0) {
3551 goto fail;
3552 }
3553 if (p[0] && p[1] == 's') {
3554 switch (*p) {
3555 case 'm':
3556 val /= 1e3; p += 2; break;
3557 case 'u':
3558 val /= 1e6; p += 2; break;
3559 case 'n':
3560 val /= 1e9; p += 2; break;
3561 }
3562 }
3563 if (*p && !qemu_isspace(*p)) {
3564 monitor_printf(mon, "Unknown unit suffix\n");
3565 goto fail;
3566 }
3567 qdict_put(qdict, key, qfloat_from_double(val));
3568 }
3569 break;
3570 case 'b':
3571 {
3572 const char *beg;
3573 bool val;
3574
3575 while (qemu_isspace(*p)) {
3576 p++;
3577 }
3578 beg = p;
3579 while (qemu_isgraph(*p)) {
3580 p++;
3581 }
3582 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3583 val = true;
3584 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3585 val = false;
3586 } else {
3587 monitor_printf(mon, "Expected 'on' or 'off'\n");
3588 goto fail;
3589 }
3590 qdict_put(qdict, key, qbool_from_bool(val));
3591 }
3592 break;
3593 case '-':
3594 {
3595 const char *tmp = p;
3596 int skip_key = 0;
3597 /* option */
3598
3599 c = *typestr++;
3600 if (c == '\0')
3601 goto bad_type;
3602 while (qemu_isspace(*p))
3603 p++;
3604 if (*p == '-') {
3605 p++;
3606 if(c != *p) {
3607 if(!is_valid_option(p, typestr)) {
3608
3609 monitor_printf(mon, "%s: unsupported option -%c\n",
3610 cmd->name, *p);
3611 goto fail;
3612 } else {
3613 skip_key = 1;
3614 }
3615 }
3616 if(skip_key) {
3617 p = tmp;
3618 } else {
3619 /* has option */
3620 p++;
3621 qdict_put(qdict, key, qbool_from_bool(true));
3622 }
3623 }
3624 }
3625 break;
3626 case 'S':
3627 {
3628 /* package all remaining string */
3629 int len;
3630
3631 while (qemu_isspace(*p)) {
3632 p++;
3633 }
3634 if (*typestr == '?') {
3635 typestr++;
3636 if (*p == '\0') {
3637 /* no remaining string: NULL argument */
3638 break;
3639 }
3640 }
3641 len = strlen(p);
3642 if (len <= 0) {
3643 monitor_printf(mon, "%s: string expected\n",
3644 cmd->name);
3645 goto fail;
3646 }
3647 qdict_put(qdict, key, qstring_from_str(p));
3648 p += len;
3649 }
3650 break;
3651 default:
3652 bad_type:
3653 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
3654 goto fail;
3655 }
3656 g_free(key);
3657 key = NULL;
3658 }
3659 /* check that all arguments were parsed */
3660 while (qemu_isspace(*p))
3661 p++;
3662 if (*p != '\0') {
3663 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3664 cmd->name);
3665 goto fail;
3666 }
3667
3668 return qdict;
3669
3670 fail:
3671 QDECREF(qdict);
3672 g_free(key);
3673 return NULL;
3674 }
3675
3676 static void handle_hmp_command(Monitor *mon, const char *cmdline)
3677 {
3678 QDict *qdict;
3679 const mon_cmd_t *cmd;
3680
3681 cmd = monitor_parse_command(mon, &cmdline, mon->cmd_table);
3682 if (!cmd) {
3683 return;
3684 }
3685
3686 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3687 if (!qdict) {
3688 monitor_printf(mon, "Try \"help %s\" for more information\n",
3689 cmd->name);
3690 return;
3691 }
3692
3693 cmd->mhandler.cmd(mon, qdict);
3694 QDECREF(qdict);
3695 }
3696
3697 static void cmd_completion(Monitor *mon, const char *name, const char *list)
3698 {
3699 const char *p, *pstart;
3700 char cmd[128];
3701 int len;
3702
3703 p = list;
3704 for(;;) {
3705 pstart = p;
3706 p = strchr(p, '|');
3707 if (!p)
3708 p = pstart + strlen(pstart);
3709 len = p - pstart;
3710 if (len > sizeof(cmd) - 2)
3711 len = sizeof(cmd) - 2;
3712 memcpy(cmd, pstart, len);
3713 cmd[len] = '\0';
3714 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3715 readline_add_completion(mon->rs, cmd);
3716 }
3717 if (*p == '\0')
3718 break;
3719 p++;
3720 }
3721 }
3722
3723 static void file_completion(Monitor *mon, const char *input)
3724 {
3725 DIR *ffs;
3726 struct dirent *d;
3727 char path[1024];
3728 char file[1024], file_prefix[1024];
3729 int input_path_len;
3730 const char *p;
3731
3732 p = strrchr(input, '/');
3733 if (!p) {
3734 input_path_len = 0;
3735 pstrcpy(file_prefix, sizeof(file_prefix), input);
3736 pstrcpy(path, sizeof(path), ".");
3737 } else {
3738 input_path_len = p - input + 1;
3739 memcpy(path, input, input_path_len);
3740 if (input_path_len > sizeof(path) - 1)
3741 input_path_len = sizeof(path) - 1;
3742 path[input_path_len] = '\0';
3743 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3744 }
3745
3746 ffs = opendir(path);
3747 if (!ffs)
3748 return;
3749 for(;;) {
3750 struct stat sb;
3751 d = readdir(ffs);
3752 if (!d)
3753 break;
3754
3755 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3756 continue;
3757 }
3758
3759 if (strstart(d->d_name, file_prefix, NULL)) {
3760 memcpy(file, input, input_path_len);
3761 if (input_path_len < sizeof(file))
3762 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3763 d->d_name);
3764 /* stat the file to find out if it's a directory.
3765 * In that case add a slash to speed up typing long paths
3766 */
3767 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3768 pstrcat(file, sizeof(file), "/");
3769 }
3770 readline_add_completion(mon->rs, file);
3771 }
3772 }
3773 closedir(ffs);
3774 }
3775
3776 static const char *next_arg_type(const char *typestr)
3777 {
3778 const char *p = strchr(typestr, ':');
3779 return (p != NULL ? ++p : typestr);
3780 }
3781
3782 static void add_completion_option(ReadLineState *rs, const char *str,
3783 const char *option)
3784 {
3785 if (!str || !option) {
3786 return;
3787 }
3788 if (!strncmp(option, str, strlen(str))) {
3789 readline_add_completion(rs, option);
3790 }
3791 }
3792
3793 void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3794 {
3795 size_t len;
3796 ChardevBackendInfoList *list, *start;
3797
3798 if (nb_args != 2) {
3799 return;
3800 }
3801 len = strlen(str);
3802 readline_set_completion_index(rs, len);
3803
3804 start = list = qmp_query_chardev_backends(NULL);
3805 while (list) {
3806 const char *chr_name = list->value->name;
3807
3808 if (!strncmp(chr_name, str, len)) {
3809 readline_add_completion(rs, chr_name);
3810 }
3811 list = list->next;
3812 }
3813 qapi_free_ChardevBackendInfoList(start);
3814 }
3815
3816 void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3817 {
3818 size_t len;
3819 int i;
3820
3821 if (nb_args != 2) {
3822 return;
3823 }
3824 len = strlen(str);
3825 readline_set_completion_index(rs, len);
3826 for (i = 0; NetClientOptionsKind_lookup[i]; i++) {
3827 add_completion_option(rs, str, NetClientOptionsKind_lookup[i]);
3828 }
3829 }
3830
3831 void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
3832 {
3833 GSList *list, *elt;
3834 size_t len;
3835
3836 if (nb_args != 2) {
3837 return;
3838 }
3839
3840 len = strlen(str);
3841 readline_set_completion_index(rs, len);
3842 list = elt = object_class_get_list(TYPE_DEVICE, false);
3843 while (elt) {
3844 const char *name;
3845 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3846 TYPE_DEVICE);
3847 name = object_class_get_name(OBJECT_CLASS(dc));
3848
3849 if (!dc->cannot_instantiate_with_device_add_yet
3850 && !strncmp(name, str, len)) {
3851 readline_add_completion(rs, name);
3852 }
3853 elt = elt->next;
3854 }
3855 g_slist_free(list);
3856 }
3857
3858 void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
3859 {
3860 GSList *list, *elt;
3861 size_t len;
3862
3863 if (nb_args != 2) {
3864 return;
3865 }
3866
3867 len = strlen(str);
3868 readline_set_completion_index(rs, len);
3869 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3870 while (elt) {
3871 const char *name;
3872
3873 name = object_class_get_name(OBJECT_CLASS(elt->data));
3874 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3875 readline_add_completion(rs, name);
3876 }
3877 elt = elt->next;
3878 }
3879 g_slist_free(list);
3880 }
3881
3882 static void peripheral_device_del_completion(ReadLineState *rs,
3883 const char *str, size_t len)
3884 {
3885 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3886 GSList *list, *item;
3887
3888 list = qdev_build_hotpluggable_device_list(peripheral);
3889 if (!list) {
3890 return;
3891 }
3892
3893 for (item = list; item; item = g_slist_next(item)) {
3894 DeviceState *dev = item->data;
3895
3896 if (dev->id && !strncmp(str, dev->id, len)) {
3897 readline_add_completion(rs, dev->id);
3898 }
3899 }
3900
3901 g_slist_free(list);
3902 }
3903
3904 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3905 {
3906 size_t len;
3907 ChardevInfoList *list, *start;
3908
3909 if (nb_args != 2) {
3910 return;
3911 }
3912 len = strlen(str);
3913 readline_set_completion_index(rs, len);
3914
3915 start = list = qmp_query_chardev(NULL);
3916 while (list) {
3917 ChardevInfo *chr = list->value;
3918
3919 if (!strncmp(chr->label, str, len)) {
3920 readline_add_completion(rs, chr->label);
3921 }
3922 list = list->next;
3923 }
3924 qapi_free_ChardevInfoList(start);
3925 }
3926
3927 static void ringbuf_completion(ReadLineState *rs, const char *str)
3928 {
3929 size_t len;
3930 ChardevInfoList *list, *start;
3931
3932 len = strlen(str);
3933 readline_set_completion_index(rs, len);
3934
3935 start = list = qmp_query_chardev(NULL);
3936 while (list) {
3937 ChardevInfo *chr_info = list->value;
3938
3939 if (!strncmp(chr_info->label, str, len)) {
3940 CharDriverState *chr = qemu_chr_find(chr_info->label);
3941 if (chr && chr_is_ringbuf(chr)) {
3942 readline_add_completion(rs, chr_info->label);
3943 }
3944 }
3945 list = list->next;
3946 }
3947 qapi_free_ChardevInfoList(start);
3948 }
3949
3950 void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3951 {
3952 if (nb_args != 2) {
3953 return;
3954 }
3955 ringbuf_completion(rs, str);
3956 }
3957
3958 void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3959 {
3960 size_t len;
3961
3962 if (nb_args != 2) {
3963 return;
3964 }
3965
3966 len = strlen(str);
3967 readline_set_completion_index(rs, len);
3968 peripheral_device_del_completion(rs, str, len);
3969 }
3970
3971 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
3972 {
3973 ObjectPropertyInfoList *list, *start;
3974 size_t len;
3975
3976 if (nb_args != 2) {
3977 return;
3978 }
3979 len = strlen(str);
3980 readline_set_completion_index(rs, len);
3981
3982 start = list = qmp_qom_list("/objects", NULL);
3983 while (list) {
3984 ObjectPropertyInfo *info = list->value;
3985
3986 if (!strncmp(info->type, "child<", 5)
3987 && !strncmp(info->name, str, len)) {
3988 readline_add_completion(rs, info->name);
3989 }
3990 list = list->next;
3991 }
3992 qapi_free_ObjectPropertyInfoList(start);
3993 }
3994
3995 void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3996 {
3997 int i;
3998 char *sep;
3999 size_t len;
4000
4001 if (nb_args != 2) {
4002 return;
4003 }
4004 sep = strrchr(str, '-');
4005 if (sep) {
4006 str = sep + 1;
4007 }
4008 len = strlen(str);
4009 readline_set_completion_index(rs, len);
4010 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4011 if (!strncmp(str, QKeyCode_lookup[i], len)) {
4012 readline_add_completion(rs, QKeyCode_lookup[i]);
4013 }
4014 }
4015 }
4016
4017 void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
4018 {
4019 size_t len;
4020
4021 len = strlen(str);
4022 readline_set_completion_index(rs, len);
4023 if (nb_args == 2) {
4024 NetClientState *ncs[MAX_QUEUE_NUM];
4025 int count, i;
4026 count = qemu_find_net_clients_except(NULL, ncs,
4027 NET_CLIENT_OPTIONS_KIND_NONE,
4028 MAX_QUEUE_NUM);
4029 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
4030 const char *name = ncs[i]->name;
4031 if (!strncmp(str, name, len)) {
4032 readline_add_completion(rs, name);
4033 }
4034 }
4035 } else if (nb_args == 3) {
4036 add_completion_option(rs, str, "on");
4037 add_completion_option(rs, str, "off");
4038 }
4039 }
4040
4041 void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
4042 {
4043 int len, count, i;
4044 NetClientState *ncs[MAX_QUEUE_NUM];
4045
4046 if (nb_args != 2) {
4047 return;
4048 }
4049
4050 len = strlen(str);
4051 readline_set_completion_index(rs, len);
4052 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_OPTIONS_KIND_NIC,
4053 MAX_QUEUE_NUM);
4054 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
4055 QemuOpts *opts;
4056 const char *name = ncs[i]->name;
4057 if (strncmp(str, name, len)) {
4058 continue;
4059 }
4060 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
4061 if (opts) {
4062 readline_add_completion(rs, name);
4063 }
4064 }
4065 }
4066
4067 void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
4068 {
4069 size_t len;
4070
4071 len = strlen(str);
4072 readline_set_completion_index(rs, len);
4073 if (nb_args == 2) {
4074 TraceEventID id;
4075 for (id = 0; id < trace_event_count(); id++) {
4076 const char *event_name = trace_event_get_name(trace_event_id(id));
4077 if (!strncmp(str, event_name, len)) {
4078 readline_add_completion(rs, event_name);
4079 }
4080 }
4081 } else if (nb_args == 3) {
4082 add_completion_option(rs, str, "on");
4083 add_completion_option(rs, str, "off");
4084 }
4085 }
4086
4087 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
4088 {
4089 int i;
4090
4091 if (nb_args != 2) {
4092 return;
4093 }
4094 readline_set_completion_index(rs, strlen(str));
4095 for (i = 0; WatchdogExpirationAction_lookup[i]; i++) {
4096 add_completion_option(rs, str, WatchdogExpirationAction_lookup[i]);
4097 }
4098 }
4099
4100 void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
4101 const char *str)
4102 {
4103 size_t len;
4104
4105 len = strlen(str);
4106 readline_set_completion_index(rs, len);
4107 if (nb_args == 2) {
4108 int i;
4109 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
4110 const char *name = MigrationCapability_lookup[i];
4111 if (!strncmp(str, name, len)) {
4112 readline_add_completion(rs, name);
4113 }
4114 }
4115 } else if (nb_args == 3) {
4116 add_completion_option(rs, str, "on");
4117 add_completion_option(rs, str, "off");
4118 }
4119 }
4120
4121 void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
4122 const char *str)
4123 {
4124 size_t len;
4125
4126 len = strlen(str);
4127 readline_set_completion_index(rs, len);
4128 if (nb_args == 2) {
4129 int i;
4130 for (i = 0; i < MIGRATION_PARAMETER_MAX; i++) {
4131 const char *name = MigrationParameter_lookup[i];
4132 if (!strncmp(str, name, len)) {
4133 readline_add_completion(rs, name);
4134 }
4135 }
4136 }
4137 }
4138
4139 void host_net_add_completion(ReadLineState *rs, int nb_args, const char *str)
4140 {
4141 int i;
4142 size_t len;
4143 if (nb_args != 2) {
4144 return;
4145 }
4146 len = strlen(str);
4147 readline_set_completion_index(rs, len);
4148 for (i = 0; host_net_devices[i]; i++) {
4149 if (!strncmp(host_net_devices[i], str, len)) {
4150 readline_add_completion(rs, host_net_devices[i]);
4151 }
4152 }
4153 }
4154
4155 void host_net_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4156 {
4157 NetClientState *ncs[MAX_QUEUE_NUM];
4158 int count, i, len;
4159
4160 len = strlen(str);
4161 readline_set_completion_index(rs, len);
4162 if (nb_args == 2) {
4163 count = qemu_find_net_clients_except(NULL, ncs,
4164 NET_CLIENT_OPTIONS_KIND_NONE,
4165 MAX_QUEUE_NUM);
4166 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
4167 int id;
4168 char name[16];
4169
4170 if (net_hub_id_for_client(ncs[i], &id)) {
4171 continue;
4172 }
4173 snprintf(name, sizeof(name), "%d", id);
4174 if (!strncmp(str, name, len)) {
4175 readline_add_completion(rs, name);
4176 }
4177 }
4178 return;
4179 } else if (nb_args == 3) {
4180 count = qemu_find_net_clients_except(NULL, ncs,
4181 NET_CLIENT_OPTIONS_KIND_NIC,
4182 MAX_QUEUE_NUM);
4183 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
4184 int id;
4185 const char *name;
4186
4187 if (ncs[i]->info->type == NET_CLIENT_OPTIONS_KIND_HUBPORT ||
4188 net_hub_id_for_client(ncs[i], &id)) {
4189 continue;
4190 }
4191 name = ncs[i]->name;
4192 if (!strncmp(str, name, len)) {
4193 readline_add_completion(rs, name);
4194 }
4195 }
4196 return;
4197 }
4198 }
4199
4200 static void vm_completion(ReadLineState *rs, const char *str)
4201 {
4202 size_t len;
4203 BlockDriverState *bs = NULL;
4204
4205 len = strlen(str);
4206 readline_set_completion_index(rs, len);
4207 while ((bs = bdrv_next(bs))) {
4208 SnapshotInfoList *snapshots, *snapshot;
4209
4210 if (!bdrv_can_snapshot(bs)) {
4211 continue;
4212 }
4213 if (bdrv_query_snapshot_info_list(bs, &snapshots, NULL)) {
4214 continue;
4215 }
4216 snapshot = snapshots;
4217 while (snapshot) {
4218 char *completion = snapshot->value->name;
4219 if (!strncmp(str, completion, len)) {
4220 readline_add_completion(rs, completion);
4221 }
4222 completion = snapshot->value->id;
4223 if (!strncmp(str, completion, len)) {
4224 readline_add_completion(rs, completion);
4225 }
4226 snapshot = snapshot->next;
4227 }
4228 qapi_free_SnapshotInfoList(snapshots);
4229 }
4230
4231 }
4232
4233 void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
4234 {
4235 if (nb_args == 2) {
4236 vm_completion(rs, str);
4237 }
4238 }
4239
4240 void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
4241 {
4242 if (nb_args == 2) {
4243 vm_completion(rs, str);
4244 }
4245 }
4246
4247 static void monitor_find_completion_by_table(Monitor *mon,
4248 const mon_cmd_t *cmd_table,
4249 char **args,
4250 int nb_args)
4251 {
4252 const char *cmdname;
4253 int i;
4254 const char *ptype, *str, *name;
4255 const mon_cmd_t *cmd;
4256 BlockDriverState *bs;
4257
4258 if (nb_args <= 1) {
4259 /* command completion */
4260 if (nb_args == 0)
4261 cmdname = "";
4262 else
4263 cmdname = args[0];
4264 readline_set_completion_index(mon->rs, strlen(cmdname));
4265 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
4266 cmd_completion(mon, cmdname, cmd->name);
4267 }
4268 } else {
4269 /* find the command */
4270 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
4271 if (compare_cmd(args[0], cmd->name)) {
4272 break;
4273 }
4274 }
4275 if (!cmd->name) {
4276 return;
4277 }
4278
4279 if (cmd->sub_table) {
4280 /* do the job again */
4281 monitor_find_completion_by_table(mon, cmd->sub_table,
4282 &args[1], nb_args - 1);
4283 return;
4284 }
4285 if (cmd->command_completion) {
4286 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
4287 return;
4288 }
4289
4290 ptype = next_arg_type(cmd->args_type);
4291 for(i = 0; i < nb_args - 2; i++) {
4292 if (*ptype != '\0') {
4293 ptype = next_arg_type(ptype);
4294 while (*ptype == '?')
4295 ptype = next_arg_type(ptype);
4296 }
4297 }
4298 str = args[nb_args - 1];
4299 while (*ptype == '-' && ptype[1] != '\0') {
4300 ptype = next_arg_type(ptype);
4301 }
4302 switch(*ptype) {
4303 case 'F':
4304 /* file completion */
4305 readline_set_completion_index(mon->rs, strlen(str));
4306 file_completion(mon, str);
4307 break;
4308 case 'B':
4309 /* block device name completion */
4310 readline_set_completion_index(mon->rs, strlen(str));
4311 for (bs = bdrv_next(NULL); bs; bs = bdrv_next(bs)) {
4312 name = bdrv_get_device_name(bs);
4313 if (str[0] == '\0' ||
4314 !strncmp(name, str, strlen(str))) {
4315 readline_add_completion(mon->rs, name);
4316 }
4317 }
4318 break;
4319 case 's':
4320 case 'S':
4321 if (!strcmp(cmd->name, "help|?")) {
4322 monitor_find_completion_by_table(mon, cmd_table,
4323 &args[1], nb_args - 1);
4324 }
4325 break;
4326 default:
4327 break;
4328 }
4329 }
4330 }
4331
4332 static void monitor_find_completion(void *opaque,
4333 const char *cmdline)
4334 {
4335 Monitor *mon = opaque;
4336 char *args[MAX_ARGS];
4337 int nb_args, len;
4338
4339 /* 1. parse the cmdline */
4340 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4341 return;
4342 }
4343
4344 /* if the line ends with a space, it means we want to complete the
4345 next arg */
4346 len = strlen(cmdline);
4347 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4348 if (nb_args >= MAX_ARGS) {
4349 goto cleanup;
4350 }
4351 args[nb_args++] = g_strdup("");
4352 }
4353
4354 /* 2. auto complete according to args */
4355 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
4356
4357 cleanup:
4358 free_cmdline_args(args, nb_args);
4359 }
4360
4361 static int monitor_can_read(void *opaque)
4362 {
4363 Monitor *mon = opaque;
4364
4365 return (mon->suspend_cnt == 0) ? 1 : 0;
4366 }
4367
4368 static bool invalid_qmp_mode(const Monitor *mon, const mon_cmd_t *cmd,
4369 Error **errp)
4370 {
4371 bool is_cap = cmd->mhandler.cmd_new == qmp_capabilities;
4372
4373 if (is_cap && mon->qmp.in_command_mode) {
4374 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4375 "Capabilities negotiation is already complete, command "
4376 "'%s' ignored", cmd->name);
4377 return true;
4378 }
4379 if (!is_cap && !mon->qmp.in_command_mode) {
4380 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4381 "Expecting capabilities negotiation with "
4382 "'qmp_capabilities' before command '%s'", cmd->name);
4383 return true;
4384 }
4385 return false;
4386 }
4387
4388 /*
4389 * Argument validation rules:
4390 *
4391 * 1. The argument must exist in cmd_args qdict
4392 * 2. The argument type must be the expected one
4393 *
4394 * Special case: If the argument doesn't exist in cmd_args and
4395 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4396 * checking is skipped for it.
4397 */
4398 static void check_client_args_type(const QDict *client_args,
4399 const QDict *cmd_args, int flags,
4400 Error **errp)
4401 {
4402 const QDictEntry *ent;
4403
4404 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4405 QObject *obj;
4406 QString *arg_type;
4407 const QObject *client_arg = qdict_entry_value(ent);
4408 const char *client_arg_name = qdict_entry_key(ent);
4409
4410 obj = qdict_get(cmd_args, client_arg_name);
4411 if (!obj) {
4412 if (flags & QMP_ACCEPT_UNKNOWNS) {
4413 /* handler accepts unknowns */
4414 continue;
4415 }
4416 /* client arg doesn't exist */
4417 error_setg(errp, QERR_INVALID_PARAMETER, client_arg_name);
4418 return;
4419 }
4420
4421 arg_type = qobject_to_qstring(obj);
4422 assert(arg_type != NULL);
4423
4424 /* check if argument's type is correct */
4425 switch (qstring_get_str(arg_type)[0]) {
4426 case 'F':
4427 case 'B':
4428 case 's':
4429 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4430 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4431 client_arg_name, "string");
4432 return;
4433 }
4434 break;
4435 case 'i':
4436 case 'l':
4437 case 'M':
4438 case 'o':
4439 if (qobject_type(client_arg) != QTYPE_QINT) {
4440 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4441 client_arg_name, "int");
4442 return;
4443 }
4444 break;
4445 case 'T':
4446 if (qobject_type(client_arg) != QTYPE_QINT &&
4447 qobject_type(client_arg) != QTYPE_QFLOAT) {
4448 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4449 client_arg_name, "number");
4450 return;
4451 }
4452 break;
4453 case 'b':
4454 case '-':
4455 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4456 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4457 client_arg_name, "bool");
4458 return;
4459 }
4460 break;
4461 case 'O':
4462 assert(flags & QMP_ACCEPT_UNKNOWNS);
4463 break;
4464 case 'q':
4465 /* Any QObject can be passed. */
4466 break;
4467 case '/':
4468 case '.':
4469 /*
4470 * These types are not supported by QMP and thus are not
4471 * handled here. Fall through.
4472 */
4473 default:
4474 abort();
4475 }
4476 }
4477 }
4478
4479 /*
4480 * - Check if the client has passed all mandatory args
4481 * - Set special flags for argument validation
4482 */
4483 static void check_mandatory_args(const QDict *cmd_args,
4484 const QDict *client_args, int *flags,
4485 Error **errp)
4486 {
4487 const QDictEntry *ent;
4488
4489 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4490 const char *cmd_arg_name = qdict_entry_key(ent);
4491 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4492 assert(type != NULL);
4493
4494 if (qstring_get_str(type)[0] == 'O') {
4495 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4496 *flags |= QMP_ACCEPT_UNKNOWNS;
4497 } else if (qstring_get_str(type)[0] != '-' &&
4498 qstring_get_str(type)[1] != '?' &&
4499 !qdict_haskey(client_args, cmd_arg_name)) {
4500 error_setg(errp, QERR_MISSING_PARAMETER, cmd_arg_name);
4501 return;
4502 }
4503 }
4504 }
4505
4506 static QDict *qdict_from_args_type(const char *args_type)
4507 {
4508 int i;
4509 QDict *qdict;
4510 QString *key, *type, *cur_qs;
4511
4512 assert(args_type != NULL);
4513
4514 qdict = qdict_new();
4515
4516 if (args_type == NULL || args_type[0] == '\0') {
4517 /* no args, empty qdict */
4518 goto out;
4519 }
4520
4521 key = qstring_new();
4522 type = qstring_new();
4523
4524 cur_qs = key;
4525
4526 for (i = 0;; i++) {
4527 switch (args_type[i]) {
4528 case ',':
4529 case '\0':
4530 qdict_put(qdict, qstring_get_str(key), type);
4531 QDECREF(key);
4532 if (args_type[i] == '\0') {
4533 goto out;
4534 }
4535 type = qstring_new(); /* qdict has ref */
4536 cur_qs = key = qstring_new();
4537 break;
4538 case ':':
4539 cur_qs = type;
4540 break;
4541 default:
4542 qstring_append_chr(cur_qs, args_type[i]);
4543 break;
4544 }
4545 }
4546
4547 out:
4548 return qdict;
4549 }
4550
4551 /*
4552 * Client argument checking rules:
4553 *
4554 * 1. Client must provide all mandatory arguments
4555 * 2. Each argument provided by the client must be expected
4556 * 3. Each argument provided by the client must have the type expected
4557 * by the command
4558 */
4559 static void qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args,
4560 Error **errp)
4561 {
4562 Error *err = NULL;
4563 int flags;
4564 QDict *cmd_args;
4565
4566 cmd_args = qdict_from_args_type(cmd->args_type);
4567
4568 flags = 0;
4569 check_mandatory_args(cmd_args, client_args, &flags, &err);
4570 if (err) {
4571 goto out;
4572 }
4573
4574 check_client_args_type(client_args, cmd_args, flags, &err);
4575
4576 out:
4577 error_propagate(errp, err);
4578 QDECREF(cmd_args);
4579 }
4580
4581 /*
4582 * Input object checking rules
4583 *
4584 * 1. Input object must be a dict
4585 * 2. The "execute" key must exist
4586 * 3. The "execute" key must be a string
4587 * 4. If the "arguments" key exists, it must be a dict
4588 * 5. If the "id" key exists, it can be anything (ie. json-value)
4589 * 6. Any argument not listed above is considered invalid
4590 */
4591 static QDict *qmp_check_input_obj(QObject *input_obj, Error **errp)
4592 {
4593 const QDictEntry *ent;
4594 int has_exec_key = 0;
4595 QDict *input_dict;
4596
4597 if (qobject_type(input_obj) != QTYPE_QDICT) {
4598 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT, "object");
4599 return NULL;
4600 }
4601
4602 input_dict = qobject_to_qdict(input_obj);
4603
4604 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4605 const char *arg_name = qdict_entry_key(ent);
4606 const QObject *arg_obj = qdict_entry_value(ent);
4607
4608 if (!strcmp(arg_name, "execute")) {
4609 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4610 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
4611 "execute", "string");
4612 return NULL;
4613 }
4614 has_exec_key = 1;
4615 } else if (!strcmp(arg_name, "arguments")) {
4616 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4617 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
4618 "arguments", "object");
4619 return NULL;
4620 }
4621 } else if (!strcmp(arg_name, "id")) {
4622 /* Any string is acceptable as "id", so nothing to check */
4623 } else {
4624 error_setg(errp, QERR_QMP_EXTRA_MEMBER, arg_name);
4625 return NULL;
4626 }
4627 }
4628
4629 if (!has_exec_key) {
4630 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT, "execute");
4631 return NULL;
4632 }
4633
4634 return input_dict;
4635 }
4636
4637 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4638 {
4639 Error *local_err = NULL;
4640 QObject *obj, *data;
4641 QDict *input, *args;
4642 const mon_cmd_t *cmd;
4643 const char *cmd_name;
4644 Monitor *mon = cur_mon;
4645
4646 args = input = NULL;
4647 data = NULL;
4648
4649 obj = json_parser_parse(tokens, NULL);
4650 if (!obj) {
4651 // FIXME: should be triggered in json_parser_parse()
4652 error_setg(&local_err, QERR_JSON_PARSING);
4653 goto err_out;
4654 }
4655
4656 input = qmp_check_input_obj(obj, &local_err);
4657 if (!input) {
4658 qobject_decref(obj);
4659 goto err_out;
4660 }
4661
4662 mon->qmp.id = qdict_get(input, "id");
4663 qobject_incref(mon->qmp.id);
4664
4665 cmd_name = qdict_get_str(input, "execute");
4666 trace_handle_qmp_command(mon, cmd_name);
4667 cmd = qmp_find_cmd(cmd_name);
4668 if (!cmd) {
4669 error_set(&local_err, ERROR_CLASS_COMMAND_NOT_FOUND,
4670 "The command %s has not been found", cmd_name);
4671 goto err_out;
4672 }
4673 if (invalid_qmp_mode(mon, cmd, &local_err)) {
4674 goto err_out;
4675 }
4676
4677 obj = qdict_get(input, "arguments");
4678 if (!obj) {
4679 args = qdict_new();
4680 } else {
4681 args = qobject_to_qdict(obj);
4682 QINCREF(args);
4683 }
4684
4685 qmp_check_client_args(cmd, args, &local_err);
4686 if (local_err) {
4687 goto err_out;
4688 }
4689
4690 cmd->mhandler.cmd_new(args, &data, &local_err);
4691
4692 err_out:
4693 monitor_protocol_emitter(mon, data, local_err);
4694 qobject_decref(data);
4695 QDECREF(input);
4696 QDECREF(args);
4697 }
4698
4699 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
4700 {
4701 Monitor *old_mon = cur_mon;
4702
4703 cur_mon = opaque;
4704
4705 json_message_parser_feed(&cur_mon->qmp.parser, (const char *) buf, size);
4706
4707 cur_mon = old_mon;
4708 }
4709
4710 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4711 {
4712 Monitor *old_mon = cur_mon;
4713 int i;
4714
4715 cur_mon = opaque;
4716
4717 if (cur_mon->rs) {
4718 for (i = 0; i < size; i++)
4719 readline_handle_byte(cur_mon->rs, buf[i]);
4720 } else {
4721 if (size == 0 || buf[size - 1] != 0)
4722 monitor_printf(cur_mon, "corrupted command\n");
4723 else
4724 handle_hmp_command(cur_mon, (char *)buf);
4725 }
4726
4727 cur_mon = old_mon;
4728 }
4729
4730 static void monitor_command_cb(void *opaque, const char *cmdline,
4731 void *readline_opaque)
4732 {
4733 Monitor *mon = opaque;
4734
4735 monitor_suspend(mon);
4736 handle_hmp_command(mon, cmdline);
4737 monitor_resume(mon);
4738 }
4739
4740 int monitor_suspend(Monitor *mon)
4741 {
4742 if (!mon->rs)
4743 return -ENOTTY;
4744 mon->suspend_cnt++;
4745 return 0;
4746 }
4747
4748 void monitor_resume(Monitor *mon)
4749 {
4750 if (!mon->rs)
4751 return;
4752 if (--mon->suspend_cnt == 0)
4753 readline_show_prompt(mon->rs);
4754 }
4755
4756 static QObject *get_qmp_greeting(void)
4757 {
4758 QObject *ver = NULL;
4759
4760 qmp_marshal_input_query_version(NULL, &ver, NULL);
4761 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4762 }
4763
4764 static void monitor_qmp_event(void *opaque, int event)
4765 {
4766 QObject *data;
4767 Monitor *mon = opaque;
4768
4769 switch (event) {
4770 case CHR_EVENT_OPENED:
4771 mon->qmp.in_command_mode = false;
4772 data = get_qmp_greeting();
4773 monitor_json_emitter(mon, data);
4774 qobject_decref(data);
4775 mon_refcount++;
4776 break;
4777 case CHR_EVENT_CLOSED:
4778 json_message_parser_destroy(&mon->qmp.parser);
4779 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
4780 mon_refcount--;
4781 monitor_fdsets_cleanup();
4782 break;
4783 }
4784 }
4785
4786 static void monitor_event(void *opaque, int event)
4787 {
4788 Monitor *mon = opaque;
4789
4790 switch (event) {
4791 case CHR_EVENT_MUX_IN:
4792 qemu_mutex_lock(&mon->out_lock);
4793 mon->mux_out = 0;
4794 qemu_mutex_unlock(&mon->out_lock);
4795 if (mon->reset_seen) {
4796 readline_restart(mon->rs);
4797 monitor_resume(mon);
4798 monitor_flush(mon);
4799 } else {
4800 mon->suspend_cnt = 0;
4801 }
4802 break;
4803
4804 case CHR_EVENT_MUX_OUT:
4805 if (mon->reset_seen) {
4806 if (mon->suspend_cnt == 0) {
4807 monitor_printf(mon, "\n");
4808 }
4809 monitor_flush(mon);
4810 monitor_suspend(mon);
4811 } else {
4812 mon->suspend_cnt++;
4813 }
4814 qemu_mutex_lock(&mon->out_lock);
4815 mon->mux_out = 1;
4816 qemu_mutex_unlock(&mon->out_lock);
4817 break;
4818
4819 case CHR_EVENT_OPENED:
4820 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4821 "information\n", QEMU_VERSION);
4822 if (!mon->mux_out) {
4823 readline_restart(mon->rs);
4824 readline_show_prompt(mon->rs);
4825 }
4826 mon->reset_seen = 1;
4827 mon_refcount++;
4828 break;
4829
4830 case CHR_EVENT_CLOSED:
4831 mon_refcount--;
4832 monitor_fdsets_cleanup();
4833 break;
4834 }
4835 }
4836
4837 static int
4838 compare_mon_cmd(const void *a, const void *b)
4839 {
4840 return strcmp(((const mon_cmd_t *)a)->name,
4841 ((const mon_cmd_t *)b)->name);
4842 }
4843
4844 static void sortcmdlist(void)
4845 {
4846 int array_num;
4847 int elem_size = sizeof(mon_cmd_t);
4848
4849 array_num = sizeof(mon_cmds)/elem_size-1;
4850 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4851
4852 array_num = sizeof(info_cmds)/elem_size-1;
4853 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4854 }
4855
4856
4857 /*
4858 * Local variables:
4859 * c-indent-level: 4
4860 * c-basic-offset: 4
4861 * tab-width: 8
4862 * End:
4863 */
4864
4865 /* These functions just adapt the readline interface in a typesafe way. We
4866 * could cast function pointers but that discards compiler checks.
4867 */
4868 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
4869 const char *fmt, ...)
4870 {
4871 va_list ap;
4872 va_start(ap, fmt);
4873 monitor_vprintf(opaque, fmt, ap);
4874 va_end(ap);
4875 }
4876
4877 static void monitor_readline_flush(void *opaque)
4878 {
4879 monitor_flush(opaque);
4880 }
4881
4882 static void __attribute__((constructor)) monitor_lock_init(void)
4883 {
4884 qemu_mutex_init(&monitor_lock);
4885 }
4886
4887 void monitor_init(CharDriverState *chr, int flags)
4888 {
4889 static int is_first_init = 1;
4890 Monitor *mon;
4891
4892 if (is_first_init) {
4893 monitor_qapi_event_init();
4894 sortcmdlist();
4895 is_first_init = 0;
4896 }
4897
4898 mon = g_malloc(sizeof(*mon));
4899 monitor_data_init(mon);
4900
4901 mon->chr = chr;
4902 mon->flags = flags;
4903 if (flags & MONITOR_USE_READLINE) {
4904 mon->rs = readline_init(monitor_readline_printf,
4905 monitor_readline_flush,
4906 mon,
4907 monitor_find_completion);
4908 monitor_read_command(mon, 0);
4909 }
4910
4911 if (monitor_is_qmp(mon)) {
4912 qemu_chr_add_handlers(chr, monitor_can_read, monitor_qmp_read,
4913 monitor_qmp_event, mon);
4914 qemu_chr_fe_set_echo(chr, true);
4915 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
4916 } else {
4917 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4918 monitor_event, mon);
4919 }
4920
4921 qemu_mutex_lock(&monitor_lock);
4922 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4923 qemu_mutex_unlock(&monitor_lock);
4924 }
4925
4926 static void bdrv_password_cb(void *opaque, const char *password,
4927 void *readline_opaque)
4928 {
4929 Monitor *mon = opaque;
4930 BlockDriverState *bs = readline_opaque;
4931 int ret = 0;
4932 Error *local_err = NULL;
4933
4934 bdrv_add_key(bs, password, &local_err);
4935 if (local_err) {
4936 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
4937 error_free(local_err);
4938 ret = -EPERM;
4939 }
4940 if (mon->password_completion_cb)
4941 mon->password_completion_cb(mon->password_opaque, ret);
4942
4943 monitor_read_command(mon, 1);
4944 }
4945
4946 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4947 BlockCompletionFunc *completion_cb,
4948 void *opaque)
4949 {
4950 int err;
4951
4952 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4953 bdrv_get_encrypted_filename(bs));
4954
4955 mon->password_completion_cb = completion_cb;
4956 mon->password_opaque = opaque;
4957
4958 err = monitor_read_password(mon, bdrv_password_cb, bs);
4959
4960 if (err && completion_cb)
4961 completion_cb(opaque, err);
4962
4963 return err;
4964 }
4965
4966 int monitor_read_block_device_key(Monitor *mon, const char *device,
4967 BlockCompletionFunc *completion_cb,
4968 void *opaque)
4969 {
4970 Error *err = NULL;
4971 BlockBackend *blk;
4972
4973 blk = blk_by_name(device);
4974 if (!blk) {
4975 monitor_printf(mon, "Device not found %s\n", device);
4976 return -1;
4977 }
4978
4979 bdrv_add_key(blk_bs(blk), NULL, &err);
4980 if (err) {
4981 error_free(err);
4982 return monitor_read_bdrv_key_start(mon, blk_bs(blk), completion_cb, opaque);
4983 }
4984
4985 if (completion_cb) {
4986 completion_cb(opaque, 0);
4987 }
4988 return 0;
4989 }
4990
4991 QemuOptsList qemu_mon_opts = {
4992 .name = "mon",
4993 .implied_opt_name = "chardev",
4994 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4995 .desc = {
4996 {
4997 .name = "mode",
4998 .type = QEMU_OPT_STRING,
4999 },{
5000 .name = "chardev",
5001 .type = QEMU_OPT_STRING,
5002 },{
5003 .name = "default",
5004 .type = QEMU_OPT_BOOL,
5005 },{
5006 .name = "pretty",
5007 .type = QEMU_OPT_BOOL,
5008 },
5009 { /* end of list */ }
5010 },
5011 };
5012
5013 #ifndef TARGET_I386
5014 void qmp_rtc_reset_reinjection(Error **errp)
5015 {
5016 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
5017 }
5018 #endif
5019
5020 #ifndef TARGET_S390X
5021 void qmp_dump_skeys(const char *filename, Error **errp)
5022 {
5023 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
5024 }
5025 #endif