blob: 75c8663a1ee712c43643b177cab341c135afb6f5 [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"
26#include "hw/usb.h"
27#include "hw/pcmcia.h"
28#include "hw/pc.h"
29#include "hw/pci.h"
30#include "gdbstub.h"
31#include "net.h"
32#include "qemu-char.h"
33#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000034#include "monitor.h"
35#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000036#include "console.h"
37#include "block.h"
38#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000039#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000040#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000041#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000042#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000043#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000044#include "acl.h"
ths6a5bd302007-12-03 17:05:38 +000045
bellard9dc39cb2004-03-14 21:38:27 +000046//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000047//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000048
bellard9307c4c2004-04-04 12:57:25 +000049/*
50 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000051 *
bellard9307c4c2004-04-04 12:57:25 +000052 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000053 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000054 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000055 * 'i' 32 bit integer
56 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000057 * '/' optional gdb-like print format (like "/10x")
58 *
59 * '?' optional type (for 'F', 's' and 'i')
60 *
61 */
62
aliguori376253e2009-03-05 23:01:23 +000063typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000064 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000065 const char *args_type;
blueswir1a5f1b962008-08-17 20:21:51 +000066 void *handler;
bellard9dc39cb2004-03-14 21:38:27 +000067 const char *params;
68 const char *help;
aliguori376253e2009-03-05 23:01:23 +000069} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +000070
aliguori87127162009-03-05 23:01:29 +000071struct Monitor {
72 CharDriverState *chr;
aliguori731b0362009-03-05 23:01:42 +000073 int flags;
74 int suspend_cnt;
75 uint8_t outbuf[1024];
76 int outbuf_index;
77 ReadLineState *rs;
78 CPUState *mon_cpu;
79 BlockDriverCompletionFunc *password_completion_cb;
80 void *password_opaque;
aliguori87127162009-03-05 23:01:29 +000081 LIST_ENTRY(Monitor) entry;
82};
83
84static LIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +000085
aliguori376253e2009-03-05 23:01:23 +000086static const mon_cmd_t mon_cmds[];
87static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +000088
aliguori87127162009-03-05 23:01:29 +000089Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +000090
aliguori731b0362009-03-05 23:01:42 +000091static void monitor_command_cb(Monitor *mon, const char *cmdline,
92 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +000093
aliguori731b0362009-03-05 23:01:42 +000094static void monitor_read_command(Monitor *mon, int show_prompt)
95{
96 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
97 if (show_prompt)
98 readline_show_prompt(mon->rs);
99}
bellard6a00d602005-11-21 23:25:50 +0000100
aliguoricde76ee2009-03-05 23:01:51 +0000101static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
102 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000103{
aliguoricde76ee2009-03-05 23:01:51 +0000104 if (mon->rs) {
105 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
106 /* prompt is printed on return from the command handler */
107 return 0;
108 } else {
109 monitor_printf(mon, "terminal does not support password prompting\n");
110 return -ENOTTY;
111 }
aliguoribb5fc202009-03-05 23:01:15 +0000112}
113
aliguori376253e2009-03-05 23:01:23 +0000114void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000115{
aliguori731b0362009-03-05 23:01:42 +0000116 if (mon && mon->outbuf_index != 0 && mon->chr->focus == 0) {
117 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
118 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000119 }
120}
121
122/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000123static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000124{
ths60fe76f2007-12-16 03:02:09 +0000125 char c;
aliguori731b0362009-03-05 23:01:42 +0000126
127 if (!mon)
128 return;
129
bellard7e2515e2004-08-01 21:52:19 +0000130 for(;;) {
131 c = *str++;
132 if (c == '\0')
133 break;
bellard7ba12602006-07-14 20:26:42 +0000134 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000135 mon->outbuf[mon->outbuf_index++] = '\r';
136 mon->outbuf[mon->outbuf_index++] = c;
137 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
138 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000139 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000140 }
141}
142
aliguori376253e2009-03-05 23:01:23 +0000143void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000144{
145 char buf[4096];
146 vsnprintf(buf, sizeof(buf), fmt, ap);
aliguori376253e2009-03-05 23:01:23 +0000147 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000148}
149
aliguori376253e2009-03-05 23:01:23 +0000150void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000151{
152 va_list ap;
153 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000154 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000155 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000156}
157
aliguori376253e2009-03-05 23:01:23 +0000158void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000159{
160 int i;
161
162 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000163 switch (filename[i]) {
164 case ' ':
165 case '"':
166 case '\\':
167 monitor_printf(mon, "\\%c", filename[i]);
168 break;
169 case '\t':
170 monitor_printf(mon, "\\t");
171 break;
172 case '\r':
173 monitor_printf(mon, "\\r");
174 break;
175 case '\n':
176 monitor_printf(mon, "\\n");
177 break;
178 default:
179 monitor_printf(mon, "%c", filename[i]);
180 break;
181 }
thsfef30742006-12-22 14:11:32 +0000182 }
183}
184
bellard7fe48482004-10-09 18:08:01 +0000185static int monitor_fprintf(FILE *stream, const char *fmt, ...)
186{
187 va_list ap;
188 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000189 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000190 va_end(ap);
191 return 0;
192}
193
bellard9dc39cb2004-03-14 21:38:27 +0000194static int compare_cmd(const char *name, const char *list)
195{
196 const char *p, *pstart;
197 int len;
198 len = strlen(name);
199 p = list;
200 for(;;) {
201 pstart = p;
202 p = strchr(p, '|');
203 if (!p)
204 p = pstart + strlen(pstart);
205 if ((p - pstart) == len && !memcmp(pstart, name, len))
206 return 1;
207 if (*p == '\0')
208 break;
209 p++;
210 }
211 return 0;
212}
213
aliguori376253e2009-03-05 23:01:23 +0000214static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
215 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000216{
aliguori376253e2009-03-05 23:01:23 +0000217 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000218
219 for(cmd = cmds; cmd->name != NULL; cmd++) {
220 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000221 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
222 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000223 }
224}
225
aliguori376253e2009-03-05 23:01:23 +0000226static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000227{
228 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000229 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000230 } else {
aliguori376253e2009-03-05 23:01:23 +0000231 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000232 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000233 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000234 monitor_printf(mon, "Log items (comma separated):\n");
235 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000236 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000237 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000238 }
239 }
bellard9dc39cb2004-03-14 21:38:27 +0000240 }
241}
242
aliguori376253e2009-03-05 23:01:23 +0000243static void do_commit(Monitor *mon, const char *device)
bellard9dc39cb2004-03-14 21:38:27 +0000244{
bellard7954c732006-08-01 15:52:40 +0000245 int i, all_devices;
balrog2dc7b602007-05-24 18:53:22 +0000246
bellard7954c732006-08-01 15:52:40 +0000247 all_devices = !strcmp(device, "all");
thse4bcb142007-12-02 04:51:10 +0000248 for (i = 0; i < nb_drives; i++) {
ths5fafdf22007-09-16 21:08:06 +0000249 if (all_devices ||
thse4bcb142007-12-02 04:51:10 +0000250 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
251 bdrv_commit(drives_table[i].bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000252 }
253}
254
aliguori376253e2009-03-05 23:01:23 +0000255static void do_info(Monitor *mon, const char *item)
bellard9dc39cb2004-03-14 21:38:27 +0000256{
aliguori376253e2009-03-05 23:01:23 +0000257 const mon_cmd_t *cmd;
258 void (*handler)(Monitor *);
bellard9dc39cb2004-03-14 21:38:27 +0000259
bellard9307c4c2004-04-04 12:57:25 +0000260 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000261 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000262 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000263 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000264 goto found;
265 }
266 help:
aliguori376253e2009-03-05 23:01:23 +0000267 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000268 return;
269 found:
blueswir1a5f1b962008-08-17 20:21:51 +0000270 handler = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +0000271 handler(mon);
bellard9dc39cb2004-03-14 21:38:27 +0000272}
273
aliguori376253e2009-03-05 23:01:23 +0000274static void do_info_version(Monitor *mon)
bellard9bc9d1c2004-10-10 15:15:51 +0000275{
aliguori376253e2009-03-05 23:01:23 +0000276 monitor_printf(mon, "%s\n", QEMU_VERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000277}
278
aliguori376253e2009-03-05 23:01:23 +0000279static void do_info_name(Monitor *mon)
thsc35734b2007-03-19 15:17:08 +0000280{
281 if (qemu_name)
aliguori376253e2009-03-05 23:01:23 +0000282 monitor_printf(mon, "%s\n", qemu_name);
thsc35734b2007-03-19 15:17:08 +0000283}
284
aurel32bf4f74c2008-12-18 22:42:34 +0000285#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +0000286static void do_info_hpet(Monitor *mon)
aliguori16b29ae2008-12-17 23:28:44 +0000287{
aliguori376253e2009-03-05 23:01:23 +0000288 monitor_printf(mon, "HPET is %s by QEMU\n",
289 (no_hpet) ? "disabled" : "enabled");
aliguori16b29ae2008-12-17 23:28:44 +0000290}
aurel32bf4f74c2008-12-18 22:42:34 +0000291#endif
aliguori16b29ae2008-12-17 23:28:44 +0000292
aliguori376253e2009-03-05 23:01:23 +0000293static void do_info_uuid(Monitor *mon)
blueswir1f1f23ad2008-09-18 18:30:20 +0000294{
aliguori376253e2009-03-05 23:01:23 +0000295 monitor_printf(mon, UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1],
296 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
297 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
298 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
299 qemu_uuid[14], qemu_uuid[15]);
thsa36e69d2007-12-02 05:18:19 +0000300}
301
bellard6a00d602005-11-21 23:25:50 +0000302/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000303static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000304{
305 CPUState *env;
306
307 for(env = first_cpu; env != NULL; env = env->next_cpu) {
308 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000309 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000310 return 0;
311 }
312 }
313 return -1;
314}
315
pbrook9596ebb2007-11-18 01:44:38 +0000316static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000317{
aliguori731b0362009-03-05 23:01:42 +0000318 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000319 mon_set_cpu(0);
320 }
aliguorid1546152009-03-12 20:12:57 +0000321 cpu_synchronize_state(cur_mon->mon_cpu, 0);
aliguori731b0362009-03-05 23:01:42 +0000322 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000323}
324
aliguori376253e2009-03-05 23:01:23 +0000325static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000326{
bellard6a00d602005-11-21 23:25:50 +0000327 CPUState *env;
328 env = mon_get_cpu();
329 if (!env)
330 return;
bellard9307c4c2004-04-04 12:57:25 +0000331#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000332 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000333 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000334#else
aliguori376253e2009-03-05 23:01:23 +0000335 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000336 0);
bellard9307c4c2004-04-04 12:57:25 +0000337#endif
338}
339
aliguori376253e2009-03-05 23:01:23 +0000340static void do_info_cpus(Monitor *mon)
bellard6a00d602005-11-21 23:25:50 +0000341{
342 CPUState *env;
343
344 /* just to set the default cpu if not already done */
345 mon_get_cpu();
346
347 for(env = first_cpu; env != NULL; env = env->next_cpu) {
aliguorid1546152009-03-12 20:12:57 +0000348 cpu_synchronize_state(env, 0);
aliguori376253e2009-03-05 23:01:23 +0000349 monitor_printf(mon, "%c CPU #%d:",
aliguori731b0362009-03-05 23:01:42 +0000350 (env == mon->mon_cpu) ? '*' : ' ',
aliguori376253e2009-03-05 23:01:23 +0000351 env->cpu_index);
bellard6a00d602005-11-21 23:25:50 +0000352#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +0000353 monitor_printf(mon, " pc=0x" TARGET_FMT_lx,
354 env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000355#elif defined(TARGET_PPC)
aliguori376253e2009-03-05 23:01:23 +0000356 monitor_printf(mon, " nip=0x" TARGET_FMT_lx, env->nip);
bellardba3c64f2005-12-05 20:31:52 +0000357#elif defined(TARGET_SPARC)
aliguori376253e2009-03-05 23:01:23 +0000358 monitor_printf(mon, " pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx,
359 env->pc, env->npc);
thsead93602007-09-06 00:18:15 +0000360#elif defined(TARGET_MIPS)
aliguori376253e2009-03-05 23:01:23 +0000361 monitor_printf(mon, " PC=0x" TARGET_FMT_lx, env->active_tc.PC);
bellardce5232c2008-05-28 17:14:10 +0000362#endif
thsead93602007-09-06 00:18:15 +0000363 if (env->halted)
aliguori376253e2009-03-05 23:01:23 +0000364 monitor_printf(mon, " (halted)");
365 monitor_printf(mon, "\n");
bellard6a00d602005-11-21 23:25:50 +0000366 }
367}
368
aliguori376253e2009-03-05 23:01:23 +0000369static void do_cpu_set(Monitor *mon, int index)
bellard6a00d602005-11-21 23:25:50 +0000370{
371 if (mon_set_cpu(index) < 0)
aliguori376253e2009-03-05 23:01:23 +0000372 monitor_printf(mon, "Invalid CPU index\n");
bellard6a00d602005-11-21 23:25:50 +0000373}
374
aliguori376253e2009-03-05 23:01:23 +0000375static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000376{
aliguori376253e2009-03-05 23:01:23 +0000377 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000378}
379
aliguori376253e2009-03-05 23:01:23 +0000380static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000381{
382 int i;
bellard7e2515e2004-08-01 21:52:19 +0000383 const char *str;
ths3b46e622007-09-17 08:09:54 +0000384
aliguoricde76ee2009-03-05 23:01:51 +0000385 if (!mon->rs)
386 return;
bellard7e2515e2004-08-01 21:52:19 +0000387 i = 0;
388 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000389 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000390 if (!str)
391 break;
aliguori376253e2009-03-05 23:01:23 +0000392 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000393 i++;
bellardaa455482004-04-04 13:07:25 +0000394 }
395}
396
j_mayer76a66252007-03-07 08:32:30 +0000397#if defined(TARGET_PPC)
398/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000399static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000400{
401 CPUState *env;
402
403 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000404 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000405}
406#endif
407
aliguori376253e2009-03-05 23:01:23 +0000408static void do_quit(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000409{
410 exit(0);
411}
412
aliguori376253e2009-03-05 23:01:23 +0000413static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000414{
415 if (bdrv_is_inserted(bs)) {
416 if (!force) {
417 if (!bdrv_is_removable(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000418 monitor_printf(mon, "device is not removable\n");
bellard9dc39cb2004-03-14 21:38:27 +0000419 return -1;
420 }
421 if (bdrv_is_locked(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000422 monitor_printf(mon, "device is locked\n");
bellard9dc39cb2004-03-14 21:38:27 +0000423 return -1;
424 }
425 }
426 bdrv_close(bs);
427 }
428 return 0;
429}
430
aliguori376253e2009-03-05 23:01:23 +0000431static void do_eject(Monitor *mon, int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000432{
433 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000434
bellard9307c4c2004-04-04 12:57:25 +0000435 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000436 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000437 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000438 return;
439 }
aliguori376253e2009-03-05 23:01:23 +0000440 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +0000441}
442
aliguori376253e2009-03-05 23:01:23 +0000443static void do_change_block(Monitor *mon, const char *device,
444 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000445{
446 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000447 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000448
bellard9307c4c2004-04-04 12:57:25 +0000449 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000450 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000451 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000452 return;
453 }
aurel322ecea9b2008-06-18 22:10:01 +0000454 if (fmt) {
455 drv = bdrv_find_format(fmt);
456 if (!drv) {
aliguori376253e2009-03-05 23:01:23 +0000457 monitor_printf(mon, "invalid format %s\n", fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000458 return;
459 }
460 }
aliguori376253e2009-03-05 23:01:23 +0000461 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +0000462 return;
aurel322ecea9b2008-06-18 22:10:01 +0000463 bdrv_open2(bs, filename, 0, drv);
aliguori376253e2009-03-05 23:01:23 +0000464 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000465}
466
aliguori376253e2009-03-05 23:01:23 +0000467static void change_vnc_password_cb(Monitor *mon, const char *password,
468 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000469{
470 if (vnc_display_password(NULL, password) < 0)
aliguori376253e2009-03-05 23:01:23 +0000471 monitor_printf(mon, "could not set VNC server password\n");
aliguoribb5fc202009-03-05 23:01:15 +0000472
aliguori731b0362009-03-05 23:01:42 +0000473 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000474}
475
aliguori376253e2009-03-05 23:01:23 +0000476static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000477{
ths70848512007-08-25 01:37:05 +0000478 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000479 strcmp(target, "password") == 0) {
480 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000481 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000482 strncpy(password, arg, sizeof(password));
483 password[sizeof(password) - 1] = '\0';
aliguori376253e2009-03-05 23:01:23 +0000484 change_vnc_password_cb(mon, password, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000485 } else {
aliguori376253e2009-03-05 23:01:23 +0000486 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000487 }
ths70848512007-08-25 01:37:05 +0000488 } else {
aliguori28a76be2009-03-06 20:27:40 +0000489 if (vnc_display_open(NULL, target) < 0)
aliguori376253e2009-03-05 23:01:23 +0000490 monitor_printf(mon, "could not start VNC server on %s\n", target);
ths70848512007-08-25 01:37:05 +0000491 }
thse25a5822007-08-25 01:36:20 +0000492}
493
aliguori376253e2009-03-05 23:01:23 +0000494static void do_change(Monitor *mon, const char *device, const char *target,
495 const char *arg)
thse25a5822007-08-25 01:36:20 +0000496{
497 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +0000498 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000499 } else {
aliguori28a76be2009-03-06 20:27:40 +0000500 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000501 }
502}
503
aliguori376253e2009-03-05 23:01:23 +0000504static void do_screen_dump(Monitor *mon, const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000505{
pbrook95219892006-04-09 01:06:34 +0000506 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000507}
508
aliguori376253e2009-03-05 23:01:23 +0000509static void do_logfile(Monitor *mon, const char *filename)
pbrooke735b912007-06-30 13:53:24 +0000510{
511 cpu_set_log_filename(filename);
512}
513
aliguori376253e2009-03-05 23:01:23 +0000514static void do_log(Monitor *mon, const char *items)
bellardf193c792004-03-21 17:06:25 +0000515{
516 int mask;
ths3b46e622007-09-17 08:09:54 +0000517
bellard9307c4c2004-04-04 12:57:25 +0000518 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000519 mask = 0;
520 } else {
bellard9307c4c2004-04-04 12:57:25 +0000521 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000522 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +0000523 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +0000524 return;
525 }
526 }
527 cpu_set_log(mask);
528}
529
aliguori376253e2009-03-05 23:01:23 +0000530static void do_stop(Monitor *mon)
bellard8a7ddc32004-03-31 19:00:16 +0000531{
532 vm_stop(EXCP_INTERRUPT);
533}
534
aliguoribb5fc202009-03-05 23:01:15 +0000535static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +0000536
aliguori376253e2009-03-05 23:01:23 +0000537struct bdrv_iterate_context {
538 Monitor *mon;
539 int err;
540};
aliguoric0f4ce72009-03-05 23:01:01 +0000541
aliguori376253e2009-03-05 23:01:23 +0000542static void do_cont(Monitor *mon)
543{
544 struct bdrv_iterate_context context = { mon, 0 };
545
546 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +0000547 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +0000548 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +0000549 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +0000550}
551
aliguoribb5fc202009-03-05 23:01:15 +0000552static void bdrv_key_cb(void *opaque, int err)
553{
aliguori376253e2009-03-05 23:01:23 +0000554 Monitor *mon = opaque;
555
aliguoribb5fc202009-03-05 23:01:15 +0000556 /* another key was set successfully, retry to continue */
557 if (!err)
aliguori376253e2009-03-05 23:01:23 +0000558 do_cont(mon);
aliguoribb5fc202009-03-05 23:01:15 +0000559}
560
561static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
562{
aliguori376253e2009-03-05 23:01:23 +0000563 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +0000564
aliguori376253e2009-03-05 23:01:23 +0000565 if (!context->err && bdrv_key_required(bs)) {
566 context->err = -EBUSY;
567 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
568 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +0000569 }
570}
571
bellard67b915a2004-03-31 23:37:16 +0000572#ifdef CONFIG_GDBSTUB
aliguori59030a82009-04-05 18:43:41 +0000573static void do_gdbserver(Monitor *mon, const char *device)
bellard8a7ddc32004-03-31 19:00:16 +0000574{
aliguori59030a82009-04-05 18:43:41 +0000575 if (!device)
576 device = "tcp::" DEFAULT_GDBSTUB_PORT;
577 if (gdbserver_start(device) < 0) {
578 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
579 device);
580 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +0000581 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +0000582 } else {
aliguori59030a82009-04-05 18:43:41 +0000583 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
584 device);
bellard8a7ddc32004-03-31 19:00:16 +0000585 }
586}
bellard67b915a2004-03-31 23:37:16 +0000587#endif
bellard8a7ddc32004-03-31 19:00:16 +0000588
aliguori376253e2009-03-05 23:01:23 +0000589static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000590{
aliguori376253e2009-03-05 23:01:23 +0000591 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000592 switch(c) {
593 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000594 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000595 break;
596 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000597 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000598 break;
599 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000600 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000601 break;
602 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000603 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000604 break;
605 default:
606 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000607 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000608 } else {
aliguori376253e2009-03-05 23:01:23 +0000609 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000610 }
611 break;
612 }
aliguori376253e2009-03-05 23:01:23 +0000613 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000614}
615
aliguori376253e2009-03-05 23:01:23 +0000616static void memory_dump(Monitor *mon, int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000617 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000618{
bellard6a00d602005-11-21 23:25:50 +0000619 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000620 int nb_per_line, l, line_size, i, max_digits, len;
621 uint8_t buf[16];
622 uint64_t v;
623
624 if (format == 'i') {
625 int flags;
626 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000627 env = mon_get_cpu();
628 if (!env && !is_physical)
629 return;
bellard9307c4c2004-04-04 12:57:25 +0000630#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000631 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000632 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000633 } else if (wsize == 4) {
634 flags = 0;
635 } else {
bellard6a15fd12006-04-12 21:07:07 +0000636 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000637 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000638 if (env) {
639#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000640 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000641 (env->segs[R_CS].flags & DESC_L_MASK))
642 flags = 2;
643 else
644#endif
645 if (!(env->segs[R_CS].flags & DESC_B_MASK))
646 flags = 1;
647 }
bellard4c27ba22004-04-25 18:05:08 +0000648 }
649#endif
aliguori376253e2009-03-05 23:01:23 +0000650 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000651 return;
652 }
653
654 len = wsize * count;
655 if (wsize == 1)
656 line_size = 8;
657 else
658 line_size = 16;
659 nb_per_line = line_size / wsize;
660 max_digits = 0;
661
662 switch(format) {
663 case 'o':
664 max_digits = (wsize * 8 + 2) / 3;
665 break;
666 default:
667 case 'x':
668 max_digits = (wsize * 8) / 4;
669 break;
670 case 'u':
671 case 'd':
672 max_digits = (wsize * 8 * 10 + 32) / 33;
673 break;
674 case 'c':
675 wsize = 1;
676 break;
677 }
678
679 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000680 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +0000681 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +0000682 else
aliguori376253e2009-03-05 23:01:23 +0000683 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000684 l = len;
685 if (l > line_size)
686 l = line_size;
687 if (is_physical) {
688 cpu_physical_memory_rw(addr, buf, l, 0);
689 } else {
bellard6a00d602005-11-21 23:25:50 +0000690 env = mon_get_cpu();
691 if (!env)
692 break;
aliguoric8f79b62008-08-18 14:00:20 +0000693 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +0000694 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +0000695 break;
696 }
bellard9307c4c2004-04-04 12:57:25 +0000697 }
ths5fafdf22007-09-16 21:08:06 +0000698 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000699 while (i < l) {
700 switch(wsize) {
701 default:
702 case 1:
703 v = ldub_raw(buf + i);
704 break;
705 case 2:
706 v = lduw_raw(buf + i);
707 break;
708 case 4:
bellard92a31b12005-02-10 22:00:52 +0000709 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000710 break;
711 case 8:
712 v = ldq_raw(buf + i);
713 break;
714 }
aliguori376253e2009-03-05 23:01:23 +0000715 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +0000716 switch(format) {
717 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000718 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000719 break;
720 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000721 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000722 break;
723 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000724 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000725 break;
726 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000727 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000728 break;
729 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000730 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +0000731 break;
732 }
733 i += wsize;
734 }
aliguori376253e2009-03-05 23:01:23 +0000735 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000736 addr += l;
737 len -= l;
738 }
739}
740
bellard92a31b12005-02-10 22:00:52 +0000741#if TARGET_LONG_BITS == 64
742#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
743#else
744#define GET_TLONG(h, l) (l)
745#endif
746
aliguori376253e2009-03-05 23:01:23 +0000747static void do_memory_dump(Monitor *mon, int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000748 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000749{
bellard92a31b12005-02-10 22:00:52 +0000750 target_long addr = GET_TLONG(addrh, addrl);
aliguori376253e2009-03-05 23:01:23 +0000751 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +0000752}
753
blueswir17743e582007-09-24 18:39:04 +0000754#if TARGET_PHYS_ADDR_BITS > 32
755#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
756#else
757#define GET_TPHYSADDR(h, l) (l)
758#endif
759
aliguori376253e2009-03-05 23:01:23 +0000760static void do_physical_memory_dump(Monitor *mon, int count, int format,
761 int size, uint32_t addrh, uint32_t addrl)
bellard92a31b12005-02-10 22:00:52 +0000762
bellard9307c4c2004-04-04 12:57:25 +0000763{
blueswir17743e582007-09-24 18:39:04 +0000764 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
aliguori376253e2009-03-05 23:01:23 +0000765 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +0000766}
767
aliguori376253e2009-03-05 23:01:23 +0000768static void do_print(Monitor *mon, int count, int format, int size,
769 unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000770{
blueswir17743e582007-09-24 18:39:04 +0000771 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
772#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000773 switch(format) {
774 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000775 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +0000776 break;
777 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000778 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +0000779 break;
780 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000781 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +0000782 break;
783 default:
784 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000785 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +0000786 break;
787 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000788 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +0000789 break;
790 }
bellard92a31b12005-02-10 22:00:52 +0000791#else
792 switch(format) {
793 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000794 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000795 break;
796 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000797 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000798 break;
799 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000800 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000801 break;
802 default:
803 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000804 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000805 break;
806 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000807 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +0000808 break;
809 }
810#endif
aliguori376253e2009-03-05 23:01:23 +0000811 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000812}
813
aliguori376253e2009-03-05 23:01:23 +0000814static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000815 uint32_t size, const char *filename)
816{
817 FILE *f;
818 target_long addr = GET_TLONG(valh, vall);
819 uint32_t l;
820 CPUState *env;
821 uint8_t buf[1024];
822
823 env = mon_get_cpu();
824 if (!env)
825 return;
826
827 f = fopen(filename, "wb");
828 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000829 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +0000830 return;
831 }
832 while (size != 0) {
833 l = sizeof(buf);
834 if (l > size)
835 l = size;
836 cpu_memory_rw_debug(env, addr, buf, l, 0);
837 fwrite(buf, 1, l, f);
838 addr += l;
839 size -= l;
840 }
841 fclose(f);
842}
843
aliguori376253e2009-03-05 23:01:23 +0000844static void do_physical_memory_save(Monitor *mon, unsigned int valh,
845 unsigned int vall, uint32_t size,
846 const char *filename)
aurel32a8bdf7a2008-04-11 21:36:14 +0000847{
848 FILE *f;
849 uint32_t l;
850 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000851 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000852
853 f = fopen(filename, "wb");
854 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000855 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +0000856 return;
857 }
858 while (size != 0) {
859 l = sizeof(buf);
860 if (l > size)
861 l = size;
862 cpu_physical_memory_rw(addr, buf, l, 0);
863 fwrite(buf, 1, l, f);
864 fflush(f);
865 addr += l;
866 size -= l;
867 }
868 fclose(f);
869}
870
aliguori376253e2009-03-05 23:01:23 +0000871static void do_sum(Monitor *mon, uint32_t start, uint32_t size)
bellarde4cf1ad2005-06-04 20:15:57 +0000872{
873 uint32_t addr;
874 uint8_t buf[1];
875 uint16_t sum;
876
877 sum = 0;
878 for(addr = start; addr < (start + size); addr++) {
879 cpu_physical_memory_rw(addr, buf, 1, 0);
880 /* BSD sum algorithm ('sum' Unix command) */
881 sum = (sum >> 1) | (sum << 15);
882 sum += buf[0];
883 }
aliguori376253e2009-03-05 23:01:23 +0000884 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +0000885}
886
bellarda3a91a32004-06-04 11:06:21 +0000887typedef struct {
888 int keycode;
889 const char *name;
890} KeyDef;
891
892static const KeyDef key_defs[] = {
893 { 0x2a, "shift" },
894 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000895
bellarda3a91a32004-06-04 11:06:21 +0000896 { 0x38, "alt" },
897 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +0000898 { 0x64, "altgr" },
899 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +0000900 { 0x1d, "ctrl" },
901 { 0x9d, "ctrl_r" },
902
903 { 0xdd, "menu" },
904
905 { 0x01, "esc" },
906
907 { 0x02, "1" },
908 { 0x03, "2" },
909 { 0x04, "3" },
910 { 0x05, "4" },
911 { 0x06, "5" },
912 { 0x07, "6" },
913 { 0x08, "7" },
914 { 0x09, "8" },
915 { 0x0a, "9" },
916 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000917 { 0x0c, "minus" },
918 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000919 { 0x0e, "backspace" },
920
921 { 0x0f, "tab" },
922 { 0x10, "q" },
923 { 0x11, "w" },
924 { 0x12, "e" },
925 { 0x13, "r" },
926 { 0x14, "t" },
927 { 0x15, "y" },
928 { 0x16, "u" },
929 { 0x17, "i" },
930 { 0x18, "o" },
931 { 0x19, "p" },
932
933 { 0x1c, "ret" },
934
935 { 0x1e, "a" },
936 { 0x1f, "s" },
937 { 0x20, "d" },
938 { 0x21, "f" },
939 { 0x22, "g" },
940 { 0x23, "h" },
941 { 0x24, "j" },
942 { 0x25, "k" },
943 { 0x26, "l" },
944
945 { 0x2c, "z" },
946 { 0x2d, "x" },
947 { 0x2e, "c" },
948 { 0x2f, "v" },
949 { 0x30, "b" },
950 { 0x31, "n" },
951 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +0000952 { 0x33, "comma" },
953 { 0x34, "dot" },
954 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +0000955
balrog4d3b6f62008-02-10 16:33:14 +0000956 { 0x37, "asterisk" },
957
bellarda3a91a32004-06-04 11:06:21 +0000958 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000959 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000960 { 0x3b, "f1" },
961 { 0x3c, "f2" },
962 { 0x3d, "f3" },
963 { 0x3e, "f4" },
964 { 0x3f, "f5" },
965 { 0x40, "f6" },
966 { 0x41, "f7" },
967 { 0x42, "f8" },
968 { 0x43, "f9" },
969 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000970 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000971 { 0x46, "scroll_lock" },
972
bellard64866c32006-05-07 18:03:31 +0000973 { 0xb5, "kp_divide" },
974 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000975 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000976 { 0x4e, "kp_add" },
977 { 0x9c, "kp_enter" },
978 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +0000979 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +0000980
981 { 0x52, "kp_0" },
982 { 0x4f, "kp_1" },
983 { 0x50, "kp_2" },
984 { 0x51, "kp_3" },
985 { 0x4b, "kp_4" },
986 { 0x4c, "kp_5" },
987 { 0x4d, "kp_6" },
988 { 0x47, "kp_7" },
989 { 0x48, "kp_8" },
990 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000991
bellarda3a91a32004-06-04 11:06:21 +0000992 { 0x56, "<" },
993
994 { 0x57, "f11" },
995 { 0x58, "f12" },
996
997 { 0xb7, "print" },
998
999 { 0xc7, "home" },
1000 { 0xc9, "pgup" },
1001 { 0xd1, "pgdn" },
1002 { 0xcf, "end" },
1003
1004 { 0xcb, "left" },
1005 { 0xc8, "up" },
1006 { 0xd0, "down" },
1007 { 0xcd, "right" },
1008
1009 { 0xd2, "insert" },
1010 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001011#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1012 { 0xf0, "stop" },
1013 { 0xf1, "again" },
1014 { 0xf2, "props" },
1015 { 0xf3, "undo" },
1016 { 0xf4, "front" },
1017 { 0xf5, "copy" },
1018 { 0xf6, "open" },
1019 { 0xf7, "paste" },
1020 { 0xf8, "find" },
1021 { 0xf9, "cut" },
1022 { 0xfa, "lf" },
1023 { 0xfb, "help" },
1024 { 0xfc, "meta_l" },
1025 { 0xfd, "meta_r" },
1026 { 0xfe, "compose" },
1027#endif
bellarda3a91a32004-06-04 11:06:21 +00001028 { 0, NULL },
1029};
1030
1031static int get_keycode(const char *key)
1032{
1033 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001034 char *endp;
1035 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001036
1037 for(p = key_defs; p->name != NULL; p++) {
1038 if (!strcmp(key, p->name))
1039 return p->keycode;
1040 }
bellard64866c32006-05-07 18:03:31 +00001041 if (strstart(key, "0x", NULL)) {
1042 ret = strtoul(key, &endp, 0);
1043 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1044 return ret;
1045 }
bellarda3a91a32004-06-04 11:06:21 +00001046 return -1;
1047}
1048
balrogc8256f92008-06-08 22:45:01 +00001049#define MAX_KEYCODES 16
1050static uint8_t keycodes[MAX_KEYCODES];
1051static int nb_pending_keycodes;
1052static QEMUTimer *key_timer;
1053
1054static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001055{
balrogc8256f92008-06-08 22:45:01 +00001056 int keycode;
1057
1058 while (nb_pending_keycodes > 0) {
1059 nb_pending_keycodes--;
1060 keycode = keycodes[nb_pending_keycodes];
1061 if (keycode & 0x80)
1062 kbd_put_keycode(0xe0);
1063 kbd_put_keycode(keycode | 0x80);
1064 }
1065}
1066
aliguori376253e2009-03-05 23:01:23 +00001067static void do_sendkey(Monitor *mon, const char *string, int has_hold_time,
1068 int hold_time)
balrogc8256f92008-06-08 22:45:01 +00001069{
balrog3401c0d2008-06-04 10:05:59 +00001070 char keyname_buf[16];
1071 char *separator;
1072 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +00001073
balrogc8256f92008-06-08 22:45:01 +00001074 if (nb_pending_keycodes > 0) {
1075 qemu_del_timer(key_timer);
1076 release_keys(NULL);
1077 }
1078 if (!has_hold_time)
1079 hold_time = 100;
1080 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001081 while (1) {
1082 separator = strchr(string, '-');
1083 keyname_len = separator ? separator - string : strlen(string);
1084 if (keyname_len > 0) {
1085 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1086 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001087 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001088 return;
bellarda3a91a32004-06-04 11:06:21 +00001089 }
balrogc8256f92008-06-08 22:45:01 +00001090 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001091 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001092 return;
1093 }
1094 keyname_buf[keyname_len] = 0;
1095 keycode = get_keycode(keyname_buf);
1096 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001097 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001098 return;
1099 }
balrogc8256f92008-06-08 22:45:01 +00001100 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001101 }
balrog3401c0d2008-06-04 10:05:59 +00001102 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001103 break;
balrog3401c0d2008-06-04 10:05:59 +00001104 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001105 }
balrogc8256f92008-06-08 22:45:01 +00001106 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001107 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001108 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001109 keycode = keycodes[i];
1110 if (keycode & 0x80)
1111 kbd_put_keycode(0xe0);
1112 kbd_put_keycode(keycode & 0x7f);
1113 }
balrogc8256f92008-06-08 22:45:01 +00001114 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001115 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1116 muldiv64(ticks_per_sec, hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001117}
1118
bellard13224a82006-07-14 22:03:35 +00001119static int mouse_button_state;
1120
aliguori376253e2009-03-05 23:01:23 +00001121static void do_mouse_move(Monitor *mon, const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +00001122 const char *dz_str)
1123{
1124 int dx, dy, dz;
1125 dx = strtol(dx_str, NULL, 0);
1126 dy = strtol(dy_str, NULL, 0);
1127 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001128 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001129 dz = strtol(dz_str, NULL, 0);
1130 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1131}
1132
aliguori376253e2009-03-05 23:01:23 +00001133static void do_mouse_button(Monitor *mon, int button_state)
bellard13224a82006-07-14 22:03:35 +00001134{
1135 mouse_button_state = button_state;
1136 kbd_mouse_event(0, 0, 0, mouse_button_state);
1137}
1138
aliguori376253e2009-03-05 23:01:23 +00001139static void do_ioport_read(Monitor *mon, int count, int format, int size,
1140 int addr, int has_index, int index)
bellard34405572004-06-08 00:55:58 +00001141{
1142 uint32_t val;
1143 int suffix;
1144
1145 if (has_index) {
1146 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1147 addr++;
1148 }
1149 addr &= 0xffff;
1150
1151 switch(size) {
1152 default:
1153 case 1:
1154 val = cpu_inb(NULL, addr);
1155 suffix = 'b';
1156 break;
1157 case 2:
1158 val = cpu_inw(NULL, addr);
1159 suffix = 'w';
1160 break;
1161 case 4:
1162 val = cpu_inl(NULL, addr);
1163 suffix = 'l';
1164 break;
1165 }
aliguori376253e2009-03-05 23:01:23 +00001166 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1167 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001168}
bellarda3a91a32004-06-04 11:06:21 +00001169
blueswir13b4366d2008-06-20 16:25:06 +00001170/* boot_set handler */
1171static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1172static void *boot_opaque;
1173
1174void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1175{
1176 qemu_boot_set_handler = func;
1177 boot_opaque = opaque;
1178}
1179
aliguori376253e2009-03-05 23:01:23 +00001180static void do_boot_set(Monitor *mon, const char *bootdevice)
aurel320ecdffb2008-05-04 20:11:34 +00001181{
1182 int res;
1183
1184 if (qemu_boot_set_handler) {
blueswir13b4366d2008-06-20 16:25:06 +00001185 res = qemu_boot_set_handler(boot_opaque, bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001186 if (res == 0)
aliguori376253e2009-03-05 23:01:23 +00001187 monitor_printf(mon, "boot device list now set to %s\n",
1188 bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001189 else
aliguori376253e2009-03-05 23:01:23 +00001190 monitor_printf(mon, "setting boot device list failed with "
1191 "error %i\n", res);
aurel320ecdffb2008-05-04 20:11:34 +00001192 } else {
aliguori376253e2009-03-05 23:01:23 +00001193 monitor_printf(mon, "no function defined to set boot device list for "
1194 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001195 }
1196}
1197
aliguori376253e2009-03-05 23:01:23 +00001198static void do_system_reset(Monitor *mon)
bellarde4f90822004-06-20 12:35:44 +00001199{
1200 qemu_system_reset_request();
1201}
1202
aliguori376253e2009-03-05 23:01:23 +00001203static void do_system_powerdown(Monitor *mon)
bellard34751872005-07-02 14:31:34 +00001204{
1205 qemu_system_powerdown_request();
1206}
1207
bellardb86bda52004-09-18 19:32:46 +00001208#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001209static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001210{
aliguori376253e2009-03-05 23:01:23 +00001211 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1212 addr,
1213 pte & mask,
1214 pte & PG_GLOBAL_MASK ? 'G' : '-',
1215 pte & PG_PSE_MASK ? 'P' : '-',
1216 pte & PG_DIRTY_MASK ? 'D' : '-',
1217 pte & PG_ACCESSED_MASK ? 'A' : '-',
1218 pte & PG_PCD_MASK ? 'C' : '-',
1219 pte & PG_PWT_MASK ? 'T' : '-',
1220 pte & PG_USER_MASK ? 'U' : '-',
1221 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001222}
1223
aliguori376253e2009-03-05 23:01:23 +00001224static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001225{
bellard6a00d602005-11-21 23:25:50 +00001226 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001227 int l1, l2;
1228 uint32_t pgd, pde, pte;
1229
bellard6a00d602005-11-21 23:25:50 +00001230 env = mon_get_cpu();
1231 if (!env)
1232 return;
1233
bellardb86bda52004-09-18 19:32:46 +00001234 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001235 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001236 return;
1237 }
1238 pgd = env->cr[3] & ~0xfff;
1239 for(l1 = 0; l1 < 1024; l1++) {
1240 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1241 pde = le32_to_cpu(pde);
1242 if (pde & PG_PRESENT_MASK) {
1243 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001244 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001245 } else {
1246 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001247 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001248 (uint8_t *)&pte, 4);
1249 pte = le32_to_cpu(pte);
1250 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001251 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001252 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001253 ~0xfff);
1254 }
1255 }
1256 }
1257 }
1258 }
1259}
1260
aliguori376253e2009-03-05 23:01:23 +00001261static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001262 uint32_t end, int prot)
1263{
bellard9746b152004-11-11 18:30:24 +00001264 int prot1;
1265 prot1 = *plast_prot;
1266 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001267 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001268 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1269 *pstart, end, end - *pstart,
1270 prot1 & PG_USER_MASK ? 'u' : '-',
1271 'r',
1272 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001273 }
1274 if (prot != 0)
1275 *pstart = end;
1276 else
1277 *pstart = -1;
1278 *plast_prot = prot;
1279 }
1280}
1281
aliguori376253e2009-03-05 23:01:23 +00001282static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001283{
bellard6a00d602005-11-21 23:25:50 +00001284 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001285 int l1, l2, prot, last_prot;
1286 uint32_t pgd, pde, pte, start, end;
1287
bellard6a00d602005-11-21 23:25:50 +00001288 env = mon_get_cpu();
1289 if (!env)
1290 return;
1291
bellardb86bda52004-09-18 19:32:46 +00001292 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001293 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001294 return;
1295 }
1296 pgd = env->cr[3] & ~0xfff;
1297 last_prot = 0;
1298 start = -1;
1299 for(l1 = 0; l1 < 1024; l1++) {
1300 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1301 pde = le32_to_cpu(pde);
1302 end = l1 << 22;
1303 if (pde & PG_PRESENT_MASK) {
1304 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1305 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001306 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001307 } else {
1308 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001309 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001310 (uint8_t *)&pte, 4);
1311 pte = le32_to_cpu(pte);
1312 end = (l1 << 22) + (l2 << 12);
1313 if (pte & PG_PRESENT_MASK) {
1314 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1315 } else {
1316 prot = 0;
1317 }
aliguori376253e2009-03-05 23:01:23 +00001318 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001319 }
1320 }
1321 } else {
1322 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001323 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001324 }
1325 }
1326}
1327#endif
1328
aurel327c664e22009-03-03 06:12:22 +00001329#if defined(TARGET_SH4)
1330
aliguori376253e2009-03-05 23:01:23 +00001331static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001332{
aliguori376253e2009-03-05 23:01:23 +00001333 monitor_printf(mon, " tlb%i:\t"
1334 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1335 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1336 "dirty=%hhu writethrough=%hhu\n",
1337 idx,
1338 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1339 tlb->v, tlb->sh, tlb->c, tlb->pr,
1340 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001341}
1342
aliguori376253e2009-03-05 23:01:23 +00001343static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001344{
1345 CPUState *env = mon_get_cpu();
1346 int i;
1347
aliguori376253e2009-03-05 23:01:23 +00001348 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001349 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001350 print_tlb (mon, i, &env->itlb[i]);
1351 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001352 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001353 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001354}
1355
1356#endif
1357
aliguori376253e2009-03-05 23:01:23 +00001358static void do_info_kqemu(Monitor *mon)
bellard0f4c6412005-07-24 18:10:56 +00001359{
1360#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001361 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001362 int val;
1363 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001364 env = mon_get_cpu();
1365 if (!env) {
aliguori376253e2009-03-05 23:01:23 +00001366 monitor_printf(mon, "No cpu initialized yet");
bellard6a00d602005-11-21 23:25:50 +00001367 return;
1368 }
1369 val = env->kqemu_enabled;
aliguori376253e2009-03-05 23:01:23 +00001370 monitor_printf(mon, "kqemu support: ");
bellard5f1ce942006-02-08 22:40:15 +00001371 switch(val) {
1372 default:
1373 case 0:
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_printf(mon, "disabled\n");
bellard5f1ce942006-02-08 22:40:15 +00001375 break;
1376 case 1:
aliguori376253e2009-03-05 23:01:23 +00001377 monitor_printf(mon, "enabled for user code\n");
bellard5f1ce942006-02-08 22:40:15 +00001378 break;
1379 case 2:
aliguori376253e2009-03-05 23:01:23 +00001380 monitor_printf(mon, "enabled for user and kernel code\n");
bellard5f1ce942006-02-08 22:40:15 +00001381 break;
1382 }
bellard0f4c6412005-07-24 18:10:56 +00001383#else
aliguori376253e2009-03-05 23:01:23 +00001384 monitor_printf(mon, "kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001385#endif
ths5fafdf22007-09-16 21:08:06 +00001386}
bellard0f4c6412005-07-24 18:10:56 +00001387
aliguori376253e2009-03-05 23:01:23 +00001388static void do_info_kvm(Monitor *mon)
aliguori7ba1e612008-11-05 16:04:33 +00001389{
1390#ifdef CONFIG_KVM
aliguori376253e2009-03-05 23:01:23 +00001391 monitor_printf(mon, "kvm support: ");
aliguori7ba1e612008-11-05 16:04:33 +00001392 if (kvm_enabled())
aliguori376253e2009-03-05 23:01:23 +00001393 monitor_printf(mon, "enabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001394 else
aliguori376253e2009-03-05 23:01:23 +00001395 monitor_printf(mon, "disabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001396#else
aliguori376253e2009-03-05 23:01:23 +00001397 monitor_printf(mon, "kvm support: not compiled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001398#endif
1399}
1400
bellard5f1ce942006-02-08 22:40:15 +00001401#ifdef CONFIG_PROFILER
1402
1403int64_t kqemu_time;
1404int64_t qemu_time;
1405int64_t kqemu_exec_count;
1406int64_t dev_time;
1407int64_t kqemu_ret_int_count;
1408int64_t kqemu_ret_excp_count;
1409int64_t kqemu_ret_intr_count;
1410
aliguori376253e2009-03-05 23:01:23 +00001411static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001412{
1413 int64_t total;
1414 total = qemu_time;
1415 if (total == 0)
1416 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001417 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1418 dev_time, dev_time / (double)ticks_per_sec);
1419 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1420 qemu_time, qemu_time / (double)ticks_per_sec);
1421 monitor_printf(mon, "kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%"
1422 PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%"
1423 PRId64 "\n",
1424 kqemu_time, kqemu_time / (double)ticks_per_sec,
1425 kqemu_time / (double)total * 100.0,
1426 kqemu_exec_count,
1427 kqemu_ret_int_count,
1428 kqemu_ret_excp_count,
1429 kqemu_ret_intr_count);
bellard5f1ce942006-02-08 22:40:15 +00001430 qemu_time = 0;
1431 kqemu_time = 0;
1432 kqemu_exec_count = 0;
1433 dev_time = 0;
1434 kqemu_ret_int_count = 0;
1435 kqemu_ret_excp_count = 0;
1436 kqemu_ret_intr_count = 0;
1437#ifdef USE_KQEMU
1438 kqemu_record_dump();
1439#endif
1440}
1441#else
aliguori376253e2009-03-05 23:01:23 +00001442static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001443{
aliguori376253e2009-03-05 23:01:23 +00001444 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001445}
1446#endif
1447
bellardec36b692006-07-16 18:57:03 +00001448/* Capture support */
1449static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1450
aliguori376253e2009-03-05 23:01:23 +00001451static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001452{
1453 int i;
1454 CaptureState *s;
1455
1456 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001457 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001458 s->ops.info (s->opaque);
1459 }
1460}
1461
aliguori376253e2009-03-05 23:01:23 +00001462static void do_stop_capture(Monitor *mon, int n)
bellardec36b692006-07-16 18:57:03 +00001463{
1464 int i;
1465 CaptureState *s;
1466
1467 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1468 if (i == n) {
1469 s->ops.destroy (s->opaque);
1470 LIST_REMOVE (s, entries);
1471 qemu_free (s);
1472 return;
1473 }
1474 }
1475}
1476
1477#ifdef HAS_AUDIO
aliguori376253e2009-03-05 23:01:23 +00001478static void do_wav_capture(Monitor *mon, const char *path,
1479 int has_freq, int freq,
1480 int has_bits, int bits,
1481 int has_channels, int nchannels)
bellardec36b692006-07-16 18:57:03 +00001482{
1483 CaptureState *s;
1484
1485 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001486
1487 freq = has_freq ? freq : 44100;
1488 bits = has_bits ? bits : 16;
1489 nchannels = has_channels ? nchannels : 2;
1490
1491 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00001492 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00001493 qemu_free (s);
1494 }
1495 LIST_INSERT_HEAD (&capture_head, s, entries);
1496}
1497#endif
1498
aurel32dc1c0b72008-04-27 23:52:12 +00001499#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001500static void do_inject_nmi(Monitor *mon, int cpu_index)
aurel32dc1c0b72008-04-27 23:52:12 +00001501{
1502 CPUState *env;
1503
1504 for (env = first_cpu; env != NULL; env = env->next_cpu)
1505 if (env->cpu_index == cpu_index) {
1506 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1507 break;
1508 }
1509}
1510#endif
1511
aliguori376253e2009-03-05 23:01:23 +00001512static void do_info_status(Monitor *mon)
aurel326f9c5ee2008-12-18 22:43:56 +00001513{
1514 if (vm_running)
aliguori376253e2009-03-05 23:01:23 +00001515 monitor_printf(mon, "VM status: running\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001516 else
aliguori376253e2009-03-05 23:01:23 +00001517 monitor_printf(mon, "VM status: paused\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001518}
1519
1520
aliguori376253e2009-03-05 23:01:23 +00001521static void do_balloon(Monitor *mon, int value)
aliguoridf751fa2008-12-04 20:19:35 +00001522{
1523 ram_addr_t target = value;
1524 qemu_balloon(target << 20);
1525}
1526
aliguori376253e2009-03-05 23:01:23 +00001527static void do_info_balloon(Monitor *mon)
aliguoridf751fa2008-12-04 20:19:35 +00001528{
1529 ram_addr_t actual;
1530
1531 actual = qemu_balloon_status();
aliguoribd322082008-12-04 20:33:06 +00001532 if (kvm_enabled() && !kvm_has_sync_mmu())
aliguori376253e2009-03-05 23:01:23 +00001533 monitor_printf(mon, "Using KVM without synchronous MMU, "
1534 "ballooning disabled\n");
aliguoribd322082008-12-04 20:33:06 +00001535 else if (actual == 0)
aliguori376253e2009-03-05 23:01:23 +00001536 monitor_printf(mon, "Ballooning not activated in VM\n");
aliguoridf751fa2008-12-04 20:19:35 +00001537 else
aliguori376253e2009-03-05 23:01:23 +00001538 monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
aliguoridf751fa2008-12-04 20:19:35 +00001539}
1540
aliguori76655d62009-03-06 20:27:37 +00001541static void do_acl(Monitor *mon,
1542 const char *command,
aliguori28a76be2009-03-06 20:27:40 +00001543 const char *aclname,
1544 const char *match,
1545 int has_index,
1546 int index)
aliguori76655d62009-03-06 20:27:37 +00001547{
1548 qemu_acl *acl;
1549
1550 acl = qemu_acl_find(aclname);
1551 if (!acl) {
aliguori28a76be2009-03-06 20:27:40 +00001552 monitor_printf(mon, "acl: unknown list '%s'\n", aclname);
1553 return;
aliguori76655d62009-03-06 20:27:37 +00001554 }
1555
1556 if (strcmp(command, "show") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001557 int i = 0;
1558 qemu_acl_entry *entry;
1559 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001560 acl->defaultDeny ? "deny" : "allow");
aliguori28a76be2009-03-06 20:27:40 +00001561 TAILQ_FOREACH(entry, &acl->entries, next) {
1562 i++;
1563 monitor_printf(mon, "%d: %s %s\n", i,
aliguori76655d62009-03-06 20:27:37 +00001564 entry->deny ? "deny" : "allow",
1565 entry->match);
aliguori28a76be2009-03-06 20:27:40 +00001566 }
aliguori76655d62009-03-06 20:27:37 +00001567 } else if (strcmp(command, "reset") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001568 qemu_acl_reset(acl);
1569 monitor_printf(mon, "acl: removed all rules\n");
aliguori76655d62009-03-06 20:27:37 +00001570 } else if (strcmp(command, "policy") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001571 if (!match) {
1572 monitor_printf(mon, "acl: missing policy parameter\n");
1573 return;
1574 }
aliguori76655d62009-03-06 20:27:37 +00001575
aliguori28a76be2009-03-06 20:27:40 +00001576 if (strcmp(match, "allow") == 0) {
1577 acl->defaultDeny = 0;
1578 monitor_printf(mon, "acl: policy set to 'allow'\n");
1579 } else if (strcmp(match, "deny") == 0) {
1580 acl->defaultDeny = 1;
1581 monitor_printf(mon, "acl: policy set to 'deny'\n");
1582 } else {
1583 monitor_printf(mon, "acl: unknown policy '%s', expected 'deny' or 'allow'\n", match);
1584 }
aliguori76655d62009-03-06 20:27:37 +00001585 } else if ((strcmp(command, "allow") == 0) ||
aliguori28a76be2009-03-06 20:27:40 +00001586 (strcmp(command, "deny") == 0)) {
1587 int deny = strcmp(command, "deny") == 0 ? 1 : 0;
1588 int ret;
aliguori76655d62009-03-06 20:27:37 +00001589
aliguori28a76be2009-03-06 20:27:40 +00001590 if (!match) {
1591 monitor_printf(mon, "acl: missing match parameter\n");
1592 return;
1593 }
aliguori76655d62009-03-06 20:27:37 +00001594
aliguori28a76be2009-03-06 20:27:40 +00001595 if (has_index)
1596 ret = qemu_acl_insert(acl, deny, match, index);
1597 else
1598 ret = qemu_acl_append(acl, deny, match);
1599 if (ret < 0)
1600 monitor_printf(mon, "acl: unable to add acl entry\n");
1601 else
1602 monitor_printf(mon, "acl: added rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001603 } else if (strcmp(command, "remove") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001604 int ret;
aliguori76655d62009-03-06 20:27:37 +00001605
aliguori28a76be2009-03-06 20:27:40 +00001606 if (!match) {
1607 monitor_printf(mon, "acl: missing match parameter\n");
1608 return;
1609 }
aliguori76655d62009-03-06 20:27:37 +00001610
aliguori28a76be2009-03-06 20:27:40 +00001611 ret = qemu_acl_remove(acl, match);
1612 if (ret < 0)
1613 monitor_printf(mon, "acl: no matching acl entry\n");
1614 else
1615 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001616 } else {
aliguori28a76be2009-03-06 20:27:40 +00001617 monitor_printf(mon, "acl: unknown command '%s'\n", command);
aliguori76655d62009-03-06 20:27:37 +00001618 }
1619}
1620
blueswir1d2c639d2009-01-24 18:19:25 +00001621/* Please update qemu-doc.texi when adding or changing commands */
aliguori376253e2009-03-05 23:01:23 +00001622static const mon_cmd_t mon_cmds[] = {
1623 { "help|?", "s?", help_cmd,
bellard9dc39cb2004-03-14 21:38:27 +00001624 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001625 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001626 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001627 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001628 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001629 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001630 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001631 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001632 "[-f] device", "eject a removable medium (use -f to force it)" },
aurel322ecea9b2008-06-18 22:10:01 +00001633 { "change", "BFs?", do_change,
1634 "device filename [format]", "change a removable medium, optional format" },
ths5fafdf22007-09-16 21:08:06 +00001635 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001636 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001637 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001638 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001639 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001640 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001641 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001642 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001643 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001644 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001645 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001646 "tag|id", "delete a VM snapshot from its tag or id" },
1647 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001648 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001649 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001650 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001651#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001652 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001653 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001654#endif
ths5fafdf22007-09-16 21:08:06 +00001655 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001656 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001657 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001658 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001659 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001660 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001661 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001662 "/fmt addr", "I/O port read" },
1663
balrogc8256f92008-06-08 22:45:01 +00001664 { "sendkey", "si?", do_sendkey,
1665 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
ths5fafdf22007-09-16 21:08:06 +00001666 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001667 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001668 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001669 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001670 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001671 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001672 { "usb_add", "s", do_usb_add,
1673 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1674 { "usb_del", "s", do_usb_del,
1675 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001676 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001677 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001678 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001679 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001680 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001681 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001682 { "mouse_set", "i", do_mouse_set,
1683 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001684#ifdef HAS_AUDIO
1685 { "wavcapture", "si?i?i?", do_wav_capture,
1686 "path [frequency bits channels]",
1687 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1688#endif
blueswir1d2c639d2009-01-24 18:19:25 +00001689 { "stopcapture", "i", do_stop_capture,
1690 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001691 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001692 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001693 { "pmemsave", "lis", do_physical_memory_save,
1694 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001695 { "boot_set", "s", do_boot_set,
1696 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001697#if defined(TARGET_I386)
1698 { "nmi", "i", do_inject_nmi,
1699 "cpu", "inject an NMI on the given CPU", },
1700#endif
aliguori5bb79102008-10-13 03:12:02 +00001701 { "migrate", "-ds", do_migrate,
1702 "[-d] uri", "migrate to URI (using -d to not wait for completion)" },
1703 { "migrate_cancel", "", do_migrate_cancel,
1704 "", "cancel the current VM migration" },
1705 { "migrate_set_speed", "s", do_migrate_set_speed,
1706 "value", "set maximum speed (in bytes) for migrations" },
aliguori6f338c32009-02-11 15:21:54 +00001707#if defined(TARGET_I386)
1708 { "drive_add", "ss", drive_hot_add, "pci_addr=[[<domain>:]<bus>:]<slot>\n"
1709 "[file=file][,if=type][,bus=n]\n"
1710 "[,unit=m][,media=d][index=i]\n"
1711 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1712 "[snapshot=on|off][,cache=on|off]",
1713 "add drive to PCI storage controller" },
1714 { "pci_add", "sss", pci_device_hot_add, "pci_addr=auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...", "hot-add PCI device" },
1715 { "pci_del", "s", pci_device_hot_remove, "pci_addr=[[<domain>:]<bus>:]<slot>", "hot remove PCI device" },
1716 { "host_net_add", "ss", net_host_device_add,
1717 "[tap,user,socket,vde] options", "add host VLAN client" },
1718 { "host_net_remove", "is", net_host_device_remove,
1719 "vlan_id name", "remove host VLAN client" },
1720#endif
aliguoridf751fa2008-12-04 20:19:35 +00001721 { "balloon", "i", do_balloon,
1722 "target", "request VM to change it's memory allocation (in MB)" },
aliguorif029bd92009-02-11 15:19:16 +00001723 { "set_link", "ss", do_set_link,
1724 "name [up|down]", "change the link status of a network adapter" },
aliguori76655d62009-03-06 20:27:37 +00001725 { "acl", "sss?i?", do_acl, "<command> <aclname> [<match>] [<index>]\n",
1726 "acl show vnc.username\n"
1727 "acl policy vnc.username deny\n"
1728 "acl allow vnc.username fred\n"
1729 "acl deny vnc.username bob\n"
1730 "acl reset vnc.username\n" },
ths5fafdf22007-09-16 21:08:06 +00001731 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001732};
1733
blueswir1d2c639d2009-01-24 18:19:25 +00001734/* Please update qemu-doc.texi when adding or changing commands */
aliguori376253e2009-03-05 23:01:23 +00001735static const mon_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001736 { "version", "", do_info_version,
blueswir1d2c639d2009-01-24 18:19:25 +00001737 "", "show the version of QEMU" },
bellard9307c4c2004-04-04 12:57:25 +00001738 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001739 "", "show the network state" },
aliguori5ccfae12008-10-31 17:31:29 +00001740 { "chardev", "", qemu_chr_info,
1741 "", "show the character devices" },
aliguori376253e2009-03-05 23:01:23 +00001742 { "block", "", bdrv_info,
bellard9dc39cb2004-03-14 21:38:27 +00001743 "", "show the block devices" },
aliguori376253e2009-03-05 23:01:23 +00001744 { "blockstats", "", bdrv_info_stats,
thsa36e69d2007-12-02 05:18:19 +00001745 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001746 { "registers", "", do_info_registers,
1747 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001748 { "cpus", "", do_info_cpus,
1749 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001750 { "history", "", do_info_history,
1751 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001752 { "irq", "", irq_info,
1753 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001754 { "pic", "", pic_info,
1755 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001756 { "pci", "", pci_info,
1757 "", "show PCI info", },
aurel327c664e22009-03-03 06:12:22 +00001758#if defined(TARGET_I386) || defined(TARGET_SH4)
bellardb86bda52004-09-18 19:32:46 +00001759 { "tlb", "", tlb_info,
1760 "", "show virtual to physical memory mappings", },
aurel327c664e22009-03-03 06:12:22 +00001761#endif
1762#if defined(TARGET_I386)
bellardb86bda52004-09-18 19:32:46 +00001763 { "mem", "", mem_info,
1764 "", "show the active virtual memory mappings", },
aliguori16b29ae2008-12-17 23:28:44 +00001765 { "hpet", "", do_info_hpet,
1766 "", "show state of HPET", },
bellardb86bda52004-09-18 19:32:46 +00001767#endif
bellarde3db7222005-01-26 22:00:47 +00001768 { "jit", "", do_info_jit,
1769 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001770 { "kqemu", "", do_info_kqemu,
blueswir1d2c639d2009-01-24 18:19:25 +00001771 "", "show KQEMU information", },
aliguori7ba1e612008-11-05 16:04:33 +00001772 { "kvm", "", do_info_kvm,
blueswir1d2c639d2009-01-24 18:19:25 +00001773 "", "show KVM information", },
bellarda594cfb2005-11-06 16:13:29 +00001774 { "usb", "", usb_info,
1775 "", "show guest USB devices", },
1776 { "usbhost", "", usb_host_info,
1777 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001778 { "profile", "", do_info_profile,
1779 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001780 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001781 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001782 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001783 "", "show the currently saved VM snapshots" },
aurel326f9c5ee2008-12-18 22:43:56 +00001784 { "status", "", do_info_status,
1785 "", "show the current VM status (running|paused)" },
balrog201a51f2007-04-30 00:51:09 +00001786 { "pcmcia", "", pcmcia_info,
1787 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001788 { "mice", "", do_info_mice,
1789 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001790 { "vnc", "", do_info_vnc,
1791 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001792 { "name", "", do_info_name,
1793 "", "show the current VM name" },
blueswir1f1f23ad2008-09-18 18:30:20 +00001794 { "uuid", "", do_info_uuid,
1795 "", "show the current VM UUID" },
j_mayer76a66252007-03-07 08:32:30 +00001796#if defined(TARGET_PPC)
1797 { "cpustats", "", do_info_cpu_stats,
1798 "", "show CPU statistics", },
1799#endif
blueswir131a60e22007-10-26 18:42:59 +00001800#if defined(CONFIG_SLIRP)
1801 { "slirp", "", do_info_slirp,
1802 "", "show SLIRP statistics", },
1803#endif
aliguori5bb79102008-10-13 03:12:02 +00001804 { "migrate", "", do_info_migrate, "", "show migration status" },
aliguoridf751fa2008-12-04 20:19:35 +00001805 { "balloon", "", do_info_balloon,
1806 "", "show balloon information" },
bellard9dc39cb2004-03-14 21:38:27 +00001807 { NULL, NULL, },
1808};
1809
bellard9307c4c2004-04-04 12:57:25 +00001810/*******************************************************************/
1811
1812static const char *pch;
1813static jmp_buf expr_env;
1814
bellard92a31b12005-02-10 22:00:52 +00001815#define MD_TLONG 0
1816#define MD_I32 1
1817
bellard9307c4c2004-04-04 12:57:25 +00001818typedef struct MonitorDef {
1819 const char *name;
1820 int offset;
blueswir18662d652008-10-02 18:32:44 +00001821 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00001822 int type;
bellard9307c4c2004-04-04 12:57:25 +00001823} MonitorDef;
1824
bellard57206fd2004-04-25 18:54:52 +00001825#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00001826static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001827{
bellard6a00d602005-11-21 23:25:50 +00001828 CPUState *env = mon_get_cpu();
1829 if (!env)
1830 return 0;
1831 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001832}
1833#endif
1834
bellarda541f292004-04-12 20:39:29 +00001835#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00001836static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001837{
bellard6a00d602005-11-21 23:25:50 +00001838 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001839 unsigned int u;
1840 int i;
1841
bellard6a00d602005-11-21 23:25:50 +00001842 if (!env)
1843 return 0;
1844
bellarda541f292004-04-12 20:39:29 +00001845 u = 0;
1846 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00001847 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001848
1849 return u;
1850}
1851
blueswir18662d652008-10-02 18:32:44 +00001852static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001853{
bellard6a00d602005-11-21 23:25:50 +00001854 CPUState *env = mon_get_cpu();
1855 if (!env)
1856 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001857 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001858}
1859
blueswir18662d652008-10-02 18:32:44 +00001860static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001861{
bellard6a00d602005-11-21 23:25:50 +00001862 CPUState *env = mon_get_cpu();
1863 if (!env)
1864 return 0;
aurel323d7b4172008-10-21 11:28:46 +00001865 return env->xer;
bellarda541f292004-04-12 20:39:29 +00001866}
bellard9fddaa02004-05-21 12:59:32 +00001867
blueswir18662d652008-10-02 18:32:44 +00001868static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001869{
bellard6a00d602005-11-21 23:25:50 +00001870 CPUState *env = mon_get_cpu();
1871 if (!env)
1872 return 0;
1873 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001874}
1875
blueswir18662d652008-10-02 18:32:44 +00001876static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001877{
bellard6a00d602005-11-21 23:25:50 +00001878 CPUState *env = mon_get_cpu();
1879 if (!env)
1880 return 0;
1881 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001882}
1883
blueswir18662d652008-10-02 18:32:44 +00001884static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001885{
bellard6a00d602005-11-21 23:25:50 +00001886 CPUState *env = mon_get_cpu();
1887 if (!env)
1888 return 0;
1889 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001890}
bellarda541f292004-04-12 20:39:29 +00001891#endif
1892
bellarde95c8d52004-09-30 22:22:08 +00001893#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001894#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00001895static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001896{
bellard6a00d602005-11-21 23:25:50 +00001897 CPUState *env = mon_get_cpu();
1898 if (!env)
1899 return 0;
1900 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001901}
bellard7b936c02005-10-30 17:05:13 +00001902#endif
bellarde95c8d52004-09-30 22:22:08 +00001903
blueswir18662d652008-10-02 18:32:44 +00001904static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001905{
bellard6a00d602005-11-21 23:25:50 +00001906 CPUState *env = mon_get_cpu();
1907 if (!env)
1908 return 0;
1909 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001910}
1911#endif
1912
blueswir18662d652008-10-02 18:32:44 +00001913static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00001914#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001915
1916#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001917 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001918 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001919 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001920
bellard9307c4c2004-04-04 12:57:25 +00001921 { "eax", offsetof(CPUState, regs[0]) },
1922 { "ecx", offsetof(CPUState, regs[1]) },
1923 { "edx", offsetof(CPUState, regs[2]) },
1924 { "ebx", offsetof(CPUState, regs[3]) },
1925 { "esp|sp", offsetof(CPUState, regs[4]) },
1926 { "ebp|fp", offsetof(CPUState, regs[5]) },
1927 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001928 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001929#ifdef TARGET_X86_64
1930 { "r8", offsetof(CPUState, regs[8]) },
1931 { "r9", offsetof(CPUState, regs[9]) },
1932 { "r10", offsetof(CPUState, regs[10]) },
1933 { "r11", offsetof(CPUState, regs[11]) },
1934 { "r12", offsetof(CPUState, regs[12]) },
1935 { "r13", offsetof(CPUState, regs[13]) },
1936 { "r14", offsetof(CPUState, regs[14]) },
1937 { "r15", offsetof(CPUState, regs[15]) },
1938#endif
bellard9307c4c2004-04-04 12:57:25 +00001939 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001940 { "eip", offsetof(CPUState, eip) },
1941 SEG("cs", R_CS)
1942 SEG("ds", R_DS)
1943 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001944 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001945 SEG("fs", R_FS)
1946 SEG("gs", R_GS)
1947 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001948#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001949 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001950 { "r0", offsetof(CPUState, gpr[0]) },
1951 { "r1", offsetof(CPUState, gpr[1]) },
1952 { "r2", offsetof(CPUState, gpr[2]) },
1953 { "r3", offsetof(CPUState, gpr[3]) },
1954 { "r4", offsetof(CPUState, gpr[4]) },
1955 { "r5", offsetof(CPUState, gpr[5]) },
1956 { "r6", offsetof(CPUState, gpr[6]) },
1957 { "r7", offsetof(CPUState, gpr[7]) },
1958 { "r8", offsetof(CPUState, gpr[8]) },
1959 { "r9", offsetof(CPUState, gpr[9]) },
1960 { "r10", offsetof(CPUState, gpr[10]) },
1961 { "r11", offsetof(CPUState, gpr[11]) },
1962 { "r12", offsetof(CPUState, gpr[12]) },
1963 { "r13", offsetof(CPUState, gpr[13]) },
1964 { "r14", offsetof(CPUState, gpr[14]) },
1965 { "r15", offsetof(CPUState, gpr[15]) },
1966 { "r16", offsetof(CPUState, gpr[16]) },
1967 { "r17", offsetof(CPUState, gpr[17]) },
1968 { "r18", offsetof(CPUState, gpr[18]) },
1969 { "r19", offsetof(CPUState, gpr[19]) },
1970 { "r20", offsetof(CPUState, gpr[20]) },
1971 { "r21", offsetof(CPUState, gpr[21]) },
1972 { "r22", offsetof(CPUState, gpr[22]) },
1973 { "r23", offsetof(CPUState, gpr[23]) },
1974 { "r24", offsetof(CPUState, gpr[24]) },
1975 { "r25", offsetof(CPUState, gpr[25]) },
1976 { "r26", offsetof(CPUState, gpr[26]) },
1977 { "r27", offsetof(CPUState, gpr[27]) },
1978 { "r28", offsetof(CPUState, gpr[28]) },
1979 { "r29", offsetof(CPUState, gpr[29]) },
1980 { "r30", offsetof(CPUState, gpr[30]) },
1981 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001982 /* Floating point registers */
1983 { "f0", offsetof(CPUState, fpr[0]) },
1984 { "f1", offsetof(CPUState, fpr[1]) },
1985 { "f2", offsetof(CPUState, fpr[2]) },
1986 { "f3", offsetof(CPUState, fpr[3]) },
1987 { "f4", offsetof(CPUState, fpr[4]) },
1988 { "f5", offsetof(CPUState, fpr[5]) },
1989 { "f6", offsetof(CPUState, fpr[6]) },
1990 { "f7", offsetof(CPUState, fpr[7]) },
1991 { "f8", offsetof(CPUState, fpr[8]) },
1992 { "f9", offsetof(CPUState, fpr[9]) },
1993 { "f10", offsetof(CPUState, fpr[10]) },
1994 { "f11", offsetof(CPUState, fpr[11]) },
1995 { "f12", offsetof(CPUState, fpr[12]) },
1996 { "f13", offsetof(CPUState, fpr[13]) },
1997 { "f14", offsetof(CPUState, fpr[14]) },
1998 { "f15", offsetof(CPUState, fpr[15]) },
1999 { "f16", offsetof(CPUState, fpr[16]) },
2000 { "f17", offsetof(CPUState, fpr[17]) },
2001 { "f18", offsetof(CPUState, fpr[18]) },
2002 { "f19", offsetof(CPUState, fpr[19]) },
2003 { "f20", offsetof(CPUState, fpr[20]) },
2004 { "f21", offsetof(CPUState, fpr[21]) },
2005 { "f22", offsetof(CPUState, fpr[22]) },
2006 { "f23", offsetof(CPUState, fpr[23]) },
2007 { "f24", offsetof(CPUState, fpr[24]) },
2008 { "f25", offsetof(CPUState, fpr[25]) },
2009 { "f26", offsetof(CPUState, fpr[26]) },
2010 { "f27", offsetof(CPUState, fpr[27]) },
2011 { "f28", offsetof(CPUState, fpr[28]) },
2012 { "f29", offsetof(CPUState, fpr[29]) },
2013 { "f30", offsetof(CPUState, fpr[30]) },
2014 { "f31", offsetof(CPUState, fpr[31]) },
2015 { "fpscr", offsetof(CPUState, fpscr) },
2016 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002017 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002018 { "lr", offsetof(CPUState, lr) },
2019 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002020 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002021 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002022 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002023 { "msr", 0, &monitor_get_msr, },
2024 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002025 { "tbu", 0, &monitor_get_tbu, },
2026 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002027#if defined(TARGET_PPC64)
2028 /* Address space register */
2029 { "asr", offsetof(CPUState, asr) },
2030#endif
2031 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002032 { "sdr1", offsetof(CPUState, sdr1) },
2033 { "sr0", offsetof(CPUState, sr[0]) },
2034 { "sr1", offsetof(CPUState, sr[1]) },
2035 { "sr2", offsetof(CPUState, sr[2]) },
2036 { "sr3", offsetof(CPUState, sr[3]) },
2037 { "sr4", offsetof(CPUState, sr[4]) },
2038 { "sr5", offsetof(CPUState, sr[5]) },
2039 { "sr6", offsetof(CPUState, sr[6]) },
2040 { "sr7", offsetof(CPUState, sr[7]) },
2041 { "sr8", offsetof(CPUState, sr[8]) },
2042 { "sr9", offsetof(CPUState, sr[9]) },
2043 { "sr10", offsetof(CPUState, sr[10]) },
2044 { "sr11", offsetof(CPUState, sr[11]) },
2045 { "sr12", offsetof(CPUState, sr[12]) },
2046 { "sr13", offsetof(CPUState, sr[13]) },
2047 { "sr14", offsetof(CPUState, sr[14]) },
2048 { "sr15", offsetof(CPUState, sr[15]) },
2049 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002050#elif defined(TARGET_SPARC)
2051 { "g0", offsetof(CPUState, gregs[0]) },
2052 { "g1", offsetof(CPUState, gregs[1]) },
2053 { "g2", offsetof(CPUState, gregs[2]) },
2054 { "g3", offsetof(CPUState, gregs[3]) },
2055 { "g4", offsetof(CPUState, gregs[4]) },
2056 { "g5", offsetof(CPUState, gregs[5]) },
2057 { "g6", offsetof(CPUState, gregs[6]) },
2058 { "g7", offsetof(CPUState, gregs[7]) },
2059 { "o0", 0, monitor_get_reg },
2060 { "o1", 1, monitor_get_reg },
2061 { "o2", 2, monitor_get_reg },
2062 { "o3", 3, monitor_get_reg },
2063 { "o4", 4, monitor_get_reg },
2064 { "o5", 5, monitor_get_reg },
2065 { "o6", 6, monitor_get_reg },
2066 { "o7", 7, monitor_get_reg },
2067 { "l0", 8, monitor_get_reg },
2068 { "l1", 9, monitor_get_reg },
2069 { "l2", 10, monitor_get_reg },
2070 { "l3", 11, monitor_get_reg },
2071 { "l4", 12, monitor_get_reg },
2072 { "l5", 13, monitor_get_reg },
2073 { "l6", 14, monitor_get_reg },
2074 { "l7", 15, monitor_get_reg },
2075 { "i0", 16, monitor_get_reg },
2076 { "i1", 17, monitor_get_reg },
2077 { "i2", 18, monitor_get_reg },
2078 { "i3", 19, monitor_get_reg },
2079 { "i4", 20, monitor_get_reg },
2080 { "i5", 21, monitor_get_reg },
2081 { "i6", 22, monitor_get_reg },
2082 { "i7", 23, monitor_get_reg },
2083 { "pc", offsetof(CPUState, pc) },
2084 { "npc", offsetof(CPUState, npc) },
2085 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002086#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002087 { "psr", 0, &monitor_get_psr, },
2088 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002089#endif
bellarde95c8d52004-09-30 22:22:08 +00002090 { "tbr", offsetof(CPUState, tbr) },
2091 { "fsr", offsetof(CPUState, fsr) },
2092 { "f0", offsetof(CPUState, fpr[0]) },
2093 { "f1", offsetof(CPUState, fpr[1]) },
2094 { "f2", offsetof(CPUState, fpr[2]) },
2095 { "f3", offsetof(CPUState, fpr[3]) },
2096 { "f4", offsetof(CPUState, fpr[4]) },
2097 { "f5", offsetof(CPUState, fpr[5]) },
2098 { "f6", offsetof(CPUState, fpr[6]) },
2099 { "f7", offsetof(CPUState, fpr[7]) },
2100 { "f8", offsetof(CPUState, fpr[8]) },
2101 { "f9", offsetof(CPUState, fpr[9]) },
2102 { "f10", offsetof(CPUState, fpr[10]) },
2103 { "f11", offsetof(CPUState, fpr[11]) },
2104 { "f12", offsetof(CPUState, fpr[12]) },
2105 { "f13", offsetof(CPUState, fpr[13]) },
2106 { "f14", offsetof(CPUState, fpr[14]) },
2107 { "f15", offsetof(CPUState, fpr[15]) },
2108 { "f16", offsetof(CPUState, fpr[16]) },
2109 { "f17", offsetof(CPUState, fpr[17]) },
2110 { "f18", offsetof(CPUState, fpr[18]) },
2111 { "f19", offsetof(CPUState, fpr[19]) },
2112 { "f20", offsetof(CPUState, fpr[20]) },
2113 { "f21", offsetof(CPUState, fpr[21]) },
2114 { "f22", offsetof(CPUState, fpr[22]) },
2115 { "f23", offsetof(CPUState, fpr[23]) },
2116 { "f24", offsetof(CPUState, fpr[24]) },
2117 { "f25", offsetof(CPUState, fpr[25]) },
2118 { "f26", offsetof(CPUState, fpr[26]) },
2119 { "f27", offsetof(CPUState, fpr[27]) },
2120 { "f28", offsetof(CPUState, fpr[28]) },
2121 { "f29", offsetof(CPUState, fpr[29]) },
2122 { "f30", offsetof(CPUState, fpr[30]) },
2123 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002124#ifdef TARGET_SPARC64
2125 { "f32", offsetof(CPUState, fpr[32]) },
2126 { "f34", offsetof(CPUState, fpr[34]) },
2127 { "f36", offsetof(CPUState, fpr[36]) },
2128 { "f38", offsetof(CPUState, fpr[38]) },
2129 { "f40", offsetof(CPUState, fpr[40]) },
2130 { "f42", offsetof(CPUState, fpr[42]) },
2131 { "f44", offsetof(CPUState, fpr[44]) },
2132 { "f46", offsetof(CPUState, fpr[46]) },
2133 { "f48", offsetof(CPUState, fpr[48]) },
2134 { "f50", offsetof(CPUState, fpr[50]) },
2135 { "f52", offsetof(CPUState, fpr[52]) },
2136 { "f54", offsetof(CPUState, fpr[54]) },
2137 { "f56", offsetof(CPUState, fpr[56]) },
2138 { "f58", offsetof(CPUState, fpr[58]) },
2139 { "f60", offsetof(CPUState, fpr[60]) },
2140 { "f62", offsetof(CPUState, fpr[62]) },
2141 { "asi", offsetof(CPUState, asi) },
2142 { "pstate", offsetof(CPUState, pstate) },
2143 { "cansave", offsetof(CPUState, cansave) },
2144 { "canrestore", offsetof(CPUState, canrestore) },
2145 { "otherwin", offsetof(CPUState, otherwin) },
2146 { "wstate", offsetof(CPUState, wstate) },
2147 { "cleanwin", offsetof(CPUState, cleanwin) },
2148 { "fprs", offsetof(CPUState, fprs) },
2149#endif
bellard9307c4c2004-04-04 12:57:25 +00002150#endif
2151 { NULL },
2152};
2153
aliguori376253e2009-03-05 23:01:23 +00002154static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002155{
aliguori376253e2009-03-05 23:01:23 +00002156 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002157 longjmp(expr_env, 1);
2158}
2159
bellard6a00d602005-11-21 23:25:50 +00002160/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002161static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002162{
blueswir18662d652008-10-02 18:32:44 +00002163 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002164 void *ptr;
2165
bellard9307c4c2004-04-04 12:57:25 +00002166 for(md = monitor_defs; md->name != NULL; md++) {
2167 if (compare_cmd(name, md->name)) {
2168 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002169 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002170 } else {
bellard6a00d602005-11-21 23:25:50 +00002171 CPUState *env = mon_get_cpu();
2172 if (!env)
2173 return -2;
2174 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002175 switch(md->type) {
2176 case MD_I32:
2177 *pval = *(int32_t *)ptr;
2178 break;
2179 case MD_TLONG:
2180 *pval = *(target_long *)ptr;
2181 break;
2182 default:
2183 *pval = 0;
2184 break;
2185 }
bellard9307c4c2004-04-04 12:57:25 +00002186 }
2187 return 0;
2188 }
2189 }
2190 return -1;
2191}
2192
2193static void next(void)
2194{
2195 if (pch != '\0') {
2196 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002197 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002198 pch++;
2199 }
2200}
2201
aliguori376253e2009-03-05 23:01:23 +00002202static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002203
aliguori376253e2009-03-05 23:01:23 +00002204static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002205{
blueswir1c2efc952007-09-25 17:28:42 +00002206 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002207 char *p;
bellard6a00d602005-11-21 23:25:50 +00002208 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002209
2210 switch(*pch) {
2211 case '+':
2212 next();
aliguori376253e2009-03-05 23:01:23 +00002213 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002214 break;
2215 case '-':
2216 next();
aliguori376253e2009-03-05 23:01:23 +00002217 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002218 break;
2219 case '~':
2220 next();
aliguori376253e2009-03-05 23:01:23 +00002221 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002222 break;
2223 case '(':
2224 next();
aliguori376253e2009-03-05 23:01:23 +00002225 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002226 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002227 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002228 }
2229 next();
2230 break;
bellard81d09122004-07-14 17:21:37 +00002231 case '\'':
2232 pch++;
2233 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002234 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002235 n = *pch;
2236 pch++;
2237 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002238 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002239 next();
2240 break;
bellard9307c4c2004-04-04 12:57:25 +00002241 case '$':
2242 {
2243 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002244 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002245
bellard9307c4c2004-04-04 12:57:25 +00002246 pch++;
2247 q = buf;
2248 while ((*pch >= 'a' && *pch <= 'z') ||
2249 (*pch >= 'A' && *pch <= 'Z') ||
2250 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00002251 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00002252 if ((q - buf) < sizeof(buf) - 1)
2253 *q++ = *pch;
2254 pch++;
2255 }
blueswir1cd390082008-11-16 13:53:32 +00002256 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002257 pch++;
2258 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00002259 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00002260 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00002261 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00002262 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00002263 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00002264 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00002265 }
2266 break;
2267 case '\0':
aliguori376253e2009-03-05 23:01:23 +00002268 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00002269 n = 0;
2270 break;
2271 default:
blueswir17743e582007-09-24 18:39:04 +00002272#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00002273 n = strtoull(pch, &p, 0);
2274#else
bellard9307c4c2004-04-04 12:57:25 +00002275 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00002276#endif
bellard9307c4c2004-04-04 12:57:25 +00002277 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00002278 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00002279 }
2280 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00002281 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002282 pch++;
2283 break;
2284 }
2285 return n;
2286}
2287
2288
aliguori376253e2009-03-05 23:01:23 +00002289static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002290{
blueswir1c2efc952007-09-25 17:28:42 +00002291 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002292 int op;
ths3b46e622007-09-17 08:09:54 +00002293
aliguori376253e2009-03-05 23:01:23 +00002294 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002295 for(;;) {
2296 op = *pch;
2297 if (op != '*' && op != '/' && op != '%')
2298 break;
2299 next();
aliguori376253e2009-03-05 23:01:23 +00002300 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002301 switch(op) {
2302 default:
2303 case '*':
2304 val *= val2;
2305 break;
2306 case '/':
2307 case '%':
ths5fafdf22007-09-16 21:08:06 +00002308 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00002309 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002310 if (op == '/')
2311 val /= val2;
2312 else
2313 val %= val2;
2314 break;
2315 }
2316 }
2317 return val;
2318}
2319
aliguori376253e2009-03-05 23:01:23 +00002320static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002321{
blueswir1c2efc952007-09-25 17:28:42 +00002322 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002323 int op;
bellard9307c4c2004-04-04 12:57:25 +00002324
aliguori376253e2009-03-05 23:01:23 +00002325 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002326 for(;;) {
2327 op = *pch;
2328 if (op != '&' && op != '|' && op != '^')
2329 break;
2330 next();
aliguori376253e2009-03-05 23:01:23 +00002331 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002332 switch(op) {
2333 default:
2334 case '&':
2335 val &= val2;
2336 break;
2337 case '|':
2338 val |= val2;
2339 break;
2340 case '^':
2341 val ^= val2;
2342 break;
2343 }
2344 }
2345 return val;
2346}
2347
aliguori376253e2009-03-05 23:01:23 +00002348static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002349{
blueswir1c2efc952007-09-25 17:28:42 +00002350 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002351 int op;
bellard9307c4c2004-04-04 12:57:25 +00002352
aliguori376253e2009-03-05 23:01:23 +00002353 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002354 for(;;) {
2355 op = *pch;
2356 if (op != '+' && op != '-')
2357 break;
2358 next();
aliguori376253e2009-03-05 23:01:23 +00002359 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002360 if (op == '+')
2361 val += val2;
2362 else
2363 val -= val2;
2364 }
2365 return val;
2366}
2367
aliguori376253e2009-03-05 23:01:23 +00002368static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002369{
2370 pch = *pp;
2371 if (setjmp(expr_env)) {
2372 *pp = pch;
2373 return -1;
2374 }
blueswir1cd390082008-11-16 13:53:32 +00002375 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002376 pch++;
aliguori376253e2009-03-05 23:01:23 +00002377 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002378 *pp = pch;
2379 return 0;
2380}
2381
2382static int get_str(char *buf, int buf_size, const char **pp)
2383{
2384 const char *p;
2385 char *q;
2386 int c;
2387
bellard81d09122004-07-14 17:21:37 +00002388 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002389 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00002390 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002391 p++;
2392 if (*p == '\0') {
2393 fail:
bellard81d09122004-07-14 17:21:37 +00002394 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002395 *pp = p;
2396 return -1;
2397 }
bellard9307c4c2004-04-04 12:57:25 +00002398 if (*p == '\"') {
2399 p++;
2400 while (*p != '\0' && *p != '\"') {
2401 if (*p == '\\') {
2402 p++;
2403 c = *p++;
2404 switch(c) {
2405 case 'n':
2406 c = '\n';
2407 break;
2408 case 'r':
2409 c = '\r';
2410 break;
2411 case '\\':
2412 case '\'':
2413 case '\"':
2414 break;
2415 default:
2416 qemu_printf("unsupported escape code: '\\%c'\n", c);
2417 goto fail;
2418 }
2419 if ((q - buf) < buf_size - 1) {
2420 *q++ = c;
2421 }
2422 } else {
2423 if ((q - buf) < buf_size - 1) {
2424 *q++ = *p;
2425 }
2426 p++;
2427 }
2428 }
2429 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002430 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002431 goto fail;
2432 }
2433 p++;
2434 } else {
blueswir1cd390082008-11-16 13:53:32 +00002435 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002436 if ((q - buf) < buf_size - 1) {
2437 *q++ = *p;
2438 }
2439 p++;
2440 }
bellard9307c4c2004-04-04 12:57:25 +00002441 }
bellard81d09122004-07-14 17:21:37 +00002442 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002443 *pp = p;
2444 return 0;
2445}
2446
2447static int default_fmt_format = 'x';
2448static int default_fmt_size = 4;
2449
2450#define MAX_ARGS 16
2451
aliguori376253e2009-03-05 23:01:23 +00002452static void monitor_handle_command(Monitor *mon, const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002453{
2454 const char *p, *pstart, *typestr;
2455 char *q;
2456 int c, nb_args, len, i, has_arg;
aliguori376253e2009-03-05 23:01:23 +00002457 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002458 char cmdname[256];
2459 char buf[1024];
2460 void *str_allocated[MAX_ARGS];
2461 void *args[MAX_ARGS];
aliguori376253e2009-03-05 23:01:23 +00002462 void (*handler_0)(Monitor *mon);
2463 void (*handler_1)(Monitor *mon, void *arg0);
2464 void (*handler_2)(Monitor *mon, void *arg0, void *arg1);
2465 void (*handler_3)(Monitor *mon, void *arg0, void *arg1, void *arg2);
2466 void (*handler_4)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2467 void *arg3);
2468 void (*handler_5)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2469 void *arg3, void *arg4);
2470 void (*handler_6)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2471 void *arg3, void *arg4, void *arg5);
2472 void (*handler_7)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2473 void *arg3, void *arg4, void *arg5, void *arg6);
bellard9dc39cb2004-03-14 21:38:27 +00002474
2475#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00002476 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00002477#endif
ths3b46e622007-09-17 08:09:54 +00002478
bellard9307c4c2004-04-04 12:57:25 +00002479 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002480 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002481 q = cmdname;
blueswir1cd390082008-11-16 13:53:32 +00002482 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002483 p++;
2484 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002485 return;
bellard9307c4c2004-04-04 12:57:25 +00002486 pstart = p;
blueswir1cd390082008-11-16 13:53:32 +00002487 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002488 p++;
2489 len = p - pstart;
2490 if (len > sizeof(cmdname) - 1)
2491 len = sizeof(cmdname) - 1;
2492 memcpy(cmdname, pstart, len);
2493 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002494
bellard9307c4c2004-04-04 12:57:25 +00002495 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00002496 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002497 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002498 goto found;
2499 }
aliguori376253e2009-03-05 23:01:23 +00002500 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002501 return;
2502 found:
bellard9307c4c2004-04-04 12:57:25 +00002503
2504 for(i = 0; i < MAX_ARGS; i++)
2505 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002506
bellard9307c4c2004-04-04 12:57:25 +00002507 /* parse the parameters */
2508 typestr = cmd->args_type;
2509 nb_args = 0;
2510 for(;;) {
2511 c = *typestr;
2512 if (c == '\0')
2513 break;
2514 typestr++;
2515 switch(c) {
2516 case 'F':
bellard81d09122004-07-14 17:21:37 +00002517 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002518 case 's':
2519 {
2520 int ret;
2521 char *str;
ths3b46e622007-09-17 08:09:54 +00002522
blueswir1cd390082008-11-16 13:53:32 +00002523 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002524 p++;
2525 if (*typestr == '?') {
2526 typestr++;
2527 if (*p == '\0') {
2528 /* no optional string: NULL argument */
2529 str = NULL;
2530 goto add_str;
2531 }
2532 }
2533 ret = get_str(buf, sizeof(buf), &p);
2534 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002535 switch(c) {
2536 case 'F':
aliguori376253e2009-03-05 23:01:23 +00002537 monitor_printf(mon, "%s: filename expected\n",
2538 cmdname);
bellard81d09122004-07-14 17:21:37 +00002539 break;
2540 case 'B':
aliguori376253e2009-03-05 23:01:23 +00002541 monitor_printf(mon, "%s: block device name expected\n",
2542 cmdname);
bellard81d09122004-07-14 17:21:37 +00002543 break;
2544 default:
aliguori376253e2009-03-05 23:01:23 +00002545 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002546 break;
2547 }
bellard9307c4c2004-04-04 12:57:25 +00002548 goto fail;
2549 }
2550 str = qemu_malloc(strlen(buf) + 1);
blueswir1363a37d2008-08-21 17:58:08 +00002551 pstrcpy(str, sizeof(buf), buf);
bellard9307c4c2004-04-04 12:57:25 +00002552 str_allocated[nb_args] = str;
2553 add_str:
2554 if (nb_args >= MAX_ARGS) {
2555 error_args:
aliguori376253e2009-03-05 23:01:23 +00002556 monitor_printf(mon, "%s: too many arguments\n", cmdname);
bellard9307c4c2004-04-04 12:57:25 +00002557 goto fail;
2558 }
2559 args[nb_args++] = str;
2560 }
2561 break;
2562 case '/':
2563 {
2564 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002565
blueswir1cd390082008-11-16 13:53:32 +00002566 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002567 p++;
2568 if (*p == '/') {
2569 /* format found */
2570 p++;
2571 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00002572 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002573 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00002574 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002575 count = count * 10 + (*p - '0');
2576 p++;
2577 }
2578 }
2579 size = -1;
2580 format = -1;
2581 for(;;) {
2582 switch(*p) {
2583 case 'o':
2584 case 'd':
2585 case 'u':
2586 case 'x':
2587 case 'i':
2588 case 'c':
2589 format = *p++;
2590 break;
2591 case 'b':
2592 size = 1;
2593 p++;
2594 break;
2595 case 'h':
2596 size = 2;
2597 p++;
2598 break;
2599 case 'w':
2600 size = 4;
2601 p++;
2602 break;
2603 case 'g':
2604 case 'L':
2605 size = 8;
2606 p++;
2607 break;
2608 default:
2609 goto next;
2610 }
2611 }
2612 next:
blueswir1cd390082008-11-16 13:53:32 +00002613 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00002614 monitor_printf(mon, "invalid char in format: '%c'\n",
2615 *p);
bellard9307c4c2004-04-04 12:57:25 +00002616 goto fail;
2617 }
bellard9307c4c2004-04-04 12:57:25 +00002618 if (format < 0)
2619 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002620 if (format != 'i') {
2621 /* for 'i', not specifying a size gives -1 as size */
2622 if (size < 0)
2623 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00002624 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00002625 }
bellard9307c4c2004-04-04 12:57:25 +00002626 default_fmt_format = format;
2627 } else {
2628 count = 1;
2629 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002630 if (format != 'i') {
2631 size = default_fmt_size;
2632 } else {
2633 size = -1;
2634 }
bellard9307c4c2004-04-04 12:57:25 +00002635 }
2636 if (nb_args + 3 > MAX_ARGS)
2637 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002638 args[nb_args++] = (void*)(long)count;
2639 args[nb_args++] = (void*)(long)format;
2640 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002641 }
2642 break;
2643 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002644 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002645 {
blueswir1c2efc952007-09-25 17:28:42 +00002646 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002647
blueswir1cd390082008-11-16 13:53:32 +00002648 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002649 p++;
bellard34405572004-06-08 00:55:58 +00002650 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002651 if (*typestr == '?') {
2652 if (*p == '\0')
2653 has_arg = 0;
2654 else
2655 has_arg = 1;
2656 } else {
2657 if (*p == '.') {
2658 p++;
blueswir1cd390082008-11-16 13:53:32 +00002659 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00002660 p++;
2661 has_arg = 1;
2662 } else {
2663 has_arg = 0;
2664 }
2665 }
bellard13224a82006-07-14 22:03:35 +00002666 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002667 if (nb_args >= MAX_ARGS)
2668 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002669 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002670 if (!has_arg) {
2671 if (nb_args >= MAX_ARGS)
2672 goto error_args;
2673 val = -1;
2674 goto add_num;
2675 }
2676 }
aliguori376253e2009-03-05 23:01:23 +00002677 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00002678 goto fail;
2679 add_num:
bellard92a31b12005-02-10 22:00:52 +00002680 if (c == 'i') {
2681 if (nb_args >= MAX_ARGS)
2682 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002683 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002684 } else {
2685 if ((nb_args + 1) >= MAX_ARGS)
2686 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002687#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002688 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002689#else
2690 args[nb_args++] = (void *)0;
2691#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002692 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002693 }
bellard9307c4c2004-04-04 12:57:25 +00002694 }
2695 break;
2696 case '-':
2697 {
2698 int has_option;
2699 /* option */
ths3b46e622007-09-17 08:09:54 +00002700
bellard9307c4c2004-04-04 12:57:25 +00002701 c = *typestr++;
2702 if (c == '\0')
2703 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00002704 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002705 p++;
2706 has_option = 0;
2707 if (*p == '-') {
2708 p++;
2709 if (*p != c) {
aliguori376253e2009-03-05 23:01:23 +00002710 monitor_printf(mon, "%s: unsupported option -%c\n",
2711 cmdname, *p);
bellard9307c4c2004-04-04 12:57:25 +00002712 goto fail;
2713 }
2714 p++;
2715 has_option = 1;
2716 }
2717 if (nb_args >= MAX_ARGS)
2718 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002719 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002720 }
2721 break;
2722 default:
2723 bad_type:
aliguori376253e2009-03-05 23:01:23 +00002724 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00002725 goto fail;
2726 }
2727 }
2728 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00002729 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002730 p++;
2731 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00002732 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
2733 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00002734 goto fail;
2735 }
2736
2737 switch(nb_args) {
2738 case 0:
blueswir1a5f1b962008-08-17 20:21:51 +00002739 handler_0 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002740 handler_0(mon);
bellard9307c4c2004-04-04 12:57:25 +00002741 break;
2742 case 1:
blueswir1a5f1b962008-08-17 20:21:51 +00002743 handler_1 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002744 handler_1(mon, args[0]);
bellard9307c4c2004-04-04 12:57:25 +00002745 break;
2746 case 2:
blueswir1a5f1b962008-08-17 20:21:51 +00002747 handler_2 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002748 handler_2(mon, args[0], args[1]);
bellard9307c4c2004-04-04 12:57:25 +00002749 break;
2750 case 3:
blueswir1a5f1b962008-08-17 20:21:51 +00002751 handler_3 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002752 handler_3(mon, args[0], args[1], args[2]);
bellard9307c4c2004-04-04 12:57:25 +00002753 break;
2754 case 4:
blueswir1a5f1b962008-08-17 20:21:51 +00002755 handler_4 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002756 handler_4(mon, args[0], args[1], args[2], args[3]);
bellard9307c4c2004-04-04 12:57:25 +00002757 break;
2758 case 5:
blueswir1a5f1b962008-08-17 20:21:51 +00002759 handler_5 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002760 handler_5(mon, args[0], args[1], args[2], args[3], args[4]);
bellard9307c4c2004-04-04 12:57:25 +00002761 break;
bellard34405572004-06-08 00:55:58 +00002762 case 6:
blueswir1a5f1b962008-08-17 20:21:51 +00002763 handler_6 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002764 handler_6(mon, args[0], args[1], args[2], args[3], args[4], args[5]);
bellard34405572004-06-08 00:55:58 +00002765 break;
bellardec36b692006-07-16 18:57:03 +00002766 case 7:
blueswir1a5f1b962008-08-17 20:21:51 +00002767 handler_7 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002768 handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2769 args[6]);
bellardec36b692006-07-16 18:57:03 +00002770 break;
bellard9307c4c2004-04-04 12:57:25 +00002771 default:
aliguori376253e2009-03-05 23:01:23 +00002772 monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args);
bellard9307c4c2004-04-04 12:57:25 +00002773 goto fail;
2774 }
2775 fail:
2776 for(i = 0; i < MAX_ARGS; i++)
2777 qemu_free(str_allocated[i]);
2778 return;
bellard9dc39cb2004-03-14 21:38:27 +00002779}
2780
bellard81d09122004-07-14 17:21:37 +00002781static void cmd_completion(const char *name, const char *list)
2782{
2783 const char *p, *pstart;
2784 char cmd[128];
2785 int len;
2786
2787 p = list;
2788 for(;;) {
2789 pstart = p;
2790 p = strchr(p, '|');
2791 if (!p)
2792 p = pstart + strlen(pstart);
2793 len = p - pstart;
2794 if (len > sizeof(cmd) - 2)
2795 len = sizeof(cmd) - 2;
2796 memcpy(cmd, pstart, len);
2797 cmd[len] = '\0';
2798 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00002799 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00002800 }
2801 if (*p == '\0')
2802 break;
2803 p++;
2804 }
2805}
2806
2807static void file_completion(const char *input)
2808{
2809 DIR *ffs;
2810 struct dirent *d;
2811 char path[1024];
2812 char file[1024], file_prefix[1024];
2813 int input_path_len;
2814 const char *p;
2815
ths5fafdf22007-09-16 21:08:06 +00002816 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002817 if (!p) {
2818 input_path_len = 0;
2819 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00002820 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00002821 } else {
2822 input_path_len = p - input + 1;
2823 memcpy(path, input, input_path_len);
2824 if (input_path_len > sizeof(path) - 1)
2825 input_path_len = sizeof(path) - 1;
2826 path[input_path_len] = '\0';
2827 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2828 }
2829#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00002830 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
2831 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00002832#endif
2833 ffs = opendir(path);
2834 if (!ffs)
2835 return;
2836 for(;;) {
2837 struct stat sb;
2838 d = readdir(ffs);
2839 if (!d)
2840 break;
2841 if (strstart(d->d_name, file_prefix, NULL)) {
2842 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00002843 if (input_path_len < sizeof(file))
2844 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2845 d->d_name);
bellard81d09122004-07-14 17:21:37 +00002846 /* stat the file to find out if it's a directory.
2847 * In that case add a slash to speed up typing long paths
2848 */
2849 stat(file, &sb);
2850 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00002851 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00002852 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00002853 }
2854 }
2855 closedir(ffs);
2856}
2857
aliguori51de9762009-03-05 23:00:43 +00002858static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00002859{
aliguori51de9762009-03-05 23:00:43 +00002860 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00002861 const char *input = opaque;
2862
2863 if (input[0] == '\0' ||
2864 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00002865 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00002866 }
2867}
2868
2869/* NOTE: this parser is an approximate form of the real command parser */
2870static void parse_cmdline(const char *cmdline,
2871 int *pnb_args, char **args)
2872{
2873 const char *p;
2874 int nb_args, ret;
2875 char buf[1024];
2876
2877 p = cmdline;
2878 nb_args = 0;
2879 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00002880 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00002881 p++;
2882 if (*p == '\0')
2883 break;
2884 if (nb_args >= MAX_ARGS)
2885 break;
2886 ret = get_str(buf, sizeof(buf), &p);
2887 args[nb_args] = qemu_strdup(buf);
2888 nb_args++;
2889 if (ret < 0)
2890 break;
2891 }
2892 *pnb_args = nb_args;
2893}
2894
aliguori4c36ba32009-03-05 23:01:37 +00002895static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002896{
2897 const char *cmdname;
2898 char *args[MAX_ARGS];
2899 int nb_args, i, len;
2900 const char *ptype, *str;
aliguori376253e2009-03-05 23:01:23 +00002901 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002902 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002903
2904 parse_cmdline(cmdline, &nb_args, args);
2905#ifdef DEBUG_COMPLETION
2906 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00002907 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00002908 }
2909#endif
2910
2911 /* if the line ends with a space, it means we want to complete the
2912 next arg */
2913 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00002914 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00002915 if (nb_args >= MAX_ARGS)
2916 return;
2917 args[nb_args++] = qemu_strdup("");
2918 }
2919 if (nb_args <= 1) {
2920 /* command completion */
2921 if (nb_args == 0)
2922 cmdname = "";
2923 else
2924 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00002925 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00002926 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00002927 cmd_completion(cmdname, cmd->name);
2928 }
2929 } else {
2930 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00002931 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00002932 if (compare_cmd(args[0], cmd->name))
2933 goto found;
2934 }
2935 return;
2936 found:
2937 ptype = cmd->args_type;
2938 for(i = 0; i < nb_args - 2; i++) {
2939 if (*ptype != '\0') {
2940 ptype++;
2941 while (*ptype == '?')
2942 ptype++;
2943 }
2944 }
2945 str = args[nb_args - 1];
2946 switch(*ptype) {
2947 case 'F':
2948 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00002949 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00002950 file_completion(str);
2951 break;
2952 case 'B':
2953 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00002954 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00002955 bdrv_iterate(block_completion_it, (void *)str);
2956 break;
bellard7fe48482004-10-09 18:08:01 +00002957 case 's':
2958 /* XXX: more generic ? */
2959 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00002960 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00002961 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2962 cmd_completion(str, cmd->name);
2963 }
bellard64866c32006-05-07 18:03:31 +00002964 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00002965 char *sep = strrchr(str, '-');
2966 if (sep)
2967 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00002968 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00002969 for(key = key_defs; key->name != NULL; key++) {
2970 cmd_completion(str, key->name);
2971 }
bellard7fe48482004-10-09 18:08:01 +00002972 }
2973 break;
bellard81d09122004-07-14 17:21:37 +00002974 default:
2975 break;
2976 }
2977 }
2978 for(i = 0; i < nb_args; i++)
2979 qemu_free(args[i]);
2980}
2981
aliguori731b0362009-03-05 23:01:42 +00002982static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00002983{
aliguori731b0362009-03-05 23:01:42 +00002984 Monitor *mon = opaque;
2985
2986 return (mon->suspend_cnt == 0) ? 128 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00002987}
2988
aliguori731b0362009-03-05 23:01:42 +00002989static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00002990{
aliguori731b0362009-03-05 23:01:42 +00002991 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00002992 int i;
aliguori376253e2009-03-05 23:01:23 +00002993
aliguori731b0362009-03-05 23:01:42 +00002994 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00002995
aliguoricde76ee2009-03-05 23:01:51 +00002996 if (cur_mon->rs) {
2997 for (i = 0; i < size; i++)
2998 readline_handle_byte(cur_mon->rs, buf[i]);
2999 } else {
3000 if (size == 0 || buf[size - 1] != 0)
3001 monitor_printf(cur_mon, "corrupted command\n");
3002 else
3003 monitor_handle_command(cur_mon, (char *)buf);
3004 }
aliguori731b0362009-03-05 23:01:42 +00003005
3006 cur_mon = old_mon;
3007}
aliguorid8f44602008-10-06 13:52:44 +00003008
aliguori376253e2009-03-05 23:01:23 +00003009static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003010{
aliguori731b0362009-03-05 23:01:42 +00003011 monitor_suspend(mon);
aliguori376253e2009-03-05 23:01:23 +00003012 monitor_handle_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00003013 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00003014}
3015
aliguoricde76ee2009-03-05 23:01:51 +00003016int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003017{
aliguoricde76ee2009-03-05 23:01:51 +00003018 if (!mon->rs)
3019 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00003020 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00003021 return 0;
aliguorid8f44602008-10-06 13:52:44 +00003022}
3023
aliguori376253e2009-03-05 23:01:23 +00003024void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003025{
aliguoricde76ee2009-03-05 23:01:51 +00003026 if (!mon->rs)
3027 return;
aliguori731b0362009-03-05 23:01:42 +00003028 if (--mon->suspend_cnt == 0)
3029 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00003030}
3031
aliguori731b0362009-03-05 23:01:42 +00003032static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00003033{
aliguori376253e2009-03-05 23:01:23 +00003034 Monitor *mon = opaque;
3035
aliguori2724b182009-03-05 23:01:47 +00003036 switch (event) {
3037 case CHR_EVENT_MUX_IN:
3038 readline_restart(mon->rs);
3039 monitor_resume(mon);
3040 monitor_flush(mon);
3041 break;
ths86e94de2007-01-05 22:01:59 +00003042
aliguori2724b182009-03-05 23:01:47 +00003043 case CHR_EVENT_MUX_OUT:
3044 if (mon->suspend_cnt == 0)
3045 monitor_printf(mon, "\n");
3046 monitor_flush(mon);
3047 monitor_suspend(mon);
3048 break;
3049
3050 case CHR_EVENT_RESET:
3051 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3052 "information\n", QEMU_VERSION);
3053 if (mon->chr->focus == 0)
3054 readline_show_prompt(mon->rs);
3055 break;
3056 }
ths86e94de2007-01-05 22:01:59 +00003057}
3058
aliguori76655d62009-03-06 20:27:37 +00003059
3060/*
3061 * Local variables:
3062 * c-indent-level: 4
3063 * c-basic-offset: 4
3064 * tab-width: 8
3065 * End:
3066 */
3067
aliguori731b0362009-03-05 23:01:42 +00003068void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00003069{
aliguori731b0362009-03-05 23:01:42 +00003070 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00003071 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00003072
3073 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00003074 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00003075 is_first_init = 0;
3076 }
aliguori87127162009-03-05 23:01:29 +00003077
3078 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00003079
aliguori87127162009-03-05 23:01:29 +00003080 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00003081 mon->flags = flags;
aliguori2724b182009-03-05 23:01:47 +00003082 if (mon->chr->focus != 0)
3083 mon->suspend_cnt = 1; /* mux'ed monitors start suspended */
aliguoricde76ee2009-03-05 23:01:51 +00003084 if (flags & MONITOR_USE_READLINE) {
3085 mon->rs = readline_init(mon, monitor_find_completion);
3086 monitor_read_command(mon, 0);
3087 }
aliguori87127162009-03-05 23:01:29 +00003088
aliguori731b0362009-03-05 23:01:42 +00003089 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event,
3090 mon);
aliguori87127162009-03-05 23:01:29 +00003091
3092 LIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00003093 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00003094 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00003095}
3096
aliguori376253e2009-03-05 23:01:23 +00003097static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003098{
aliguoribb5fc202009-03-05 23:01:15 +00003099 BlockDriverState *bs = opaque;
3100 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00003101
aliguoribb5fc202009-03-05 23:01:15 +00003102 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00003103 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00003104 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00003105 }
aliguori731b0362009-03-05 23:01:42 +00003106 if (mon->password_completion_cb)
3107 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00003108
aliguori731b0362009-03-05 23:01:42 +00003109 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00003110}
aliguoric0f4ce72009-03-05 23:01:01 +00003111
aliguori376253e2009-03-05 23:01:23 +00003112void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00003113 BlockDriverCompletionFunc *completion_cb,
3114 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00003115{
aliguoricde76ee2009-03-05 23:01:51 +00003116 int err;
3117
aliguoribb5fc202009-03-05 23:01:15 +00003118 if (!bdrv_key_required(bs)) {
3119 if (completion_cb)
3120 completion_cb(opaque, 0);
3121 return;
3122 }
aliguoric0f4ce72009-03-05 23:01:01 +00003123
aliguori376253e2009-03-05 23:01:23 +00003124 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
3125 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00003126
aliguori731b0362009-03-05 23:01:42 +00003127 mon->password_completion_cb = completion_cb;
3128 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00003129
aliguoricde76ee2009-03-05 23:01:51 +00003130 err = monitor_read_password(mon, bdrv_password_cb, bs);
3131
3132 if (err && completion_cb)
3133 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00003134}