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