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