blob: 2bf82f3c66f23958e15dfa9662875b388b62448a [file] [log] [blame]
bellard9dc39cb2004-03-14 21:38:27 +00001/*
2 * QEMU monitor
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard9dc39cb2004-03-14 21:38:27 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard9dc39cb2004-03-14 21:38:27 +00006 * 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 */
blueswir1511d2b12009-03-07 15:32:56 +000024#include <dirent.h>
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw/hw.h"
Gerd Hoffmanncae49562009-06-05 15:53:17 +010026#include "hw/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
29#include "hw/pc.h"
30#include "hw/pci.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +010031#include "hw/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "gdbstub.h"
34#include "net.h"
35#include "qemu-char.h"
36#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000037#include "monitor.h"
38#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000039#include "console.h"
40#include "block.h"
41#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000042#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000043#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000044#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000045#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000046#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000047#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030048#include "qint.h"
49#include "qdict.h"
50#include "qstring.h"
ths6a5bd302007-12-03 17:05:38 +000051
bellard9dc39cb2004-03-14 21:38:27 +000052//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000053//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000054
bellard9307c4c2004-04-04 12:57:25 +000055/*
56 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000057 *
bellard9307c4c2004-04-04 12:57:25 +000058 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000059 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000060 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000061 * 'i' 32 bit integer
62 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000063 * '/' optional gdb-like print format (like "/10x")
64 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030065 * '?' optional type (for all types, except '/')
66 * '.' other form of optional type (for 'i' and 'l')
67 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000068 *
69 */
70
Anthony Liguoric227f092009-10-01 16:12:16 -050071typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000072 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000073 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +000074 const char *params;
75 const char *help;
Luiz Capitulino910df892009-10-07 13:41:51 -030076 union {
77 void (*info)(Monitor *mon);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -030078 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino910df892009-10-07 13:41:51 -030079 } mhandler;
Anthony Liguoric227f092009-10-01 16:12:16 -050080} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +000081
Mark McLoughlinf07918f2009-07-22 09:11:40 +010082/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -050083typedef struct mon_fd_t mon_fd_t;
84struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +010085 char *name;
86 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -050087 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +010088};
89
aliguori87127162009-03-05 23:01:29 +000090struct Monitor {
91 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +020092 int mux_out;
93 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +000094 int flags;
95 int suspend_cnt;
96 uint8_t outbuf[1024];
97 int outbuf_index;
98 ReadLineState *rs;
99 CPUState *mon_cpu;
100 BlockDriverCompletionFunc *password_completion_cb;
101 void *password_opaque;
Anthony Liguoric227f092009-10-01 16:12:16 -0500102 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000103 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000104};
105
Blue Swirl72cf2d42009-09-12 07:36:22 +0000106static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000107
Anthony Liguoric227f092009-10-01 16:12:16 -0500108static const mon_cmd_t mon_cmds[];
109static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000110
aliguori87127162009-03-05 23:01:29 +0000111Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +0000112
aliguori731b0362009-03-05 23:01:42 +0000113static void monitor_command_cb(Monitor *mon, const char *cmdline,
114 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000115
aliguori731b0362009-03-05 23:01:42 +0000116static void monitor_read_command(Monitor *mon, int show_prompt)
117{
118 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
119 if (show_prompt)
120 readline_show_prompt(mon->rs);
121}
bellard6a00d602005-11-21 23:25:50 +0000122
aliguoricde76ee2009-03-05 23:01:51 +0000123static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
124 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000125{
aliguoricde76ee2009-03-05 23:01:51 +0000126 if (mon->rs) {
127 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
128 /* prompt is printed on return from the command handler */
129 return 0;
130 } else {
131 monitor_printf(mon, "terminal does not support password prompting\n");
132 return -ENOTTY;
133 }
aliguoribb5fc202009-03-05 23:01:15 +0000134}
135
aliguori376253e2009-03-05 23:01:23 +0000136void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000137{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200138 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000139 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
140 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000141 }
142}
143
144/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000145static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000146{
ths60fe76f2007-12-16 03:02:09 +0000147 char c;
aliguori731b0362009-03-05 23:01:42 +0000148
149 if (!mon)
150 return;
151
bellard7e2515e2004-08-01 21:52:19 +0000152 for(;;) {
153 c = *str++;
154 if (c == '\0')
155 break;
bellard7ba12602006-07-14 20:26:42 +0000156 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000157 mon->outbuf[mon->outbuf_index++] = '\r';
158 mon->outbuf[mon->outbuf_index++] = c;
159 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
160 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000161 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000162 }
163}
164
aliguori376253e2009-03-05 23:01:23 +0000165void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000166{
167 char buf[4096];
168 vsnprintf(buf, sizeof(buf), fmt, ap);
aliguori376253e2009-03-05 23:01:23 +0000169 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000170}
171
aliguori376253e2009-03-05 23:01:23 +0000172void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000173{
174 va_list ap;
175 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000176 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000177 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000178}
179
aliguori376253e2009-03-05 23:01:23 +0000180void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000181{
182 int i;
183
184 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000185 switch (filename[i]) {
186 case ' ':
187 case '"':
188 case '\\':
189 monitor_printf(mon, "\\%c", filename[i]);
190 break;
191 case '\t':
192 monitor_printf(mon, "\\t");
193 break;
194 case '\r':
195 monitor_printf(mon, "\\r");
196 break;
197 case '\n':
198 monitor_printf(mon, "\\n");
199 break;
200 default:
201 monitor_printf(mon, "%c", filename[i]);
202 break;
203 }
thsfef30742006-12-22 14:11:32 +0000204 }
205}
206
bellard7fe48482004-10-09 18:08:01 +0000207static int monitor_fprintf(FILE *stream, const char *fmt, ...)
208{
209 va_list ap;
210 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000211 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000212 va_end(ap);
213 return 0;
214}
215
bellard9dc39cb2004-03-14 21:38:27 +0000216static int compare_cmd(const char *name, const char *list)
217{
218 const char *p, *pstart;
219 int len;
220 len = strlen(name);
221 p = list;
222 for(;;) {
223 pstart = p;
224 p = strchr(p, '|');
225 if (!p)
226 p = pstart + strlen(pstart);
227 if ((p - pstart) == len && !memcmp(pstart, name, len))
228 return 1;
229 if (*p == '\0')
230 break;
231 p++;
232 }
233 return 0;
234}
235
Anthony Liguoric227f092009-10-01 16:12:16 -0500236static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000237 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000238{
Anthony Liguoric227f092009-10-01 16:12:16 -0500239 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000240
241 for(cmd = cmds; cmd->name != NULL; cmd++) {
242 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000243 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
244 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000245 }
246}
247
aliguori376253e2009-03-05 23:01:23 +0000248static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000249{
250 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000251 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000252 } else {
aliguori376253e2009-03-05 23:01:23 +0000253 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000254 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000255 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000256 monitor_printf(mon, "Log items (comma separated):\n");
257 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000258 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000259 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000260 }
261 }
bellard9dc39cb2004-03-14 21:38:27 +0000262 }
263}
264
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300265static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300266{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300267 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300268}
269
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300270static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000271{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200272 int all_devices;
273 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300274 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000275
bellard7954c732006-08-01 15:52:40 +0000276 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000277 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200278 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300279 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200280 continue;
281 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000282 }
283}
284
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300285static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000286{
Anthony Liguoric227f092009-10-01 16:12:16 -0500287 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300288 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000289
bellard9307c4c2004-04-04 12:57:25 +0000290 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000291 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000292 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000293 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000294 goto found;
295 }
296 help:
aliguori376253e2009-03-05 23:01:23 +0000297 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000298 return;
299 found:
Luiz Capitulino910df892009-10-07 13:41:51 -0300300 cmd->mhandler.info(mon);
bellard9dc39cb2004-03-14 21:38:27 +0000301}
302
aliguori376253e2009-03-05 23:01:23 +0000303static void do_info_version(Monitor *mon)
bellard9bc9d1c2004-10-10 15:15:51 +0000304{
pbrook4a19f1e2009-04-07 23:17:49 +0000305 monitor_printf(mon, "%s\n", QEMU_VERSION QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000306}
307
aliguori376253e2009-03-05 23:01:23 +0000308static void do_info_name(Monitor *mon)
thsc35734b2007-03-19 15:17:08 +0000309{
310 if (qemu_name)
aliguori376253e2009-03-05 23:01:23 +0000311 monitor_printf(mon, "%s\n", qemu_name);
thsc35734b2007-03-19 15:17:08 +0000312}
313
aurel32bf4f74c2008-12-18 22:42:34 +0000314#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +0000315static void do_info_hpet(Monitor *mon)
aliguori16b29ae2008-12-17 23:28:44 +0000316{
aliguori376253e2009-03-05 23:01:23 +0000317 monitor_printf(mon, "HPET is %s by QEMU\n",
318 (no_hpet) ? "disabled" : "enabled");
aliguori16b29ae2008-12-17 23:28:44 +0000319}
aurel32bf4f74c2008-12-18 22:42:34 +0000320#endif
aliguori16b29ae2008-12-17 23:28:44 +0000321
aliguori376253e2009-03-05 23:01:23 +0000322static void do_info_uuid(Monitor *mon)
blueswir1f1f23ad2008-09-18 18:30:20 +0000323{
aliguori376253e2009-03-05 23:01:23 +0000324 monitor_printf(mon, UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1],
325 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
326 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
327 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
328 qemu_uuid[14], qemu_uuid[15]);
thsa36e69d2007-12-02 05:18:19 +0000329}
330
bellard6a00d602005-11-21 23:25:50 +0000331/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000332static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000333{
334 CPUState *env;
335
336 for(env = first_cpu; env != NULL; env = env->next_cpu) {
337 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000338 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000339 return 0;
340 }
341 }
342 return -1;
343}
344
pbrook9596ebb2007-11-18 01:44:38 +0000345static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000346{
aliguori731b0362009-03-05 23:01:42 +0000347 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000348 mon_set_cpu(0);
349 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300350 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000351 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000352}
353
aliguori376253e2009-03-05 23:01:23 +0000354static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000355{
bellard6a00d602005-11-21 23:25:50 +0000356 CPUState *env;
357 env = mon_get_cpu();
358 if (!env)
359 return;
bellard9307c4c2004-04-04 12:57:25 +0000360#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000361 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000362 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000363#else
aliguori376253e2009-03-05 23:01:23 +0000364 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000365 0);
bellard9307c4c2004-04-04 12:57:25 +0000366#endif
367}
368
aliguori376253e2009-03-05 23:01:23 +0000369static void do_info_cpus(Monitor *mon)
bellard6a00d602005-11-21 23:25:50 +0000370{
371 CPUState *env;
372
373 /* just to set the default cpu if not already done */
374 mon_get_cpu();
375
376 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Avi Kivity4c0960c2009-08-17 23:19:53 +0300377 cpu_synchronize_state(env);
aliguori376253e2009-03-05 23:01:23 +0000378 monitor_printf(mon, "%c CPU #%d:",
aliguori731b0362009-03-05 23:01:42 +0000379 (env == mon->mon_cpu) ? '*' : ' ',
aliguori376253e2009-03-05 23:01:23 +0000380 env->cpu_index);
bellard6a00d602005-11-21 23:25:50 +0000381#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +0000382 monitor_printf(mon, " pc=0x" TARGET_FMT_lx,
383 env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000384#elif defined(TARGET_PPC)
aliguori376253e2009-03-05 23:01:23 +0000385 monitor_printf(mon, " nip=0x" TARGET_FMT_lx, env->nip);
bellardba3c64f2005-12-05 20:31:52 +0000386#elif defined(TARGET_SPARC)
aliguori376253e2009-03-05 23:01:23 +0000387 monitor_printf(mon, " pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx,
388 env->pc, env->npc);
thsead93602007-09-06 00:18:15 +0000389#elif defined(TARGET_MIPS)
aliguori376253e2009-03-05 23:01:23 +0000390 monitor_printf(mon, " PC=0x" TARGET_FMT_lx, env->active_tc.PC);
bellardce5232c2008-05-28 17:14:10 +0000391#endif
thsead93602007-09-06 00:18:15 +0000392 if (env->halted)
aliguori376253e2009-03-05 23:01:23 +0000393 monitor_printf(mon, " (halted)");
394 monitor_printf(mon, "\n");
bellard6a00d602005-11-21 23:25:50 +0000395 }
396}
397
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300398static void do_cpu_set(Monitor *mon, const QDict *qdict)
bellard6a00d602005-11-21 23:25:50 +0000399{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300400 int index = qdict_get_int(qdict, "index");
bellard6a00d602005-11-21 23:25:50 +0000401 if (mon_set_cpu(index) < 0)
aliguori376253e2009-03-05 23:01:23 +0000402 monitor_printf(mon, "Invalid CPU index\n");
bellard6a00d602005-11-21 23:25:50 +0000403}
404
aliguori376253e2009-03-05 23:01:23 +0000405static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000406{
aliguori376253e2009-03-05 23:01:23 +0000407 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000408}
409
aliguori376253e2009-03-05 23:01:23 +0000410static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000411{
412 int i;
bellard7e2515e2004-08-01 21:52:19 +0000413 const char *str;
ths3b46e622007-09-17 08:09:54 +0000414
aliguoricde76ee2009-03-05 23:01:51 +0000415 if (!mon->rs)
416 return;
bellard7e2515e2004-08-01 21:52:19 +0000417 i = 0;
418 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000419 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000420 if (!str)
421 break;
aliguori376253e2009-03-05 23:01:23 +0000422 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000423 i++;
bellardaa455482004-04-04 13:07:25 +0000424 }
425}
426
j_mayer76a66252007-03-07 08:32:30 +0000427#if defined(TARGET_PPC)
428/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000429static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000430{
431 CPUState *env;
432
433 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000434 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000435}
436#endif
437
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -0300438static void do_quit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000439{
440 exit(0);
441}
442
aliguori376253e2009-03-05 23:01:23 +0000443static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000444{
445 if (bdrv_is_inserted(bs)) {
446 if (!force) {
447 if (!bdrv_is_removable(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000448 monitor_printf(mon, "device is not removable\n");
bellard9dc39cb2004-03-14 21:38:27 +0000449 return -1;
450 }
451 if (bdrv_is_locked(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000452 monitor_printf(mon, "device is locked\n");
bellard9dc39cb2004-03-14 21:38:27 +0000453 return -1;
454 }
455 }
456 bdrv_close(bs);
457 }
458 return 0;
459}
460
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300461static void do_eject(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000462{
463 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300464 int force = qdict_get_int(qdict, "force");
465 const char *filename = qdict_get_str(qdict, "filename");
bellard9dc39cb2004-03-14 21:38:27 +0000466
bellard9307c4c2004-04-04 12:57:25 +0000467 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000468 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000469 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000470 return;
471 }
aliguori376253e2009-03-05 23:01:23 +0000472 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +0000473}
474
aliguori376253e2009-03-05 23:01:23 +0000475static void do_change_block(Monitor *mon, const char *device,
476 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000477{
478 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000479 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000480
bellard9307c4c2004-04-04 12:57:25 +0000481 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000482 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000483 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000484 return;
485 }
aurel322ecea9b2008-06-18 22:10:01 +0000486 if (fmt) {
487 drv = bdrv_find_format(fmt);
488 if (!drv) {
aliguori376253e2009-03-05 23:01:23 +0000489 monitor_printf(mon, "invalid format %s\n", fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000490 return;
491 }
492 }
aliguori376253e2009-03-05 23:01:23 +0000493 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +0000494 return;
aurel322ecea9b2008-06-18 22:10:01 +0000495 bdrv_open2(bs, filename, 0, drv);
aliguori376253e2009-03-05 23:01:23 +0000496 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000497}
498
aliguori376253e2009-03-05 23:01:23 +0000499static void change_vnc_password_cb(Monitor *mon, const char *password,
500 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000501{
502 if (vnc_display_password(NULL, password) < 0)
aliguori376253e2009-03-05 23:01:23 +0000503 monitor_printf(mon, "could not set VNC server password\n");
aliguoribb5fc202009-03-05 23:01:15 +0000504
aliguori731b0362009-03-05 23:01:42 +0000505 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000506}
507
aliguori376253e2009-03-05 23:01:23 +0000508static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000509{
ths70848512007-08-25 01:37:05 +0000510 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000511 strcmp(target, "password") == 0) {
512 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000513 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000514 strncpy(password, arg, sizeof(password));
515 password[sizeof(password) - 1] = '\0';
aliguori376253e2009-03-05 23:01:23 +0000516 change_vnc_password_cb(mon, password, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000517 } else {
aliguori376253e2009-03-05 23:01:23 +0000518 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000519 }
ths70848512007-08-25 01:37:05 +0000520 } else {
aliguori28a76be2009-03-06 20:27:40 +0000521 if (vnc_display_open(NULL, target) < 0)
aliguori376253e2009-03-05 23:01:23 +0000522 monitor_printf(mon, "could not start VNC server on %s\n", target);
ths70848512007-08-25 01:37:05 +0000523 }
thse25a5822007-08-25 01:36:20 +0000524}
525
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300526static void do_change(Monitor *mon, const QDict *qdict)
thse25a5822007-08-25 01:36:20 +0000527{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300528 const char *device = qdict_get_str(qdict, "device");
529 const char *target = qdict_get_str(qdict, "target");
530 const char *arg = qdict_get_try_str(qdict, "arg");
thse25a5822007-08-25 01:36:20 +0000531 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +0000532 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000533 } else {
aliguori28a76be2009-03-06 20:27:40 +0000534 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000535 }
536}
537
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300538static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +0000539{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300540 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +0000541}
542
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300543static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000544{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300545 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000546}
547
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300548static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000549{
550 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300551 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000552
bellard9307c4c2004-04-04 12:57:25 +0000553 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000554 mask = 0;
555 } else {
bellard9307c4c2004-04-04 12:57:25 +0000556 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000557 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +0000558 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +0000559 return;
560 }
561 }
562 cpu_set_log(mask);
563}
564
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300565static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +0000566{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300567 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +0000568 if (!option || !strcmp(option, "on")) {
569 singlestep = 1;
570 } else if (!strcmp(option, "off")) {
571 singlestep = 0;
572 } else {
573 monitor_printf(mon, "unexpected option %s\n", option);
574 }
575}
576
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -0300577static void do_stop(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +0000578{
579 vm_stop(EXCP_INTERRUPT);
580}
581
aliguoribb5fc202009-03-05 23:01:15 +0000582static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +0000583
aliguori376253e2009-03-05 23:01:23 +0000584struct bdrv_iterate_context {
585 Monitor *mon;
586 int err;
587};
aliguoric0f4ce72009-03-05 23:01:01 +0000588
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -0300589static void do_cont(Monitor *mon, const QDict *qdict)
aliguori376253e2009-03-05 23:01:23 +0000590{
591 struct bdrv_iterate_context context = { mon, 0 };
592
593 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +0000594 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +0000595 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +0000596 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +0000597}
598
aliguoribb5fc202009-03-05 23:01:15 +0000599static void bdrv_key_cb(void *opaque, int err)
600{
aliguori376253e2009-03-05 23:01:23 +0000601 Monitor *mon = opaque;
602
aliguoribb5fc202009-03-05 23:01:15 +0000603 /* another key was set successfully, retry to continue */
604 if (!err)
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -0300605 do_cont(mon, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000606}
607
608static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
609{
aliguori376253e2009-03-05 23:01:23 +0000610 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +0000611
aliguori376253e2009-03-05 23:01:23 +0000612 if (!context->err && bdrv_key_required(bs)) {
613 context->err = -EBUSY;
614 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
615 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +0000616 }
617}
618
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300619static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +0000620{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300621 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +0000622 if (!device)
623 device = "tcp::" DEFAULT_GDBSTUB_PORT;
624 if (gdbserver_start(device) < 0) {
625 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
626 device);
627 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +0000628 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +0000629 } else {
aliguori59030a82009-04-05 18:43:41 +0000630 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
631 device);
bellard8a7ddc32004-03-31 19:00:16 +0000632 }
633}
634
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300635static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100636{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300637 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100638 if (select_watchdog_action(action) == -1) {
639 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
640 }
641}
642
aliguori376253e2009-03-05 23:01:23 +0000643static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000644{
aliguori376253e2009-03-05 23:01:23 +0000645 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000646 switch(c) {
647 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000648 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000649 break;
650 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000651 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000652 break;
653 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000654 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000655 break;
656 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000657 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000658 break;
659 default:
660 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000661 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000662 } else {
aliguori376253e2009-03-05 23:01:23 +0000663 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000664 }
665 break;
666 }
aliguori376253e2009-03-05 23:01:23 +0000667 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000668}
669
aliguori376253e2009-03-05 23:01:23 +0000670static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -0500671 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000672{
bellard6a00d602005-11-21 23:25:50 +0000673 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000674 int nb_per_line, l, line_size, i, max_digits, len;
675 uint8_t buf[16];
676 uint64_t v;
677
678 if (format == 'i') {
679 int flags;
680 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000681 env = mon_get_cpu();
682 if (!env && !is_physical)
683 return;
bellard9307c4c2004-04-04 12:57:25 +0000684#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000685 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000686 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000687 } else if (wsize == 4) {
688 flags = 0;
689 } else {
bellard6a15fd12006-04-12 21:07:07 +0000690 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000691 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000692 if (env) {
693#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000694 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000695 (env->segs[R_CS].flags & DESC_L_MASK))
696 flags = 2;
697 else
698#endif
699 if (!(env->segs[R_CS].flags & DESC_B_MASK))
700 flags = 1;
701 }
bellard4c27ba22004-04-25 18:05:08 +0000702 }
703#endif
aliguori376253e2009-03-05 23:01:23 +0000704 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000705 return;
706 }
707
708 len = wsize * count;
709 if (wsize == 1)
710 line_size = 8;
711 else
712 line_size = 16;
713 nb_per_line = line_size / wsize;
714 max_digits = 0;
715
716 switch(format) {
717 case 'o':
718 max_digits = (wsize * 8 + 2) / 3;
719 break;
720 default:
721 case 'x':
722 max_digits = (wsize * 8) / 4;
723 break;
724 case 'u':
725 case 'd':
726 max_digits = (wsize * 8 * 10 + 32) / 33;
727 break;
728 case 'c':
729 wsize = 1;
730 break;
731 }
732
733 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000734 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +0000735 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +0000736 else
aliguori376253e2009-03-05 23:01:23 +0000737 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000738 l = len;
739 if (l > line_size)
740 l = line_size;
741 if (is_physical) {
742 cpu_physical_memory_rw(addr, buf, l, 0);
743 } else {
bellard6a00d602005-11-21 23:25:50 +0000744 env = mon_get_cpu();
745 if (!env)
746 break;
aliguoric8f79b62008-08-18 14:00:20 +0000747 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +0000748 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +0000749 break;
750 }
bellard9307c4c2004-04-04 12:57:25 +0000751 }
ths5fafdf22007-09-16 21:08:06 +0000752 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000753 while (i < l) {
754 switch(wsize) {
755 default:
756 case 1:
757 v = ldub_raw(buf + i);
758 break;
759 case 2:
760 v = lduw_raw(buf + i);
761 break;
762 case 4:
bellard92a31b12005-02-10 22:00:52 +0000763 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000764 break;
765 case 8:
766 v = ldq_raw(buf + i);
767 break;
768 }
aliguori376253e2009-03-05 23:01:23 +0000769 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +0000770 switch(format) {
771 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000772 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000773 break;
774 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000775 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000776 break;
777 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000778 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000779 break;
780 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000781 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000782 break;
783 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000784 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +0000785 break;
786 }
787 i += wsize;
788 }
aliguori376253e2009-03-05 23:01:23 +0000789 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000790 addr += l;
791 len -= l;
792 }
793}
794
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300795static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +0000796{
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300797 int count = qdict_get_int(qdict, "count");
798 int format = qdict_get_int(qdict, "format");
799 int size = qdict_get_int(qdict, "size");
800 target_long addr = qdict_get_int(qdict, "addr");
801
aliguori376253e2009-03-05 23:01:23 +0000802 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +0000803}
804
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300805static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +0000806{
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300807 int count = qdict_get_int(qdict, "count");
808 int format = qdict_get_int(qdict, "format");
809 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -0500810 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300811
aliguori376253e2009-03-05 23:01:23 +0000812 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +0000813}
814
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300815static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +0000816{
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300817 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -0500818 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -0300819
blueswir17743e582007-09-24 18:39:04 +0000820#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000821 switch(format) {
822 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000823 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +0000824 break;
825 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000826 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +0000827 break;
828 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000829 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +0000830 break;
831 default:
832 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000833 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +0000834 break;
835 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000836 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +0000837 break;
838 }
bellard92a31b12005-02-10 22:00:52 +0000839#else
840 switch(format) {
841 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000842 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000843 break;
844 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000845 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000846 break;
847 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000848 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000849 break;
850 default:
851 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000852 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000853 break;
854 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000855 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +0000856 break;
857 }
858#endif
aliguori376253e2009-03-05 23:01:23 +0000859 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000860}
861
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -0300862static void do_memory_save(Monitor *mon, const QDict *qdict)
bellardb371dc52007-01-03 15:20:39 +0000863{
864 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -0300865 uint32_t size = qdict_get_int(qdict, "size");
866 const char *filename = qdict_get_str(qdict, "filename");
867 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +0000868 uint32_t l;
869 CPUState *env;
870 uint8_t buf[1024];
871
872 env = mon_get_cpu();
873 if (!env)
874 return;
875
876 f = fopen(filename, "wb");
877 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000878 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +0000879 return;
880 }
881 while (size != 0) {
882 l = sizeof(buf);
883 if (l > size)
884 l = size;
885 cpu_memory_rw_debug(env, addr, buf, l, 0);
886 fwrite(buf, 1, l, f);
887 addr += l;
888 size -= l;
889 }
890 fclose(f);
891}
892
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -0300893static void do_physical_memory_save(Monitor *mon, const QDict *qdict)
aurel32a8bdf7a2008-04-11 21:36:14 +0000894{
895 FILE *f;
896 uint32_t l;
897 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -0300898 uint32_t size = qdict_get_int(qdict, "size");
899 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -0500900 target_phys_addr_t addr = qdict_get_int(qdict, "val");
aurel32a8bdf7a2008-04-11 21:36:14 +0000901
902 f = fopen(filename, "wb");
903 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000904 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +0000905 return;
906 }
907 while (size != 0) {
908 l = sizeof(buf);
909 if (l > size)
910 l = size;
911 cpu_physical_memory_rw(addr, buf, l, 0);
912 fwrite(buf, 1, l, f);
913 fflush(f);
914 addr += l;
915 size -= l;
916 }
917 fclose(f);
918}
919
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300920static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +0000921{
922 uint32_t addr;
923 uint8_t buf[1];
924 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300925 uint32_t start = qdict_get_int(qdict, "start");
926 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +0000927
928 sum = 0;
929 for(addr = start; addr < (start + size); addr++) {
930 cpu_physical_memory_rw(addr, buf, 1, 0);
931 /* BSD sum algorithm ('sum' Unix command) */
932 sum = (sum >> 1) | (sum << 15);
933 sum += buf[0];
934 }
aliguori376253e2009-03-05 23:01:23 +0000935 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +0000936}
937
bellarda3a91a32004-06-04 11:06:21 +0000938typedef struct {
939 int keycode;
940 const char *name;
941} KeyDef;
942
943static const KeyDef key_defs[] = {
944 { 0x2a, "shift" },
945 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000946
bellarda3a91a32004-06-04 11:06:21 +0000947 { 0x38, "alt" },
948 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +0000949 { 0x64, "altgr" },
950 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +0000951 { 0x1d, "ctrl" },
952 { 0x9d, "ctrl_r" },
953
954 { 0xdd, "menu" },
955
956 { 0x01, "esc" },
957
958 { 0x02, "1" },
959 { 0x03, "2" },
960 { 0x04, "3" },
961 { 0x05, "4" },
962 { 0x06, "5" },
963 { 0x07, "6" },
964 { 0x08, "7" },
965 { 0x09, "8" },
966 { 0x0a, "9" },
967 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000968 { 0x0c, "minus" },
969 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000970 { 0x0e, "backspace" },
971
972 { 0x0f, "tab" },
973 { 0x10, "q" },
974 { 0x11, "w" },
975 { 0x12, "e" },
976 { 0x13, "r" },
977 { 0x14, "t" },
978 { 0x15, "y" },
979 { 0x16, "u" },
980 { 0x17, "i" },
981 { 0x18, "o" },
982 { 0x19, "p" },
983
984 { 0x1c, "ret" },
985
986 { 0x1e, "a" },
987 { 0x1f, "s" },
988 { 0x20, "d" },
989 { 0x21, "f" },
990 { 0x22, "g" },
991 { 0x23, "h" },
992 { 0x24, "j" },
993 { 0x25, "k" },
994 { 0x26, "l" },
995
996 { 0x2c, "z" },
997 { 0x2d, "x" },
998 { 0x2e, "c" },
999 { 0x2f, "v" },
1000 { 0x30, "b" },
1001 { 0x31, "n" },
1002 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001003 { 0x33, "comma" },
1004 { 0x34, "dot" },
1005 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001006
balrog4d3b6f62008-02-10 16:33:14 +00001007 { 0x37, "asterisk" },
1008
bellarda3a91a32004-06-04 11:06:21 +00001009 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001010 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001011 { 0x3b, "f1" },
1012 { 0x3c, "f2" },
1013 { 0x3d, "f3" },
1014 { 0x3e, "f4" },
1015 { 0x3f, "f5" },
1016 { 0x40, "f6" },
1017 { 0x41, "f7" },
1018 { 0x42, "f8" },
1019 { 0x43, "f9" },
1020 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001021 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001022 { 0x46, "scroll_lock" },
1023
bellard64866c32006-05-07 18:03:31 +00001024 { 0xb5, "kp_divide" },
1025 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001026 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001027 { 0x4e, "kp_add" },
1028 { 0x9c, "kp_enter" },
1029 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001030 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001031
1032 { 0x52, "kp_0" },
1033 { 0x4f, "kp_1" },
1034 { 0x50, "kp_2" },
1035 { 0x51, "kp_3" },
1036 { 0x4b, "kp_4" },
1037 { 0x4c, "kp_5" },
1038 { 0x4d, "kp_6" },
1039 { 0x47, "kp_7" },
1040 { 0x48, "kp_8" },
1041 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001042
bellarda3a91a32004-06-04 11:06:21 +00001043 { 0x56, "<" },
1044
1045 { 0x57, "f11" },
1046 { 0x58, "f12" },
1047
1048 { 0xb7, "print" },
1049
1050 { 0xc7, "home" },
1051 { 0xc9, "pgup" },
1052 { 0xd1, "pgdn" },
1053 { 0xcf, "end" },
1054
1055 { 0xcb, "left" },
1056 { 0xc8, "up" },
1057 { 0xd0, "down" },
1058 { 0xcd, "right" },
1059
1060 { 0xd2, "insert" },
1061 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001062#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1063 { 0xf0, "stop" },
1064 { 0xf1, "again" },
1065 { 0xf2, "props" },
1066 { 0xf3, "undo" },
1067 { 0xf4, "front" },
1068 { 0xf5, "copy" },
1069 { 0xf6, "open" },
1070 { 0xf7, "paste" },
1071 { 0xf8, "find" },
1072 { 0xf9, "cut" },
1073 { 0xfa, "lf" },
1074 { 0xfb, "help" },
1075 { 0xfc, "meta_l" },
1076 { 0xfd, "meta_r" },
1077 { 0xfe, "compose" },
1078#endif
bellarda3a91a32004-06-04 11:06:21 +00001079 { 0, NULL },
1080};
1081
1082static int get_keycode(const char *key)
1083{
1084 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001085 char *endp;
1086 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001087
1088 for(p = key_defs; p->name != NULL; p++) {
1089 if (!strcmp(key, p->name))
1090 return p->keycode;
1091 }
bellard64866c32006-05-07 18:03:31 +00001092 if (strstart(key, "0x", NULL)) {
1093 ret = strtoul(key, &endp, 0);
1094 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1095 return ret;
1096 }
bellarda3a91a32004-06-04 11:06:21 +00001097 return -1;
1098}
1099
balrogc8256f92008-06-08 22:45:01 +00001100#define MAX_KEYCODES 16
1101static uint8_t keycodes[MAX_KEYCODES];
1102static int nb_pending_keycodes;
1103static QEMUTimer *key_timer;
1104
1105static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001106{
balrogc8256f92008-06-08 22:45:01 +00001107 int keycode;
1108
1109 while (nb_pending_keycodes > 0) {
1110 nb_pending_keycodes--;
1111 keycode = keycodes[nb_pending_keycodes];
1112 if (keycode & 0x80)
1113 kbd_put_keycode(0xe0);
1114 kbd_put_keycode(keycode | 0x80);
1115 }
1116}
1117
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001118static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001119{
balrog3401c0d2008-06-04 10:05:59 +00001120 char keyname_buf[16];
1121 char *separator;
1122 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001123 const char *string = qdict_get_str(qdict, "string");
1124 int has_hold_time = qdict_haskey(qdict, "hold_time");
1125 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001126
balrogc8256f92008-06-08 22:45:01 +00001127 if (nb_pending_keycodes > 0) {
1128 qemu_del_timer(key_timer);
1129 release_keys(NULL);
1130 }
1131 if (!has_hold_time)
1132 hold_time = 100;
1133 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001134 while (1) {
1135 separator = strchr(string, '-');
1136 keyname_len = separator ? separator - string : strlen(string);
1137 if (keyname_len > 0) {
1138 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1139 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001140 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001141 return;
bellarda3a91a32004-06-04 11:06:21 +00001142 }
balrogc8256f92008-06-08 22:45:01 +00001143 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001144 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001145 return;
1146 }
1147 keyname_buf[keyname_len] = 0;
1148 keycode = get_keycode(keyname_buf);
1149 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001150 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001151 return;
1152 }
balrogc8256f92008-06-08 22:45:01 +00001153 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001154 }
balrog3401c0d2008-06-04 10:05:59 +00001155 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001156 break;
balrog3401c0d2008-06-04 10:05:59 +00001157 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001158 }
balrogc8256f92008-06-08 22:45:01 +00001159 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001160 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001161 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001162 keycode = keycodes[i];
1163 if (keycode & 0x80)
1164 kbd_put_keycode(0xe0);
1165 kbd_put_keycode(keycode & 0x7f);
1166 }
balrogc8256f92008-06-08 22:45:01 +00001167 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001168 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001169 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001170}
1171
bellard13224a82006-07-14 22:03:35 +00001172static int mouse_button_state;
1173
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001174static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001175{
1176 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001177 const char *dx_str = qdict_get_str(qdict, "dx_str");
1178 const char *dy_str = qdict_get_str(qdict, "dy_str");
1179 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001180 dx = strtol(dx_str, NULL, 0);
1181 dy = strtol(dy_str, NULL, 0);
1182 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001183 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001184 dz = strtol(dz_str, NULL, 0);
1185 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1186}
1187
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001188static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001189{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001190 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001191 mouse_button_state = button_state;
1192 kbd_mouse_event(0, 0, 0, mouse_button_state);
1193}
1194
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001195static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001196{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001197 int size = qdict_get_int(qdict, "size");
1198 int addr = qdict_get_int(qdict, "addr");
1199 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001200 uint32_t val;
1201 int suffix;
1202
1203 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001204 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001205 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001206 addr++;
1207 }
1208 addr &= 0xffff;
1209
1210 switch(size) {
1211 default:
1212 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001213 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001214 suffix = 'b';
1215 break;
1216 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001217 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001218 suffix = 'w';
1219 break;
1220 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001221 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001222 suffix = 'l';
1223 break;
1224 }
aliguori376253e2009-03-05 23:01:23 +00001225 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1226 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001227}
bellarda3a91a32004-06-04 11:06:21 +00001228
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001229static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001230{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001231 int size = qdict_get_int(qdict, "size");
1232 int addr = qdict_get_int(qdict, "addr");
1233 int val = qdict_get_int(qdict, "val");
1234
Jan Kiszkaf1147842009-07-14 10:20:11 +02001235 addr &= IOPORTS_MASK;
1236
1237 switch (size) {
1238 default:
1239 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001240 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001241 break;
1242 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001243 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001244 break;
1245 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001246 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001247 break;
1248 }
1249}
1250
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001251static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001252{
1253 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001254 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001255
Jan Kiszka76e30d02009-07-02 00:19:02 +02001256 res = qemu_boot_set(bootdevice);
1257 if (res == 0) {
1258 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1259 } else if (res > 0) {
1260 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001261 } else {
aliguori376253e2009-03-05 23:01:23 +00001262 monitor_printf(mon, "no function defined to set boot device list for "
1263 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001264 }
1265}
1266
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -03001267static void do_system_reset(Monitor *mon, const QDict *qdict)
bellarde4f90822004-06-20 12:35:44 +00001268{
1269 qemu_system_reset_request();
1270}
1271
Luiz Capitulinof96fc8a2009-08-28 15:27:12 -03001272static void do_system_powerdown(Monitor *mon, const QDict *qdict)
bellard34751872005-07-02 14:31:34 +00001273{
1274 qemu_system_powerdown_request();
1275}
1276
bellardb86bda52004-09-18 19:32:46 +00001277#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001278static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001279{
aliguori376253e2009-03-05 23:01:23 +00001280 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1281 addr,
1282 pte & mask,
1283 pte & PG_GLOBAL_MASK ? 'G' : '-',
1284 pte & PG_PSE_MASK ? 'P' : '-',
1285 pte & PG_DIRTY_MASK ? 'D' : '-',
1286 pte & PG_ACCESSED_MASK ? 'A' : '-',
1287 pte & PG_PCD_MASK ? 'C' : '-',
1288 pte & PG_PWT_MASK ? 'T' : '-',
1289 pte & PG_USER_MASK ? 'U' : '-',
1290 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001291}
1292
aliguori376253e2009-03-05 23:01:23 +00001293static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001294{
bellard6a00d602005-11-21 23:25:50 +00001295 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001296 int l1, l2;
1297 uint32_t pgd, pde, pte;
1298
bellard6a00d602005-11-21 23:25:50 +00001299 env = mon_get_cpu();
1300 if (!env)
1301 return;
1302
bellardb86bda52004-09-18 19:32:46 +00001303 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001304 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001305 return;
1306 }
1307 pgd = env->cr[3] & ~0xfff;
1308 for(l1 = 0; l1 < 1024; l1++) {
1309 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1310 pde = le32_to_cpu(pde);
1311 if (pde & PG_PRESENT_MASK) {
1312 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001313 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001314 } else {
1315 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001316 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001317 (uint8_t *)&pte, 4);
1318 pte = le32_to_cpu(pte);
1319 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001320 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001321 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001322 ~0xfff);
1323 }
1324 }
1325 }
1326 }
1327 }
1328}
1329
aliguori376253e2009-03-05 23:01:23 +00001330static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001331 uint32_t end, int prot)
1332{
bellard9746b152004-11-11 18:30:24 +00001333 int prot1;
1334 prot1 = *plast_prot;
1335 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001336 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001337 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1338 *pstart, end, end - *pstart,
1339 prot1 & PG_USER_MASK ? 'u' : '-',
1340 'r',
1341 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001342 }
1343 if (prot != 0)
1344 *pstart = end;
1345 else
1346 *pstart = -1;
1347 *plast_prot = prot;
1348 }
1349}
1350
aliguori376253e2009-03-05 23:01:23 +00001351static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001352{
bellard6a00d602005-11-21 23:25:50 +00001353 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001354 int l1, l2, prot, last_prot;
1355 uint32_t pgd, pde, pte, start, end;
1356
bellard6a00d602005-11-21 23:25:50 +00001357 env = mon_get_cpu();
1358 if (!env)
1359 return;
1360
bellardb86bda52004-09-18 19:32:46 +00001361 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001362 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001363 return;
1364 }
1365 pgd = env->cr[3] & ~0xfff;
1366 last_prot = 0;
1367 start = -1;
1368 for(l1 = 0; l1 < 1024; l1++) {
1369 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1370 pde = le32_to_cpu(pde);
1371 end = l1 << 22;
1372 if (pde & PG_PRESENT_MASK) {
1373 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1374 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001375 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001376 } else {
1377 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001378 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001379 (uint8_t *)&pte, 4);
1380 pte = le32_to_cpu(pte);
1381 end = (l1 << 22) + (l2 << 12);
1382 if (pte & PG_PRESENT_MASK) {
1383 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1384 } else {
1385 prot = 0;
1386 }
aliguori376253e2009-03-05 23:01:23 +00001387 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001388 }
1389 }
1390 } else {
1391 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001392 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001393 }
1394 }
1395}
1396#endif
1397
aurel327c664e22009-03-03 06:12:22 +00001398#if defined(TARGET_SH4)
1399
aliguori376253e2009-03-05 23:01:23 +00001400static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001401{
aliguori376253e2009-03-05 23:01:23 +00001402 monitor_printf(mon, " tlb%i:\t"
1403 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1404 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1405 "dirty=%hhu writethrough=%hhu\n",
1406 idx,
1407 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1408 tlb->v, tlb->sh, tlb->c, tlb->pr,
1409 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001410}
1411
aliguori376253e2009-03-05 23:01:23 +00001412static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001413{
1414 CPUState *env = mon_get_cpu();
1415 int i;
1416
aliguori376253e2009-03-05 23:01:23 +00001417 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001418 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001419 print_tlb (mon, i, &env->itlb[i]);
1420 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001421 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001422 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001423}
1424
1425#endif
1426
aliguori376253e2009-03-05 23:01:23 +00001427static void do_info_kvm(Monitor *mon)
aliguori7ba1e612008-11-05 16:04:33 +00001428{
1429#ifdef CONFIG_KVM
aliguori376253e2009-03-05 23:01:23 +00001430 monitor_printf(mon, "kvm support: ");
aliguori7ba1e612008-11-05 16:04:33 +00001431 if (kvm_enabled())
aliguori376253e2009-03-05 23:01:23 +00001432 monitor_printf(mon, "enabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001433 else
aliguori376253e2009-03-05 23:01:23 +00001434 monitor_printf(mon, "disabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001435#else
aliguori376253e2009-03-05 23:01:23 +00001436 monitor_printf(mon, "kvm support: not compiled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001437#endif
1438}
1439
aliguori030ea372009-04-21 22:30:47 +00001440static void do_info_numa(Monitor *mon)
1441{
aliguorib28b6232009-04-22 20:20:29 +00001442 int i;
aliguori030ea372009-04-21 22:30:47 +00001443 CPUState *env;
1444
1445 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1446 for (i = 0; i < nb_numa_nodes; i++) {
1447 monitor_printf(mon, "node %d cpus:", i);
1448 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1449 if (env->numa_node == i) {
1450 monitor_printf(mon, " %d", env->cpu_index);
1451 }
1452 }
1453 monitor_printf(mon, "\n");
1454 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1455 node_mem[i] >> 20);
1456 }
1457}
1458
bellard5f1ce942006-02-08 22:40:15 +00001459#ifdef CONFIG_PROFILER
1460
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001461int64_t qemu_time;
1462int64_t dev_time;
1463
aliguori376253e2009-03-05 23:01:23 +00001464static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001465{
1466 int64_t total;
1467 total = qemu_time;
1468 if (total == 0)
1469 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001470 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001471 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001472 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001473 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001474 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001475 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001476}
1477#else
aliguori376253e2009-03-05 23:01:23 +00001478static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001479{
aliguori376253e2009-03-05 23:01:23 +00001480 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001481}
1482#endif
1483
bellardec36b692006-07-16 18:57:03 +00001484/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001485static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001486
aliguori376253e2009-03-05 23:01:23 +00001487static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001488{
1489 int i;
1490 CaptureState *s;
1491
1492 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001493 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001494 s->ops.info (s->opaque);
1495 }
1496}
1497
Blue Swirl23130862009-06-06 08:22:04 +00001498#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001499static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001500{
1501 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001502 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001503 CaptureState *s;
1504
1505 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1506 if (i == n) {
1507 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001508 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00001509 qemu_free (s);
1510 return;
1511 }
1512 }
1513}
1514
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001515static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001516{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001517 const char *path = qdict_get_str(qdict, "path");
1518 int has_freq = qdict_haskey(qdict, "freq");
1519 int freq = qdict_get_try_int(qdict, "freq", -1);
1520 int has_bits = qdict_haskey(qdict, "bits");
1521 int bits = qdict_get_try_int(qdict, "bits", -1);
1522 int has_channels = qdict_haskey(qdict, "nchannels");
1523 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00001524 CaptureState *s;
1525
1526 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001527
1528 freq = has_freq ? freq : 44100;
1529 bits = has_bits ? bits : 16;
1530 nchannels = has_channels ? nchannels : 2;
1531
1532 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00001533 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00001534 qemu_free (s);
1535 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00001536 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00001537}
1538#endif
1539
aurel32dc1c0b72008-04-27 23:52:12 +00001540#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001541static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00001542{
1543 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001544 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00001545
1546 for (env = first_cpu; env != NULL; env = env->next_cpu)
1547 if (env->cpu_index == cpu_index) {
1548 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1549 break;
1550 }
1551}
1552#endif
1553
aliguori376253e2009-03-05 23:01:23 +00001554static void do_info_status(Monitor *mon)
aurel326f9c5ee2008-12-18 22:43:56 +00001555{
aurel321b530a62009-04-05 20:08:59 +00001556 if (vm_running) {
1557 if (singlestep) {
1558 monitor_printf(mon, "VM status: running (single step mode)\n");
1559 } else {
1560 monitor_printf(mon, "VM status: running\n");
1561 }
1562 } else
aliguori376253e2009-03-05 23:01:23 +00001563 monitor_printf(mon, "VM status: paused\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001564}
1565
1566
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001567static void do_balloon(Monitor *mon, const QDict *qdict)
aliguoridf751fa2008-12-04 20:19:35 +00001568{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001569 int value = qdict_get_int(qdict, "value");
Anthony Liguoric227f092009-10-01 16:12:16 -05001570 ram_addr_t target = value;
aliguoridf751fa2008-12-04 20:19:35 +00001571 qemu_balloon(target << 20);
1572}
1573
aliguori376253e2009-03-05 23:01:23 +00001574static void do_info_balloon(Monitor *mon)
aliguoridf751fa2008-12-04 20:19:35 +00001575{
Anthony Liguoric227f092009-10-01 16:12:16 -05001576 ram_addr_t actual;
aliguoridf751fa2008-12-04 20:19:35 +00001577
1578 actual = qemu_balloon_status();
aliguoribd322082008-12-04 20:33:06 +00001579 if (kvm_enabled() && !kvm_has_sync_mmu())
aliguori376253e2009-03-05 23:01:23 +00001580 monitor_printf(mon, "Using KVM without synchronous MMU, "
1581 "ballooning disabled\n");
aliguoribd322082008-12-04 20:33:06 +00001582 else if (actual == 0)
aliguori376253e2009-03-05 23:01:23 +00001583 monitor_printf(mon, "Ballooning not activated in VM\n");
aliguoridf751fa2008-12-04 20:19:35 +00001584 else
aliguori376253e2009-03-05 23:01:23 +00001585 monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
aliguoridf751fa2008-12-04 20:19:35 +00001586}
1587
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001588static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00001589{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001590 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00001591
aliguori76655d62009-03-06 20:27:37 +00001592 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001593 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00001594 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001595 return acl;
1596}
aliguori76655d62009-03-06 20:27:37 +00001597
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001598static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001599{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001600 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001601 qemu_acl *acl = find_acl(mon, aclname);
1602 qemu_acl_entry *entry;
1603 int i = 0;
1604
1605 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001606 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001607 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00001608 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00001609 i++;
1610 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001611 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00001612 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001613 }
1614}
1615
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001616static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001617{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001618 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001619 qemu_acl *acl = find_acl(mon, aclname);
1620
1621 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001622 qemu_acl_reset(acl);
1623 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001624 }
1625}
aliguori76655d62009-03-06 20:27:37 +00001626
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001627static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001628{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001629 const char *aclname = qdict_get_str(qdict, "aclname");
1630 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001631 qemu_acl *acl = find_acl(mon, aclname);
1632
1633 if (acl) {
1634 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001635 acl->defaultDeny = 0;
1636 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001637 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001638 acl->defaultDeny = 1;
1639 monitor_printf(mon, "acl: policy set to 'deny'\n");
1640 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001641 monitor_printf(mon, "acl: unknown policy '%s', "
1642 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00001643 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001644 }
1645}
aliguori76655d62009-03-06 20:27:37 +00001646
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001647static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001648{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001649 const char *aclname = qdict_get_str(qdict, "aclname");
1650 const char *match = qdict_get_str(qdict, "match");
1651 const char *policy = qdict_get_str(qdict, "policy");
1652 int has_index = qdict_haskey(qdict, "index");
1653 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001654 qemu_acl *acl = find_acl(mon, aclname);
1655 int deny, ret;
1656
1657 if (acl) {
1658 if (strcmp(policy, "allow") == 0) {
1659 deny = 0;
1660 } else if (strcmp(policy, "deny") == 0) {
1661 deny = 1;
1662 } else {
1663 monitor_printf(mon, "acl: unknown policy '%s', "
1664 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00001665 return;
1666 }
aliguori28a76be2009-03-06 20:27:40 +00001667 if (has_index)
1668 ret = qemu_acl_insert(acl, deny, match, index);
1669 else
1670 ret = qemu_acl_append(acl, deny, match);
1671 if (ret < 0)
1672 monitor_printf(mon, "acl: unable to add acl entry\n");
1673 else
1674 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001675 }
1676}
aliguori76655d62009-03-06 20:27:37 +00001677
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001678static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001679{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001680 const char *aclname = qdict_get_str(qdict, "aclname");
1681 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001682 qemu_acl *acl = find_acl(mon, aclname);
1683 int ret;
aliguori76655d62009-03-06 20:27:37 +00001684
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001685 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001686 ret = qemu_acl_remove(acl, match);
1687 if (ret < 0)
1688 monitor_printf(mon, "acl: no matching acl entry\n");
1689 else
1690 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001691 }
1692}
1693
Huang Ying79c4f6b2009-06-23 10:05:14 +08001694#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03001695static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08001696{
1697 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03001698 int cpu_index = qdict_get_int(qdict, "cpu_index");
1699 int bank = qdict_get_int(qdict, "bank");
1700 uint64_t status = qdict_get_int(qdict, "status");
1701 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
1702 uint64_t addr = qdict_get_int(qdict, "addr");
1703 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08001704
1705 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
1706 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
1707 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
1708 break;
1709 }
1710}
1711#endif
1712
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001713static void do_getfd(Monitor *mon, const QDict *qdict)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001714{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001715 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05001716 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001717 int fd;
1718
1719 fd = qemu_chr_get_msgfd(mon->chr);
1720 if (fd == -1) {
1721 monitor_printf(mon, "getfd: no file descriptor supplied via SCM_RIGHTS\n");
1722 return;
1723 }
1724
1725 if (qemu_isdigit(fdname[0])) {
1726 monitor_printf(mon, "getfd: monitor names may not begin with a number\n");
1727 return;
1728 }
1729
1730 fd = dup(fd);
1731 if (fd == -1) {
1732 monitor_printf(mon, "Failed to dup() file descriptor: %s\n",
1733 strerror(errno));
1734 return;
1735 }
1736
Blue Swirl72cf2d42009-09-12 07:36:22 +00001737 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001738 if (strcmp(monfd->name, fdname) != 0) {
1739 continue;
1740 }
1741
1742 close(monfd->fd);
1743 monfd->fd = fd;
1744 return;
1745 }
1746
Anthony Liguoric227f092009-10-01 16:12:16 -05001747 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001748 monfd->name = qemu_strdup(fdname);
1749 monfd->fd = fd;
1750
Blue Swirl72cf2d42009-09-12 07:36:22 +00001751 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001752}
1753
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001754static void do_closefd(Monitor *mon, const QDict *qdict)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001755{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001756 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05001757 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001758
Blue Swirl72cf2d42009-09-12 07:36:22 +00001759 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001760 if (strcmp(monfd->name, fdname) != 0) {
1761 continue;
1762 }
1763
Blue Swirl72cf2d42009-09-12 07:36:22 +00001764 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001765 close(monfd->fd);
1766 qemu_free(monfd->name);
1767 qemu_free(monfd);
1768 return;
1769 }
1770
1771 monitor_printf(mon, "Failed to find file descriptor named %s\n",
1772 fdname);
1773}
1774
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001775static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02001776{
1777 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001778 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02001779
1780 vm_stop(0);
1781
Juan Quintela05f24012009-08-20 19:42:22 +02001782 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02001783 vm_start();
1784}
1785
Mark McLoughlin7768e042009-07-22 09:11:41 +01001786int monitor_get_fd(Monitor *mon, const char *fdname)
1787{
Anthony Liguoric227f092009-10-01 16:12:16 -05001788 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01001789
Blue Swirl72cf2d42009-09-12 07:36:22 +00001790 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01001791 int fd;
1792
1793 if (strcmp(monfd->name, fdname) != 0) {
1794 continue;
1795 }
1796
1797 fd = monfd->fd;
1798
1799 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001800 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01001801 qemu_free(monfd->name);
1802 qemu_free(monfd);
1803
1804 return fd;
1805 }
1806
1807 return -1;
1808}
1809
Anthony Liguoric227f092009-10-01 16:12:16 -05001810static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00001811#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00001812 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001813};
1814
Blue Swirl23130862009-06-06 08:22:04 +00001815/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05001816static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001817 {
1818 .name = "version",
1819 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001820 .params = "",
1821 .help = "show the version of QEMU",
Luiz Capitulino910df892009-10-07 13:41:51 -03001822 .mhandler.info = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001823 },
1824 {
1825 .name = "network",
1826 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001827 .params = "",
1828 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03001829 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001830 },
1831 {
1832 .name = "chardev",
1833 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001834 .params = "",
1835 .help = "show the character devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03001836 .mhandler.info = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001837 },
1838 {
1839 .name = "block",
1840 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001841 .params = "",
1842 .help = "show the block devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03001843 .mhandler.info = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001844 },
1845 {
1846 .name = "blockstats",
1847 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001848 .params = "",
1849 .help = "show block device statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03001850 .mhandler.info = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001851 },
1852 {
1853 .name = "registers",
1854 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001855 .params = "",
1856 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03001857 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001858 },
1859 {
1860 .name = "cpus",
1861 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001862 .params = "",
1863 .help = "show infos for each CPU",
Luiz Capitulino910df892009-10-07 13:41:51 -03001864 .mhandler.info = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001865 },
1866 {
1867 .name = "history",
1868 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001869 .params = "",
1870 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03001871 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001872 },
1873 {
1874 .name = "irq",
1875 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001876 .params = "",
1877 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03001878 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001879 },
1880 {
1881 .name = "pic",
1882 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001883 .params = "",
1884 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03001885 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001886 },
1887 {
1888 .name = "pci",
1889 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001890 .params = "",
1891 .help = "show PCI info",
Luiz Capitulino910df892009-10-07 13:41:51 -03001892 .mhandler.info = pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001893 },
aurel327c664e22009-03-03 06:12:22 +00001894#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001895 {
1896 .name = "tlb",
1897 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001898 .params = "",
1899 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03001900 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001901 },
aurel327c664e22009-03-03 06:12:22 +00001902#endif
1903#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001904 {
1905 .name = "mem",
1906 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001907 .params = "",
1908 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03001909 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001910 },
1911 {
1912 .name = "hpet",
1913 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001914 .params = "",
1915 .help = "show state of HPET",
Luiz Capitulino910df892009-10-07 13:41:51 -03001916 .mhandler.info = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001917 },
bellardb86bda52004-09-18 19:32:46 +00001918#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001919 {
1920 .name = "jit",
1921 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001922 .params = "",
1923 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03001924 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001925 },
1926 {
1927 .name = "kvm",
1928 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001929 .params = "",
1930 .help = "show KVM information",
Luiz Capitulino910df892009-10-07 13:41:51 -03001931 .mhandler.info = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001932 },
1933 {
1934 .name = "numa",
1935 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001936 .params = "",
1937 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03001938 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001939 },
1940 {
1941 .name = "usb",
1942 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001943 .params = "",
1944 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03001945 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001946 },
1947 {
1948 .name = "usbhost",
1949 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001950 .params = "",
1951 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03001952 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001953 },
1954 {
1955 .name = "profile",
1956 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001957 .params = "",
1958 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03001959 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001960 },
1961 {
1962 .name = "capture",
1963 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001964 .params = "",
1965 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03001966 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001967 },
1968 {
1969 .name = "snapshots",
1970 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001971 .params = "",
1972 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03001973 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001974 },
1975 {
1976 .name = "status",
1977 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001978 .params = "",
1979 .help = "show the current VM status (running|paused)",
Luiz Capitulino910df892009-10-07 13:41:51 -03001980 .mhandler.info = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001981 },
1982 {
1983 .name = "pcmcia",
1984 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001985 .params = "",
1986 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03001987 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001988 },
1989 {
1990 .name = "mice",
1991 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001992 .params = "",
1993 .help = "show which guest mouse is receiving events",
Luiz Capitulino910df892009-10-07 13:41:51 -03001994 .mhandler.info = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001995 },
1996 {
1997 .name = "vnc",
1998 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001999 .params = "",
2000 .help = "show the vnc server status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002001 .mhandler.info = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002002 },
2003 {
2004 .name = "name",
2005 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002006 .params = "",
2007 .help = "show the current VM name",
Luiz Capitulino910df892009-10-07 13:41:51 -03002008 .mhandler.info = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002009 },
2010 {
2011 .name = "uuid",
2012 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002013 .params = "",
2014 .help = "show the current VM UUID",
Luiz Capitulino910df892009-10-07 13:41:51 -03002015 .mhandler.info = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002016 },
j_mayer76a66252007-03-07 08:32:30 +00002017#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002018 {
2019 .name = "cpustats",
2020 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002021 .params = "",
2022 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002023 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002024 },
j_mayer76a66252007-03-07 08:32:30 +00002025#endif
blueswir131a60e22007-10-26 18:42:59 +00002026#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002027 {
2028 .name = "usernet",
2029 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002030 .params = "",
2031 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002032 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002033 },
blueswir131a60e22007-10-26 18:42:59 +00002034#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002035 {
2036 .name = "migrate",
2037 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002038 .params = "",
2039 .help = "show migration status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002040 .mhandler.info = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002041 },
2042 {
2043 .name = "balloon",
2044 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002045 .params = "",
2046 .help = "show balloon information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002047 .mhandler.info = do_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002048 },
2049 {
2050 .name = "qtree",
2051 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002052 .params = "",
2053 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002054 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002055 },
2056 {
2057 .name = "qdm",
2058 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002059 .params = "",
2060 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002061 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002062 },
2063 {
2064 .name = "roms",
2065 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002066 .params = "",
2067 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002068 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002069 },
2070 {
2071 .name = NULL,
2072 },
bellard9dc39cb2004-03-14 21:38:27 +00002073};
2074
bellard9307c4c2004-04-04 12:57:25 +00002075/*******************************************************************/
2076
2077static const char *pch;
2078static jmp_buf expr_env;
2079
bellard92a31b12005-02-10 22:00:52 +00002080#define MD_TLONG 0
2081#define MD_I32 1
2082
bellard9307c4c2004-04-04 12:57:25 +00002083typedef struct MonitorDef {
2084 const char *name;
2085 int offset;
blueswir18662d652008-10-02 18:32:44 +00002086 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002087 int type;
bellard9307c4c2004-04-04 12:57:25 +00002088} MonitorDef;
2089
bellard57206fd2004-04-25 18:54:52 +00002090#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002091static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002092{
bellard6a00d602005-11-21 23:25:50 +00002093 CPUState *env = mon_get_cpu();
2094 if (!env)
2095 return 0;
2096 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002097}
2098#endif
2099
bellarda541f292004-04-12 20:39:29 +00002100#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002101static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002102{
bellard6a00d602005-11-21 23:25:50 +00002103 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002104 unsigned int u;
2105 int i;
2106
bellard6a00d602005-11-21 23:25:50 +00002107 if (!env)
2108 return 0;
2109
bellarda541f292004-04-12 20:39:29 +00002110 u = 0;
2111 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002112 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002113
2114 return u;
2115}
2116
blueswir18662d652008-10-02 18:32:44 +00002117static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002118{
bellard6a00d602005-11-21 23:25:50 +00002119 CPUState *env = mon_get_cpu();
2120 if (!env)
2121 return 0;
j_mayer0411a972007-10-25 21:35:50 +00002122 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002123}
2124
blueswir18662d652008-10-02 18:32:44 +00002125static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002126{
bellard6a00d602005-11-21 23:25:50 +00002127 CPUState *env = mon_get_cpu();
2128 if (!env)
2129 return 0;
aurel323d7b4172008-10-21 11:28:46 +00002130 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002131}
bellard9fddaa02004-05-21 12:59:32 +00002132
blueswir18662d652008-10-02 18:32:44 +00002133static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002134{
bellard6a00d602005-11-21 23:25:50 +00002135 CPUState *env = mon_get_cpu();
2136 if (!env)
2137 return 0;
2138 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002139}
2140
blueswir18662d652008-10-02 18:32:44 +00002141static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002142{
bellard6a00d602005-11-21 23:25:50 +00002143 CPUState *env = mon_get_cpu();
2144 if (!env)
2145 return 0;
2146 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002147}
2148
blueswir18662d652008-10-02 18:32:44 +00002149static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002150{
bellard6a00d602005-11-21 23:25:50 +00002151 CPUState *env = mon_get_cpu();
2152 if (!env)
2153 return 0;
2154 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002155}
bellarda541f292004-04-12 20:39:29 +00002156#endif
2157
bellarde95c8d52004-09-30 22:22:08 +00002158#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002159#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002160static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002161{
bellard6a00d602005-11-21 23:25:50 +00002162 CPUState *env = mon_get_cpu();
2163 if (!env)
2164 return 0;
2165 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002166}
bellard7b936c02005-10-30 17:05:13 +00002167#endif
bellarde95c8d52004-09-30 22:22:08 +00002168
blueswir18662d652008-10-02 18:32:44 +00002169static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002170{
bellard6a00d602005-11-21 23:25:50 +00002171 CPUState *env = mon_get_cpu();
2172 if (!env)
2173 return 0;
2174 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002175}
2176#endif
2177
blueswir18662d652008-10-02 18:32:44 +00002178static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002179#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002180
2181#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002182 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002183 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002184 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002185
bellard9307c4c2004-04-04 12:57:25 +00002186 { "eax", offsetof(CPUState, regs[0]) },
2187 { "ecx", offsetof(CPUState, regs[1]) },
2188 { "edx", offsetof(CPUState, regs[2]) },
2189 { "ebx", offsetof(CPUState, regs[3]) },
2190 { "esp|sp", offsetof(CPUState, regs[4]) },
2191 { "ebp|fp", offsetof(CPUState, regs[5]) },
2192 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002193 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002194#ifdef TARGET_X86_64
2195 { "r8", offsetof(CPUState, regs[8]) },
2196 { "r9", offsetof(CPUState, regs[9]) },
2197 { "r10", offsetof(CPUState, regs[10]) },
2198 { "r11", offsetof(CPUState, regs[11]) },
2199 { "r12", offsetof(CPUState, regs[12]) },
2200 { "r13", offsetof(CPUState, regs[13]) },
2201 { "r14", offsetof(CPUState, regs[14]) },
2202 { "r15", offsetof(CPUState, regs[15]) },
2203#endif
bellard9307c4c2004-04-04 12:57:25 +00002204 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002205 { "eip", offsetof(CPUState, eip) },
2206 SEG("cs", R_CS)
2207 SEG("ds", R_DS)
2208 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002209 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002210 SEG("fs", R_FS)
2211 SEG("gs", R_GS)
2212 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002213#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002214 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002215 { "r0", offsetof(CPUState, gpr[0]) },
2216 { "r1", offsetof(CPUState, gpr[1]) },
2217 { "r2", offsetof(CPUState, gpr[2]) },
2218 { "r3", offsetof(CPUState, gpr[3]) },
2219 { "r4", offsetof(CPUState, gpr[4]) },
2220 { "r5", offsetof(CPUState, gpr[5]) },
2221 { "r6", offsetof(CPUState, gpr[6]) },
2222 { "r7", offsetof(CPUState, gpr[7]) },
2223 { "r8", offsetof(CPUState, gpr[8]) },
2224 { "r9", offsetof(CPUState, gpr[9]) },
2225 { "r10", offsetof(CPUState, gpr[10]) },
2226 { "r11", offsetof(CPUState, gpr[11]) },
2227 { "r12", offsetof(CPUState, gpr[12]) },
2228 { "r13", offsetof(CPUState, gpr[13]) },
2229 { "r14", offsetof(CPUState, gpr[14]) },
2230 { "r15", offsetof(CPUState, gpr[15]) },
2231 { "r16", offsetof(CPUState, gpr[16]) },
2232 { "r17", offsetof(CPUState, gpr[17]) },
2233 { "r18", offsetof(CPUState, gpr[18]) },
2234 { "r19", offsetof(CPUState, gpr[19]) },
2235 { "r20", offsetof(CPUState, gpr[20]) },
2236 { "r21", offsetof(CPUState, gpr[21]) },
2237 { "r22", offsetof(CPUState, gpr[22]) },
2238 { "r23", offsetof(CPUState, gpr[23]) },
2239 { "r24", offsetof(CPUState, gpr[24]) },
2240 { "r25", offsetof(CPUState, gpr[25]) },
2241 { "r26", offsetof(CPUState, gpr[26]) },
2242 { "r27", offsetof(CPUState, gpr[27]) },
2243 { "r28", offsetof(CPUState, gpr[28]) },
2244 { "r29", offsetof(CPUState, gpr[29]) },
2245 { "r30", offsetof(CPUState, gpr[30]) },
2246 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002247 /* Floating point registers */
2248 { "f0", offsetof(CPUState, fpr[0]) },
2249 { "f1", offsetof(CPUState, fpr[1]) },
2250 { "f2", offsetof(CPUState, fpr[2]) },
2251 { "f3", offsetof(CPUState, fpr[3]) },
2252 { "f4", offsetof(CPUState, fpr[4]) },
2253 { "f5", offsetof(CPUState, fpr[5]) },
2254 { "f6", offsetof(CPUState, fpr[6]) },
2255 { "f7", offsetof(CPUState, fpr[7]) },
2256 { "f8", offsetof(CPUState, fpr[8]) },
2257 { "f9", offsetof(CPUState, fpr[9]) },
2258 { "f10", offsetof(CPUState, fpr[10]) },
2259 { "f11", offsetof(CPUState, fpr[11]) },
2260 { "f12", offsetof(CPUState, fpr[12]) },
2261 { "f13", offsetof(CPUState, fpr[13]) },
2262 { "f14", offsetof(CPUState, fpr[14]) },
2263 { "f15", offsetof(CPUState, fpr[15]) },
2264 { "f16", offsetof(CPUState, fpr[16]) },
2265 { "f17", offsetof(CPUState, fpr[17]) },
2266 { "f18", offsetof(CPUState, fpr[18]) },
2267 { "f19", offsetof(CPUState, fpr[19]) },
2268 { "f20", offsetof(CPUState, fpr[20]) },
2269 { "f21", offsetof(CPUState, fpr[21]) },
2270 { "f22", offsetof(CPUState, fpr[22]) },
2271 { "f23", offsetof(CPUState, fpr[23]) },
2272 { "f24", offsetof(CPUState, fpr[24]) },
2273 { "f25", offsetof(CPUState, fpr[25]) },
2274 { "f26", offsetof(CPUState, fpr[26]) },
2275 { "f27", offsetof(CPUState, fpr[27]) },
2276 { "f28", offsetof(CPUState, fpr[28]) },
2277 { "f29", offsetof(CPUState, fpr[29]) },
2278 { "f30", offsetof(CPUState, fpr[30]) },
2279 { "f31", offsetof(CPUState, fpr[31]) },
2280 { "fpscr", offsetof(CPUState, fpscr) },
2281 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002282 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002283 { "lr", offsetof(CPUState, lr) },
2284 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002285 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002286 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002287 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002288 { "msr", 0, &monitor_get_msr, },
2289 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002290 { "tbu", 0, &monitor_get_tbu, },
2291 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002292#if defined(TARGET_PPC64)
2293 /* Address space register */
2294 { "asr", offsetof(CPUState, asr) },
2295#endif
2296 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002297 { "sdr1", offsetof(CPUState, sdr1) },
2298 { "sr0", offsetof(CPUState, sr[0]) },
2299 { "sr1", offsetof(CPUState, sr[1]) },
2300 { "sr2", offsetof(CPUState, sr[2]) },
2301 { "sr3", offsetof(CPUState, sr[3]) },
2302 { "sr4", offsetof(CPUState, sr[4]) },
2303 { "sr5", offsetof(CPUState, sr[5]) },
2304 { "sr6", offsetof(CPUState, sr[6]) },
2305 { "sr7", offsetof(CPUState, sr[7]) },
2306 { "sr8", offsetof(CPUState, sr[8]) },
2307 { "sr9", offsetof(CPUState, sr[9]) },
2308 { "sr10", offsetof(CPUState, sr[10]) },
2309 { "sr11", offsetof(CPUState, sr[11]) },
2310 { "sr12", offsetof(CPUState, sr[12]) },
2311 { "sr13", offsetof(CPUState, sr[13]) },
2312 { "sr14", offsetof(CPUState, sr[14]) },
2313 { "sr15", offsetof(CPUState, sr[15]) },
2314 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002315#elif defined(TARGET_SPARC)
2316 { "g0", offsetof(CPUState, gregs[0]) },
2317 { "g1", offsetof(CPUState, gregs[1]) },
2318 { "g2", offsetof(CPUState, gregs[2]) },
2319 { "g3", offsetof(CPUState, gregs[3]) },
2320 { "g4", offsetof(CPUState, gregs[4]) },
2321 { "g5", offsetof(CPUState, gregs[5]) },
2322 { "g6", offsetof(CPUState, gregs[6]) },
2323 { "g7", offsetof(CPUState, gregs[7]) },
2324 { "o0", 0, monitor_get_reg },
2325 { "o1", 1, monitor_get_reg },
2326 { "o2", 2, monitor_get_reg },
2327 { "o3", 3, monitor_get_reg },
2328 { "o4", 4, monitor_get_reg },
2329 { "o5", 5, monitor_get_reg },
2330 { "o6", 6, monitor_get_reg },
2331 { "o7", 7, monitor_get_reg },
2332 { "l0", 8, monitor_get_reg },
2333 { "l1", 9, monitor_get_reg },
2334 { "l2", 10, monitor_get_reg },
2335 { "l3", 11, monitor_get_reg },
2336 { "l4", 12, monitor_get_reg },
2337 { "l5", 13, monitor_get_reg },
2338 { "l6", 14, monitor_get_reg },
2339 { "l7", 15, monitor_get_reg },
2340 { "i0", 16, monitor_get_reg },
2341 { "i1", 17, monitor_get_reg },
2342 { "i2", 18, monitor_get_reg },
2343 { "i3", 19, monitor_get_reg },
2344 { "i4", 20, monitor_get_reg },
2345 { "i5", 21, monitor_get_reg },
2346 { "i6", 22, monitor_get_reg },
2347 { "i7", 23, monitor_get_reg },
2348 { "pc", offsetof(CPUState, pc) },
2349 { "npc", offsetof(CPUState, npc) },
2350 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002351#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002352 { "psr", 0, &monitor_get_psr, },
2353 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002354#endif
bellarde95c8d52004-09-30 22:22:08 +00002355 { "tbr", offsetof(CPUState, tbr) },
2356 { "fsr", offsetof(CPUState, fsr) },
2357 { "f0", offsetof(CPUState, fpr[0]) },
2358 { "f1", offsetof(CPUState, fpr[1]) },
2359 { "f2", offsetof(CPUState, fpr[2]) },
2360 { "f3", offsetof(CPUState, fpr[3]) },
2361 { "f4", offsetof(CPUState, fpr[4]) },
2362 { "f5", offsetof(CPUState, fpr[5]) },
2363 { "f6", offsetof(CPUState, fpr[6]) },
2364 { "f7", offsetof(CPUState, fpr[7]) },
2365 { "f8", offsetof(CPUState, fpr[8]) },
2366 { "f9", offsetof(CPUState, fpr[9]) },
2367 { "f10", offsetof(CPUState, fpr[10]) },
2368 { "f11", offsetof(CPUState, fpr[11]) },
2369 { "f12", offsetof(CPUState, fpr[12]) },
2370 { "f13", offsetof(CPUState, fpr[13]) },
2371 { "f14", offsetof(CPUState, fpr[14]) },
2372 { "f15", offsetof(CPUState, fpr[15]) },
2373 { "f16", offsetof(CPUState, fpr[16]) },
2374 { "f17", offsetof(CPUState, fpr[17]) },
2375 { "f18", offsetof(CPUState, fpr[18]) },
2376 { "f19", offsetof(CPUState, fpr[19]) },
2377 { "f20", offsetof(CPUState, fpr[20]) },
2378 { "f21", offsetof(CPUState, fpr[21]) },
2379 { "f22", offsetof(CPUState, fpr[22]) },
2380 { "f23", offsetof(CPUState, fpr[23]) },
2381 { "f24", offsetof(CPUState, fpr[24]) },
2382 { "f25", offsetof(CPUState, fpr[25]) },
2383 { "f26", offsetof(CPUState, fpr[26]) },
2384 { "f27", offsetof(CPUState, fpr[27]) },
2385 { "f28", offsetof(CPUState, fpr[28]) },
2386 { "f29", offsetof(CPUState, fpr[29]) },
2387 { "f30", offsetof(CPUState, fpr[30]) },
2388 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002389#ifdef TARGET_SPARC64
2390 { "f32", offsetof(CPUState, fpr[32]) },
2391 { "f34", offsetof(CPUState, fpr[34]) },
2392 { "f36", offsetof(CPUState, fpr[36]) },
2393 { "f38", offsetof(CPUState, fpr[38]) },
2394 { "f40", offsetof(CPUState, fpr[40]) },
2395 { "f42", offsetof(CPUState, fpr[42]) },
2396 { "f44", offsetof(CPUState, fpr[44]) },
2397 { "f46", offsetof(CPUState, fpr[46]) },
2398 { "f48", offsetof(CPUState, fpr[48]) },
2399 { "f50", offsetof(CPUState, fpr[50]) },
2400 { "f52", offsetof(CPUState, fpr[52]) },
2401 { "f54", offsetof(CPUState, fpr[54]) },
2402 { "f56", offsetof(CPUState, fpr[56]) },
2403 { "f58", offsetof(CPUState, fpr[58]) },
2404 { "f60", offsetof(CPUState, fpr[60]) },
2405 { "f62", offsetof(CPUState, fpr[62]) },
2406 { "asi", offsetof(CPUState, asi) },
2407 { "pstate", offsetof(CPUState, pstate) },
2408 { "cansave", offsetof(CPUState, cansave) },
2409 { "canrestore", offsetof(CPUState, canrestore) },
2410 { "otherwin", offsetof(CPUState, otherwin) },
2411 { "wstate", offsetof(CPUState, wstate) },
2412 { "cleanwin", offsetof(CPUState, cleanwin) },
2413 { "fprs", offsetof(CPUState, fprs) },
2414#endif
bellard9307c4c2004-04-04 12:57:25 +00002415#endif
2416 { NULL },
2417};
2418
aliguori376253e2009-03-05 23:01:23 +00002419static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002420{
aliguori376253e2009-03-05 23:01:23 +00002421 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002422 longjmp(expr_env, 1);
2423}
2424
bellard6a00d602005-11-21 23:25:50 +00002425/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002426static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002427{
blueswir18662d652008-10-02 18:32:44 +00002428 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002429 void *ptr;
2430
bellard9307c4c2004-04-04 12:57:25 +00002431 for(md = monitor_defs; md->name != NULL; md++) {
2432 if (compare_cmd(name, md->name)) {
2433 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002434 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002435 } else {
bellard6a00d602005-11-21 23:25:50 +00002436 CPUState *env = mon_get_cpu();
2437 if (!env)
2438 return -2;
2439 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002440 switch(md->type) {
2441 case MD_I32:
2442 *pval = *(int32_t *)ptr;
2443 break;
2444 case MD_TLONG:
2445 *pval = *(target_long *)ptr;
2446 break;
2447 default:
2448 *pval = 0;
2449 break;
2450 }
bellard9307c4c2004-04-04 12:57:25 +00002451 }
2452 return 0;
2453 }
2454 }
2455 return -1;
2456}
2457
2458static void next(void)
2459{
Blue Swirl660f11b2009-07-31 21:16:51 +00002460 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00002461 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002462 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002463 pch++;
2464 }
2465}
2466
aliguori376253e2009-03-05 23:01:23 +00002467static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002468
aliguori376253e2009-03-05 23:01:23 +00002469static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002470{
blueswir1c2efc952007-09-25 17:28:42 +00002471 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002472 char *p;
bellard6a00d602005-11-21 23:25:50 +00002473 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002474
2475 switch(*pch) {
2476 case '+':
2477 next();
aliguori376253e2009-03-05 23:01:23 +00002478 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002479 break;
2480 case '-':
2481 next();
aliguori376253e2009-03-05 23:01:23 +00002482 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002483 break;
2484 case '~':
2485 next();
aliguori376253e2009-03-05 23:01:23 +00002486 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002487 break;
2488 case '(':
2489 next();
aliguori376253e2009-03-05 23:01:23 +00002490 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002491 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002492 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002493 }
2494 next();
2495 break;
bellard81d09122004-07-14 17:21:37 +00002496 case '\'':
2497 pch++;
2498 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002499 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002500 n = *pch;
2501 pch++;
2502 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002503 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002504 next();
2505 break;
bellard9307c4c2004-04-04 12:57:25 +00002506 case '$':
2507 {
2508 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002509 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002510
bellard9307c4c2004-04-04 12:57:25 +00002511 pch++;
2512 q = buf;
2513 while ((*pch >= 'a' && *pch <= 'z') ||
2514 (*pch >= 'A' && *pch <= 'Z') ||
2515 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00002516 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00002517 if ((q - buf) < sizeof(buf) - 1)
2518 *q++ = *pch;
2519 pch++;
2520 }
blueswir1cd390082008-11-16 13:53:32 +00002521 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002522 pch++;
2523 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00002524 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00002525 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00002526 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00002527 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00002528 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00002529 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00002530 }
2531 break;
2532 case '\0':
aliguori376253e2009-03-05 23:01:23 +00002533 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00002534 n = 0;
2535 break;
2536 default:
blueswir17743e582007-09-24 18:39:04 +00002537#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00002538 n = strtoull(pch, &p, 0);
2539#else
bellard9307c4c2004-04-04 12:57:25 +00002540 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00002541#endif
bellard9307c4c2004-04-04 12:57:25 +00002542 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00002543 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00002544 }
2545 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00002546 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002547 pch++;
2548 break;
2549 }
2550 return n;
2551}
2552
2553
aliguori376253e2009-03-05 23:01:23 +00002554static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002555{
blueswir1c2efc952007-09-25 17:28:42 +00002556 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002557 int op;
ths3b46e622007-09-17 08:09:54 +00002558
aliguori376253e2009-03-05 23:01:23 +00002559 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002560 for(;;) {
2561 op = *pch;
2562 if (op != '*' && op != '/' && op != '%')
2563 break;
2564 next();
aliguori376253e2009-03-05 23:01:23 +00002565 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002566 switch(op) {
2567 default:
2568 case '*':
2569 val *= val2;
2570 break;
2571 case '/':
2572 case '%':
ths5fafdf22007-09-16 21:08:06 +00002573 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00002574 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002575 if (op == '/')
2576 val /= val2;
2577 else
2578 val %= val2;
2579 break;
2580 }
2581 }
2582 return val;
2583}
2584
aliguori376253e2009-03-05 23:01:23 +00002585static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002586{
blueswir1c2efc952007-09-25 17:28:42 +00002587 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002588 int op;
bellard9307c4c2004-04-04 12:57:25 +00002589
aliguori376253e2009-03-05 23:01:23 +00002590 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002591 for(;;) {
2592 op = *pch;
2593 if (op != '&' && op != '|' && op != '^')
2594 break;
2595 next();
aliguori376253e2009-03-05 23:01:23 +00002596 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002597 switch(op) {
2598 default:
2599 case '&':
2600 val &= val2;
2601 break;
2602 case '|':
2603 val |= val2;
2604 break;
2605 case '^':
2606 val ^= val2;
2607 break;
2608 }
2609 }
2610 return val;
2611}
2612
aliguori376253e2009-03-05 23:01:23 +00002613static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002614{
blueswir1c2efc952007-09-25 17:28:42 +00002615 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002616 int op;
bellard9307c4c2004-04-04 12:57:25 +00002617
aliguori376253e2009-03-05 23:01:23 +00002618 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002619 for(;;) {
2620 op = *pch;
2621 if (op != '+' && op != '-')
2622 break;
2623 next();
aliguori376253e2009-03-05 23:01:23 +00002624 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002625 if (op == '+')
2626 val += val2;
2627 else
2628 val -= val2;
2629 }
2630 return val;
2631}
2632
aliguori376253e2009-03-05 23:01:23 +00002633static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002634{
2635 pch = *pp;
2636 if (setjmp(expr_env)) {
2637 *pp = pch;
2638 return -1;
2639 }
blueswir1cd390082008-11-16 13:53:32 +00002640 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002641 pch++;
aliguori376253e2009-03-05 23:01:23 +00002642 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002643 *pp = pch;
2644 return 0;
2645}
2646
2647static int get_str(char *buf, int buf_size, const char **pp)
2648{
2649 const char *p;
2650 char *q;
2651 int c;
2652
bellard81d09122004-07-14 17:21:37 +00002653 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002654 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00002655 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002656 p++;
2657 if (*p == '\0') {
2658 fail:
bellard81d09122004-07-14 17:21:37 +00002659 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002660 *pp = p;
2661 return -1;
2662 }
bellard9307c4c2004-04-04 12:57:25 +00002663 if (*p == '\"') {
2664 p++;
2665 while (*p != '\0' && *p != '\"') {
2666 if (*p == '\\') {
2667 p++;
2668 c = *p++;
2669 switch(c) {
2670 case 'n':
2671 c = '\n';
2672 break;
2673 case 'r':
2674 c = '\r';
2675 break;
2676 case '\\':
2677 case '\'':
2678 case '\"':
2679 break;
2680 default:
2681 qemu_printf("unsupported escape code: '\\%c'\n", c);
2682 goto fail;
2683 }
2684 if ((q - buf) < buf_size - 1) {
2685 *q++ = c;
2686 }
2687 } else {
2688 if ((q - buf) < buf_size - 1) {
2689 *q++ = *p;
2690 }
2691 p++;
2692 }
2693 }
2694 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002695 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002696 goto fail;
2697 }
2698 p++;
2699 } else {
blueswir1cd390082008-11-16 13:53:32 +00002700 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002701 if ((q - buf) < buf_size - 1) {
2702 *q++ = *p;
2703 }
2704 p++;
2705 }
bellard9307c4c2004-04-04 12:57:25 +00002706 }
bellard81d09122004-07-14 17:21:37 +00002707 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002708 *pp = p;
2709 return 0;
2710}
2711
Luiz Capitulino4590fd82009-06-09 18:21:30 -03002712/*
2713 * Store the command-name in cmdname, and return a pointer to
2714 * the remaining of the command string.
2715 */
2716static const char *get_command_name(const char *cmdline,
2717 char *cmdname, size_t nlen)
2718{
2719 size_t len;
2720 const char *p, *pstart;
2721
2722 p = cmdline;
2723 while (qemu_isspace(*p))
2724 p++;
2725 if (*p == '\0')
2726 return NULL;
2727 pstart = p;
2728 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2729 p++;
2730 len = p - pstart;
2731 if (len > nlen - 1)
2732 len = nlen - 1;
2733 memcpy(cmdname, pstart, len);
2734 cmdname[len] = '\0';
2735 return p;
2736}
2737
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002738/**
2739 * Read key of 'type' into 'key' and return the current
2740 * 'type' pointer.
2741 */
2742static char *key_get_info(const char *type, char **key)
2743{
2744 size_t len;
2745 char *p, *str;
2746
2747 if (*type == ',')
2748 type++;
2749
2750 p = strchr(type, ':');
2751 if (!p) {
2752 *key = NULL;
2753 return NULL;
2754 }
2755 len = p - type;
2756
2757 str = qemu_malloc(len + 1);
2758 memcpy(str, type, len);
2759 str[len] = '\0';
2760
2761 *key = str;
2762 return ++p;
2763}
2764
bellard9307c4c2004-04-04 12:57:25 +00002765static int default_fmt_format = 'x';
2766static int default_fmt_size = 4;
2767
2768#define MAX_ARGS 16
2769
Anthony Liguoric227f092009-10-01 16:12:16 -05002770static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002771 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002772 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00002773{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03002774 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03002775 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05002776 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002777 char cmdname[256];
2778 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002779 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00002780
2781#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00002782 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00002783#endif
ths3b46e622007-09-17 08:09:54 +00002784
bellard9307c4c2004-04-04 12:57:25 +00002785 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03002786 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
2787 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002788 return NULL;
ths3b46e622007-09-17 08:09:54 +00002789
bellard9307c4c2004-04-04 12:57:25 +00002790 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00002791 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002792 if (compare_cmd(cmdname, cmd->name))
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03002793 break;
bellard9dc39cb2004-03-14 21:38:27 +00002794 }
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03002795
2796 if (cmd->name == NULL) {
2797 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03002798 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03002799 }
bellard9307c4c2004-04-04 12:57:25 +00002800
bellard9307c4c2004-04-04 12:57:25 +00002801 /* parse the parameters */
2802 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00002803 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002804 typestr = key_get_info(typestr, &key);
2805 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00002806 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002807 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00002808 typestr++;
2809 switch(c) {
2810 case 'F':
bellard81d09122004-07-14 17:21:37 +00002811 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002812 case 's':
2813 {
2814 int ret;
ths3b46e622007-09-17 08:09:54 +00002815
blueswir1cd390082008-11-16 13:53:32 +00002816 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002817 p++;
2818 if (*typestr == '?') {
2819 typestr++;
2820 if (*p == '\0') {
2821 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03002822 break;
bellard9307c4c2004-04-04 12:57:25 +00002823 }
2824 }
2825 ret = get_str(buf, sizeof(buf), &p);
2826 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002827 switch(c) {
2828 case 'F':
aliguori376253e2009-03-05 23:01:23 +00002829 monitor_printf(mon, "%s: filename expected\n",
2830 cmdname);
bellard81d09122004-07-14 17:21:37 +00002831 break;
2832 case 'B':
aliguori376253e2009-03-05 23:01:23 +00002833 monitor_printf(mon, "%s: block device name expected\n",
2834 cmdname);
bellard81d09122004-07-14 17:21:37 +00002835 break;
2836 default:
aliguori376253e2009-03-05 23:01:23 +00002837 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002838 break;
2839 }
bellard9307c4c2004-04-04 12:57:25 +00002840 goto fail;
2841 }
Luiz Capitulino53773582009-08-28 15:27:25 -03002842 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00002843 }
2844 break;
2845 case '/':
2846 {
2847 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002848
blueswir1cd390082008-11-16 13:53:32 +00002849 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002850 p++;
2851 if (*p == '/') {
2852 /* format found */
2853 p++;
2854 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00002855 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002856 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00002857 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002858 count = count * 10 + (*p - '0');
2859 p++;
2860 }
2861 }
2862 size = -1;
2863 format = -1;
2864 for(;;) {
2865 switch(*p) {
2866 case 'o':
2867 case 'd':
2868 case 'u':
2869 case 'x':
2870 case 'i':
2871 case 'c':
2872 format = *p++;
2873 break;
2874 case 'b':
2875 size = 1;
2876 p++;
2877 break;
2878 case 'h':
2879 size = 2;
2880 p++;
2881 break;
2882 case 'w':
2883 size = 4;
2884 p++;
2885 break;
2886 case 'g':
2887 case 'L':
2888 size = 8;
2889 p++;
2890 break;
2891 default:
2892 goto next;
2893 }
2894 }
2895 next:
blueswir1cd390082008-11-16 13:53:32 +00002896 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00002897 monitor_printf(mon, "invalid char in format: '%c'\n",
2898 *p);
bellard9307c4c2004-04-04 12:57:25 +00002899 goto fail;
2900 }
bellard9307c4c2004-04-04 12:57:25 +00002901 if (format < 0)
2902 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002903 if (format != 'i') {
2904 /* for 'i', not specifying a size gives -1 as size */
2905 if (size < 0)
2906 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00002907 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00002908 }
bellard9307c4c2004-04-04 12:57:25 +00002909 default_fmt_format = format;
2910 } else {
2911 count = 1;
2912 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002913 if (format != 'i') {
2914 size = default_fmt_size;
2915 } else {
2916 size = -1;
2917 }
bellard9307c4c2004-04-04 12:57:25 +00002918 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03002919 qdict_put(qdict, "count", qint_from_int(count));
2920 qdict_put(qdict, "format", qint_from_int(format));
2921 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00002922 }
2923 break;
2924 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002925 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002926 {
blueswir1c2efc952007-09-25 17:28:42 +00002927 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002928
blueswir1cd390082008-11-16 13:53:32 +00002929 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002930 p++;
bellard34405572004-06-08 00:55:58 +00002931 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002932 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03002933 if (*p == '\0') {
2934 typestr++;
2935 break;
2936 }
bellard34405572004-06-08 00:55:58 +00002937 } else {
2938 if (*p == '.') {
2939 p++;
blueswir1cd390082008-11-16 13:53:32 +00002940 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00002941 p++;
bellard34405572004-06-08 00:55:58 +00002942 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03002943 typestr++;
2944 break;
bellard34405572004-06-08 00:55:58 +00002945 }
2946 }
bellard13224a82006-07-14 22:03:35 +00002947 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002948 }
aliguori376253e2009-03-05 23:01:23 +00002949 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00002950 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03002951 /* Check if 'i' is greater than 32-bit */
2952 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
2953 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
2954 monitor_printf(mon, "integer is for 32-bit values\n");
2955 goto fail;
2956 }
Luiz Capitulino53773582009-08-28 15:27:25 -03002957 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00002958 }
2959 break;
2960 case '-':
2961 {
2962 int has_option;
2963 /* option */
ths3b46e622007-09-17 08:09:54 +00002964
bellard9307c4c2004-04-04 12:57:25 +00002965 c = *typestr++;
2966 if (c == '\0')
2967 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00002968 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002969 p++;
2970 has_option = 0;
2971 if (*p == '-') {
2972 p++;
2973 if (*p != c) {
aliguori376253e2009-03-05 23:01:23 +00002974 monitor_printf(mon, "%s: unsupported option -%c\n",
2975 cmdname, *p);
bellard9307c4c2004-04-04 12:57:25 +00002976 goto fail;
2977 }
2978 p++;
2979 has_option = 1;
2980 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03002981 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00002982 }
2983 break;
2984 default:
2985 bad_type:
aliguori376253e2009-03-05 23:01:23 +00002986 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00002987 goto fail;
2988 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03002989 qemu_free(key);
2990 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00002991 }
2992 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00002993 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002994 p++;
2995 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00002996 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
2997 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00002998 goto fail;
2999 }
3000
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003001 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003002
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003003fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003004 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003005 return NULL;
3006}
3007
3008static void monitor_handle_command(Monitor *mon, const char *cmdline)
3009{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003010 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003011 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003012
3013 qdict = qdict_new();
3014
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003015 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003016 if (cmd) {
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003017 qemu_errors_to_mon(mon);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003018 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003019 qemu_errors_to_previous();
3020 }
3021
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003022 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003023}
3024
bellard81d09122004-07-14 17:21:37 +00003025static void cmd_completion(const char *name, const char *list)
3026{
3027 const char *p, *pstart;
3028 char cmd[128];
3029 int len;
3030
3031 p = list;
3032 for(;;) {
3033 pstart = p;
3034 p = strchr(p, '|');
3035 if (!p)
3036 p = pstart + strlen(pstart);
3037 len = p - pstart;
3038 if (len > sizeof(cmd) - 2)
3039 len = sizeof(cmd) - 2;
3040 memcpy(cmd, pstart, len);
3041 cmd[len] = '\0';
3042 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003043 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003044 }
3045 if (*p == '\0')
3046 break;
3047 p++;
3048 }
3049}
3050
3051static void file_completion(const char *input)
3052{
3053 DIR *ffs;
3054 struct dirent *d;
3055 char path[1024];
3056 char file[1024], file_prefix[1024];
3057 int input_path_len;
3058 const char *p;
3059
ths5fafdf22007-09-16 21:08:06 +00003060 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003061 if (!p) {
3062 input_path_len = 0;
3063 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003064 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003065 } else {
3066 input_path_len = p - input + 1;
3067 memcpy(path, input, input_path_len);
3068 if (input_path_len > sizeof(path) - 1)
3069 input_path_len = sizeof(path) - 1;
3070 path[input_path_len] = '\0';
3071 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3072 }
3073#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003074 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3075 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003076#endif
3077 ffs = opendir(path);
3078 if (!ffs)
3079 return;
3080 for(;;) {
3081 struct stat sb;
3082 d = readdir(ffs);
3083 if (!d)
3084 break;
3085 if (strstart(d->d_name, file_prefix, NULL)) {
3086 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003087 if (input_path_len < sizeof(file))
3088 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3089 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003090 /* stat the file to find out if it's a directory.
3091 * In that case add a slash to speed up typing long paths
3092 */
3093 stat(file, &sb);
3094 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003095 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003096 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003097 }
3098 }
3099 closedir(ffs);
3100}
3101
aliguori51de9762009-03-05 23:00:43 +00003102static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003103{
aliguori51de9762009-03-05 23:00:43 +00003104 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003105 const char *input = opaque;
3106
3107 if (input[0] == '\0' ||
3108 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003109 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003110 }
3111}
3112
3113/* NOTE: this parser is an approximate form of the real command parser */
3114static void parse_cmdline(const char *cmdline,
3115 int *pnb_args, char **args)
3116{
3117 const char *p;
3118 int nb_args, ret;
3119 char buf[1024];
3120
3121 p = cmdline;
3122 nb_args = 0;
3123 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003124 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003125 p++;
3126 if (*p == '\0')
3127 break;
3128 if (nb_args >= MAX_ARGS)
3129 break;
3130 ret = get_str(buf, sizeof(buf), &p);
3131 args[nb_args] = qemu_strdup(buf);
3132 nb_args++;
3133 if (ret < 0)
3134 break;
3135 }
3136 *pnb_args = nb_args;
3137}
3138
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003139static const char *next_arg_type(const char *typestr)
3140{
3141 const char *p = strchr(typestr, ':');
3142 return (p != NULL ? ++p : typestr);
3143}
3144
aliguori4c36ba32009-03-05 23:01:37 +00003145static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003146{
3147 const char *cmdname;
3148 char *args[MAX_ARGS];
3149 int nb_args, i, len;
3150 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003151 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003152 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003153
3154 parse_cmdline(cmdline, &nb_args, args);
3155#ifdef DEBUG_COMPLETION
3156 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003157 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003158 }
3159#endif
3160
3161 /* if the line ends with a space, it means we want to complete the
3162 next arg */
3163 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003164 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003165 if (nb_args >= MAX_ARGS)
3166 return;
3167 args[nb_args++] = qemu_strdup("");
3168 }
3169 if (nb_args <= 1) {
3170 /* command completion */
3171 if (nb_args == 0)
3172 cmdname = "";
3173 else
3174 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003175 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003176 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003177 cmd_completion(cmdname, cmd->name);
3178 }
3179 } else {
3180 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00003181 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003182 if (compare_cmd(args[0], cmd->name))
3183 goto found;
3184 }
3185 return;
3186 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003187 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003188 for(i = 0; i < nb_args - 2; i++) {
3189 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003190 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003191 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003192 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003193 }
3194 }
3195 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00003196 if (*ptype == '-' && ptype[1] != '\0') {
3197 ptype += 2;
3198 }
bellard81d09122004-07-14 17:21:37 +00003199 switch(*ptype) {
3200 case 'F':
3201 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00003202 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003203 file_completion(str);
3204 break;
3205 case 'B':
3206 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00003207 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003208 bdrv_iterate(block_completion_it, (void *)str);
3209 break;
bellard7fe48482004-10-09 18:08:01 +00003210 case 's':
3211 /* XXX: more generic ? */
3212 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00003213 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00003214 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3215 cmd_completion(str, cmd->name);
3216 }
bellard64866c32006-05-07 18:03:31 +00003217 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00003218 char *sep = strrchr(str, '-');
3219 if (sep)
3220 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00003221 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00003222 for(key = key_defs; key->name != NULL; key++) {
3223 cmd_completion(str, key->name);
3224 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02003225 } else if (!strcmp(cmd->name, "help|?")) {
3226 readline_set_completion_index(cur_mon->rs, strlen(str));
3227 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3228 cmd_completion(str, cmd->name);
3229 }
bellard7fe48482004-10-09 18:08:01 +00003230 }
3231 break;
bellard81d09122004-07-14 17:21:37 +00003232 default:
3233 break;
3234 }
3235 }
3236 for(i = 0; i < nb_args; i++)
3237 qemu_free(args[i]);
3238}
3239
aliguori731b0362009-03-05 23:01:42 +00003240static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00003241{
aliguori731b0362009-03-05 23:01:42 +00003242 Monitor *mon = opaque;
3243
3244 return (mon->suspend_cnt == 0) ? 128 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00003245}
3246
aliguori731b0362009-03-05 23:01:42 +00003247static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00003248{
aliguori731b0362009-03-05 23:01:42 +00003249 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00003250 int i;
aliguori376253e2009-03-05 23:01:23 +00003251
aliguori731b0362009-03-05 23:01:42 +00003252 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00003253
aliguoricde76ee2009-03-05 23:01:51 +00003254 if (cur_mon->rs) {
3255 for (i = 0; i < size; i++)
3256 readline_handle_byte(cur_mon->rs, buf[i]);
3257 } else {
3258 if (size == 0 || buf[size - 1] != 0)
3259 monitor_printf(cur_mon, "corrupted command\n");
3260 else
3261 monitor_handle_command(cur_mon, (char *)buf);
3262 }
aliguori731b0362009-03-05 23:01:42 +00003263
3264 cur_mon = old_mon;
3265}
aliguorid8f44602008-10-06 13:52:44 +00003266
aliguori376253e2009-03-05 23:01:23 +00003267static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003268{
aliguori731b0362009-03-05 23:01:42 +00003269 monitor_suspend(mon);
aliguori376253e2009-03-05 23:01:23 +00003270 monitor_handle_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00003271 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00003272}
3273
aliguoricde76ee2009-03-05 23:01:51 +00003274int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003275{
aliguoricde76ee2009-03-05 23:01:51 +00003276 if (!mon->rs)
3277 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00003278 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00003279 return 0;
aliguorid8f44602008-10-06 13:52:44 +00003280}
3281
aliguori376253e2009-03-05 23:01:23 +00003282void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003283{
aliguoricde76ee2009-03-05 23:01:51 +00003284 if (!mon->rs)
3285 return;
aliguori731b0362009-03-05 23:01:42 +00003286 if (--mon->suspend_cnt == 0)
3287 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00003288}
3289
aliguori731b0362009-03-05 23:01:42 +00003290static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00003291{
aliguori376253e2009-03-05 23:01:23 +00003292 Monitor *mon = opaque;
3293
aliguori2724b182009-03-05 23:01:47 +00003294 switch (event) {
3295 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003296 mon->mux_out = 0;
3297 if (mon->reset_seen) {
3298 readline_restart(mon->rs);
3299 monitor_resume(mon);
3300 monitor_flush(mon);
3301 } else {
3302 mon->suspend_cnt = 0;
3303 }
aliguori2724b182009-03-05 23:01:47 +00003304 break;
ths86e94de2007-01-05 22:01:59 +00003305
aliguori2724b182009-03-05 23:01:47 +00003306 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003307 if (mon->reset_seen) {
3308 if (mon->suspend_cnt == 0) {
3309 monitor_printf(mon, "\n");
3310 }
3311 monitor_flush(mon);
3312 monitor_suspend(mon);
3313 } else {
3314 mon->suspend_cnt++;
3315 }
3316 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00003317 break;
3318
3319 case CHR_EVENT_RESET:
3320 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3321 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003322 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00003323 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003324 }
3325 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00003326 break;
3327 }
ths86e94de2007-01-05 22:01:59 +00003328}
3329
aliguori76655d62009-03-06 20:27:37 +00003330
3331/*
3332 * Local variables:
3333 * c-indent-level: 4
3334 * c-basic-offset: 4
3335 * tab-width: 8
3336 * End:
3337 */
3338
aliguori731b0362009-03-05 23:01:42 +00003339void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00003340{
aliguori731b0362009-03-05 23:01:42 +00003341 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00003342 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00003343
3344 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00003345 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00003346 is_first_init = 0;
3347 }
aliguori87127162009-03-05 23:01:29 +00003348
3349 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00003350
aliguori87127162009-03-05 23:01:29 +00003351 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00003352 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00003353 if (flags & MONITOR_USE_READLINE) {
3354 mon->rs = readline_init(mon, monitor_find_completion);
3355 monitor_read_command(mon, 0);
3356 }
aliguori87127162009-03-05 23:01:29 +00003357
aliguori731b0362009-03-05 23:01:42 +00003358 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event,
3359 mon);
aliguori87127162009-03-05 23:01:29 +00003360
Blue Swirl72cf2d42009-09-12 07:36:22 +00003361 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00003362 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00003363 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00003364}
3365
aliguori376253e2009-03-05 23:01:23 +00003366static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003367{
aliguoribb5fc202009-03-05 23:01:15 +00003368 BlockDriverState *bs = opaque;
3369 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00003370
aliguoribb5fc202009-03-05 23:01:15 +00003371 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00003372 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00003373 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00003374 }
aliguori731b0362009-03-05 23:01:42 +00003375 if (mon->password_completion_cb)
3376 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00003377
aliguori731b0362009-03-05 23:01:42 +00003378 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00003379}
aliguoric0f4ce72009-03-05 23:01:01 +00003380
aliguori376253e2009-03-05 23:01:23 +00003381void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00003382 BlockDriverCompletionFunc *completion_cb,
3383 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00003384{
aliguoricde76ee2009-03-05 23:01:51 +00003385 int err;
3386
aliguoribb5fc202009-03-05 23:01:15 +00003387 if (!bdrv_key_required(bs)) {
3388 if (completion_cb)
3389 completion_cb(opaque, 0);
3390 return;
3391 }
aliguoric0f4ce72009-03-05 23:01:01 +00003392
aliguori376253e2009-03-05 23:01:23 +00003393 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
3394 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00003395
aliguori731b0362009-03-05 23:01:42 +00003396 mon->password_completion_cb = completion_cb;
3397 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00003398
aliguoricde76ee2009-03-05 23:01:51 +00003399 err = monitor_read_password(mon, bdrv_password_cb, bs);
3400
3401 if (err && completion_cb)
3402 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00003403}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003404
3405typedef struct QemuErrorSink QemuErrorSink;
3406struct QemuErrorSink {
3407 enum {
3408 ERR_SINK_FILE,
3409 ERR_SINK_MONITOR,
3410 } dest;
3411 union {
3412 FILE *fp;
3413 Monitor *mon;
3414 };
3415 QemuErrorSink *previous;
3416};
3417
Blue Swirl528e93a2009-08-31 15:14:40 +00003418static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003419
3420void qemu_errors_to_file(FILE *fp)
3421{
3422 QemuErrorSink *sink;
3423
3424 sink = qemu_mallocz(sizeof(*sink));
3425 sink->dest = ERR_SINK_FILE;
3426 sink->fp = fp;
3427 sink->previous = qemu_error_sink;
3428 qemu_error_sink = sink;
3429}
3430
3431void qemu_errors_to_mon(Monitor *mon)
3432{
3433 QemuErrorSink *sink;
3434
3435 sink = qemu_mallocz(sizeof(*sink));
3436 sink->dest = ERR_SINK_MONITOR;
3437 sink->mon = mon;
3438 sink->previous = qemu_error_sink;
3439 qemu_error_sink = sink;
3440}
3441
3442void qemu_errors_to_previous(void)
3443{
3444 QemuErrorSink *sink;
3445
3446 assert(qemu_error_sink != NULL);
3447 sink = qemu_error_sink;
3448 qemu_error_sink = sink->previous;
3449 qemu_free(sink);
3450}
3451
3452void qemu_error(const char *fmt, ...)
3453{
3454 va_list args;
3455
3456 assert(qemu_error_sink != NULL);
3457 switch (qemu_error_sink->dest) {
3458 case ERR_SINK_FILE:
3459 va_start(args, fmt);
3460 vfprintf(qemu_error_sink->fp, fmt, args);
3461 va_end(args);
3462 break;
3463 case ERR_SINK_MONITOR:
3464 va_start(args, fmt);
3465 monitor_vprintf(qemu_error_sink->mon, fmt, args);
3466 va_end(args);
3467 break;
3468 }
3469}