blob: da106d8bc4744318eac637664bca0d51c01458af [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
aliguori376253e2009-03-05 23:01:23 +0000573static void do_gdbserver(Monitor *mon, const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000574{
pbrookcfc34752007-02-22 01:48:01 +0000575 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000576 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000577 if (gdbserver_start(port) < 0) {
aliguori376253e2009-03-05 23:01:23 +0000578 monitor_printf(mon, "Could not open gdbserver socket on port '%s'\n",
579 port);
bellard8a7ddc32004-03-31 19:00:16 +0000580 } else {
aliguori376253e2009-03-05 23:01:23 +0000581 monitor_printf(mon, "Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000582 }
583}
bellard67b915a2004-03-31 23:37:16 +0000584#endif
bellard8a7ddc32004-03-31 19:00:16 +0000585
aliguori376253e2009-03-05 23:01:23 +0000586static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000587{
aliguori376253e2009-03-05 23:01:23 +0000588 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000589 switch(c) {
590 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000591 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000592 break;
593 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000594 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000595 break;
596 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000597 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000598 break;
599 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000600 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000601 break;
602 default:
603 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000604 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000605 } else {
aliguori376253e2009-03-05 23:01:23 +0000606 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000607 }
608 break;
609 }
aliguori376253e2009-03-05 23:01:23 +0000610 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000611}
612
aliguori376253e2009-03-05 23:01:23 +0000613static void memory_dump(Monitor *mon, int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000614 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000615{
bellard6a00d602005-11-21 23:25:50 +0000616 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000617 int nb_per_line, l, line_size, i, max_digits, len;
618 uint8_t buf[16];
619 uint64_t v;
620
621 if (format == 'i') {
622 int flags;
623 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000624 env = mon_get_cpu();
625 if (!env && !is_physical)
626 return;
bellard9307c4c2004-04-04 12:57:25 +0000627#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000628 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000629 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000630 } else if (wsize == 4) {
631 flags = 0;
632 } else {
bellard6a15fd12006-04-12 21:07:07 +0000633 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000634 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000635 if (env) {
636#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000637 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000638 (env->segs[R_CS].flags & DESC_L_MASK))
639 flags = 2;
640 else
641#endif
642 if (!(env->segs[R_CS].flags & DESC_B_MASK))
643 flags = 1;
644 }
bellard4c27ba22004-04-25 18:05:08 +0000645 }
646#endif
aliguori376253e2009-03-05 23:01:23 +0000647 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000648 return;
649 }
650
651 len = wsize * count;
652 if (wsize == 1)
653 line_size = 8;
654 else
655 line_size = 16;
656 nb_per_line = line_size / wsize;
657 max_digits = 0;
658
659 switch(format) {
660 case 'o':
661 max_digits = (wsize * 8 + 2) / 3;
662 break;
663 default:
664 case 'x':
665 max_digits = (wsize * 8) / 4;
666 break;
667 case 'u':
668 case 'd':
669 max_digits = (wsize * 8 * 10 + 32) / 33;
670 break;
671 case 'c':
672 wsize = 1;
673 break;
674 }
675
676 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000677 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +0000678 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +0000679 else
aliguori376253e2009-03-05 23:01:23 +0000680 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000681 l = len;
682 if (l > line_size)
683 l = line_size;
684 if (is_physical) {
685 cpu_physical_memory_rw(addr, buf, l, 0);
686 } else {
bellard6a00d602005-11-21 23:25:50 +0000687 env = mon_get_cpu();
688 if (!env)
689 break;
aliguoric8f79b62008-08-18 14:00:20 +0000690 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +0000691 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +0000692 break;
693 }
bellard9307c4c2004-04-04 12:57:25 +0000694 }
ths5fafdf22007-09-16 21:08:06 +0000695 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000696 while (i < l) {
697 switch(wsize) {
698 default:
699 case 1:
700 v = ldub_raw(buf + i);
701 break;
702 case 2:
703 v = lduw_raw(buf + i);
704 break;
705 case 4:
bellard92a31b12005-02-10 22:00:52 +0000706 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000707 break;
708 case 8:
709 v = ldq_raw(buf + i);
710 break;
711 }
aliguori376253e2009-03-05 23:01:23 +0000712 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +0000713 switch(format) {
714 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000715 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000716 break;
717 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000718 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000719 break;
720 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000721 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000722 break;
723 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000724 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000725 break;
726 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000727 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +0000728 break;
729 }
730 i += wsize;
731 }
aliguori376253e2009-03-05 23:01:23 +0000732 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000733 addr += l;
734 len -= l;
735 }
736}
737
bellard92a31b12005-02-10 22:00:52 +0000738#if TARGET_LONG_BITS == 64
739#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
740#else
741#define GET_TLONG(h, l) (l)
742#endif
743
aliguori376253e2009-03-05 23:01:23 +0000744static void do_memory_dump(Monitor *mon, int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000745 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000746{
bellard92a31b12005-02-10 22:00:52 +0000747 target_long addr = GET_TLONG(addrh, addrl);
aliguori376253e2009-03-05 23:01:23 +0000748 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +0000749}
750
blueswir17743e582007-09-24 18:39:04 +0000751#if TARGET_PHYS_ADDR_BITS > 32
752#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
753#else
754#define GET_TPHYSADDR(h, l) (l)
755#endif
756
aliguori376253e2009-03-05 23:01:23 +0000757static void do_physical_memory_dump(Monitor *mon, int count, int format,
758 int size, uint32_t addrh, uint32_t addrl)
bellard92a31b12005-02-10 22:00:52 +0000759
bellard9307c4c2004-04-04 12:57:25 +0000760{
blueswir17743e582007-09-24 18:39:04 +0000761 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
aliguori376253e2009-03-05 23:01:23 +0000762 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +0000763}
764
aliguori376253e2009-03-05 23:01:23 +0000765static void do_print(Monitor *mon, int count, int format, int size,
766 unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000767{
blueswir17743e582007-09-24 18:39:04 +0000768 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
769#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000770 switch(format) {
771 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000772 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +0000773 break;
774 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000775 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +0000776 break;
777 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000778 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +0000779 break;
780 default:
781 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000782 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +0000783 break;
784 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000785 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +0000786 break;
787 }
bellard92a31b12005-02-10 22:00:52 +0000788#else
789 switch(format) {
790 case 'o':
aliguori376253e2009-03-05 23:01:23 +0000791 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000792 break;
793 case 'x':
aliguori376253e2009-03-05 23:01:23 +0000794 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000795 break;
796 case 'u':
aliguori376253e2009-03-05 23:01:23 +0000797 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000798 break;
799 default:
800 case 'd':
aliguori376253e2009-03-05 23:01:23 +0000801 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000802 break;
803 case 'c':
aliguori376253e2009-03-05 23:01:23 +0000804 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +0000805 break;
806 }
807#endif
aliguori376253e2009-03-05 23:01:23 +0000808 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000809}
810
aliguori376253e2009-03-05 23:01:23 +0000811static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000812 uint32_t size, const char *filename)
813{
814 FILE *f;
815 target_long addr = GET_TLONG(valh, vall);
816 uint32_t l;
817 CPUState *env;
818 uint8_t buf[1024];
819
820 env = mon_get_cpu();
821 if (!env)
822 return;
823
824 f = fopen(filename, "wb");
825 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000826 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +0000827 return;
828 }
829 while (size != 0) {
830 l = sizeof(buf);
831 if (l > size)
832 l = size;
833 cpu_memory_rw_debug(env, addr, buf, l, 0);
834 fwrite(buf, 1, l, f);
835 addr += l;
836 size -= l;
837 }
838 fclose(f);
839}
840
aliguori376253e2009-03-05 23:01:23 +0000841static void do_physical_memory_save(Monitor *mon, unsigned int valh,
842 unsigned int vall, uint32_t size,
843 const char *filename)
aurel32a8bdf7a2008-04-11 21:36:14 +0000844{
845 FILE *f;
846 uint32_t l;
847 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000848 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000849
850 f = fopen(filename, "wb");
851 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000852 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +0000853 return;
854 }
855 while (size != 0) {
856 l = sizeof(buf);
857 if (l > size)
858 l = size;
859 cpu_physical_memory_rw(addr, buf, l, 0);
860 fwrite(buf, 1, l, f);
861 fflush(f);
862 addr += l;
863 size -= l;
864 }
865 fclose(f);
866}
867
aliguori376253e2009-03-05 23:01:23 +0000868static void do_sum(Monitor *mon, uint32_t start, uint32_t size)
bellarde4cf1ad2005-06-04 20:15:57 +0000869{
870 uint32_t addr;
871 uint8_t buf[1];
872 uint16_t sum;
873
874 sum = 0;
875 for(addr = start; addr < (start + size); addr++) {
876 cpu_physical_memory_rw(addr, buf, 1, 0);
877 /* BSD sum algorithm ('sum' Unix command) */
878 sum = (sum >> 1) | (sum << 15);
879 sum += buf[0];
880 }
aliguori376253e2009-03-05 23:01:23 +0000881 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +0000882}
883
bellarda3a91a32004-06-04 11:06:21 +0000884typedef struct {
885 int keycode;
886 const char *name;
887} KeyDef;
888
889static const KeyDef key_defs[] = {
890 { 0x2a, "shift" },
891 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000892
bellarda3a91a32004-06-04 11:06:21 +0000893 { 0x38, "alt" },
894 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +0000895 { 0x64, "altgr" },
896 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +0000897 { 0x1d, "ctrl" },
898 { 0x9d, "ctrl_r" },
899
900 { 0xdd, "menu" },
901
902 { 0x01, "esc" },
903
904 { 0x02, "1" },
905 { 0x03, "2" },
906 { 0x04, "3" },
907 { 0x05, "4" },
908 { 0x06, "5" },
909 { 0x07, "6" },
910 { 0x08, "7" },
911 { 0x09, "8" },
912 { 0x0a, "9" },
913 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000914 { 0x0c, "minus" },
915 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000916 { 0x0e, "backspace" },
917
918 { 0x0f, "tab" },
919 { 0x10, "q" },
920 { 0x11, "w" },
921 { 0x12, "e" },
922 { 0x13, "r" },
923 { 0x14, "t" },
924 { 0x15, "y" },
925 { 0x16, "u" },
926 { 0x17, "i" },
927 { 0x18, "o" },
928 { 0x19, "p" },
929
930 { 0x1c, "ret" },
931
932 { 0x1e, "a" },
933 { 0x1f, "s" },
934 { 0x20, "d" },
935 { 0x21, "f" },
936 { 0x22, "g" },
937 { 0x23, "h" },
938 { 0x24, "j" },
939 { 0x25, "k" },
940 { 0x26, "l" },
941
942 { 0x2c, "z" },
943 { 0x2d, "x" },
944 { 0x2e, "c" },
945 { 0x2f, "v" },
946 { 0x30, "b" },
947 { 0x31, "n" },
948 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +0000949 { 0x33, "comma" },
950 { 0x34, "dot" },
951 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +0000952
balrog4d3b6f62008-02-10 16:33:14 +0000953 { 0x37, "asterisk" },
954
bellarda3a91a32004-06-04 11:06:21 +0000955 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000956 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000957 { 0x3b, "f1" },
958 { 0x3c, "f2" },
959 { 0x3d, "f3" },
960 { 0x3e, "f4" },
961 { 0x3f, "f5" },
962 { 0x40, "f6" },
963 { 0x41, "f7" },
964 { 0x42, "f8" },
965 { 0x43, "f9" },
966 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000967 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000968 { 0x46, "scroll_lock" },
969
bellard64866c32006-05-07 18:03:31 +0000970 { 0xb5, "kp_divide" },
971 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000972 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000973 { 0x4e, "kp_add" },
974 { 0x9c, "kp_enter" },
975 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +0000976 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +0000977
978 { 0x52, "kp_0" },
979 { 0x4f, "kp_1" },
980 { 0x50, "kp_2" },
981 { 0x51, "kp_3" },
982 { 0x4b, "kp_4" },
983 { 0x4c, "kp_5" },
984 { 0x4d, "kp_6" },
985 { 0x47, "kp_7" },
986 { 0x48, "kp_8" },
987 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000988
bellarda3a91a32004-06-04 11:06:21 +0000989 { 0x56, "<" },
990
991 { 0x57, "f11" },
992 { 0x58, "f12" },
993
994 { 0xb7, "print" },
995
996 { 0xc7, "home" },
997 { 0xc9, "pgup" },
998 { 0xd1, "pgdn" },
999 { 0xcf, "end" },
1000
1001 { 0xcb, "left" },
1002 { 0xc8, "up" },
1003 { 0xd0, "down" },
1004 { 0xcd, "right" },
1005
1006 { 0xd2, "insert" },
1007 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001008#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1009 { 0xf0, "stop" },
1010 { 0xf1, "again" },
1011 { 0xf2, "props" },
1012 { 0xf3, "undo" },
1013 { 0xf4, "front" },
1014 { 0xf5, "copy" },
1015 { 0xf6, "open" },
1016 { 0xf7, "paste" },
1017 { 0xf8, "find" },
1018 { 0xf9, "cut" },
1019 { 0xfa, "lf" },
1020 { 0xfb, "help" },
1021 { 0xfc, "meta_l" },
1022 { 0xfd, "meta_r" },
1023 { 0xfe, "compose" },
1024#endif
bellarda3a91a32004-06-04 11:06:21 +00001025 { 0, NULL },
1026};
1027
1028static int get_keycode(const char *key)
1029{
1030 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001031 char *endp;
1032 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001033
1034 for(p = key_defs; p->name != NULL; p++) {
1035 if (!strcmp(key, p->name))
1036 return p->keycode;
1037 }
bellard64866c32006-05-07 18:03:31 +00001038 if (strstart(key, "0x", NULL)) {
1039 ret = strtoul(key, &endp, 0);
1040 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1041 return ret;
1042 }
bellarda3a91a32004-06-04 11:06:21 +00001043 return -1;
1044}
1045
balrogc8256f92008-06-08 22:45:01 +00001046#define MAX_KEYCODES 16
1047static uint8_t keycodes[MAX_KEYCODES];
1048static int nb_pending_keycodes;
1049static QEMUTimer *key_timer;
1050
1051static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001052{
balrogc8256f92008-06-08 22:45:01 +00001053 int keycode;
1054
1055 while (nb_pending_keycodes > 0) {
1056 nb_pending_keycodes--;
1057 keycode = keycodes[nb_pending_keycodes];
1058 if (keycode & 0x80)
1059 kbd_put_keycode(0xe0);
1060 kbd_put_keycode(keycode | 0x80);
1061 }
1062}
1063
aliguori376253e2009-03-05 23:01:23 +00001064static void do_sendkey(Monitor *mon, const char *string, int has_hold_time,
1065 int hold_time)
balrogc8256f92008-06-08 22:45:01 +00001066{
balrog3401c0d2008-06-04 10:05:59 +00001067 char keyname_buf[16];
1068 char *separator;
1069 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +00001070
balrogc8256f92008-06-08 22:45:01 +00001071 if (nb_pending_keycodes > 0) {
1072 qemu_del_timer(key_timer);
1073 release_keys(NULL);
1074 }
1075 if (!has_hold_time)
1076 hold_time = 100;
1077 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001078 while (1) {
1079 separator = strchr(string, '-');
1080 keyname_len = separator ? separator - string : strlen(string);
1081 if (keyname_len > 0) {
1082 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1083 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001084 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001085 return;
bellarda3a91a32004-06-04 11:06:21 +00001086 }
balrogc8256f92008-06-08 22:45:01 +00001087 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001088 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001089 return;
1090 }
1091 keyname_buf[keyname_len] = 0;
1092 keycode = get_keycode(keyname_buf);
1093 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001094 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001095 return;
1096 }
balrogc8256f92008-06-08 22:45:01 +00001097 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001098 }
balrog3401c0d2008-06-04 10:05:59 +00001099 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001100 break;
balrog3401c0d2008-06-04 10:05:59 +00001101 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001102 }
balrogc8256f92008-06-08 22:45:01 +00001103 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001104 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001105 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001106 keycode = keycodes[i];
1107 if (keycode & 0x80)
1108 kbd_put_keycode(0xe0);
1109 kbd_put_keycode(keycode & 0x7f);
1110 }
balrogc8256f92008-06-08 22:45:01 +00001111 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001112 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1113 muldiv64(ticks_per_sec, hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001114}
1115
bellard13224a82006-07-14 22:03:35 +00001116static int mouse_button_state;
1117
aliguori376253e2009-03-05 23:01:23 +00001118static void do_mouse_move(Monitor *mon, const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +00001119 const char *dz_str)
1120{
1121 int dx, dy, dz;
1122 dx = strtol(dx_str, NULL, 0);
1123 dy = strtol(dy_str, NULL, 0);
1124 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001125 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001126 dz = strtol(dz_str, NULL, 0);
1127 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1128}
1129
aliguori376253e2009-03-05 23:01:23 +00001130static void do_mouse_button(Monitor *mon, int button_state)
bellard13224a82006-07-14 22:03:35 +00001131{
1132 mouse_button_state = button_state;
1133 kbd_mouse_event(0, 0, 0, mouse_button_state);
1134}
1135
aliguori376253e2009-03-05 23:01:23 +00001136static void do_ioport_read(Monitor *mon, int count, int format, int size,
1137 int addr, int has_index, int index)
bellard34405572004-06-08 00:55:58 +00001138{
1139 uint32_t val;
1140 int suffix;
1141
1142 if (has_index) {
1143 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1144 addr++;
1145 }
1146 addr &= 0xffff;
1147
1148 switch(size) {
1149 default:
1150 case 1:
1151 val = cpu_inb(NULL, addr);
1152 suffix = 'b';
1153 break;
1154 case 2:
1155 val = cpu_inw(NULL, addr);
1156 suffix = 'w';
1157 break;
1158 case 4:
1159 val = cpu_inl(NULL, addr);
1160 suffix = 'l';
1161 break;
1162 }
aliguori376253e2009-03-05 23:01:23 +00001163 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1164 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001165}
bellarda3a91a32004-06-04 11:06:21 +00001166
blueswir13b4366d2008-06-20 16:25:06 +00001167/* boot_set handler */
1168static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1169static void *boot_opaque;
1170
1171void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1172{
1173 qemu_boot_set_handler = func;
1174 boot_opaque = opaque;
1175}
1176
aliguori376253e2009-03-05 23:01:23 +00001177static void do_boot_set(Monitor *mon, const char *bootdevice)
aurel320ecdffb2008-05-04 20:11:34 +00001178{
1179 int res;
1180
1181 if (qemu_boot_set_handler) {
blueswir13b4366d2008-06-20 16:25:06 +00001182 res = qemu_boot_set_handler(boot_opaque, bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001183 if (res == 0)
aliguori376253e2009-03-05 23:01:23 +00001184 monitor_printf(mon, "boot device list now set to %s\n",
1185 bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001186 else
aliguori376253e2009-03-05 23:01:23 +00001187 monitor_printf(mon, "setting boot device list failed with "
1188 "error %i\n", res);
aurel320ecdffb2008-05-04 20:11:34 +00001189 } else {
aliguori376253e2009-03-05 23:01:23 +00001190 monitor_printf(mon, "no function defined to set boot device list for "
1191 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001192 }
1193}
1194
aliguori376253e2009-03-05 23:01:23 +00001195static void do_system_reset(Monitor *mon)
bellarde4f90822004-06-20 12:35:44 +00001196{
1197 qemu_system_reset_request();
1198}
1199
aliguori376253e2009-03-05 23:01:23 +00001200static void do_system_powerdown(Monitor *mon)
bellard34751872005-07-02 14:31:34 +00001201{
1202 qemu_system_powerdown_request();
1203}
1204
bellardb86bda52004-09-18 19:32:46 +00001205#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001206static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001207{
aliguori376253e2009-03-05 23:01:23 +00001208 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1209 addr,
1210 pte & mask,
1211 pte & PG_GLOBAL_MASK ? 'G' : '-',
1212 pte & PG_PSE_MASK ? 'P' : '-',
1213 pte & PG_DIRTY_MASK ? 'D' : '-',
1214 pte & PG_ACCESSED_MASK ? 'A' : '-',
1215 pte & PG_PCD_MASK ? 'C' : '-',
1216 pte & PG_PWT_MASK ? 'T' : '-',
1217 pte & PG_USER_MASK ? 'U' : '-',
1218 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001219}
1220
aliguori376253e2009-03-05 23:01:23 +00001221static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001222{
bellard6a00d602005-11-21 23:25:50 +00001223 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001224 int l1, l2;
1225 uint32_t pgd, pde, pte;
1226
bellard6a00d602005-11-21 23:25:50 +00001227 env = mon_get_cpu();
1228 if (!env)
1229 return;
1230
bellardb86bda52004-09-18 19:32:46 +00001231 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001232 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001233 return;
1234 }
1235 pgd = env->cr[3] & ~0xfff;
1236 for(l1 = 0; l1 < 1024; l1++) {
1237 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1238 pde = le32_to_cpu(pde);
1239 if (pde & PG_PRESENT_MASK) {
1240 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001241 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001242 } else {
1243 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001244 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001245 (uint8_t *)&pte, 4);
1246 pte = le32_to_cpu(pte);
1247 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001248 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001249 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001250 ~0xfff);
1251 }
1252 }
1253 }
1254 }
1255 }
1256}
1257
aliguori376253e2009-03-05 23:01:23 +00001258static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001259 uint32_t end, int prot)
1260{
bellard9746b152004-11-11 18:30:24 +00001261 int prot1;
1262 prot1 = *plast_prot;
1263 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001264 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001265 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1266 *pstart, end, end - *pstart,
1267 prot1 & PG_USER_MASK ? 'u' : '-',
1268 'r',
1269 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001270 }
1271 if (prot != 0)
1272 *pstart = end;
1273 else
1274 *pstart = -1;
1275 *plast_prot = prot;
1276 }
1277}
1278
aliguori376253e2009-03-05 23:01:23 +00001279static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001280{
bellard6a00d602005-11-21 23:25:50 +00001281 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001282 int l1, l2, prot, last_prot;
1283 uint32_t pgd, pde, pte, start, end;
1284
bellard6a00d602005-11-21 23:25:50 +00001285 env = mon_get_cpu();
1286 if (!env)
1287 return;
1288
bellardb86bda52004-09-18 19:32:46 +00001289 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001290 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001291 return;
1292 }
1293 pgd = env->cr[3] & ~0xfff;
1294 last_prot = 0;
1295 start = -1;
1296 for(l1 = 0; l1 < 1024; l1++) {
1297 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1298 pde = le32_to_cpu(pde);
1299 end = l1 << 22;
1300 if (pde & PG_PRESENT_MASK) {
1301 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1302 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001303 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001304 } else {
1305 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001306 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001307 (uint8_t *)&pte, 4);
1308 pte = le32_to_cpu(pte);
1309 end = (l1 << 22) + (l2 << 12);
1310 if (pte & PG_PRESENT_MASK) {
1311 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1312 } else {
1313 prot = 0;
1314 }
aliguori376253e2009-03-05 23:01:23 +00001315 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001316 }
1317 }
1318 } else {
1319 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001320 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001321 }
1322 }
1323}
1324#endif
1325
aurel327c664e22009-03-03 06:12:22 +00001326#if defined(TARGET_SH4)
1327
aliguori376253e2009-03-05 23:01:23 +00001328static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001329{
aliguori376253e2009-03-05 23:01:23 +00001330 monitor_printf(mon, " tlb%i:\t"
1331 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1332 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1333 "dirty=%hhu writethrough=%hhu\n",
1334 idx,
1335 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1336 tlb->v, tlb->sh, tlb->c, tlb->pr,
1337 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001338}
1339
aliguori376253e2009-03-05 23:01:23 +00001340static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001341{
1342 CPUState *env = mon_get_cpu();
1343 int i;
1344
aliguori376253e2009-03-05 23:01:23 +00001345 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001346 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001347 print_tlb (mon, i, &env->itlb[i]);
1348 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001349 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001350 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001351}
1352
1353#endif
1354
aliguori376253e2009-03-05 23:01:23 +00001355static void do_info_kqemu(Monitor *mon)
bellard0f4c6412005-07-24 18:10:56 +00001356{
1357#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001358 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001359 int val;
1360 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001361 env = mon_get_cpu();
1362 if (!env) {
aliguori376253e2009-03-05 23:01:23 +00001363 monitor_printf(mon, "No cpu initialized yet");
bellard6a00d602005-11-21 23:25:50 +00001364 return;
1365 }
1366 val = env->kqemu_enabled;
aliguori376253e2009-03-05 23:01:23 +00001367 monitor_printf(mon, "kqemu support: ");
bellard5f1ce942006-02-08 22:40:15 +00001368 switch(val) {
1369 default:
1370 case 0:
aliguori376253e2009-03-05 23:01:23 +00001371 monitor_printf(mon, "disabled\n");
bellard5f1ce942006-02-08 22:40:15 +00001372 break;
1373 case 1:
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_printf(mon, "enabled for user code\n");
bellard5f1ce942006-02-08 22:40:15 +00001375 break;
1376 case 2:
aliguori376253e2009-03-05 23:01:23 +00001377 monitor_printf(mon, "enabled for user and kernel code\n");
bellard5f1ce942006-02-08 22:40:15 +00001378 break;
1379 }
bellard0f4c6412005-07-24 18:10:56 +00001380#else
aliguori376253e2009-03-05 23:01:23 +00001381 monitor_printf(mon, "kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001382#endif
ths5fafdf22007-09-16 21:08:06 +00001383}
bellard0f4c6412005-07-24 18:10:56 +00001384
aliguori376253e2009-03-05 23:01:23 +00001385static void do_info_kvm(Monitor *mon)
aliguori7ba1e612008-11-05 16:04:33 +00001386{
1387#ifdef CONFIG_KVM
aliguori376253e2009-03-05 23:01:23 +00001388 monitor_printf(mon, "kvm support: ");
aliguori7ba1e612008-11-05 16:04:33 +00001389 if (kvm_enabled())
aliguori376253e2009-03-05 23:01:23 +00001390 monitor_printf(mon, "enabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001391 else
aliguori376253e2009-03-05 23:01:23 +00001392 monitor_printf(mon, "disabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001393#else
aliguori376253e2009-03-05 23:01:23 +00001394 monitor_printf(mon, "kvm support: not compiled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001395#endif
1396}
1397
bellard5f1ce942006-02-08 22:40:15 +00001398#ifdef CONFIG_PROFILER
1399
1400int64_t kqemu_time;
1401int64_t qemu_time;
1402int64_t kqemu_exec_count;
1403int64_t dev_time;
1404int64_t kqemu_ret_int_count;
1405int64_t kqemu_ret_excp_count;
1406int64_t kqemu_ret_intr_count;
1407
aliguori376253e2009-03-05 23:01:23 +00001408static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001409{
1410 int64_t total;
1411 total = qemu_time;
1412 if (total == 0)
1413 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001414 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1415 dev_time, dev_time / (double)ticks_per_sec);
1416 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1417 qemu_time, qemu_time / (double)ticks_per_sec);
1418 monitor_printf(mon, "kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%"
1419 PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%"
1420 PRId64 "\n",
1421 kqemu_time, kqemu_time / (double)ticks_per_sec,
1422 kqemu_time / (double)total * 100.0,
1423 kqemu_exec_count,
1424 kqemu_ret_int_count,
1425 kqemu_ret_excp_count,
1426 kqemu_ret_intr_count);
bellard5f1ce942006-02-08 22:40:15 +00001427 qemu_time = 0;
1428 kqemu_time = 0;
1429 kqemu_exec_count = 0;
1430 dev_time = 0;
1431 kqemu_ret_int_count = 0;
1432 kqemu_ret_excp_count = 0;
1433 kqemu_ret_intr_count = 0;
1434#ifdef USE_KQEMU
1435 kqemu_record_dump();
1436#endif
1437}
1438#else
aliguori376253e2009-03-05 23:01:23 +00001439static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001440{
aliguori376253e2009-03-05 23:01:23 +00001441 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001442}
1443#endif
1444
bellardec36b692006-07-16 18:57:03 +00001445/* Capture support */
1446static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1447
aliguori376253e2009-03-05 23:01:23 +00001448static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001449{
1450 int i;
1451 CaptureState *s;
1452
1453 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001454 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001455 s->ops.info (s->opaque);
1456 }
1457}
1458
aliguori376253e2009-03-05 23:01:23 +00001459static void do_stop_capture(Monitor *mon, int n)
bellardec36b692006-07-16 18:57:03 +00001460{
1461 int i;
1462 CaptureState *s;
1463
1464 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1465 if (i == n) {
1466 s->ops.destroy (s->opaque);
1467 LIST_REMOVE (s, entries);
1468 qemu_free (s);
1469 return;
1470 }
1471 }
1472}
1473
1474#ifdef HAS_AUDIO
aliguori376253e2009-03-05 23:01:23 +00001475static void do_wav_capture(Monitor *mon, const char *path,
1476 int has_freq, int freq,
1477 int has_bits, int bits,
1478 int has_channels, int nchannels)
bellardec36b692006-07-16 18:57:03 +00001479{
1480 CaptureState *s;
1481
1482 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001483
1484 freq = has_freq ? freq : 44100;
1485 bits = has_bits ? bits : 16;
1486 nchannels = has_channels ? nchannels : 2;
1487
1488 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00001489 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00001490 qemu_free (s);
1491 }
1492 LIST_INSERT_HEAD (&capture_head, s, entries);
1493}
1494#endif
1495
aurel32dc1c0b72008-04-27 23:52:12 +00001496#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001497static void do_inject_nmi(Monitor *mon, int cpu_index)
aurel32dc1c0b72008-04-27 23:52:12 +00001498{
1499 CPUState *env;
1500
1501 for (env = first_cpu; env != NULL; env = env->next_cpu)
1502 if (env->cpu_index == cpu_index) {
1503 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1504 break;
1505 }
1506}
1507#endif
1508
aliguori376253e2009-03-05 23:01:23 +00001509static void do_info_status(Monitor *mon)
aurel326f9c5ee2008-12-18 22:43:56 +00001510{
1511 if (vm_running)
aliguori376253e2009-03-05 23:01:23 +00001512 monitor_printf(mon, "VM status: running\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001513 else
aliguori376253e2009-03-05 23:01:23 +00001514 monitor_printf(mon, "VM status: paused\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001515}
1516
1517
aliguori376253e2009-03-05 23:01:23 +00001518static void do_balloon(Monitor *mon, int value)
aliguoridf751fa2008-12-04 20:19:35 +00001519{
1520 ram_addr_t target = value;
1521 qemu_balloon(target << 20);
1522}
1523
aliguori376253e2009-03-05 23:01:23 +00001524static void do_info_balloon(Monitor *mon)
aliguoridf751fa2008-12-04 20:19:35 +00001525{
1526 ram_addr_t actual;
1527
1528 actual = qemu_balloon_status();
aliguoribd322082008-12-04 20:33:06 +00001529 if (kvm_enabled() && !kvm_has_sync_mmu())
aliguori376253e2009-03-05 23:01:23 +00001530 monitor_printf(mon, "Using KVM without synchronous MMU, "
1531 "ballooning disabled\n");
aliguoribd322082008-12-04 20:33:06 +00001532 else if (actual == 0)
aliguori376253e2009-03-05 23:01:23 +00001533 monitor_printf(mon, "Ballooning not activated in VM\n");
aliguoridf751fa2008-12-04 20:19:35 +00001534 else
aliguori376253e2009-03-05 23:01:23 +00001535 monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
aliguoridf751fa2008-12-04 20:19:35 +00001536}
1537
aliguori76655d62009-03-06 20:27:37 +00001538static void do_acl(Monitor *mon,
1539 const char *command,
aliguori28a76be2009-03-06 20:27:40 +00001540 const char *aclname,
1541 const char *match,
1542 int has_index,
1543 int index)
aliguori76655d62009-03-06 20:27:37 +00001544{
1545 qemu_acl *acl;
1546
1547 acl = qemu_acl_find(aclname);
1548 if (!acl) {
aliguori28a76be2009-03-06 20:27:40 +00001549 monitor_printf(mon, "acl: unknown list '%s'\n", aclname);
1550 return;
aliguori76655d62009-03-06 20:27:37 +00001551 }
1552
1553 if (strcmp(command, "show") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001554 int i = 0;
1555 qemu_acl_entry *entry;
1556 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001557 acl->defaultDeny ? "deny" : "allow");
aliguori28a76be2009-03-06 20:27:40 +00001558 TAILQ_FOREACH(entry, &acl->entries, next) {
1559 i++;
1560 monitor_printf(mon, "%d: %s %s\n", i,
aliguori76655d62009-03-06 20:27:37 +00001561 entry->deny ? "deny" : "allow",
1562 entry->match);
aliguori28a76be2009-03-06 20:27:40 +00001563 }
aliguori76655d62009-03-06 20:27:37 +00001564 } else if (strcmp(command, "reset") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001565 qemu_acl_reset(acl);
1566 monitor_printf(mon, "acl: removed all rules\n");
aliguori76655d62009-03-06 20:27:37 +00001567 } else if (strcmp(command, "policy") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001568 if (!match) {
1569 monitor_printf(mon, "acl: missing policy parameter\n");
1570 return;
1571 }
aliguori76655d62009-03-06 20:27:37 +00001572
aliguori28a76be2009-03-06 20:27:40 +00001573 if (strcmp(match, "allow") == 0) {
1574 acl->defaultDeny = 0;
1575 monitor_printf(mon, "acl: policy set to 'allow'\n");
1576 } else if (strcmp(match, "deny") == 0) {
1577 acl->defaultDeny = 1;
1578 monitor_printf(mon, "acl: policy set to 'deny'\n");
1579 } else {
1580 monitor_printf(mon, "acl: unknown policy '%s', expected 'deny' or 'allow'\n", match);
1581 }
aliguori76655d62009-03-06 20:27:37 +00001582 } else if ((strcmp(command, "allow") == 0) ||
aliguori28a76be2009-03-06 20:27:40 +00001583 (strcmp(command, "deny") == 0)) {
1584 int deny = strcmp(command, "deny") == 0 ? 1 : 0;
1585 int ret;
aliguori76655d62009-03-06 20:27:37 +00001586
aliguori28a76be2009-03-06 20:27:40 +00001587 if (!match) {
1588 monitor_printf(mon, "acl: missing match parameter\n");
1589 return;
1590 }
aliguori76655d62009-03-06 20:27:37 +00001591
aliguori28a76be2009-03-06 20:27:40 +00001592 if (has_index)
1593 ret = qemu_acl_insert(acl, deny, match, index);
1594 else
1595 ret = qemu_acl_append(acl, deny, match);
1596 if (ret < 0)
1597 monitor_printf(mon, "acl: unable to add acl entry\n");
1598 else
1599 monitor_printf(mon, "acl: added rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001600 } else if (strcmp(command, "remove") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001601 int ret;
aliguori76655d62009-03-06 20:27:37 +00001602
aliguori28a76be2009-03-06 20:27:40 +00001603 if (!match) {
1604 monitor_printf(mon, "acl: missing match parameter\n");
1605 return;
1606 }
aliguori76655d62009-03-06 20:27:37 +00001607
aliguori28a76be2009-03-06 20:27:40 +00001608 ret = qemu_acl_remove(acl, match);
1609 if (ret < 0)
1610 monitor_printf(mon, "acl: no matching acl entry\n");
1611 else
1612 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001613 } else {
aliguori28a76be2009-03-06 20:27:40 +00001614 monitor_printf(mon, "acl: unknown command '%s'\n", command);
aliguori76655d62009-03-06 20:27:37 +00001615 }
1616}
1617
blueswir1d2c639d2009-01-24 18:19:25 +00001618/* Please update qemu-doc.texi when adding or changing commands */
aliguori376253e2009-03-05 23:01:23 +00001619static const mon_cmd_t mon_cmds[] = {
1620 { "help|?", "s?", help_cmd,
bellard9dc39cb2004-03-14 21:38:27 +00001621 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001622 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001623 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001624 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001625 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001626 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001627 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001628 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001629 "[-f] device", "eject a removable medium (use -f to force it)" },
aurel322ecea9b2008-06-18 22:10:01 +00001630 { "change", "BFs?", do_change,
1631 "device filename [format]", "change a removable medium, optional format" },
ths5fafdf22007-09-16 21:08:06 +00001632 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001633 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001634 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001635 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001636 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001637 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001638 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001639 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001640 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001641 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001642 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001643 "tag|id", "delete a VM snapshot from its tag or id" },
1644 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001645 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001646 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001647 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001648#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001649 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001650 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001651#endif
ths5fafdf22007-09-16 21:08:06 +00001652 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001653 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001654 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001655 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001656 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001657 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001658 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001659 "/fmt addr", "I/O port read" },
1660
balrogc8256f92008-06-08 22:45:01 +00001661 { "sendkey", "si?", do_sendkey,
1662 "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 +00001663 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001664 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001665 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001666 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001667 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001668 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001669 { "usb_add", "s", do_usb_add,
1670 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1671 { "usb_del", "s", do_usb_del,
1672 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001673 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001674 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001675 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001676 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001677 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001678 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001679 { "mouse_set", "i", do_mouse_set,
1680 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001681#ifdef HAS_AUDIO
1682 { "wavcapture", "si?i?i?", do_wav_capture,
1683 "path [frequency bits channels]",
1684 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1685#endif
blueswir1d2c639d2009-01-24 18:19:25 +00001686 { "stopcapture", "i", do_stop_capture,
1687 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001688 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001689 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001690 { "pmemsave", "lis", do_physical_memory_save,
1691 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001692 { "boot_set", "s", do_boot_set,
1693 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001694#if defined(TARGET_I386)
1695 { "nmi", "i", do_inject_nmi,
1696 "cpu", "inject an NMI on the given CPU", },
1697#endif
aliguori5bb79102008-10-13 03:12:02 +00001698 { "migrate", "-ds", do_migrate,
1699 "[-d] uri", "migrate to URI (using -d to not wait for completion)" },
1700 { "migrate_cancel", "", do_migrate_cancel,
1701 "", "cancel the current VM migration" },
1702 { "migrate_set_speed", "s", do_migrate_set_speed,
1703 "value", "set maximum speed (in bytes) for migrations" },
aliguori6f338c32009-02-11 15:21:54 +00001704#if defined(TARGET_I386)
1705 { "drive_add", "ss", drive_hot_add, "pci_addr=[[<domain>:]<bus>:]<slot>\n"
1706 "[file=file][,if=type][,bus=n]\n"
1707 "[,unit=m][,media=d][index=i]\n"
1708 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1709 "[snapshot=on|off][,cache=on|off]",
1710 "add drive to PCI storage controller" },
1711 { "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" },
1712 { "pci_del", "s", pci_device_hot_remove, "pci_addr=[[<domain>:]<bus>:]<slot>", "hot remove PCI device" },
1713 { "host_net_add", "ss", net_host_device_add,
1714 "[tap,user,socket,vde] options", "add host VLAN client" },
1715 { "host_net_remove", "is", net_host_device_remove,
1716 "vlan_id name", "remove host VLAN client" },
1717#endif
aliguoridf751fa2008-12-04 20:19:35 +00001718 { "balloon", "i", do_balloon,
1719 "target", "request VM to change it's memory allocation (in MB)" },
aliguorif029bd92009-02-11 15:19:16 +00001720 { "set_link", "ss", do_set_link,
1721 "name [up|down]", "change the link status of a network adapter" },
aliguori76655d62009-03-06 20:27:37 +00001722 { "acl", "sss?i?", do_acl, "<command> <aclname> [<match>] [<index>]\n",
1723 "acl show vnc.username\n"
1724 "acl policy vnc.username deny\n"
1725 "acl allow vnc.username fred\n"
1726 "acl deny vnc.username bob\n"
1727 "acl reset vnc.username\n" },
ths5fafdf22007-09-16 21:08:06 +00001728 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001729};
1730
blueswir1d2c639d2009-01-24 18:19:25 +00001731/* Please update qemu-doc.texi when adding or changing commands */
aliguori376253e2009-03-05 23:01:23 +00001732static const mon_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001733 { "version", "", do_info_version,
blueswir1d2c639d2009-01-24 18:19:25 +00001734 "", "show the version of QEMU" },
bellard9307c4c2004-04-04 12:57:25 +00001735 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001736 "", "show the network state" },
aliguori5ccfae12008-10-31 17:31:29 +00001737 { "chardev", "", qemu_chr_info,
1738 "", "show the character devices" },
aliguori376253e2009-03-05 23:01:23 +00001739 { "block", "", bdrv_info,
bellard9dc39cb2004-03-14 21:38:27 +00001740 "", "show the block devices" },
aliguori376253e2009-03-05 23:01:23 +00001741 { "blockstats", "", bdrv_info_stats,
thsa36e69d2007-12-02 05:18:19 +00001742 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001743 { "registers", "", do_info_registers,
1744 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001745 { "cpus", "", do_info_cpus,
1746 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001747 { "history", "", do_info_history,
1748 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001749 { "irq", "", irq_info,
1750 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001751 { "pic", "", pic_info,
1752 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001753 { "pci", "", pci_info,
1754 "", "show PCI info", },
aurel327c664e22009-03-03 06:12:22 +00001755#if defined(TARGET_I386) || defined(TARGET_SH4)
bellardb86bda52004-09-18 19:32:46 +00001756 { "tlb", "", tlb_info,
1757 "", "show virtual to physical memory mappings", },
aurel327c664e22009-03-03 06:12:22 +00001758#endif
1759#if defined(TARGET_I386)
bellardb86bda52004-09-18 19:32:46 +00001760 { "mem", "", mem_info,
1761 "", "show the active virtual memory mappings", },
aliguori16b29ae2008-12-17 23:28:44 +00001762 { "hpet", "", do_info_hpet,
1763 "", "show state of HPET", },
bellardb86bda52004-09-18 19:32:46 +00001764#endif
bellarde3db7222005-01-26 22:00:47 +00001765 { "jit", "", do_info_jit,
1766 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001767 { "kqemu", "", do_info_kqemu,
blueswir1d2c639d2009-01-24 18:19:25 +00001768 "", "show KQEMU information", },
aliguori7ba1e612008-11-05 16:04:33 +00001769 { "kvm", "", do_info_kvm,
blueswir1d2c639d2009-01-24 18:19:25 +00001770 "", "show KVM information", },
bellarda594cfb2005-11-06 16:13:29 +00001771 { "usb", "", usb_info,
1772 "", "show guest USB devices", },
1773 { "usbhost", "", usb_host_info,
1774 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001775 { "profile", "", do_info_profile,
1776 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001777 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001778 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001779 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001780 "", "show the currently saved VM snapshots" },
aurel326f9c5ee2008-12-18 22:43:56 +00001781 { "status", "", do_info_status,
1782 "", "show the current VM status (running|paused)" },
balrog201a51f2007-04-30 00:51:09 +00001783 { "pcmcia", "", pcmcia_info,
1784 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001785 { "mice", "", do_info_mice,
1786 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001787 { "vnc", "", do_info_vnc,
1788 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001789 { "name", "", do_info_name,
1790 "", "show the current VM name" },
blueswir1f1f23ad2008-09-18 18:30:20 +00001791 { "uuid", "", do_info_uuid,
1792 "", "show the current VM UUID" },
j_mayer76a66252007-03-07 08:32:30 +00001793#if defined(TARGET_PPC)
1794 { "cpustats", "", do_info_cpu_stats,
1795 "", "show CPU statistics", },
1796#endif
blueswir131a60e22007-10-26 18:42:59 +00001797#if defined(CONFIG_SLIRP)
1798 { "slirp", "", do_info_slirp,
1799 "", "show SLIRP statistics", },
1800#endif
aliguori5bb79102008-10-13 03:12:02 +00001801 { "migrate", "", do_info_migrate, "", "show migration status" },
aliguoridf751fa2008-12-04 20:19:35 +00001802 { "balloon", "", do_info_balloon,
1803 "", "show balloon information" },
bellard9dc39cb2004-03-14 21:38:27 +00001804 { NULL, NULL, },
1805};
1806
bellard9307c4c2004-04-04 12:57:25 +00001807/*******************************************************************/
1808
1809static const char *pch;
1810static jmp_buf expr_env;
1811
bellard92a31b12005-02-10 22:00:52 +00001812#define MD_TLONG 0
1813#define MD_I32 1
1814
bellard9307c4c2004-04-04 12:57:25 +00001815typedef struct MonitorDef {
1816 const char *name;
1817 int offset;
blueswir18662d652008-10-02 18:32:44 +00001818 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00001819 int type;
bellard9307c4c2004-04-04 12:57:25 +00001820} MonitorDef;
1821
bellard57206fd2004-04-25 18:54:52 +00001822#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00001823static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001824{
bellard6a00d602005-11-21 23:25:50 +00001825 CPUState *env = mon_get_cpu();
1826 if (!env)
1827 return 0;
1828 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001829}
1830#endif
1831
bellarda541f292004-04-12 20:39:29 +00001832#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00001833static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001834{
bellard6a00d602005-11-21 23:25:50 +00001835 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001836 unsigned int u;
1837 int i;
1838
bellard6a00d602005-11-21 23:25:50 +00001839 if (!env)
1840 return 0;
1841
bellarda541f292004-04-12 20:39:29 +00001842 u = 0;
1843 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00001844 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001845
1846 return u;
1847}
1848
blueswir18662d652008-10-02 18:32:44 +00001849static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001850{
bellard6a00d602005-11-21 23:25:50 +00001851 CPUState *env = mon_get_cpu();
1852 if (!env)
1853 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001854 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001855}
1856
blueswir18662d652008-10-02 18:32:44 +00001857static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001858{
bellard6a00d602005-11-21 23:25:50 +00001859 CPUState *env = mon_get_cpu();
1860 if (!env)
1861 return 0;
aurel323d7b4172008-10-21 11:28:46 +00001862 return env->xer;
bellarda541f292004-04-12 20:39:29 +00001863}
bellard9fddaa02004-05-21 12:59:32 +00001864
blueswir18662d652008-10-02 18:32:44 +00001865static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001866{
bellard6a00d602005-11-21 23:25:50 +00001867 CPUState *env = mon_get_cpu();
1868 if (!env)
1869 return 0;
1870 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001871}
1872
blueswir18662d652008-10-02 18:32:44 +00001873static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001874{
bellard6a00d602005-11-21 23:25:50 +00001875 CPUState *env = mon_get_cpu();
1876 if (!env)
1877 return 0;
1878 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001879}
1880
blueswir18662d652008-10-02 18:32:44 +00001881static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001882{
bellard6a00d602005-11-21 23:25:50 +00001883 CPUState *env = mon_get_cpu();
1884 if (!env)
1885 return 0;
1886 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001887}
bellarda541f292004-04-12 20:39:29 +00001888#endif
1889
bellarde95c8d52004-09-30 22:22:08 +00001890#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001891#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00001892static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001893{
bellard6a00d602005-11-21 23:25:50 +00001894 CPUState *env = mon_get_cpu();
1895 if (!env)
1896 return 0;
1897 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001898}
bellard7b936c02005-10-30 17:05:13 +00001899#endif
bellarde95c8d52004-09-30 22:22:08 +00001900
blueswir18662d652008-10-02 18:32:44 +00001901static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001902{
bellard6a00d602005-11-21 23:25:50 +00001903 CPUState *env = mon_get_cpu();
1904 if (!env)
1905 return 0;
1906 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001907}
1908#endif
1909
blueswir18662d652008-10-02 18:32:44 +00001910static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00001911#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001912
1913#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001914 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001915 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001916 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001917
bellard9307c4c2004-04-04 12:57:25 +00001918 { "eax", offsetof(CPUState, regs[0]) },
1919 { "ecx", offsetof(CPUState, regs[1]) },
1920 { "edx", offsetof(CPUState, regs[2]) },
1921 { "ebx", offsetof(CPUState, regs[3]) },
1922 { "esp|sp", offsetof(CPUState, regs[4]) },
1923 { "ebp|fp", offsetof(CPUState, regs[5]) },
1924 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001925 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001926#ifdef TARGET_X86_64
1927 { "r8", offsetof(CPUState, regs[8]) },
1928 { "r9", offsetof(CPUState, regs[9]) },
1929 { "r10", offsetof(CPUState, regs[10]) },
1930 { "r11", offsetof(CPUState, regs[11]) },
1931 { "r12", offsetof(CPUState, regs[12]) },
1932 { "r13", offsetof(CPUState, regs[13]) },
1933 { "r14", offsetof(CPUState, regs[14]) },
1934 { "r15", offsetof(CPUState, regs[15]) },
1935#endif
bellard9307c4c2004-04-04 12:57:25 +00001936 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001937 { "eip", offsetof(CPUState, eip) },
1938 SEG("cs", R_CS)
1939 SEG("ds", R_DS)
1940 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001941 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001942 SEG("fs", R_FS)
1943 SEG("gs", R_GS)
1944 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001945#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001946 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001947 { "r0", offsetof(CPUState, gpr[0]) },
1948 { "r1", offsetof(CPUState, gpr[1]) },
1949 { "r2", offsetof(CPUState, gpr[2]) },
1950 { "r3", offsetof(CPUState, gpr[3]) },
1951 { "r4", offsetof(CPUState, gpr[4]) },
1952 { "r5", offsetof(CPUState, gpr[5]) },
1953 { "r6", offsetof(CPUState, gpr[6]) },
1954 { "r7", offsetof(CPUState, gpr[7]) },
1955 { "r8", offsetof(CPUState, gpr[8]) },
1956 { "r9", offsetof(CPUState, gpr[9]) },
1957 { "r10", offsetof(CPUState, gpr[10]) },
1958 { "r11", offsetof(CPUState, gpr[11]) },
1959 { "r12", offsetof(CPUState, gpr[12]) },
1960 { "r13", offsetof(CPUState, gpr[13]) },
1961 { "r14", offsetof(CPUState, gpr[14]) },
1962 { "r15", offsetof(CPUState, gpr[15]) },
1963 { "r16", offsetof(CPUState, gpr[16]) },
1964 { "r17", offsetof(CPUState, gpr[17]) },
1965 { "r18", offsetof(CPUState, gpr[18]) },
1966 { "r19", offsetof(CPUState, gpr[19]) },
1967 { "r20", offsetof(CPUState, gpr[20]) },
1968 { "r21", offsetof(CPUState, gpr[21]) },
1969 { "r22", offsetof(CPUState, gpr[22]) },
1970 { "r23", offsetof(CPUState, gpr[23]) },
1971 { "r24", offsetof(CPUState, gpr[24]) },
1972 { "r25", offsetof(CPUState, gpr[25]) },
1973 { "r26", offsetof(CPUState, gpr[26]) },
1974 { "r27", offsetof(CPUState, gpr[27]) },
1975 { "r28", offsetof(CPUState, gpr[28]) },
1976 { "r29", offsetof(CPUState, gpr[29]) },
1977 { "r30", offsetof(CPUState, gpr[30]) },
1978 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001979 /* Floating point registers */
1980 { "f0", offsetof(CPUState, fpr[0]) },
1981 { "f1", offsetof(CPUState, fpr[1]) },
1982 { "f2", offsetof(CPUState, fpr[2]) },
1983 { "f3", offsetof(CPUState, fpr[3]) },
1984 { "f4", offsetof(CPUState, fpr[4]) },
1985 { "f5", offsetof(CPUState, fpr[5]) },
1986 { "f6", offsetof(CPUState, fpr[6]) },
1987 { "f7", offsetof(CPUState, fpr[7]) },
1988 { "f8", offsetof(CPUState, fpr[8]) },
1989 { "f9", offsetof(CPUState, fpr[9]) },
1990 { "f10", offsetof(CPUState, fpr[10]) },
1991 { "f11", offsetof(CPUState, fpr[11]) },
1992 { "f12", offsetof(CPUState, fpr[12]) },
1993 { "f13", offsetof(CPUState, fpr[13]) },
1994 { "f14", offsetof(CPUState, fpr[14]) },
1995 { "f15", offsetof(CPUState, fpr[15]) },
1996 { "f16", offsetof(CPUState, fpr[16]) },
1997 { "f17", offsetof(CPUState, fpr[17]) },
1998 { "f18", offsetof(CPUState, fpr[18]) },
1999 { "f19", offsetof(CPUState, fpr[19]) },
2000 { "f20", offsetof(CPUState, fpr[20]) },
2001 { "f21", offsetof(CPUState, fpr[21]) },
2002 { "f22", offsetof(CPUState, fpr[22]) },
2003 { "f23", offsetof(CPUState, fpr[23]) },
2004 { "f24", offsetof(CPUState, fpr[24]) },
2005 { "f25", offsetof(CPUState, fpr[25]) },
2006 { "f26", offsetof(CPUState, fpr[26]) },
2007 { "f27", offsetof(CPUState, fpr[27]) },
2008 { "f28", offsetof(CPUState, fpr[28]) },
2009 { "f29", offsetof(CPUState, fpr[29]) },
2010 { "f30", offsetof(CPUState, fpr[30]) },
2011 { "f31", offsetof(CPUState, fpr[31]) },
2012 { "fpscr", offsetof(CPUState, fpscr) },
2013 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002014 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002015 { "lr", offsetof(CPUState, lr) },
2016 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002017 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002018 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002019 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002020 { "msr", 0, &monitor_get_msr, },
2021 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002022 { "tbu", 0, &monitor_get_tbu, },
2023 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002024#if defined(TARGET_PPC64)
2025 /* Address space register */
2026 { "asr", offsetof(CPUState, asr) },
2027#endif
2028 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002029 { "sdr1", offsetof(CPUState, sdr1) },
2030 { "sr0", offsetof(CPUState, sr[0]) },
2031 { "sr1", offsetof(CPUState, sr[1]) },
2032 { "sr2", offsetof(CPUState, sr[2]) },
2033 { "sr3", offsetof(CPUState, sr[3]) },
2034 { "sr4", offsetof(CPUState, sr[4]) },
2035 { "sr5", offsetof(CPUState, sr[5]) },
2036 { "sr6", offsetof(CPUState, sr[6]) },
2037 { "sr7", offsetof(CPUState, sr[7]) },
2038 { "sr8", offsetof(CPUState, sr[8]) },
2039 { "sr9", offsetof(CPUState, sr[9]) },
2040 { "sr10", offsetof(CPUState, sr[10]) },
2041 { "sr11", offsetof(CPUState, sr[11]) },
2042 { "sr12", offsetof(CPUState, sr[12]) },
2043 { "sr13", offsetof(CPUState, sr[13]) },
2044 { "sr14", offsetof(CPUState, sr[14]) },
2045 { "sr15", offsetof(CPUState, sr[15]) },
2046 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002047#elif defined(TARGET_SPARC)
2048 { "g0", offsetof(CPUState, gregs[0]) },
2049 { "g1", offsetof(CPUState, gregs[1]) },
2050 { "g2", offsetof(CPUState, gregs[2]) },
2051 { "g3", offsetof(CPUState, gregs[3]) },
2052 { "g4", offsetof(CPUState, gregs[4]) },
2053 { "g5", offsetof(CPUState, gregs[5]) },
2054 { "g6", offsetof(CPUState, gregs[6]) },
2055 { "g7", offsetof(CPUState, gregs[7]) },
2056 { "o0", 0, monitor_get_reg },
2057 { "o1", 1, monitor_get_reg },
2058 { "o2", 2, monitor_get_reg },
2059 { "o3", 3, monitor_get_reg },
2060 { "o4", 4, monitor_get_reg },
2061 { "o5", 5, monitor_get_reg },
2062 { "o6", 6, monitor_get_reg },
2063 { "o7", 7, monitor_get_reg },
2064 { "l0", 8, monitor_get_reg },
2065 { "l1", 9, monitor_get_reg },
2066 { "l2", 10, monitor_get_reg },
2067 { "l3", 11, monitor_get_reg },
2068 { "l4", 12, monitor_get_reg },
2069 { "l5", 13, monitor_get_reg },
2070 { "l6", 14, monitor_get_reg },
2071 { "l7", 15, monitor_get_reg },
2072 { "i0", 16, monitor_get_reg },
2073 { "i1", 17, monitor_get_reg },
2074 { "i2", 18, monitor_get_reg },
2075 { "i3", 19, monitor_get_reg },
2076 { "i4", 20, monitor_get_reg },
2077 { "i5", 21, monitor_get_reg },
2078 { "i6", 22, monitor_get_reg },
2079 { "i7", 23, monitor_get_reg },
2080 { "pc", offsetof(CPUState, pc) },
2081 { "npc", offsetof(CPUState, npc) },
2082 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002083#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002084 { "psr", 0, &monitor_get_psr, },
2085 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002086#endif
bellarde95c8d52004-09-30 22:22:08 +00002087 { "tbr", offsetof(CPUState, tbr) },
2088 { "fsr", offsetof(CPUState, fsr) },
2089 { "f0", offsetof(CPUState, fpr[0]) },
2090 { "f1", offsetof(CPUState, fpr[1]) },
2091 { "f2", offsetof(CPUState, fpr[2]) },
2092 { "f3", offsetof(CPUState, fpr[3]) },
2093 { "f4", offsetof(CPUState, fpr[4]) },
2094 { "f5", offsetof(CPUState, fpr[5]) },
2095 { "f6", offsetof(CPUState, fpr[6]) },
2096 { "f7", offsetof(CPUState, fpr[7]) },
2097 { "f8", offsetof(CPUState, fpr[8]) },
2098 { "f9", offsetof(CPUState, fpr[9]) },
2099 { "f10", offsetof(CPUState, fpr[10]) },
2100 { "f11", offsetof(CPUState, fpr[11]) },
2101 { "f12", offsetof(CPUState, fpr[12]) },
2102 { "f13", offsetof(CPUState, fpr[13]) },
2103 { "f14", offsetof(CPUState, fpr[14]) },
2104 { "f15", offsetof(CPUState, fpr[15]) },
2105 { "f16", offsetof(CPUState, fpr[16]) },
2106 { "f17", offsetof(CPUState, fpr[17]) },
2107 { "f18", offsetof(CPUState, fpr[18]) },
2108 { "f19", offsetof(CPUState, fpr[19]) },
2109 { "f20", offsetof(CPUState, fpr[20]) },
2110 { "f21", offsetof(CPUState, fpr[21]) },
2111 { "f22", offsetof(CPUState, fpr[22]) },
2112 { "f23", offsetof(CPUState, fpr[23]) },
2113 { "f24", offsetof(CPUState, fpr[24]) },
2114 { "f25", offsetof(CPUState, fpr[25]) },
2115 { "f26", offsetof(CPUState, fpr[26]) },
2116 { "f27", offsetof(CPUState, fpr[27]) },
2117 { "f28", offsetof(CPUState, fpr[28]) },
2118 { "f29", offsetof(CPUState, fpr[29]) },
2119 { "f30", offsetof(CPUState, fpr[30]) },
2120 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002121#ifdef TARGET_SPARC64
2122 { "f32", offsetof(CPUState, fpr[32]) },
2123 { "f34", offsetof(CPUState, fpr[34]) },
2124 { "f36", offsetof(CPUState, fpr[36]) },
2125 { "f38", offsetof(CPUState, fpr[38]) },
2126 { "f40", offsetof(CPUState, fpr[40]) },
2127 { "f42", offsetof(CPUState, fpr[42]) },
2128 { "f44", offsetof(CPUState, fpr[44]) },
2129 { "f46", offsetof(CPUState, fpr[46]) },
2130 { "f48", offsetof(CPUState, fpr[48]) },
2131 { "f50", offsetof(CPUState, fpr[50]) },
2132 { "f52", offsetof(CPUState, fpr[52]) },
2133 { "f54", offsetof(CPUState, fpr[54]) },
2134 { "f56", offsetof(CPUState, fpr[56]) },
2135 { "f58", offsetof(CPUState, fpr[58]) },
2136 { "f60", offsetof(CPUState, fpr[60]) },
2137 { "f62", offsetof(CPUState, fpr[62]) },
2138 { "asi", offsetof(CPUState, asi) },
2139 { "pstate", offsetof(CPUState, pstate) },
2140 { "cansave", offsetof(CPUState, cansave) },
2141 { "canrestore", offsetof(CPUState, canrestore) },
2142 { "otherwin", offsetof(CPUState, otherwin) },
2143 { "wstate", offsetof(CPUState, wstate) },
2144 { "cleanwin", offsetof(CPUState, cleanwin) },
2145 { "fprs", offsetof(CPUState, fprs) },
2146#endif
bellard9307c4c2004-04-04 12:57:25 +00002147#endif
2148 { NULL },
2149};
2150
aliguori376253e2009-03-05 23:01:23 +00002151static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002152{
aliguori376253e2009-03-05 23:01:23 +00002153 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002154 longjmp(expr_env, 1);
2155}
2156
bellard6a00d602005-11-21 23:25:50 +00002157/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002158static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002159{
blueswir18662d652008-10-02 18:32:44 +00002160 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002161 void *ptr;
2162
bellard9307c4c2004-04-04 12:57:25 +00002163 for(md = monitor_defs; md->name != NULL; md++) {
2164 if (compare_cmd(name, md->name)) {
2165 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002166 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002167 } else {
bellard6a00d602005-11-21 23:25:50 +00002168 CPUState *env = mon_get_cpu();
2169 if (!env)
2170 return -2;
2171 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002172 switch(md->type) {
2173 case MD_I32:
2174 *pval = *(int32_t *)ptr;
2175 break;
2176 case MD_TLONG:
2177 *pval = *(target_long *)ptr;
2178 break;
2179 default:
2180 *pval = 0;
2181 break;
2182 }
bellard9307c4c2004-04-04 12:57:25 +00002183 }
2184 return 0;
2185 }
2186 }
2187 return -1;
2188}
2189
2190static void next(void)
2191{
2192 if (pch != '\0') {
2193 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002194 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002195 pch++;
2196 }
2197}
2198
aliguori376253e2009-03-05 23:01:23 +00002199static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002200
aliguori376253e2009-03-05 23:01:23 +00002201static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002202{
blueswir1c2efc952007-09-25 17:28:42 +00002203 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002204 char *p;
bellard6a00d602005-11-21 23:25:50 +00002205 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002206
2207 switch(*pch) {
2208 case '+':
2209 next();
aliguori376253e2009-03-05 23:01:23 +00002210 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002211 break;
2212 case '-':
2213 next();
aliguori376253e2009-03-05 23:01:23 +00002214 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002215 break;
2216 case '~':
2217 next();
aliguori376253e2009-03-05 23:01:23 +00002218 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002219 break;
2220 case '(':
2221 next();
aliguori376253e2009-03-05 23:01:23 +00002222 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002223 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002224 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002225 }
2226 next();
2227 break;
bellard81d09122004-07-14 17:21:37 +00002228 case '\'':
2229 pch++;
2230 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002231 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002232 n = *pch;
2233 pch++;
2234 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002235 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002236 next();
2237 break;
bellard9307c4c2004-04-04 12:57:25 +00002238 case '$':
2239 {
2240 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002241 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002242
bellard9307c4c2004-04-04 12:57:25 +00002243 pch++;
2244 q = buf;
2245 while ((*pch >= 'a' && *pch <= 'z') ||
2246 (*pch >= 'A' && *pch <= 'Z') ||
2247 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00002248 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00002249 if ((q - buf) < sizeof(buf) - 1)
2250 *q++ = *pch;
2251 pch++;
2252 }
blueswir1cd390082008-11-16 13:53:32 +00002253 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002254 pch++;
2255 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00002256 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00002257 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00002258 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00002259 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00002260 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00002261 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00002262 }
2263 break;
2264 case '\0':
aliguori376253e2009-03-05 23:01:23 +00002265 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00002266 n = 0;
2267 break;
2268 default:
blueswir17743e582007-09-24 18:39:04 +00002269#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00002270 n = strtoull(pch, &p, 0);
2271#else
bellard9307c4c2004-04-04 12:57:25 +00002272 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00002273#endif
bellard9307c4c2004-04-04 12:57:25 +00002274 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00002275 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00002276 }
2277 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00002278 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002279 pch++;
2280 break;
2281 }
2282 return n;
2283}
2284
2285
aliguori376253e2009-03-05 23:01:23 +00002286static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002287{
blueswir1c2efc952007-09-25 17:28:42 +00002288 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002289 int op;
ths3b46e622007-09-17 08:09:54 +00002290
aliguori376253e2009-03-05 23:01:23 +00002291 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002292 for(;;) {
2293 op = *pch;
2294 if (op != '*' && op != '/' && op != '%')
2295 break;
2296 next();
aliguori376253e2009-03-05 23:01:23 +00002297 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002298 switch(op) {
2299 default:
2300 case '*':
2301 val *= val2;
2302 break;
2303 case '/':
2304 case '%':
ths5fafdf22007-09-16 21:08:06 +00002305 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00002306 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002307 if (op == '/')
2308 val /= val2;
2309 else
2310 val %= val2;
2311 break;
2312 }
2313 }
2314 return val;
2315}
2316
aliguori376253e2009-03-05 23:01:23 +00002317static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002318{
blueswir1c2efc952007-09-25 17:28:42 +00002319 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002320 int op;
bellard9307c4c2004-04-04 12:57:25 +00002321
aliguori376253e2009-03-05 23:01:23 +00002322 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002323 for(;;) {
2324 op = *pch;
2325 if (op != '&' && op != '|' && op != '^')
2326 break;
2327 next();
aliguori376253e2009-03-05 23:01:23 +00002328 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002329 switch(op) {
2330 default:
2331 case '&':
2332 val &= val2;
2333 break;
2334 case '|':
2335 val |= val2;
2336 break;
2337 case '^':
2338 val ^= val2;
2339 break;
2340 }
2341 }
2342 return val;
2343}
2344
aliguori376253e2009-03-05 23:01:23 +00002345static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002346{
blueswir1c2efc952007-09-25 17:28:42 +00002347 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002348 int op;
bellard9307c4c2004-04-04 12:57:25 +00002349
aliguori376253e2009-03-05 23:01:23 +00002350 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002351 for(;;) {
2352 op = *pch;
2353 if (op != '+' && op != '-')
2354 break;
2355 next();
aliguori376253e2009-03-05 23:01:23 +00002356 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002357 if (op == '+')
2358 val += val2;
2359 else
2360 val -= val2;
2361 }
2362 return val;
2363}
2364
aliguori376253e2009-03-05 23:01:23 +00002365static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002366{
2367 pch = *pp;
2368 if (setjmp(expr_env)) {
2369 *pp = pch;
2370 return -1;
2371 }
blueswir1cd390082008-11-16 13:53:32 +00002372 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002373 pch++;
aliguori376253e2009-03-05 23:01:23 +00002374 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002375 *pp = pch;
2376 return 0;
2377}
2378
2379static int get_str(char *buf, int buf_size, const char **pp)
2380{
2381 const char *p;
2382 char *q;
2383 int c;
2384
bellard81d09122004-07-14 17:21:37 +00002385 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002386 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00002387 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002388 p++;
2389 if (*p == '\0') {
2390 fail:
bellard81d09122004-07-14 17:21:37 +00002391 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002392 *pp = p;
2393 return -1;
2394 }
bellard9307c4c2004-04-04 12:57:25 +00002395 if (*p == '\"') {
2396 p++;
2397 while (*p != '\0' && *p != '\"') {
2398 if (*p == '\\') {
2399 p++;
2400 c = *p++;
2401 switch(c) {
2402 case 'n':
2403 c = '\n';
2404 break;
2405 case 'r':
2406 c = '\r';
2407 break;
2408 case '\\':
2409 case '\'':
2410 case '\"':
2411 break;
2412 default:
2413 qemu_printf("unsupported escape code: '\\%c'\n", c);
2414 goto fail;
2415 }
2416 if ((q - buf) < buf_size - 1) {
2417 *q++ = c;
2418 }
2419 } else {
2420 if ((q - buf) < buf_size - 1) {
2421 *q++ = *p;
2422 }
2423 p++;
2424 }
2425 }
2426 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002427 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002428 goto fail;
2429 }
2430 p++;
2431 } else {
blueswir1cd390082008-11-16 13:53:32 +00002432 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002433 if ((q - buf) < buf_size - 1) {
2434 *q++ = *p;
2435 }
2436 p++;
2437 }
bellard9307c4c2004-04-04 12:57:25 +00002438 }
bellard81d09122004-07-14 17:21:37 +00002439 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002440 *pp = p;
2441 return 0;
2442}
2443
2444static int default_fmt_format = 'x';
2445static int default_fmt_size = 4;
2446
2447#define MAX_ARGS 16
2448
aliguori376253e2009-03-05 23:01:23 +00002449static void monitor_handle_command(Monitor *mon, const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002450{
2451 const char *p, *pstart, *typestr;
2452 char *q;
2453 int c, nb_args, len, i, has_arg;
aliguori376253e2009-03-05 23:01:23 +00002454 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002455 char cmdname[256];
2456 char buf[1024];
2457 void *str_allocated[MAX_ARGS];
2458 void *args[MAX_ARGS];
aliguori376253e2009-03-05 23:01:23 +00002459 void (*handler_0)(Monitor *mon);
2460 void (*handler_1)(Monitor *mon, void *arg0);
2461 void (*handler_2)(Monitor *mon, void *arg0, void *arg1);
2462 void (*handler_3)(Monitor *mon, void *arg0, void *arg1, void *arg2);
2463 void (*handler_4)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2464 void *arg3);
2465 void (*handler_5)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2466 void *arg3, void *arg4);
2467 void (*handler_6)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2468 void *arg3, void *arg4, void *arg5);
2469 void (*handler_7)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2470 void *arg3, void *arg4, void *arg5, void *arg6);
bellard9dc39cb2004-03-14 21:38:27 +00002471
2472#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00002473 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00002474#endif
ths3b46e622007-09-17 08:09:54 +00002475
bellard9307c4c2004-04-04 12:57:25 +00002476 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002477 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002478 q = cmdname;
blueswir1cd390082008-11-16 13:53:32 +00002479 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002480 p++;
2481 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002482 return;
bellard9307c4c2004-04-04 12:57:25 +00002483 pstart = p;
blueswir1cd390082008-11-16 13:53:32 +00002484 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002485 p++;
2486 len = p - pstart;
2487 if (len > sizeof(cmdname) - 1)
2488 len = sizeof(cmdname) - 1;
2489 memcpy(cmdname, pstart, len);
2490 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002491
bellard9307c4c2004-04-04 12:57:25 +00002492 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00002493 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002494 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002495 goto found;
2496 }
aliguori376253e2009-03-05 23:01:23 +00002497 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002498 return;
2499 found:
bellard9307c4c2004-04-04 12:57:25 +00002500
2501 for(i = 0; i < MAX_ARGS; i++)
2502 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002503
bellard9307c4c2004-04-04 12:57:25 +00002504 /* parse the parameters */
2505 typestr = cmd->args_type;
2506 nb_args = 0;
2507 for(;;) {
2508 c = *typestr;
2509 if (c == '\0')
2510 break;
2511 typestr++;
2512 switch(c) {
2513 case 'F':
bellard81d09122004-07-14 17:21:37 +00002514 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002515 case 's':
2516 {
2517 int ret;
2518 char *str;
ths3b46e622007-09-17 08:09:54 +00002519
blueswir1cd390082008-11-16 13:53:32 +00002520 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002521 p++;
2522 if (*typestr == '?') {
2523 typestr++;
2524 if (*p == '\0') {
2525 /* no optional string: NULL argument */
2526 str = NULL;
2527 goto add_str;
2528 }
2529 }
2530 ret = get_str(buf, sizeof(buf), &p);
2531 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002532 switch(c) {
2533 case 'F':
aliguori376253e2009-03-05 23:01:23 +00002534 monitor_printf(mon, "%s: filename expected\n",
2535 cmdname);
bellard81d09122004-07-14 17:21:37 +00002536 break;
2537 case 'B':
aliguori376253e2009-03-05 23:01:23 +00002538 monitor_printf(mon, "%s: block device name expected\n",
2539 cmdname);
bellard81d09122004-07-14 17:21:37 +00002540 break;
2541 default:
aliguori376253e2009-03-05 23:01:23 +00002542 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002543 break;
2544 }
bellard9307c4c2004-04-04 12:57:25 +00002545 goto fail;
2546 }
2547 str = qemu_malloc(strlen(buf) + 1);
blueswir1363a37d2008-08-21 17:58:08 +00002548 pstrcpy(str, sizeof(buf), buf);
bellard9307c4c2004-04-04 12:57:25 +00002549 str_allocated[nb_args] = str;
2550 add_str:
2551 if (nb_args >= MAX_ARGS) {
2552 error_args:
aliguori376253e2009-03-05 23:01:23 +00002553 monitor_printf(mon, "%s: too many arguments\n", cmdname);
bellard9307c4c2004-04-04 12:57:25 +00002554 goto fail;
2555 }
2556 args[nb_args++] = str;
2557 }
2558 break;
2559 case '/':
2560 {
2561 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002562
blueswir1cd390082008-11-16 13:53:32 +00002563 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002564 p++;
2565 if (*p == '/') {
2566 /* format found */
2567 p++;
2568 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00002569 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002570 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00002571 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00002572 count = count * 10 + (*p - '0');
2573 p++;
2574 }
2575 }
2576 size = -1;
2577 format = -1;
2578 for(;;) {
2579 switch(*p) {
2580 case 'o':
2581 case 'd':
2582 case 'u':
2583 case 'x':
2584 case 'i':
2585 case 'c':
2586 format = *p++;
2587 break;
2588 case 'b':
2589 size = 1;
2590 p++;
2591 break;
2592 case 'h':
2593 size = 2;
2594 p++;
2595 break;
2596 case 'w':
2597 size = 4;
2598 p++;
2599 break;
2600 case 'g':
2601 case 'L':
2602 size = 8;
2603 p++;
2604 break;
2605 default:
2606 goto next;
2607 }
2608 }
2609 next:
blueswir1cd390082008-11-16 13:53:32 +00002610 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00002611 monitor_printf(mon, "invalid char in format: '%c'\n",
2612 *p);
bellard9307c4c2004-04-04 12:57:25 +00002613 goto fail;
2614 }
bellard9307c4c2004-04-04 12:57:25 +00002615 if (format < 0)
2616 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002617 if (format != 'i') {
2618 /* for 'i', not specifying a size gives -1 as size */
2619 if (size < 0)
2620 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00002621 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00002622 }
bellard9307c4c2004-04-04 12:57:25 +00002623 default_fmt_format = format;
2624 } else {
2625 count = 1;
2626 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002627 if (format != 'i') {
2628 size = default_fmt_size;
2629 } else {
2630 size = -1;
2631 }
bellard9307c4c2004-04-04 12:57:25 +00002632 }
2633 if (nb_args + 3 > MAX_ARGS)
2634 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002635 args[nb_args++] = (void*)(long)count;
2636 args[nb_args++] = (void*)(long)format;
2637 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002638 }
2639 break;
2640 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002641 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002642 {
blueswir1c2efc952007-09-25 17:28:42 +00002643 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002644
blueswir1cd390082008-11-16 13:53:32 +00002645 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002646 p++;
bellard34405572004-06-08 00:55:58 +00002647 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002648 if (*typestr == '?') {
2649 if (*p == '\0')
2650 has_arg = 0;
2651 else
2652 has_arg = 1;
2653 } else {
2654 if (*p == '.') {
2655 p++;
blueswir1cd390082008-11-16 13:53:32 +00002656 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00002657 p++;
2658 has_arg = 1;
2659 } else {
2660 has_arg = 0;
2661 }
2662 }
bellard13224a82006-07-14 22:03:35 +00002663 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002664 if (nb_args >= MAX_ARGS)
2665 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002666 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002667 if (!has_arg) {
2668 if (nb_args >= MAX_ARGS)
2669 goto error_args;
2670 val = -1;
2671 goto add_num;
2672 }
2673 }
aliguori376253e2009-03-05 23:01:23 +00002674 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00002675 goto fail;
2676 add_num:
bellard92a31b12005-02-10 22:00:52 +00002677 if (c == 'i') {
2678 if (nb_args >= MAX_ARGS)
2679 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002680 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002681 } else {
2682 if ((nb_args + 1) >= MAX_ARGS)
2683 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002684#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002685 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002686#else
2687 args[nb_args++] = (void *)0;
2688#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002689 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002690 }
bellard9307c4c2004-04-04 12:57:25 +00002691 }
2692 break;
2693 case '-':
2694 {
2695 int has_option;
2696 /* option */
ths3b46e622007-09-17 08:09:54 +00002697
bellard9307c4c2004-04-04 12:57:25 +00002698 c = *typestr++;
2699 if (c == '\0')
2700 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00002701 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002702 p++;
2703 has_option = 0;
2704 if (*p == '-') {
2705 p++;
2706 if (*p != c) {
aliguori376253e2009-03-05 23:01:23 +00002707 monitor_printf(mon, "%s: unsupported option -%c\n",
2708 cmdname, *p);
bellard9307c4c2004-04-04 12:57:25 +00002709 goto fail;
2710 }
2711 p++;
2712 has_option = 1;
2713 }
2714 if (nb_args >= MAX_ARGS)
2715 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002716 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002717 }
2718 break;
2719 default:
2720 bad_type:
aliguori376253e2009-03-05 23:01:23 +00002721 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00002722 goto fail;
2723 }
2724 }
2725 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00002726 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002727 p++;
2728 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00002729 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
2730 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00002731 goto fail;
2732 }
2733
2734 switch(nb_args) {
2735 case 0:
blueswir1a5f1b962008-08-17 20:21:51 +00002736 handler_0 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002737 handler_0(mon);
bellard9307c4c2004-04-04 12:57:25 +00002738 break;
2739 case 1:
blueswir1a5f1b962008-08-17 20:21:51 +00002740 handler_1 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002741 handler_1(mon, args[0]);
bellard9307c4c2004-04-04 12:57:25 +00002742 break;
2743 case 2:
blueswir1a5f1b962008-08-17 20:21:51 +00002744 handler_2 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002745 handler_2(mon, args[0], args[1]);
bellard9307c4c2004-04-04 12:57:25 +00002746 break;
2747 case 3:
blueswir1a5f1b962008-08-17 20:21:51 +00002748 handler_3 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002749 handler_3(mon, args[0], args[1], args[2]);
bellard9307c4c2004-04-04 12:57:25 +00002750 break;
2751 case 4:
blueswir1a5f1b962008-08-17 20:21:51 +00002752 handler_4 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002753 handler_4(mon, args[0], args[1], args[2], args[3]);
bellard9307c4c2004-04-04 12:57:25 +00002754 break;
2755 case 5:
blueswir1a5f1b962008-08-17 20:21:51 +00002756 handler_5 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002757 handler_5(mon, args[0], args[1], args[2], args[3], args[4]);
bellard9307c4c2004-04-04 12:57:25 +00002758 break;
bellard34405572004-06-08 00:55:58 +00002759 case 6:
blueswir1a5f1b962008-08-17 20:21:51 +00002760 handler_6 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002761 handler_6(mon, args[0], args[1], args[2], args[3], args[4], args[5]);
bellard34405572004-06-08 00:55:58 +00002762 break;
bellardec36b692006-07-16 18:57:03 +00002763 case 7:
blueswir1a5f1b962008-08-17 20:21:51 +00002764 handler_7 = cmd->handler;
aliguori376253e2009-03-05 23:01:23 +00002765 handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2766 args[6]);
bellardec36b692006-07-16 18:57:03 +00002767 break;
bellard9307c4c2004-04-04 12:57:25 +00002768 default:
aliguori376253e2009-03-05 23:01:23 +00002769 monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args);
bellard9307c4c2004-04-04 12:57:25 +00002770 goto fail;
2771 }
2772 fail:
2773 for(i = 0; i < MAX_ARGS; i++)
2774 qemu_free(str_allocated[i]);
2775 return;
bellard9dc39cb2004-03-14 21:38:27 +00002776}
2777
bellard81d09122004-07-14 17:21:37 +00002778static void cmd_completion(const char *name, const char *list)
2779{
2780 const char *p, *pstart;
2781 char cmd[128];
2782 int len;
2783
2784 p = list;
2785 for(;;) {
2786 pstart = p;
2787 p = strchr(p, '|');
2788 if (!p)
2789 p = pstart + strlen(pstart);
2790 len = p - pstart;
2791 if (len > sizeof(cmd) - 2)
2792 len = sizeof(cmd) - 2;
2793 memcpy(cmd, pstart, len);
2794 cmd[len] = '\0';
2795 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00002796 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00002797 }
2798 if (*p == '\0')
2799 break;
2800 p++;
2801 }
2802}
2803
2804static void file_completion(const char *input)
2805{
2806 DIR *ffs;
2807 struct dirent *d;
2808 char path[1024];
2809 char file[1024], file_prefix[1024];
2810 int input_path_len;
2811 const char *p;
2812
ths5fafdf22007-09-16 21:08:06 +00002813 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002814 if (!p) {
2815 input_path_len = 0;
2816 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00002817 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00002818 } else {
2819 input_path_len = p - input + 1;
2820 memcpy(path, input, input_path_len);
2821 if (input_path_len > sizeof(path) - 1)
2822 input_path_len = sizeof(path) - 1;
2823 path[input_path_len] = '\0';
2824 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2825 }
2826#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00002827 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
2828 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00002829#endif
2830 ffs = opendir(path);
2831 if (!ffs)
2832 return;
2833 for(;;) {
2834 struct stat sb;
2835 d = readdir(ffs);
2836 if (!d)
2837 break;
2838 if (strstart(d->d_name, file_prefix, NULL)) {
2839 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00002840 if (input_path_len < sizeof(file))
2841 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2842 d->d_name);
bellard81d09122004-07-14 17:21:37 +00002843 /* stat the file to find out if it's a directory.
2844 * In that case add a slash to speed up typing long paths
2845 */
2846 stat(file, &sb);
2847 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00002848 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00002849 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00002850 }
2851 }
2852 closedir(ffs);
2853}
2854
aliguori51de9762009-03-05 23:00:43 +00002855static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00002856{
aliguori51de9762009-03-05 23:00:43 +00002857 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00002858 const char *input = opaque;
2859
2860 if (input[0] == '\0' ||
2861 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00002862 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00002863 }
2864}
2865
2866/* NOTE: this parser is an approximate form of the real command parser */
2867static void parse_cmdline(const char *cmdline,
2868 int *pnb_args, char **args)
2869{
2870 const char *p;
2871 int nb_args, ret;
2872 char buf[1024];
2873
2874 p = cmdline;
2875 nb_args = 0;
2876 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00002877 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00002878 p++;
2879 if (*p == '\0')
2880 break;
2881 if (nb_args >= MAX_ARGS)
2882 break;
2883 ret = get_str(buf, sizeof(buf), &p);
2884 args[nb_args] = qemu_strdup(buf);
2885 nb_args++;
2886 if (ret < 0)
2887 break;
2888 }
2889 *pnb_args = nb_args;
2890}
2891
aliguori4c36ba32009-03-05 23:01:37 +00002892static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002893{
2894 const char *cmdname;
2895 char *args[MAX_ARGS];
2896 int nb_args, i, len;
2897 const char *ptype, *str;
aliguori376253e2009-03-05 23:01:23 +00002898 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002899 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002900
2901 parse_cmdline(cmdline, &nb_args, args);
2902#ifdef DEBUG_COMPLETION
2903 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00002904 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00002905 }
2906#endif
2907
2908 /* if the line ends with a space, it means we want to complete the
2909 next arg */
2910 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00002911 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00002912 if (nb_args >= MAX_ARGS)
2913 return;
2914 args[nb_args++] = qemu_strdup("");
2915 }
2916 if (nb_args <= 1) {
2917 /* command completion */
2918 if (nb_args == 0)
2919 cmdname = "";
2920 else
2921 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00002922 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00002923 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00002924 cmd_completion(cmdname, cmd->name);
2925 }
2926 } else {
2927 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00002928 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00002929 if (compare_cmd(args[0], cmd->name))
2930 goto found;
2931 }
2932 return;
2933 found:
2934 ptype = cmd->args_type;
2935 for(i = 0; i < nb_args - 2; i++) {
2936 if (*ptype != '\0') {
2937 ptype++;
2938 while (*ptype == '?')
2939 ptype++;
2940 }
2941 }
2942 str = args[nb_args - 1];
2943 switch(*ptype) {
2944 case 'F':
2945 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00002946 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00002947 file_completion(str);
2948 break;
2949 case 'B':
2950 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00002951 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00002952 bdrv_iterate(block_completion_it, (void *)str);
2953 break;
bellard7fe48482004-10-09 18:08:01 +00002954 case 's':
2955 /* XXX: more generic ? */
2956 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00002957 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00002958 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2959 cmd_completion(str, cmd->name);
2960 }
bellard64866c32006-05-07 18:03:31 +00002961 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00002962 char *sep = strrchr(str, '-');
2963 if (sep)
2964 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00002965 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00002966 for(key = key_defs; key->name != NULL; key++) {
2967 cmd_completion(str, key->name);
2968 }
bellard7fe48482004-10-09 18:08:01 +00002969 }
2970 break;
bellard81d09122004-07-14 17:21:37 +00002971 default:
2972 break;
2973 }
2974 }
2975 for(i = 0; i < nb_args; i++)
2976 qemu_free(args[i]);
2977}
2978
aliguori731b0362009-03-05 23:01:42 +00002979static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00002980{
aliguori731b0362009-03-05 23:01:42 +00002981 Monitor *mon = opaque;
2982
2983 return (mon->suspend_cnt == 0) ? 128 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00002984}
2985
aliguori731b0362009-03-05 23:01:42 +00002986static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00002987{
aliguori731b0362009-03-05 23:01:42 +00002988 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00002989 int i;
aliguori376253e2009-03-05 23:01:23 +00002990
aliguori731b0362009-03-05 23:01:42 +00002991 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00002992
aliguoricde76ee2009-03-05 23:01:51 +00002993 if (cur_mon->rs) {
2994 for (i = 0; i < size; i++)
2995 readline_handle_byte(cur_mon->rs, buf[i]);
2996 } else {
2997 if (size == 0 || buf[size - 1] != 0)
2998 monitor_printf(cur_mon, "corrupted command\n");
2999 else
3000 monitor_handle_command(cur_mon, (char *)buf);
3001 }
aliguori731b0362009-03-05 23:01:42 +00003002
3003 cur_mon = old_mon;
3004}
aliguorid8f44602008-10-06 13:52:44 +00003005
aliguori376253e2009-03-05 23:01:23 +00003006static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003007{
aliguori731b0362009-03-05 23:01:42 +00003008 monitor_suspend(mon);
aliguori376253e2009-03-05 23:01:23 +00003009 monitor_handle_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00003010 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00003011}
3012
aliguoricde76ee2009-03-05 23:01:51 +00003013int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003014{
aliguoricde76ee2009-03-05 23:01:51 +00003015 if (!mon->rs)
3016 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00003017 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00003018 return 0;
aliguorid8f44602008-10-06 13:52:44 +00003019}
3020
aliguori376253e2009-03-05 23:01:23 +00003021void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003022{
aliguoricde76ee2009-03-05 23:01:51 +00003023 if (!mon->rs)
3024 return;
aliguori731b0362009-03-05 23:01:42 +00003025 if (--mon->suspend_cnt == 0)
3026 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00003027}
3028
aliguori731b0362009-03-05 23:01:42 +00003029static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00003030{
aliguori376253e2009-03-05 23:01:23 +00003031 Monitor *mon = opaque;
3032
aliguori2724b182009-03-05 23:01:47 +00003033 switch (event) {
3034 case CHR_EVENT_MUX_IN:
3035 readline_restart(mon->rs);
3036 monitor_resume(mon);
3037 monitor_flush(mon);
3038 break;
ths86e94de2007-01-05 22:01:59 +00003039
aliguori2724b182009-03-05 23:01:47 +00003040 case CHR_EVENT_MUX_OUT:
3041 if (mon->suspend_cnt == 0)
3042 monitor_printf(mon, "\n");
3043 monitor_flush(mon);
3044 monitor_suspend(mon);
3045 break;
3046
3047 case CHR_EVENT_RESET:
3048 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3049 "information\n", QEMU_VERSION);
3050 if (mon->chr->focus == 0)
3051 readline_show_prompt(mon->rs);
3052 break;
3053 }
ths86e94de2007-01-05 22:01:59 +00003054}
3055
aliguori76655d62009-03-06 20:27:37 +00003056
3057/*
3058 * Local variables:
3059 * c-indent-level: 4
3060 * c-basic-offset: 4
3061 * tab-width: 8
3062 * End:
3063 */
3064
aliguori731b0362009-03-05 23:01:42 +00003065void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00003066{
aliguori731b0362009-03-05 23:01:42 +00003067 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00003068 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00003069
3070 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00003071 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00003072 is_first_init = 0;
3073 }
aliguori87127162009-03-05 23:01:29 +00003074
3075 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00003076
aliguori87127162009-03-05 23:01:29 +00003077 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00003078 mon->flags = flags;
aliguori2724b182009-03-05 23:01:47 +00003079 if (mon->chr->focus != 0)
3080 mon->suspend_cnt = 1; /* mux'ed monitors start suspended */
aliguoricde76ee2009-03-05 23:01:51 +00003081 if (flags & MONITOR_USE_READLINE) {
3082 mon->rs = readline_init(mon, monitor_find_completion);
3083 monitor_read_command(mon, 0);
3084 }
aliguori87127162009-03-05 23:01:29 +00003085
aliguori731b0362009-03-05 23:01:42 +00003086 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event,
3087 mon);
aliguori87127162009-03-05 23:01:29 +00003088
3089 LIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00003090 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00003091 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00003092}
3093
aliguori376253e2009-03-05 23:01:23 +00003094static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003095{
aliguoribb5fc202009-03-05 23:01:15 +00003096 BlockDriverState *bs = opaque;
3097 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00003098
aliguoribb5fc202009-03-05 23:01:15 +00003099 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00003100 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00003101 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00003102 }
aliguori731b0362009-03-05 23:01:42 +00003103 if (mon->password_completion_cb)
3104 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00003105
aliguori731b0362009-03-05 23:01:42 +00003106 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00003107}
aliguoric0f4ce72009-03-05 23:01:01 +00003108
aliguori376253e2009-03-05 23:01:23 +00003109void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00003110 BlockDriverCompletionFunc *completion_cb,
3111 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00003112{
aliguoricde76ee2009-03-05 23:01:51 +00003113 int err;
3114
aliguoribb5fc202009-03-05 23:01:15 +00003115 if (!bdrv_key_required(bs)) {
3116 if (completion_cb)
3117 completion_cb(opaque, 0);
3118 return;
3119 }
aliguoric0f4ce72009-03-05 23:01:01 +00003120
aliguori376253e2009-03-05 23:01:23 +00003121 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
3122 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00003123
aliguori731b0362009-03-05 23:01:42 +00003124 mon->password_completion_cb = completion_cb;
3125 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00003126
aliguoricde76ee2009-03-05 23:01:51 +00003127 err = monitor_read_password(mon, bdrv_password_cb, bs);
3128
3129 if (err && completion_cb)
3130 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00003131}