blob: 91ff29dfd37c76418920e704f55ba860de0e9a29 [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 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "hw/hw.h"
25#include "hw/usb.h"
26#include "hw/pcmcia.h"
27#include "hw/pc.h"
28#include "hw/pci.h"
29#include "gdbstub.h"
30#include "net.h"
31#include "qemu-char.h"
32#include "sysemu.h"
33#include "console.h"
34#include "block.h"
35#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000036#include "disas.h"
bellard81d09122004-07-14 17:21:37 +000037#include <dirent.h>
bellard9dc39cb2004-03-14 21:38:27 +000038
ths6a5bd302007-12-03 17:05:38 +000039#ifdef CONFIG_PROFILER
40#include "qemu-timer.h" /* for ticks_per_sec */
41#endif
42
bellard9dc39cb2004-03-14 21:38:27 +000043//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000044//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000045
bellard9307c4c2004-04-04 12:57:25 +000046#ifndef offsetof
47#define offsetof(type, field) ((size_t) &((type *)0)->field)
48#endif
49
bellard9307c4c2004-04-04 12:57:25 +000050/*
51 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000052 *
bellard9307c4c2004-04-04 12:57:25 +000053 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000054 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000055 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000056 * 'i' 32 bit integer
57 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000058 * '/' optional gdb-like print format (like "/10x")
59 *
60 * '?' optional type (for 'F', 's' and 'i')
61 *
62 */
63
bellard9dc39cb2004-03-14 21:38:27 +000064typedef struct term_cmd_t {
65 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000066 const char *args_type;
67 void (*handler)();
bellard9dc39cb2004-03-14 21:38:27 +000068 const char *params;
69 const char *help;
70} term_cmd_t;
71
ths20d8a3e2007-02-18 17:04:49 +000072#define MAX_MON 4
73static CharDriverState *monitor_hd[MAX_MON];
ths86e94de2007-01-05 22:01:59 +000074static int hide_banner;
bellard7e2515e2004-08-01 21:52:19 +000075
bellard9dc39cb2004-03-14 21:38:27 +000076static term_cmd_t term_cmds[];
77static term_cmd_t info_cmds[];
78
ths60fe76f2007-12-16 03:02:09 +000079static uint8_t term_outbuf[1024];
bellard7e2515e2004-08-01 21:52:19 +000080static int term_outbuf_index;
bellard81d09122004-07-14 17:21:37 +000081
bellard7e2515e2004-08-01 21:52:19 +000082static void monitor_start_input(void);
bellard9dc39cb2004-03-14 21:38:27 +000083
bellard6a00d602005-11-21 23:25:50 +000084CPUState *mon_cpu = NULL;
85
bellard9dc39cb2004-03-14 21:38:27 +000086void term_flush(void)
87{
ths20d8a3e2007-02-18 17:04:49 +000088 int i;
bellard7e2515e2004-08-01 21:52:19 +000089 if (term_outbuf_index > 0) {
ths20d8a3e2007-02-18 17:04:49 +000090 for (i = 0; i < MAX_MON; i++)
91 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
92 qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index);
bellard7e2515e2004-08-01 21:52:19 +000093 term_outbuf_index = 0;
94 }
95}
96
97/* flush at every end of line or if the buffer is full */
98void term_puts(const char *str)
99{
ths60fe76f2007-12-16 03:02:09 +0000100 char c;
bellard7e2515e2004-08-01 21:52:19 +0000101 for(;;) {
102 c = *str++;
103 if (c == '\0')
104 break;
bellard7ba12602006-07-14 20:26:42 +0000105 if (c == '\n')
106 term_outbuf[term_outbuf_index++] = '\r';
bellard7e2515e2004-08-01 21:52:19 +0000107 term_outbuf[term_outbuf_index++] = c;
bellard7ba12602006-07-14 20:26:42 +0000108 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
bellard7e2515e2004-08-01 21:52:19 +0000109 c == '\n')
110 term_flush();
111 }
112}
113
114void term_vprintf(const char *fmt, va_list ap)
115{
116 char buf[4096];
117 vsnprintf(buf, sizeof(buf), fmt, ap);
118 term_puts(buf);
119}
120
121void term_printf(const char *fmt, ...)
122{
123 va_list ap;
124 va_start(ap, fmt);
125 term_vprintf(fmt, ap);
126 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000127}
128
thsfef30742006-12-22 14:11:32 +0000129void term_print_filename(const char *filename)
130{
131 int i;
132
133 for (i = 0; filename[i]; i++) {
134 switch (filename[i]) {
135 case ' ':
136 case '"':
137 case '\\':
138 term_printf("\\%c", filename[i]);
139 break;
140 case '\t':
141 term_printf("\\t");
142 break;
143 case '\r':
144 term_printf("\\r");
145 break;
146 case '\n':
147 term_printf("\\n");
148 break;
149 default:
150 term_printf("%c", filename[i]);
151 break;
152 }
153 }
154}
155
bellard7fe48482004-10-09 18:08:01 +0000156static int monitor_fprintf(FILE *stream, const char *fmt, ...)
157{
158 va_list ap;
159 va_start(ap, fmt);
160 term_vprintf(fmt, ap);
161 va_end(ap);
162 return 0;
163}
164
bellard9dc39cb2004-03-14 21:38:27 +0000165static int compare_cmd(const char *name, const char *list)
166{
167 const char *p, *pstart;
168 int len;
169 len = strlen(name);
170 p = list;
171 for(;;) {
172 pstart = p;
173 p = strchr(p, '|');
174 if (!p)
175 p = pstart + strlen(pstart);
176 if ((p - pstart) == len && !memcmp(pstart, name, len))
177 return 1;
178 if (*p == '\0')
179 break;
180 p++;
181 }
182 return 0;
183}
184
185static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name)
186{
187 term_cmd_t *cmd;
188
189 for(cmd = cmds; cmd->name != NULL; cmd++) {
190 if (!name || !strcmp(name, cmd->name))
191 term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
192 }
193}
194
195static void help_cmd(const char *name)
196{
197 if (name && !strcmp(name, "info")) {
198 help_cmd1(info_cmds, "info ", NULL);
199 } else {
200 help_cmd1(term_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000201 if (name && !strcmp(name, "log")) {
202 CPULogItem *item;
203 term_printf("Log items (comma separated):\n");
204 term_printf("%-10s %s\n", "none", "remove all logs");
205 for(item = cpu_log_items; item->mask != 0; item++) {
206 term_printf("%-10s %s\n", item->name, item->help);
207 }
208 }
bellard9dc39cb2004-03-14 21:38:27 +0000209 }
210}
211
bellard9307c4c2004-04-04 12:57:25 +0000212static void do_help(const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000213{
bellard9307c4c2004-04-04 12:57:25 +0000214 help_cmd(name);
bellard9dc39cb2004-03-14 21:38:27 +0000215}
216
bellard7954c732006-08-01 15:52:40 +0000217static void do_commit(const char *device)
bellard9dc39cb2004-03-14 21:38:27 +0000218{
bellard7954c732006-08-01 15:52:40 +0000219 int i, all_devices;
balrog2dc7b602007-05-24 18:53:22 +0000220
bellard7954c732006-08-01 15:52:40 +0000221 all_devices = !strcmp(device, "all");
thse4bcb142007-12-02 04:51:10 +0000222 for (i = 0; i < nb_drives; i++) {
ths5fafdf22007-09-16 21:08:06 +0000223 if (all_devices ||
thse4bcb142007-12-02 04:51:10 +0000224 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
225 bdrv_commit(drives_table[i].bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000226 }
227}
228
bellard9307c4c2004-04-04 12:57:25 +0000229static void do_info(const char *item)
bellard9dc39cb2004-03-14 21:38:27 +0000230{
231 term_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000232
bellard9307c4c2004-04-04 12:57:25 +0000233 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000234 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000235 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000236 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000237 goto found;
238 }
239 help:
bellard9307c4c2004-04-04 12:57:25 +0000240 help_cmd("info");
bellard9dc39cb2004-03-14 21:38:27 +0000241 return;
242 found:
bellard9307c4c2004-04-04 12:57:25 +0000243 cmd->handler();
bellard9dc39cb2004-03-14 21:38:27 +0000244}
245
bellard9bc9d1c2004-10-10 15:15:51 +0000246static void do_info_version(void)
247{
248 term_printf("%s\n", QEMU_VERSION);
249}
250
thsc35734b2007-03-19 15:17:08 +0000251static void do_info_name(void)
252{
253 if (qemu_name)
254 term_printf("%s\n", qemu_name);
255}
256
bellard9307c4c2004-04-04 12:57:25 +0000257static void do_info_block(void)
bellard9dc39cb2004-03-14 21:38:27 +0000258{
259 bdrv_info();
260}
261
thsa36e69d2007-12-02 05:18:19 +0000262static void do_info_blockstats(void)
263{
264 bdrv_info_stats();
265}
266
bellard6a00d602005-11-21 23:25:50 +0000267/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000268static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000269{
270 CPUState *env;
271
272 for(env = first_cpu; env != NULL; env = env->next_cpu) {
273 if (env->cpu_index == cpu_index) {
274 mon_cpu = env;
275 return 0;
276 }
277 }
278 return -1;
279}
280
pbrook9596ebb2007-11-18 01:44:38 +0000281static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000282{
283 if (!mon_cpu) {
284 mon_set_cpu(0);
285 }
286 return mon_cpu;
287}
288
bellard9307c4c2004-04-04 12:57:25 +0000289static void do_info_registers(void)
290{
bellard6a00d602005-11-21 23:25:50 +0000291 CPUState *env;
292 env = mon_get_cpu();
293 if (!env)
294 return;
bellard9307c4c2004-04-04 12:57:25 +0000295#ifdef TARGET_I386
bellard6a00d602005-11-21 23:25:50 +0000296 cpu_dump_state(env, NULL, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000297 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000298#else
ths5fafdf22007-09-16 21:08:06 +0000299 cpu_dump_state(env, NULL, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000300 0);
bellard9307c4c2004-04-04 12:57:25 +0000301#endif
302}
303
bellard6a00d602005-11-21 23:25:50 +0000304static void do_info_cpus(void)
305{
306 CPUState *env;
307
308 /* just to set the default cpu if not already done */
309 mon_get_cpu();
310
311 for(env = first_cpu; env != NULL; env = env->next_cpu) {
ths5fafdf22007-09-16 21:08:06 +0000312 term_printf("%c CPU #%d:",
bellard6a00d602005-11-21 23:25:50 +0000313 (env == mon_cpu) ? '*' : ' ',
314 env->cpu_index);
315#if defined(TARGET_I386)
316 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000317#elif defined(TARGET_PPC)
318 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
bellardba3c64f2005-12-05 20:31:52 +0000319#elif defined(TARGET_SPARC)
320 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
thsead93602007-09-06 00:18:15 +0000321#elif defined(TARGET_MIPS)
322 term_printf(" PC=0x" TARGET_FMT_lx, env->PC[env->current_tc]);
bellardce5232c2008-05-28 17:14:10 +0000323#endif
thsead93602007-09-06 00:18:15 +0000324 if (env->halted)
325 term_printf(" (halted)");
bellard6a00d602005-11-21 23:25:50 +0000326 term_printf("\n");
327 }
328}
329
330static void do_cpu_set(int index)
331{
332 if (mon_set_cpu(index) < 0)
333 term_printf("Invalid CPU index\n");
334}
335
bellarde3db7222005-01-26 22:00:47 +0000336static void do_info_jit(void)
337{
338 dump_exec_info(NULL, monitor_fprintf);
339}
340
bellardaa455482004-04-04 13:07:25 +0000341static void do_info_history (void)
342{
343 int i;
bellard7e2515e2004-08-01 21:52:19 +0000344 const char *str;
ths3b46e622007-09-17 08:09:54 +0000345
bellard7e2515e2004-08-01 21:52:19 +0000346 i = 0;
347 for(;;) {
348 str = readline_get_history(i);
349 if (!str)
350 break;
351 term_printf("%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000352 i++;
bellardaa455482004-04-04 13:07:25 +0000353 }
354}
355
j_mayer76a66252007-03-07 08:32:30 +0000356#if defined(TARGET_PPC)
357/* XXX: not implemented in other targets */
358static void do_info_cpu_stats (void)
359{
360 CPUState *env;
361
362 env = mon_get_cpu();
363 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
364}
365#endif
366
bellard9307c4c2004-04-04 12:57:25 +0000367static void do_quit(void)
bellard9dc39cb2004-03-14 21:38:27 +0000368{
369 exit(0);
370}
371
372static int eject_device(BlockDriverState *bs, int force)
373{
374 if (bdrv_is_inserted(bs)) {
375 if (!force) {
376 if (!bdrv_is_removable(bs)) {
377 term_printf("device is not removable\n");
378 return -1;
379 }
380 if (bdrv_is_locked(bs)) {
381 term_printf("device is locked\n");
382 return -1;
383 }
384 }
385 bdrv_close(bs);
386 }
387 return 0;
388}
389
bellard9307c4c2004-04-04 12:57:25 +0000390static void do_eject(int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000391{
392 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000393
bellard9307c4c2004-04-04 12:57:25 +0000394 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000395 if (!bs) {
396 term_printf("device not found\n");
397 return;
398 }
399 eject_device(bs, force);
400}
401
thse25a5822007-08-25 01:36:20 +0000402static void do_change_block(const char *device, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000403{
404 BlockDriverState *bs;
405
bellard9307c4c2004-04-04 12:57:25 +0000406 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000407 if (!bs) {
408 term_printf("device not found\n");
409 return;
410 }
411 if (eject_device(bs, 0) < 0)
412 return;
bellard9307c4c2004-04-04 12:57:25 +0000413 bdrv_open(bs, filename, 0);
balrog2bac6012007-04-30 01:34:31 +0000414 qemu_key_check(bs, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000415}
416
thse25a5822007-08-25 01:36:20 +0000417static void do_change_vnc(const char *target)
418{
ths70848512007-08-25 01:37:05 +0000419 if (strcmp(target, "passwd") == 0 ||
420 strcmp(target, "password") == 0) {
421 char password[9];
422 monitor_readline("Password: ", 1, password, sizeof(password)-1);
423 password[sizeof(password)-1] = '\0';
424 if (vnc_display_password(NULL, password) < 0)
425 term_printf("could not set VNC server password\n");
426 } else {
427 if (vnc_display_open(NULL, target) < 0)
428 term_printf("could not start VNC server on %s\n", target);
429 }
thse25a5822007-08-25 01:36:20 +0000430}
431
432static void do_change(const char *device, const char *target)
433{
434 if (strcmp(device, "vnc") == 0) {
435 do_change_vnc(target);
436 } else {
437 do_change_block(device, target);
438 }
439}
440
bellard9307c4c2004-04-04 12:57:25 +0000441static void do_screen_dump(const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000442{
pbrook95219892006-04-09 01:06:34 +0000443 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000444}
445
pbrooke735b912007-06-30 13:53:24 +0000446static void do_logfile(const char *filename)
447{
448 cpu_set_log_filename(filename);
449}
450
bellard9307c4c2004-04-04 12:57:25 +0000451static void do_log(const char *items)
bellardf193c792004-03-21 17:06:25 +0000452{
453 int mask;
ths3b46e622007-09-17 08:09:54 +0000454
bellard9307c4c2004-04-04 12:57:25 +0000455 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000456 mask = 0;
457 } else {
bellard9307c4c2004-04-04 12:57:25 +0000458 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000459 if (!mask) {
bellard9307c4c2004-04-04 12:57:25 +0000460 help_cmd("log");
bellardf193c792004-03-21 17:06:25 +0000461 return;
462 }
463 }
464 cpu_set_log(mask);
465}
466
bellard9307c4c2004-04-04 12:57:25 +0000467static void do_stop(void)
bellard8a7ddc32004-03-31 19:00:16 +0000468{
469 vm_stop(EXCP_INTERRUPT);
470}
471
bellard9307c4c2004-04-04 12:57:25 +0000472static void do_cont(void)
bellard8a7ddc32004-03-31 19:00:16 +0000473{
474 vm_start();
475}
476
bellard67b915a2004-03-31 23:37:16 +0000477#ifdef CONFIG_GDBSTUB
pbrookcfc34752007-02-22 01:48:01 +0000478static void do_gdbserver(const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000479{
pbrookcfc34752007-02-22 01:48:01 +0000480 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000481 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000482 if (gdbserver_start(port) < 0) {
483 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000484 } else {
pbrookcfc34752007-02-22 01:48:01 +0000485 qemu_printf("Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000486 }
487}
bellard67b915a2004-03-31 23:37:16 +0000488#endif
bellard8a7ddc32004-03-31 19:00:16 +0000489
bellard9307c4c2004-04-04 12:57:25 +0000490static void term_printc(int c)
491{
492 term_printf("'");
493 switch(c) {
494 case '\'':
495 term_printf("\\'");
496 break;
497 case '\\':
498 term_printf("\\\\");
499 break;
500 case '\n':
501 term_printf("\\n");
502 break;
503 case '\r':
504 term_printf("\\r");
505 break;
506 default:
507 if (c >= 32 && c <= 126) {
508 term_printf("%c", c);
509 } else {
510 term_printf("\\x%02x", c);
511 }
512 break;
513 }
514 term_printf("'");
515}
516
ths5fafdf22007-09-16 21:08:06 +0000517static void memory_dump(int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000518 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000519{
bellard6a00d602005-11-21 23:25:50 +0000520 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000521 int nb_per_line, l, line_size, i, max_digits, len;
522 uint8_t buf[16];
523 uint64_t v;
524
525 if (format == 'i') {
526 int flags;
527 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000528 env = mon_get_cpu();
529 if (!env && !is_physical)
530 return;
bellard9307c4c2004-04-04 12:57:25 +0000531#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000532 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000533 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000534 } else if (wsize == 4) {
535 flags = 0;
536 } else {
bellard6a15fd12006-04-12 21:07:07 +0000537 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000538 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000539 if (env) {
540#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000541 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000542 (env->segs[R_CS].flags & DESC_L_MASK))
543 flags = 2;
544 else
545#endif
546 if (!(env->segs[R_CS].flags & DESC_B_MASK))
547 flags = 1;
548 }
bellard4c27ba22004-04-25 18:05:08 +0000549 }
550#endif
bellard6a00d602005-11-21 23:25:50 +0000551 monitor_disas(env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000552 return;
553 }
554
555 len = wsize * count;
556 if (wsize == 1)
557 line_size = 8;
558 else
559 line_size = 16;
560 nb_per_line = line_size / wsize;
561 max_digits = 0;
562
563 switch(format) {
564 case 'o':
565 max_digits = (wsize * 8 + 2) / 3;
566 break;
567 default:
568 case 'x':
569 max_digits = (wsize * 8) / 4;
570 break;
571 case 'u':
572 case 'd':
573 max_digits = (wsize * 8 * 10 + 32) / 33;
574 break;
575 case 'c':
576 wsize = 1;
577 break;
578 }
579
580 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000581 if (is_physical)
582 term_printf(TARGET_FMT_plx ":", addr);
583 else
584 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000585 l = len;
586 if (l > line_size)
587 l = line_size;
588 if (is_physical) {
589 cpu_physical_memory_rw(addr, buf, l, 0);
590 } else {
bellard6a00d602005-11-21 23:25:50 +0000591 env = mon_get_cpu();
592 if (!env)
593 break;
594 cpu_memory_rw_debug(env, addr, buf, l, 0);
bellard9307c4c2004-04-04 12:57:25 +0000595 }
ths5fafdf22007-09-16 21:08:06 +0000596 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000597 while (i < l) {
598 switch(wsize) {
599 default:
600 case 1:
601 v = ldub_raw(buf + i);
602 break;
603 case 2:
604 v = lduw_raw(buf + i);
605 break;
606 case 4:
bellard92a31b12005-02-10 22:00:52 +0000607 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000608 break;
609 case 8:
610 v = ldq_raw(buf + i);
611 break;
612 }
613 term_printf(" ");
614 switch(format) {
615 case 'o':
bellard26a76462006-06-25 18:15:32 +0000616 term_printf("%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000617 break;
618 case 'x':
bellard26a76462006-06-25 18:15:32 +0000619 term_printf("0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000620 break;
621 case 'u':
bellard26a76462006-06-25 18:15:32 +0000622 term_printf("%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000623 break;
624 case 'd':
bellard26a76462006-06-25 18:15:32 +0000625 term_printf("%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000626 break;
627 case 'c':
628 term_printc(v);
629 break;
630 }
631 i += wsize;
632 }
633 term_printf("\n");
634 addr += l;
635 len -= l;
636 }
637}
638
bellard92a31b12005-02-10 22:00:52 +0000639#if TARGET_LONG_BITS == 64
640#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
641#else
642#define GET_TLONG(h, l) (l)
643#endif
644
ths5fafdf22007-09-16 21:08:06 +0000645static void do_memory_dump(int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000646 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000647{
bellard92a31b12005-02-10 22:00:52 +0000648 target_long addr = GET_TLONG(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000649 memory_dump(count, format, size, addr, 0);
650}
651
blueswir17743e582007-09-24 18:39:04 +0000652#if TARGET_PHYS_ADDR_BITS > 32
653#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
654#else
655#define GET_TPHYSADDR(h, l) (l)
656#endif
657
bellard92a31b12005-02-10 22:00:52 +0000658static void do_physical_memory_dump(int count, int format, int size,
659 uint32_t addrh, uint32_t addrl)
660
bellard9307c4c2004-04-04 12:57:25 +0000661{
blueswir17743e582007-09-24 18:39:04 +0000662 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000663 memory_dump(count, format, size, addr, 1);
664}
665
bellard92a31b12005-02-10 22:00:52 +0000666static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000667{
blueswir17743e582007-09-24 18:39:04 +0000668 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
669#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000670 switch(format) {
671 case 'o':
672 term_printf("%#o", val);
673 break;
674 case 'x':
675 term_printf("%#x", val);
676 break;
677 case 'u':
678 term_printf("%u", val);
679 break;
680 default:
681 case 'd':
682 term_printf("%d", val);
683 break;
684 case 'c':
685 term_printc(val);
686 break;
687 }
bellard92a31b12005-02-10 22:00:52 +0000688#else
689 switch(format) {
690 case 'o':
bellard26a76462006-06-25 18:15:32 +0000691 term_printf("%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000692 break;
693 case 'x':
bellard26a76462006-06-25 18:15:32 +0000694 term_printf("%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000695 break;
696 case 'u':
bellard26a76462006-06-25 18:15:32 +0000697 term_printf("%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000698 break;
699 default:
700 case 'd':
bellard26a76462006-06-25 18:15:32 +0000701 term_printf("%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000702 break;
703 case 'c':
704 term_printc(val);
705 break;
706 }
707#endif
bellard9307c4c2004-04-04 12:57:25 +0000708 term_printf("\n");
709}
710
ths5fafdf22007-09-16 21:08:06 +0000711static void do_memory_save(unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000712 uint32_t size, const char *filename)
713{
714 FILE *f;
715 target_long addr = GET_TLONG(valh, vall);
716 uint32_t l;
717 CPUState *env;
718 uint8_t buf[1024];
719
720 env = mon_get_cpu();
721 if (!env)
722 return;
723
724 f = fopen(filename, "wb");
725 if (!f) {
726 term_printf("could not open '%s'\n", filename);
727 return;
728 }
729 while (size != 0) {
730 l = sizeof(buf);
731 if (l > size)
732 l = size;
733 cpu_memory_rw_debug(env, addr, buf, l, 0);
734 fwrite(buf, 1, l, f);
735 addr += l;
736 size -= l;
737 }
738 fclose(f);
739}
740
aurel32a8bdf7a2008-04-11 21:36:14 +0000741static void do_physical_memory_save(unsigned int valh, unsigned int vall,
742 uint32_t size, const char *filename)
743{
744 FILE *f;
745 uint32_t l;
746 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000747 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000748
749 f = fopen(filename, "wb");
750 if (!f) {
751 term_printf("could not open '%s'\n", filename);
752 return;
753 }
754 while (size != 0) {
755 l = sizeof(buf);
756 if (l > size)
757 l = size;
758 cpu_physical_memory_rw(addr, buf, l, 0);
759 fwrite(buf, 1, l, f);
760 fflush(f);
761 addr += l;
762 size -= l;
763 }
764 fclose(f);
765}
766
bellarde4cf1ad2005-06-04 20:15:57 +0000767static void do_sum(uint32_t start, uint32_t size)
768{
769 uint32_t addr;
770 uint8_t buf[1];
771 uint16_t sum;
772
773 sum = 0;
774 for(addr = start; addr < (start + size); addr++) {
775 cpu_physical_memory_rw(addr, buf, 1, 0);
776 /* BSD sum algorithm ('sum' Unix command) */
777 sum = (sum >> 1) | (sum << 15);
778 sum += buf[0];
779 }
780 term_printf("%05d\n", sum);
781}
782
bellarda3a91a32004-06-04 11:06:21 +0000783typedef struct {
784 int keycode;
785 const char *name;
786} KeyDef;
787
788static const KeyDef key_defs[] = {
789 { 0x2a, "shift" },
790 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000791
bellarda3a91a32004-06-04 11:06:21 +0000792 { 0x38, "alt" },
793 { 0xb8, "alt_r" },
794 { 0x1d, "ctrl" },
795 { 0x9d, "ctrl_r" },
796
797 { 0xdd, "menu" },
798
799 { 0x01, "esc" },
800
801 { 0x02, "1" },
802 { 0x03, "2" },
803 { 0x04, "3" },
804 { 0x05, "4" },
805 { 0x06, "5" },
806 { 0x07, "6" },
807 { 0x08, "7" },
808 { 0x09, "8" },
809 { 0x0a, "9" },
810 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000811 { 0x0c, "minus" },
812 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000813 { 0x0e, "backspace" },
814
815 { 0x0f, "tab" },
816 { 0x10, "q" },
817 { 0x11, "w" },
818 { 0x12, "e" },
819 { 0x13, "r" },
820 { 0x14, "t" },
821 { 0x15, "y" },
822 { 0x16, "u" },
823 { 0x17, "i" },
824 { 0x18, "o" },
825 { 0x19, "p" },
826
827 { 0x1c, "ret" },
828
829 { 0x1e, "a" },
830 { 0x1f, "s" },
831 { 0x20, "d" },
832 { 0x21, "f" },
833 { 0x22, "g" },
834 { 0x23, "h" },
835 { 0x24, "j" },
836 { 0x25, "k" },
837 { 0x26, "l" },
838
839 { 0x2c, "z" },
840 { 0x2d, "x" },
841 { 0x2e, "c" },
842 { 0x2f, "v" },
843 { 0x30, "b" },
844 { 0x31, "n" },
845 { 0x32, "m" },
ths3b46e622007-09-17 08:09:54 +0000846
balrog4d3b6f62008-02-10 16:33:14 +0000847 { 0x37, "asterisk" },
848
bellarda3a91a32004-06-04 11:06:21 +0000849 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000850 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000851 { 0x3b, "f1" },
852 { 0x3c, "f2" },
853 { 0x3d, "f3" },
854 { 0x3e, "f4" },
855 { 0x3f, "f5" },
856 { 0x40, "f6" },
857 { 0x41, "f7" },
858 { 0x42, "f8" },
859 { 0x43, "f9" },
860 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000861 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000862 { 0x46, "scroll_lock" },
863
bellard64866c32006-05-07 18:03:31 +0000864 { 0xb5, "kp_divide" },
865 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000866 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000867 { 0x4e, "kp_add" },
868 { 0x9c, "kp_enter" },
869 { 0x53, "kp_decimal" },
870
871 { 0x52, "kp_0" },
872 { 0x4f, "kp_1" },
873 { 0x50, "kp_2" },
874 { 0x51, "kp_3" },
875 { 0x4b, "kp_4" },
876 { 0x4c, "kp_5" },
877 { 0x4d, "kp_6" },
878 { 0x47, "kp_7" },
879 { 0x48, "kp_8" },
880 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000881
bellarda3a91a32004-06-04 11:06:21 +0000882 { 0x56, "<" },
883
884 { 0x57, "f11" },
885 { 0x58, "f12" },
886
887 { 0xb7, "print" },
888
889 { 0xc7, "home" },
890 { 0xc9, "pgup" },
891 { 0xd1, "pgdn" },
892 { 0xcf, "end" },
893
894 { 0xcb, "left" },
895 { 0xc8, "up" },
896 { 0xd0, "down" },
897 { 0xcd, "right" },
898
899 { 0xd2, "insert" },
900 { 0xd3, "delete" },
901 { 0, NULL },
902};
903
904static int get_keycode(const char *key)
905{
906 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +0000907 char *endp;
908 int ret;
bellarda3a91a32004-06-04 11:06:21 +0000909
910 for(p = key_defs; p->name != NULL; p++) {
911 if (!strcmp(key, p->name))
912 return p->keycode;
913 }
bellard64866c32006-05-07 18:03:31 +0000914 if (strstart(key, "0x", NULL)) {
915 ret = strtoul(key, &endp, 0);
916 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
917 return ret;
918 }
bellarda3a91a32004-06-04 11:06:21 +0000919 return -1;
920}
921
balrog3401c0d2008-06-04 10:05:59 +0000922static void do_sendkey(const char *string)
bellarda3a91a32004-06-04 11:06:21 +0000923{
bellarda3a91a32004-06-04 11:06:21 +0000924 uint8_t keycodes[16];
balrog3401c0d2008-06-04 10:05:59 +0000925 int nb_keycodes = 0;
926 char keyname_buf[16];
927 char *separator;
928 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000929
balrog3401c0d2008-06-04 10:05:59 +0000930 while (1) {
931 separator = strchr(string, '-');
932 keyname_len = separator ? separator - string : strlen(string);
933 if (keyname_len > 0) {
934 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
935 if (keyname_len > sizeof(keyname_buf) - 1) {
936 term_printf("invalid key: '%s...'\n", keyname_buf);
937 return;
bellarda3a91a32004-06-04 11:06:21 +0000938 }
balrog3401c0d2008-06-04 10:05:59 +0000939 if (nb_keycodes == sizeof(keycodes)) {
940 term_printf("too many keys\n");
941 return;
942 }
943 keyname_buf[keyname_len] = 0;
944 keycode = get_keycode(keyname_buf);
945 if (keycode < 0) {
946 term_printf("unknown key: '%s'\n", keyname_buf);
947 return;
948 }
949 keycodes[nb_keycodes++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +0000950 }
balrog3401c0d2008-06-04 10:05:59 +0000951 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +0000952 break;
balrog3401c0d2008-06-04 10:05:59 +0000953 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +0000954 }
955 /* key down events */
956 for(i = 0; i < nb_keycodes; i++) {
957 keycode = keycodes[i];
958 if (keycode & 0x80)
959 kbd_put_keycode(0xe0);
960 kbd_put_keycode(keycode & 0x7f);
961 }
962 /* key up events */
963 for(i = nb_keycodes - 1; i >= 0; i--) {
964 keycode = keycodes[i];
965 if (keycode & 0x80)
966 kbd_put_keycode(0xe0);
967 kbd_put_keycode(keycode | 0x80);
968 }
969}
970
bellard13224a82006-07-14 22:03:35 +0000971static int mouse_button_state;
972
ths5fafdf22007-09-16 21:08:06 +0000973static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +0000974 const char *dz_str)
975{
976 int dx, dy, dz;
977 dx = strtol(dx_str, NULL, 0);
978 dy = strtol(dy_str, NULL, 0);
979 dz = 0;
ths5fafdf22007-09-16 21:08:06 +0000980 if (dz_str)
bellard13224a82006-07-14 22:03:35 +0000981 dz = strtol(dz_str, NULL, 0);
982 kbd_mouse_event(dx, dy, dz, mouse_button_state);
983}
984
985static void do_mouse_button(int button_state)
986{
987 mouse_button_state = button_state;
988 kbd_mouse_event(0, 0, 0, mouse_button_state);
989}
990
bellard34405572004-06-08 00:55:58 +0000991static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
992{
993 uint32_t val;
994 int suffix;
995
996 if (has_index) {
997 cpu_outb(NULL, addr & 0xffff, index & 0xff);
998 addr++;
999 }
1000 addr &= 0xffff;
1001
1002 switch(size) {
1003 default:
1004 case 1:
1005 val = cpu_inb(NULL, addr);
1006 suffix = 'b';
1007 break;
1008 case 2:
1009 val = cpu_inw(NULL, addr);
1010 suffix = 'w';
1011 break;
1012 case 4:
1013 val = cpu_inl(NULL, addr);
1014 suffix = 'l';
1015 break;
1016 }
1017 term_printf("port%c[0x%04x] = %#0*x\n",
1018 suffix, addr, size * 2, val);
1019}
bellarda3a91a32004-06-04 11:06:21 +00001020
aurel320ecdffb2008-05-04 20:11:34 +00001021static void do_boot_set(const char *bootdevice)
1022{
1023 int res;
1024
1025 if (qemu_boot_set_handler) {
1026 res = qemu_boot_set_handler(bootdevice);
1027 if (res == 0)
1028 term_printf("boot device list now set to %s\n", bootdevice);
1029 else
1030 term_printf("setting boot device list failed with error %i\n", res);
1031 } else {
1032 term_printf("no function defined to set boot device list for this architecture\n");
1033 }
1034}
1035
bellarde4f90822004-06-20 12:35:44 +00001036static void do_system_reset(void)
1037{
1038 qemu_system_reset_request();
1039}
1040
bellard34751872005-07-02 14:31:34 +00001041static void do_system_powerdown(void)
1042{
1043 qemu_system_powerdown_request();
1044}
1045
bellardb86bda52004-09-18 19:32:46 +00001046#if defined(TARGET_I386)
1047static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1048{
ths5fafdf22007-09-16 21:08:06 +00001049 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001050 addr,
1051 pte & mask,
1052 pte & PG_GLOBAL_MASK ? 'G' : '-',
1053 pte & PG_PSE_MASK ? 'P' : '-',
1054 pte & PG_DIRTY_MASK ? 'D' : '-',
1055 pte & PG_ACCESSED_MASK ? 'A' : '-',
1056 pte & PG_PCD_MASK ? 'C' : '-',
1057 pte & PG_PWT_MASK ? 'T' : '-',
1058 pte & PG_USER_MASK ? 'U' : '-',
1059 pte & PG_RW_MASK ? 'W' : '-');
1060}
1061
1062static void tlb_info(void)
1063{
bellard6a00d602005-11-21 23:25:50 +00001064 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001065 int l1, l2;
1066 uint32_t pgd, pde, pte;
1067
bellard6a00d602005-11-21 23:25:50 +00001068 env = mon_get_cpu();
1069 if (!env)
1070 return;
1071
bellardb86bda52004-09-18 19:32:46 +00001072 if (!(env->cr[0] & CR0_PG_MASK)) {
1073 term_printf("PG disabled\n");
1074 return;
1075 }
1076 pgd = env->cr[3] & ~0xfff;
1077 for(l1 = 0; l1 < 1024; l1++) {
1078 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1079 pde = le32_to_cpu(pde);
1080 if (pde & PG_PRESENT_MASK) {
1081 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1082 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1083 } else {
1084 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001085 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001086 (uint8_t *)&pte, 4);
1087 pte = le32_to_cpu(pte);
1088 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001089 print_pte((l1 << 22) + (l2 << 12),
1090 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001091 ~0xfff);
1092 }
1093 }
1094 }
1095 }
1096 }
1097}
1098
ths5fafdf22007-09-16 21:08:06 +00001099static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001100 uint32_t end, int prot)
1101{
bellard9746b152004-11-11 18:30:24 +00001102 int prot1;
1103 prot1 = *plast_prot;
1104 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001105 if (*pstart != -1) {
1106 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001107 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001108 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001109 'r',
bellard9746b152004-11-11 18:30:24 +00001110 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001111 }
1112 if (prot != 0)
1113 *pstart = end;
1114 else
1115 *pstart = -1;
1116 *plast_prot = prot;
1117 }
1118}
1119
1120static void mem_info(void)
1121{
bellard6a00d602005-11-21 23:25:50 +00001122 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001123 int l1, l2, prot, last_prot;
1124 uint32_t pgd, pde, pte, start, end;
1125
bellard6a00d602005-11-21 23:25:50 +00001126 env = mon_get_cpu();
1127 if (!env)
1128 return;
1129
bellardb86bda52004-09-18 19:32:46 +00001130 if (!(env->cr[0] & CR0_PG_MASK)) {
1131 term_printf("PG disabled\n");
1132 return;
1133 }
1134 pgd = env->cr[3] & ~0xfff;
1135 last_prot = 0;
1136 start = -1;
1137 for(l1 = 0; l1 < 1024; l1++) {
1138 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1139 pde = le32_to_cpu(pde);
1140 end = l1 << 22;
1141 if (pde & PG_PRESENT_MASK) {
1142 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1143 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1144 mem_print(&start, &last_prot, end, prot);
1145 } else {
1146 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001147 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001148 (uint8_t *)&pte, 4);
1149 pte = le32_to_cpu(pte);
1150 end = (l1 << 22) + (l2 << 12);
1151 if (pte & PG_PRESENT_MASK) {
1152 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1153 } else {
1154 prot = 0;
1155 }
1156 mem_print(&start, &last_prot, end, prot);
1157 }
1158 }
1159 } else {
1160 prot = 0;
1161 mem_print(&start, &last_prot, end, prot);
1162 }
1163 }
1164}
1165#endif
1166
bellard0f4c6412005-07-24 18:10:56 +00001167static void do_info_kqemu(void)
1168{
1169#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001170 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001171 int val;
1172 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001173 env = mon_get_cpu();
1174 if (!env) {
1175 term_printf("No cpu initialized yet");
1176 return;
1177 }
1178 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001179 term_printf("kqemu support: ");
1180 switch(val) {
1181 default:
1182 case 0:
1183 term_printf("disabled\n");
1184 break;
1185 case 1:
1186 term_printf("enabled for user code\n");
1187 break;
1188 case 2:
1189 term_printf("enabled for user and kernel code\n");
1190 break;
1191 }
bellard0f4c6412005-07-24 18:10:56 +00001192#else
bellard5f1ce942006-02-08 22:40:15 +00001193 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001194#endif
ths5fafdf22007-09-16 21:08:06 +00001195}
bellard0f4c6412005-07-24 18:10:56 +00001196
bellard5f1ce942006-02-08 22:40:15 +00001197#ifdef CONFIG_PROFILER
1198
1199int64_t kqemu_time;
1200int64_t qemu_time;
1201int64_t kqemu_exec_count;
1202int64_t dev_time;
1203int64_t kqemu_ret_int_count;
1204int64_t kqemu_ret_excp_count;
1205int64_t kqemu_ret_intr_count;
1206
1207static void do_info_profile(void)
1208{
1209 int64_t total;
1210 total = qemu_time;
1211 if (total == 0)
1212 total = 1;
bellard26a76462006-06-25 18:15:32 +00001213 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001214 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001215 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001216 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001217 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001218 kqemu_time, kqemu_time / (double)ticks_per_sec,
1219 kqemu_time / (double)total * 100.0,
1220 kqemu_exec_count,
1221 kqemu_ret_int_count,
1222 kqemu_ret_excp_count,
1223 kqemu_ret_intr_count);
1224 qemu_time = 0;
1225 kqemu_time = 0;
1226 kqemu_exec_count = 0;
1227 dev_time = 0;
1228 kqemu_ret_int_count = 0;
1229 kqemu_ret_excp_count = 0;
1230 kqemu_ret_intr_count = 0;
1231#ifdef USE_KQEMU
1232 kqemu_record_dump();
1233#endif
1234}
1235#else
1236static void do_info_profile(void)
1237{
1238 term_printf("Internal profiler not compiled\n");
1239}
1240#endif
1241
bellardec36b692006-07-16 18:57:03 +00001242/* Capture support */
1243static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1244
1245static void do_info_capture (void)
1246{
1247 int i;
1248 CaptureState *s;
1249
1250 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1251 term_printf ("[%d]: ", i);
1252 s->ops.info (s->opaque);
1253 }
1254}
1255
1256static void do_stop_capture (int n)
1257{
1258 int i;
1259 CaptureState *s;
1260
1261 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1262 if (i == n) {
1263 s->ops.destroy (s->opaque);
1264 LIST_REMOVE (s, entries);
1265 qemu_free (s);
1266 return;
1267 }
1268 }
1269}
1270
1271#ifdef HAS_AUDIO
1272int wav_start_capture (CaptureState *s, const char *path, int freq,
1273 int bits, int nchannels);
1274
1275static void do_wav_capture (const char *path,
1276 int has_freq, int freq,
1277 int has_bits, int bits,
1278 int has_channels, int nchannels)
1279{
1280 CaptureState *s;
1281
1282 s = qemu_mallocz (sizeof (*s));
1283 if (!s) {
1284 term_printf ("Not enough memory to add wave capture\n");
1285 return;
1286 }
1287
1288 freq = has_freq ? freq : 44100;
1289 bits = has_bits ? bits : 16;
1290 nchannels = has_channels ? nchannels : 2;
1291
1292 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1293 term_printf ("Faied to add wave capture\n");
1294 qemu_free (s);
1295 }
1296 LIST_INSERT_HEAD (&capture_head, s, entries);
1297}
1298#endif
1299
aurel32dc1c0b72008-04-27 23:52:12 +00001300#if defined(TARGET_I386)
1301static void do_inject_nmi(int cpu_index)
1302{
1303 CPUState *env;
1304
1305 for (env = first_cpu; env != NULL; env = env->next_cpu)
1306 if (env->cpu_index == cpu_index) {
1307 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1308 break;
1309 }
1310}
1311#endif
1312
bellard9dc39cb2004-03-14 21:38:27 +00001313static term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001314 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001315 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001316 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001317 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001318 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001319 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001320 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001321 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001322 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001323 "[-f] device", "eject a removable medium (use -f to force it)" },
bellard81d09122004-07-14 17:21:37 +00001324 { "change", "BF", do_change,
thse5987522007-03-30 18:58:01 +00001325 "device filename", "change a removable medium" },
ths5fafdf22007-09-16 21:08:06 +00001326 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001327 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001328 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001329 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001330 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001331 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001332 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001333 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001334 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001335 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001336 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001337 "tag|id", "delete a VM snapshot from its tag or id" },
1338 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001339 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001340 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001341 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001342#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001343 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001344 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001345#endif
ths5fafdf22007-09-16 21:08:06 +00001346 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001347 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001348 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001349 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001350 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001351 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001352 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001353 "/fmt addr", "I/O port read" },
1354
balrog3401c0d2008-06-04 10:05:59 +00001355 { "sendkey", "s", do_sendkey,
bellarda3a91a32004-06-04 11:06:21 +00001356 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
ths5fafdf22007-09-16 21:08:06 +00001357 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001358 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001359 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001360 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001361 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001362 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001363 { "usb_add", "s", do_usb_add,
1364 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1365 { "usb_del", "s", do_usb_del,
1366 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001367 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001368 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001369 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001370 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001371 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001372 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001373 { "mouse_set", "i", do_mouse_set,
1374 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001375#ifdef HAS_AUDIO
1376 { "wavcapture", "si?i?i?", do_wav_capture,
1377 "path [frequency bits channels]",
1378 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1379#endif
1380 { "stopcapture", "i", do_stop_capture,
1381 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001382 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001383 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001384 { "pmemsave", "lis", do_physical_memory_save,
1385 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001386 { "boot_set", "s", do_boot_set,
1387 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001388#if defined(TARGET_I386)
1389 { "nmi", "i", do_inject_nmi,
1390 "cpu", "inject an NMI on the given CPU", },
1391#endif
ths5fafdf22007-09-16 21:08:06 +00001392 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001393};
1394
1395static term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001396 { "version", "", do_info_version,
1397 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001398 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001399 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001400 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001401 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001402 { "blockstats", "", do_info_blockstats,
1403 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001404 { "registers", "", do_info_registers,
1405 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001406 { "cpus", "", do_info_cpus,
1407 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001408 { "history", "", do_info_history,
1409 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001410 { "irq", "", irq_info,
1411 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001412 { "pic", "", pic_info,
1413 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001414 { "pci", "", pci_info,
1415 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001416#if defined(TARGET_I386)
1417 { "tlb", "", tlb_info,
1418 "", "show virtual to physical memory mappings", },
1419 { "mem", "", mem_info,
1420 "", "show the active virtual memory mappings", },
1421#endif
bellarde3db7222005-01-26 22:00:47 +00001422 { "jit", "", do_info_jit,
1423 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001424 { "kqemu", "", do_info_kqemu,
1425 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001426 { "usb", "", usb_info,
1427 "", "show guest USB devices", },
1428 { "usbhost", "", usb_host_info,
1429 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001430 { "profile", "", do_info_profile,
1431 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001432 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001433 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001434 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001435 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001436 { "pcmcia", "", pcmcia_info,
1437 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001438 { "mice", "", do_info_mice,
1439 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001440 { "vnc", "", do_info_vnc,
1441 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001442 { "name", "", do_info_name,
1443 "", "show the current VM name" },
j_mayer76a66252007-03-07 08:32:30 +00001444#if defined(TARGET_PPC)
1445 { "cpustats", "", do_info_cpu_stats,
1446 "", "show CPU statistics", },
1447#endif
blueswir131a60e22007-10-26 18:42:59 +00001448#if defined(CONFIG_SLIRP)
1449 { "slirp", "", do_info_slirp,
1450 "", "show SLIRP statistics", },
1451#endif
bellard9dc39cb2004-03-14 21:38:27 +00001452 { NULL, NULL, },
1453};
1454
bellard9307c4c2004-04-04 12:57:25 +00001455/*******************************************************************/
1456
1457static const char *pch;
1458static jmp_buf expr_env;
1459
bellard92a31b12005-02-10 22:00:52 +00001460#define MD_TLONG 0
1461#define MD_I32 1
1462
bellard9307c4c2004-04-04 12:57:25 +00001463typedef struct MonitorDef {
1464 const char *name;
1465 int offset;
bellard92a31b12005-02-10 22:00:52 +00001466 target_long (*get_value)(struct MonitorDef *md, int val);
1467 int type;
bellard9307c4c2004-04-04 12:57:25 +00001468} MonitorDef;
1469
bellard57206fd2004-04-25 18:54:52 +00001470#if defined(TARGET_I386)
bellard92a31b12005-02-10 22:00:52 +00001471static target_long monitor_get_pc (struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001472{
bellard6a00d602005-11-21 23:25:50 +00001473 CPUState *env = mon_get_cpu();
1474 if (!env)
1475 return 0;
1476 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001477}
1478#endif
1479
bellarda541f292004-04-12 20:39:29 +00001480#if defined(TARGET_PPC)
bellard92a31b12005-02-10 22:00:52 +00001481static target_long monitor_get_ccr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001482{
bellard6a00d602005-11-21 23:25:50 +00001483 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001484 unsigned int u;
1485 int i;
1486
bellard6a00d602005-11-21 23:25:50 +00001487 if (!env)
1488 return 0;
1489
bellarda541f292004-04-12 20:39:29 +00001490 u = 0;
1491 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001492 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001493
1494 return u;
1495}
1496
bellard92a31b12005-02-10 22:00:52 +00001497static target_long monitor_get_msr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001498{
bellard6a00d602005-11-21 23:25:50 +00001499 CPUState *env = mon_get_cpu();
1500 if (!env)
1501 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001502 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001503}
1504
bellard92a31b12005-02-10 22:00:52 +00001505static target_long monitor_get_xer (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001506{
bellard6a00d602005-11-21 23:25:50 +00001507 CPUState *env = mon_get_cpu();
1508 if (!env)
1509 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001510 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001511}
bellard9fddaa02004-05-21 12:59:32 +00001512
bellard92a31b12005-02-10 22:00:52 +00001513static target_long monitor_get_decr (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001514{
bellard6a00d602005-11-21 23:25:50 +00001515 CPUState *env = mon_get_cpu();
1516 if (!env)
1517 return 0;
1518 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001519}
1520
bellard92a31b12005-02-10 22:00:52 +00001521static target_long monitor_get_tbu (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001522{
bellard6a00d602005-11-21 23:25:50 +00001523 CPUState *env = mon_get_cpu();
1524 if (!env)
1525 return 0;
1526 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001527}
1528
bellard92a31b12005-02-10 22:00:52 +00001529static target_long monitor_get_tbl (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001530{
bellard6a00d602005-11-21 23:25:50 +00001531 CPUState *env = mon_get_cpu();
1532 if (!env)
1533 return 0;
1534 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001535}
bellarda541f292004-04-12 20:39:29 +00001536#endif
1537
bellarde95c8d52004-09-30 22:22:08 +00001538#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001539#ifndef TARGET_SPARC64
bellard92a31b12005-02-10 22:00:52 +00001540static target_long monitor_get_psr (struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001541{
bellard6a00d602005-11-21 23:25:50 +00001542 CPUState *env = mon_get_cpu();
1543 if (!env)
1544 return 0;
1545 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001546}
bellard7b936c02005-10-30 17:05:13 +00001547#endif
bellarde95c8d52004-09-30 22:22:08 +00001548
bellard92a31b12005-02-10 22:00:52 +00001549static target_long monitor_get_reg(struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001550{
bellard6a00d602005-11-21 23:25:50 +00001551 CPUState *env = mon_get_cpu();
1552 if (!env)
1553 return 0;
1554 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001555}
1556#endif
1557
bellard9307c4c2004-04-04 12:57:25 +00001558static MonitorDef monitor_defs[] = {
1559#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001560
1561#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001562 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001563 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001564 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001565
bellard9307c4c2004-04-04 12:57:25 +00001566 { "eax", offsetof(CPUState, regs[0]) },
1567 { "ecx", offsetof(CPUState, regs[1]) },
1568 { "edx", offsetof(CPUState, regs[2]) },
1569 { "ebx", offsetof(CPUState, regs[3]) },
1570 { "esp|sp", offsetof(CPUState, regs[4]) },
1571 { "ebp|fp", offsetof(CPUState, regs[5]) },
1572 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001573 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001574#ifdef TARGET_X86_64
1575 { "r8", offsetof(CPUState, regs[8]) },
1576 { "r9", offsetof(CPUState, regs[9]) },
1577 { "r10", offsetof(CPUState, regs[10]) },
1578 { "r11", offsetof(CPUState, regs[11]) },
1579 { "r12", offsetof(CPUState, regs[12]) },
1580 { "r13", offsetof(CPUState, regs[13]) },
1581 { "r14", offsetof(CPUState, regs[14]) },
1582 { "r15", offsetof(CPUState, regs[15]) },
1583#endif
bellard9307c4c2004-04-04 12:57:25 +00001584 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001585 { "eip", offsetof(CPUState, eip) },
1586 SEG("cs", R_CS)
1587 SEG("ds", R_DS)
1588 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001589 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001590 SEG("fs", R_FS)
1591 SEG("gs", R_GS)
1592 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001593#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001594 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001595 { "r0", offsetof(CPUState, gpr[0]) },
1596 { "r1", offsetof(CPUState, gpr[1]) },
1597 { "r2", offsetof(CPUState, gpr[2]) },
1598 { "r3", offsetof(CPUState, gpr[3]) },
1599 { "r4", offsetof(CPUState, gpr[4]) },
1600 { "r5", offsetof(CPUState, gpr[5]) },
1601 { "r6", offsetof(CPUState, gpr[6]) },
1602 { "r7", offsetof(CPUState, gpr[7]) },
1603 { "r8", offsetof(CPUState, gpr[8]) },
1604 { "r9", offsetof(CPUState, gpr[9]) },
1605 { "r10", offsetof(CPUState, gpr[10]) },
1606 { "r11", offsetof(CPUState, gpr[11]) },
1607 { "r12", offsetof(CPUState, gpr[12]) },
1608 { "r13", offsetof(CPUState, gpr[13]) },
1609 { "r14", offsetof(CPUState, gpr[14]) },
1610 { "r15", offsetof(CPUState, gpr[15]) },
1611 { "r16", offsetof(CPUState, gpr[16]) },
1612 { "r17", offsetof(CPUState, gpr[17]) },
1613 { "r18", offsetof(CPUState, gpr[18]) },
1614 { "r19", offsetof(CPUState, gpr[19]) },
1615 { "r20", offsetof(CPUState, gpr[20]) },
1616 { "r21", offsetof(CPUState, gpr[21]) },
1617 { "r22", offsetof(CPUState, gpr[22]) },
1618 { "r23", offsetof(CPUState, gpr[23]) },
1619 { "r24", offsetof(CPUState, gpr[24]) },
1620 { "r25", offsetof(CPUState, gpr[25]) },
1621 { "r26", offsetof(CPUState, gpr[26]) },
1622 { "r27", offsetof(CPUState, gpr[27]) },
1623 { "r28", offsetof(CPUState, gpr[28]) },
1624 { "r29", offsetof(CPUState, gpr[29]) },
1625 { "r30", offsetof(CPUState, gpr[30]) },
1626 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001627 /* Floating point registers */
1628 { "f0", offsetof(CPUState, fpr[0]) },
1629 { "f1", offsetof(CPUState, fpr[1]) },
1630 { "f2", offsetof(CPUState, fpr[2]) },
1631 { "f3", offsetof(CPUState, fpr[3]) },
1632 { "f4", offsetof(CPUState, fpr[4]) },
1633 { "f5", offsetof(CPUState, fpr[5]) },
1634 { "f6", offsetof(CPUState, fpr[6]) },
1635 { "f7", offsetof(CPUState, fpr[7]) },
1636 { "f8", offsetof(CPUState, fpr[8]) },
1637 { "f9", offsetof(CPUState, fpr[9]) },
1638 { "f10", offsetof(CPUState, fpr[10]) },
1639 { "f11", offsetof(CPUState, fpr[11]) },
1640 { "f12", offsetof(CPUState, fpr[12]) },
1641 { "f13", offsetof(CPUState, fpr[13]) },
1642 { "f14", offsetof(CPUState, fpr[14]) },
1643 { "f15", offsetof(CPUState, fpr[15]) },
1644 { "f16", offsetof(CPUState, fpr[16]) },
1645 { "f17", offsetof(CPUState, fpr[17]) },
1646 { "f18", offsetof(CPUState, fpr[18]) },
1647 { "f19", offsetof(CPUState, fpr[19]) },
1648 { "f20", offsetof(CPUState, fpr[20]) },
1649 { "f21", offsetof(CPUState, fpr[21]) },
1650 { "f22", offsetof(CPUState, fpr[22]) },
1651 { "f23", offsetof(CPUState, fpr[23]) },
1652 { "f24", offsetof(CPUState, fpr[24]) },
1653 { "f25", offsetof(CPUState, fpr[25]) },
1654 { "f26", offsetof(CPUState, fpr[26]) },
1655 { "f27", offsetof(CPUState, fpr[27]) },
1656 { "f28", offsetof(CPUState, fpr[28]) },
1657 { "f29", offsetof(CPUState, fpr[29]) },
1658 { "f30", offsetof(CPUState, fpr[30]) },
1659 { "f31", offsetof(CPUState, fpr[31]) },
1660 { "fpscr", offsetof(CPUState, fpscr) },
1661 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001662 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001663 { "lr", offsetof(CPUState, lr) },
1664 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001665 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001666 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001667 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001668 { "msr", 0, &monitor_get_msr, },
1669 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001670 { "tbu", 0, &monitor_get_tbu, },
1671 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001672#if defined(TARGET_PPC64)
1673 /* Address space register */
1674 { "asr", offsetof(CPUState, asr) },
1675#endif
1676 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001677 { "sdr1", offsetof(CPUState, sdr1) },
1678 { "sr0", offsetof(CPUState, sr[0]) },
1679 { "sr1", offsetof(CPUState, sr[1]) },
1680 { "sr2", offsetof(CPUState, sr[2]) },
1681 { "sr3", offsetof(CPUState, sr[3]) },
1682 { "sr4", offsetof(CPUState, sr[4]) },
1683 { "sr5", offsetof(CPUState, sr[5]) },
1684 { "sr6", offsetof(CPUState, sr[6]) },
1685 { "sr7", offsetof(CPUState, sr[7]) },
1686 { "sr8", offsetof(CPUState, sr[8]) },
1687 { "sr9", offsetof(CPUState, sr[9]) },
1688 { "sr10", offsetof(CPUState, sr[10]) },
1689 { "sr11", offsetof(CPUState, sr[11]) },
1690 { "sr12", offsetof(CPUState, sr[12]) },
1691 { "sr13", offsetof(CPUState, sr[13]) },
1692 { "sr14", offsetof(CPUState, sr[14]) },
1693 { "sr15", offsetof(CPUState, sr[15]) },
1694 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001695#elif defined(TARGET_SPARC)
1696 { "g0", offsetof(CPUState, gregs[0]) },
1697 { "g1", offsetof(CPUState, gregs[1]) },
1698 { "g2", offsetof(CPUState, gregs[2]) },
1699 { "g3", offsetof(CPUState, gregs[3]) },
1700 { "g4", offsetof(CPUState, gregs[4]) },
1701 { "g5", offsetof(CPUState, gregs[5]) },
1702 { "g6", offsetof(CPUState, gregs[6]) },
1703 { "g7", offsetof(CPUState, gregs[7]) },
1704 { "o0", 0, monitor_get_reg },
1705 { "o1", 1, monitor_get_reg },
1706 { "o2", 2, monitor_get_reg },
1707 { "o3", 3, monitor_get_reg },
1708 { "o4", 4, monitor_get_reg },
1709 { "o5", 5, monitor_get_reg },
1710 { "o6", 6, monitor_get_reg },
1711 { "o7", 7, monitor_get_reg },
1712 { "l0", 8, monitor_get_reg },
1713 { "l1", 9, monitor_get_reg },
1714 { "l2", 10, monitor_get_reg },
1715 { "l3", 11, monitor_get_reg },
1716 { "l4", 12, monitor_get_reg },
1717 { "l5", 13, monitor_get_reg },
1718 { "l6", 14, monitor_get_reg },
1719 { "l7", 15, monitor_get_reg },
1720 { "i0", 16, monitor_get_reg },
1721 { "i1", 17, monitor_get_reg },
1722 { "i2", 18, monitor_get_reg },
1723 { "i3", 19, monitor_get_reg },
1724 { "i4", 20, monitor_get_reg },
1725 { "i5", 21, monitor_get_reg },
1726 { "i6", 22, monitor_get_reg },
1727 { "i7", 23, monitor_get_reg },
1728 { "pc", offsetof(CPUState, pc) },
1729 { "npc", offsetof(CPUState, npc) },
1730 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001731#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001732 { "psr", 0, &monitor_get_psr, },
1733 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001734#endif
bellarde95c8d52004-09-30 22:22:08 +00001735 { "tbr", offsetof(CPUState, tbr) },
1736 { "fsr", offsetof(CPUState, fsr) },
1737 { "f0", offsetof(CPUState, fpr[0]) },
1738 { "f1", offsetof(CPUState, fpr[1]) },
1739 { "f2", offsetof(CPUState, fpr[2]) },
1740 { "f3", offsetof(CPUState, fpr[3]) },
1741 { "f4", offsetof(CPUState, fpr[4]) },
1742 { "f5", offsetof(CPUState, fpr[5]) },
1743 { "f6", offsetof(CPUState, fpr[6]) },
1744 { "f7", offsetof(CPUState, fpr[7]) },
1745 { "f8", offsetof(CPUState, fpr[8]) },
1746 { "f9", offsetof(CPUState, fpr[9]) },
1747 { "f10", offsetof(CPUState, fpr[10]) },
1748 { "f11", offsetof(CPUState, fpr[11]) },
1749 { "f12", offsetof(CPUState, fpr[12]) },
1750 { "f13", offsetof(CPUState, fpr[13]) },
1751 { "f14", offsetof(CPUState, fpr[14]) },
1752 { "f15", offsetof(CPUState, fpr[15]) },
1753 { "f16", offsetof(CPUState, fpr[16]) },
1754 { "f17", offsetof(CPUState, fpr[17]) },
1755 { "f18", offsetof(CPUState, fpr[18]) },
1756 { "f19", offsetof(CPUState, fpr[19]) },
1757 { "f20", offsetof(CPUState, fpr[20]) },
1758 { "f21", offsetof(CPUState, fpr[21]) },
1759 { "f22", offsetof(CPUState, fpr[22]) },
1760 { "f23", offsetof(CPUState, fpr[23]) },
1761 { "f24", offsetof(CPUState, fpr[24]) },
1762 { "f25", offsetof(CPUState, fpr[25]) },
1763 { "f26", offsetof(CPUState, fpr[26]) },
1764 { "f27", offsetof(CPUState, fpr[27]) },
1765 { "f28", offsetof(CPUState, fpr[28]) },
1766 { "f29", offsetof(CPUState, fpr[29]) },
1767 { "f30", offsetof(CPUState, fpr[30]) },
1768 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001769#ifdef TARGET_SPARC64
1770 { "f32", offsetof(CPUState, fpr[32]) },
1771 { "f34", offsetof(CPUState, fpr[34]) },
1772 { "f36", offsetof(CPUState, fpr[36]) },
1773 { "f38", offsetof(CPUState, fpr[38]) },
1774 { "f40", offsetof(CPUState, fpr[40]) },
1775 { "f42", offsetof(CPUState, fpr[42]) },
1776 { "f44", offsetof(CPUState, fpr[44]) },
1777 { "f46", offsetof(CPUState, fpr[46]) },
1778 { "f48", offsetof(CPUState, fpr[48]) },
1779 { "f50", offsetof(CPUState, fpr[50]) },
1780 { "f52", offsetof(CPUState, fpr[52]) },
1781 { "f54", offsetof(CPUState, fpr[54]) },
1782 { "f56", offsetof(CPUState, fpr[56]) },
1783 { "f58", offsetof(CPUState, fpr[58]) },
1784 { "f60", offsetof(CPUState, fpr[60]) },
1785 { "f62", offsetof(CPUState, fpr[62]) },
1786 { "asi", offsetof(CPUState, asi) },
1787 { "pstate", offsetof(CPUState, pstate) },
1788 { "cansave", offsetof(CPUState, cansave) },
1789 { "canrestore", offsetof(CPUState, canrestore) },
1790 { "otherwin", offsetof(CPUState, otherwin) },
1791 { "wstate", offsetof(CPUState, wstate) },
1792 { "cleanwin", offsetof(CPUState, cleanwin) },
1793 { "fprs", offsetof(CPUState, fprs) },
1794#endif
bellard9307c4c2004-04-04 12:57:25 +00001795#endif
1796 { NULL },
1797};
1798
ths5fafdf22007-09-16 21:08:06 +00001799static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001800{
bellard9307c4c2004-04-04 12:57:25 +00001801 term_printf(fmt);
1802 term_printf("\n");
1803 longjmp(expr_env, 1);
1804}
1805
bellard6a00d602005-11-21 23:25:50 +00001806/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001807static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001808{
1809 MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001810 void *ptr;
1811
bellard9307c4c2004-04-04 12:57:25 +00001812 for(md = monitor_defs; md->name != NULL; md++) {
1813 if (compare_cmd(name, md->name)) {
1814 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001815 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001816 } else {
bellard6a00d602005-11-21 23:25:50 +00001817 CPUState *env = mon_get_cpu();
1818 if (!env)
1819 return -2;
1820 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001821 switch(md->type) {
1822 case MD_I32:
1823 *pval = *(int32_t *)ptr;
1824 break;
1825 case MD_TLONG:
1826 *pval = *(target_long *)ptr;
1827 break;
1828 default:
1829 *pval = 0;
1830 break;
1831 }
bellard9307c4c2004-04-04 12:57:25 +00001832 }
1833 return 0;
1834 }
1835 }
1836 return -1;
1837}
1838
1839static void next(void)
1840{
1841 if (pch != '\0') {
1842 pch++;
1843 while (isspace(*pch))
1844 pch++;
1845 }
1846}
1847
blueswir1c2efc952007-09-25 17:28:42 +00001848static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001849
blueswir1c2efc952007-09-25 17:28:42 +00001850static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001851{
blueswir1c2efc952007-09-25 17:28:42 +00001852 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001853 char *p;
bellard6a00d602005-11-21 23:25:50 +00001854 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001855
1856 switch(*pch) {
1857 case '+':
1858 next();
1859 n = expr_unary();
1860 break;
1861 case '-':
1862 next();
1863 n = -expr_unary();
1864 break;
1865 case '~':
1866 next();
1867 n = ~expr_unary();
1868 break;
1869 case '(':
1870 next();
1871 n = expr_sum();
1872 if (*pch != ')') {
1873 expr_error("')' expected");
1874 }
1875 next();
1876 break;
bellard81d09122004-07-14 17:21:37 +00001877 case '\'':
1878 pch++;
1879 if (*pch == '\0')
1880 expr_error("character constant expected");
1881 n = *pch;
1882 pch++;
1883 if (*pch != '\'')
1884 expr_error("missing terminating \' character");
1885 next();
1886 break;
bellard9307c4c2004-04-04 12:57:25 +00001887 case '$':
1888 {
1889 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001890 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001891
bellard9307c4c2004-04-04 12:57:25 +00001892 pch++;
1893 q = buf;
1894 while ((*pch >= 'a' && *pch <= 'z') ||
1895 (*pch >= 'A' && *pch <= 'Z') ||
1896 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001897 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001898 if ((q - buf) < sizeof(buf) - 1)
1899 *q++ = *pch;
1900 pch++;
1901 }
1902 while (isspace(*pch))
1903 pch++;
1904 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001905 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001906 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001907 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001908 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001909 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001910 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001911 }
1912 break;
1913 case '\0':
1914 expr_error("unexpected end of expression");
1915 n = 0;
1916 break;
1917 default:
blueswir17743e582007-09-24 18:39:04 +00001918#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001919 n = strtoull(pch, &p, 0);
1920#else
bellard9307c4c2004-04-04 12:57:25 +00001921 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001922#endif
bellard9307c4c2004-04-04 12:57:25 +00001923 if (pch == p) {
1924 expr_error("invalid char in expression");
1925 }
1926 pch = p;
1927 while (isspace(*pch))
1928 pch++;
1929 break;
1930 }
1931 return n;
1932}
1933
1934
blueswir1c2efc952007-09-25 17:28:42 +00001935static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00001936{
blueswir1c2efc952007-09-25 17:28:42 +00001937 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001938 int op;
ths3b46e622007-09-17 08:09:54 +00001939
bellard9307c4c2004-04-04 12:57:25 +00001940 val = expr_unary();
1941 for(;;) {
1942 op = *pch;
1943 if (op != '*' && op != '/' && op != '%')
1944 break;
1945 next();
1946 val2 = expr_unary();
1947 switch(op) {
1948 default:
1949 case '*':
1950 val *= val2;
1951 break;
1952 case '/':
1953 case '%':
ths5fafdf22007-09-16 21:08:06 +00001954 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00001955 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00001956 if (op == '/')
1957 val /= val2;
1958 else
1959 val %= val2;
1960 break;
1961 }
1962 }
1963 return val;
1964}
1965
blueswir1c2efc952007-09-25 17:28:42 +00001966static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00001967{
blueswir1c2efc952007-09-25 17:28:42 +00001968 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001969 int op;
bellard9307c4c2004-04-04 12:57:25 +00001970
1971 val = expr_prod();
1972 for(;;) {
1973 op = *pch;
1974 if (op != '&' && op != '|' && op != '^')
1975 break;
1976 next();
1977 val2 = expr_prod();
1978 switch(op) {
1979 default:
1980 case '&':
1981 val &= val2;
1982 break;
1983 case '|':
1984 val |= val2;
1985 break;
1986 case '^':
1987 val ^= val2;
1988 break;
1989 }
1990 }
1991 return val;
1992}
1993
blueswir1c2efc952007-09-25 17:28:42 +00001994static int64_t expr_sum(void)
bellard9307c4c2004-04-04 12:57:25 +00001995{
blueswir1c2efc952007-09-25 17:28:42 +00001996 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001997 int op;
bellard9307c4c2004-04-04 12:57:25 +00001998
1999 val = expr_logic();
2000 for(;;) {
2001 op = *pch;
2002 if (op != '+' && op != '-')
2003 break;
2004 next();
2005 val2 = expr_logic();
2006 if (op == '+')
2007 val += val2;
2008 else
2009 val -= val2;
2010 }
2011 return val;
2012}
2013
blueswir1c2efc952007-09-25 17:28:42 +00002014static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002015{
2016 pch = *pp;
2017 if (setjmp(expr_env)) {
2018 *pp = pch;
2019 return -1;
2020 }
2021 while (isspace(*pch))
2022 pch++;
2023 *pval = expr_sum();
2024 *pp = pch;
2025 return 0;
2026}
2027
2028static int get_str(char *buf, int buf_size, const char **pp)
2029{
2030 const char *p;
2031 char *q;
2032 int c;
2033
bellard81d09122004-07-14 17:21:37 +00002034 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002035 p = *pp;
2036 while (isspace(*p))
2037 p++;
2038 if (*p == '\0') {
2039 fail:
bellard81d09122004-07-14 17:21:37 +00002040 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002041 *pp = p;
2042 return -1;
2043 }
bellard9307c4c2004-04-04 12:57:25 +00002044 if (*p == '\"') {
2045 p++;
2046 while (*p != '\0' && *p != '\"') {
2047 if (*p == '\\') {
2048 p++;
2049 c = *p++;
2050 switch(c) {
2051 case 'n':
2052 c = '\n';
2053 break;
2054 case 'r':
2055 c = '\r';
2056 break;
2057 case '\\':
2058 case '\'':
2059 case '\"':
2060 break;
2061 default:
2062 qemu_printf("unsupported escape code: '\\%c'\n", c);
2063 goto fail;
2064 }
2065 if ((q - buf) < buf_size - 1) {
2066 *q++ = c;
2067 }
2068 } else {
2069 if ((q - buf) < buf_size - 1) {
2070 *q++ = *p;
2071 }
2072 p++;
2073 }
2074 }
2075 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002076 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002077 goto fail;
2078 }
2079 p++;
2080 } else {
2081 while (*p != '\0' && !isspace(*p)) {
2082 if ((q - buf) < buf_size - 1) {
2083 *q++ = *p;
2084 }
2085 p++;
2086 }
bellard9307c4c2004-04-04 12:57:25 +00002087 }
bellard81d09122004-07-14 17:21:37 +00002088 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002089 *pp = p;
2090 return 0;
2091}
2092
2093static int default_fmt_format = 'x';
2094static int default_fmt_size = 4;
2095
2096#define MAX_ARGS 16
2097
bellard7e2515e2004-08-01 21:52:19 +00002098static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002099{
2100 const char *p, *pstart, *typestr;
2101 char *q;
2102 int c, nb_args, len, i, has_arg;
bellard9dc39cb2004-03-14 21:38:27 +00002103 term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002104 char cmdname[256];
2105 char buf[1024];
2106 void *str_allocated[MAX_ARGS];
2107 void *args[MAX_ARGS];
bellard9dc39cb2004-03-14 21:38:27 +00002108
2109#ifdef DEBUG
2110 term_printf("command='%s'\n", cmdline);
2111#endif
ths3b46e622007-09-17 08:09:54 +00002112
bellard9307c4c2004-04-04 12:57:25 +00002113 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002114 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002115 q = cmdname;
2116 while (isspace(*p))
2117 p++;
2118 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002119 return;
bellard9307c4c2004-04-04 12:57:25 +00002120 pstart = p;
2121 while (*p != '\0' && *p != '/' && !isspace(*p))
2122 p++;
2123 len = p - pstart;
2124 if (len > sizeof(cmdname) - 1)
2125 len = sizeof(cmdname) - 1;
2126 memcpy(cmdname, pstart, len);
2127 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002128
bellard9307c4c2004-04-04 12:57:25 +00002129 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002130 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002131 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002132 goto found;
2133 }
bellard9307c4c2004-04-04 12:57:25 +00002134 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002135 return;
2136 found:
bellard9307c4c2004-04-04 12:57:25 +00002137
2138 for(i = 0; i < MAX_ARGS; i++)
2139 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002140
bellard9307c4c2004-04-04 12:57:25 +00002141 /* parse the parameters */
2142 typestr = cmd->args_type;
2143 nb_args = 0;
2144 for(;;) {
2145 c = *typestr;
2146 if (c == '\0')
2147 break;
2148 typestr++;
2149 switch(c) {
2150 case 'F':
bellard81d09122004-07-14 17:21:37 +00002151 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002152 case 's':
2153 {
2154 int ret;
2155 char *str;
ths3b46e622007-09-17 08:09:54 +00002156
ths5fafdf22007-09-16 21:08:06 +00002157 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002158 p++;
2159 if (*typestr == '?') {
2160 typestr++;
2161 if (*p == '\0') {
2162 /* no optional string: NULL argument */
2163 str = NULL;
2164 goto add_str;
2165 }
2166 }
2167 ret = get_str(buf, sizeof(buf), &p);
2168 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002169 switch(c) {
2170 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002171 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002172 break;
2173 case 'B':
2174 term_printf("%s: block device name expected\n", cmdname);
2175 break;
2176 default:
bellard9307c4c2004-04-04 12:57:25 +00002177 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002178 break;
2179 }
bellard9307c4c2004-04-04 12:57:25 +00002180 goto fail;
2181 }
2182 str = qemu_malloc(strlen(buf) + 1);
2183 strcpy(str, buf);
2184 str_allocated[nb_args] = str;
2185 add_str:
2186 if (nb_args >= MAX_ARGS) {
2187 error_args:
2188 term_printf("%s: too many arguments\n", cmdname);
2189 goto fail;
2190 }
2191 args[nb_args++] = str;
2192 }
2193 break;
2194 case '/':
2195 {
2196 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002197
bellard9307c4c2004-04-04 12:57:25 +00002198 while (isspace(*p))
2199 p++;
2200 if (*p == '/') {
2201 /* format found */
2202 p++;
2203 count = 1;
2204 if (isdigit(*p)) {
2205 count = 0;
2206 while (isdigit(*p)) {
2207 count = count * 10 + (*p - '0');
2208 p++;
2209 }
2210 }
2211 size = -1;
2212 format = -1;
2213 for(;;) {
2214 switch(*p) {
2215 case 'o':
2216 case 'd':
2217 case 'u':
2218 case 'x':
2219 case 'i':
2220 case 'c':
2221 format = *p++;
2222 break;
2223 case 'b':
2224 size = 1;
2225 p++;
2226 break;
2227 case 'h':
2228 size = 2;
2229 p++;
2230 break;
2231 case 'w':
2232 size = 4;
2233 p++;
2234 break;
2235 case 'g':
2236 case 'L':
2237 size = 8;
2238 p++;
2239 break;
2240 default:
2241 goto next;
2242 }
2243 }
2244 next:
2245 if (*p != '\0' && !isspace(*p)) {
2246 term_printf("invalid char in format: '%c'\n", *p);
2247 goto fail;
2248 }
bellard9307c4c2004-04-04 12:57:25 +00002249 if (format < 0)
2250 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002251 if (format != 'i') {
2252 /* for 'i', not specifying a size gives -1 as size */
2253 if (size < 0)
2254 size = default_fmt_size;
2255 }
bellard9307c4c2004-04-04 12:57:25 +00002256 default_fmt_size = size;
2257 default_fmt_format = format;
2258 } else {
2259 count = 1;
2260 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002261 if (format != 'i') {
2262 size = default_fmt_size;
2263 } else {
2264 size = -1;
2265 }
bellard9307c4c2004-04-04 12:57:25 +00002266 }
2267 if (nb_args + 3 > MAX_ARGS)
2268 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002269 args[nb_args++] = (void*)(long)count;
2270 args[nb_args++] = (void*)(long)format;
2271 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002272 }
2273 break;
2274 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002275 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002276 {
blueswir1c2efc952007-09-25 17:28:42 +00002277 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002278
ths5fafdf22007-09-16 21:08:06 +00002279 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002280 p++;
bellard34405572004-06-08 00:55:58 +00002281 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002282 if (*typestr == '?') {
2283 if (*p == '\0')
2284 has_arg = 0;
2285 else
2286 has_arg = 1;
2287 } else {
2288 if (*p == '.') {
2289 p++;
ths5fafdf22007-09-16 21:08:06 +00002290 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002291 p++;
2292 has_arg = 1;
2293 } else {
2294 has_arg = 0;
2295 }
2296 }
bellard13224a82006-07-14 22:03:35 +00002297 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002298 if (nb_args >= MAX_ARGS)
2299 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002300 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002301 if (!has_arg) {
2302 if (nb_args >= MAX_ARGS)
2303 goto error_args;
2304 val = -1;
2305 goto add_num;
2306 }
2307 }
2308 if (get_expr(&val, &p))
2309 goto fail;
2310 add_num:
bellard92a31b12005-02-10 22:00:52 +00002311 if (c == 'i') {
2312 if (nb_args >= MAX_ARGS)
2313 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002314 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002315 } else {
2316 if ((nb_args + 1) >= MAX_ARGS)
2317 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002318#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002319 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002320#else
2321 args[nb_args++] = (void *)0;
2322#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002323 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002324 }
bellard9307c4c2004-04-04 12:57:25 +00002325 }
2326 break;
2327 case '-':
2328 {
2329 int has_option;
2330 /* option */
ths3b46e622007-09-17 08:09:54 +00002331
bellard9307c4c2004-04-04 12:57:25 +00002332 c = *typestr++;
2333 if (c == '\0')
2334 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002335 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002336 p++;
2337 has_option = 0;
2338 if (*p == '-') {
2339 p++;
2340 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002341 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002342 cmdname, *p);
2343 goto fail;
2344 }
2345 p++;
2346 has_option = 1;
2347 }
2348 if (nb_args >= MAX_ARGS)
2349 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002350 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002351 }
2352 break;
2353 default:
2354 bad_type:
2355 term_printf("%s: unknown type '%c'\n", cmdname, c);
2356 goto fail;
2357 }
2358 }
2359 /* check that all arguments were parsed */
2360 while (isspace(*p))
2361 p++;
2362 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002363 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002364 cmdname);
2365 goto fail;
2366 }
2367
2368 switch(nb_args) {
2369 case 0:
2370 cmd->handler();
2371 break;
2372 case 1:
2373 cmd->handler(args[0]);
2374 break;
2375 case 2:
2376 cmd->handler(args[0], args[1]);
2377 break;
2378 case 3:
2379 cmd->handler(args[0], args[1], args[2]);
2380 break;
2381 case 4:
2382 cmd->handler(args[0], args[1], args[2], args[3]);
2383 break;
2384 case 5:
2385 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2386 break;
bellard34405572004-06-08 00:55:58 +00002387 case 6:
2388 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2389 break;
bellardec36b692006-07-16 18:57:03 +00002390 case 7:
2391 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2392 break;
bellard9307c4c2004-04-04 12:57:25 +00002393 default:
2394 term_printf("unsupported number of arguments: %d\n", nb_args);
2395 goto fail;
2396 }
2397 fail:
2398 for(i = 0; i < MAX_ARGS; i++)
2399 qemu_free(str_allocated[i]);
2400 return;
bellard9dc39cb2004-03-14 21:38:27 +00002401}
2402
bellard81d09122004-07-14 17:21:37 +00002403static void cmd_completion(const char *name, const char *list)
2404{
2405 const char *p, *pstart;
2406 char cmd[128];
2407 int len;
2408
2409 p = list;
2410 for(;;) {
2411 pstart = p;
2412 p = strchr(p, '|');
2413 if (!p)
2414 p = pstart + strlen(pstart);
2415 len = p - pstart;
2416 if (len > sizeof(cmd) - 2)
2417 len = sizeof(cmd) - 2;
2418 memcpy(cmd, pstart, len);
2419 cmd[len] = '\0';
2420 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2421 add_completion(cmd);
2422 }
2423 if (*p == '\0')
2424 break;
2425 p++;
2426 }
2427}
2428
2429static void file_completion(const char *input)
2430{
2431 DIR *ffs;
2432 struct dirent *d;
2433 char path[1024];
2434 char file[1024], file_prefix[1024];
2435 int input_path_len;
2436 const char *p;
2437
ths5fafdf22007-09-16 21:08:06 +00002438 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002439 if (!p) {
2440 input_path_len = 0;
2441 pstrcpy(file_prefix, sizeof(file_prefix), input);
2442 strcpy(path, ".");
2443 } else {
2444 input_path_len = p - input + 1;
2445 memcpy(path, input, input_path_len);
2446 if (input_path_len > sizeof(path) - 1)
2447 input_path_len = sizeof(path) - 1;
2448 path[input_path_len] = '\0';
2449 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2450 }
2451#ifdef DEBUG_COMPLETION
2452 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2453#endif
2454 ffs = opendir(path);
2455 if (!ffs)
2456 return;
2457 for(;;) {
2458 struct stat sb;
2459 d = readdir(ffs);
2460 if (!d)
2461 break;
2462 if (strstart(d->d_name, file_prefix, NULL)) {
2463 memcpy(file, input, input_path_len);
2464 strcpy(file + input_path_len, d->d_name);
2465 /* stat the file to find out if it's a directory.
2466 * In that case add a slash to speed up typing long paths
2467 */
2468 stat(file, &sb);
2469 if(S_ISDIR(sb.st_mode))
2470 strcat(file, "/");
2471 add_completion(file);
2472 }
2473 }
2474 closedir(ffs);
2475}
2476
2477static void block_completion_it(void *opaque, const char *name)
2478{
2479 const char *input = opaque;
2480
2481 if (input[0] == '\0' ||
2482 !strncmp(name, (char *)input, strlen(input))) {
2483 add_completion(name);
2484 }
2485}
2486
2487/* NOTE: this parser is an approximate form of the real command parser */
2488static void parse_cmdline(const char *cmdline,
2489 int *pnb_args, char **args)
2490{
2491 const char *p;
2492 int nb_args, ret;
2493 char buf[1024];
2494
2495 p = cmdline;
2496 nb_args = 0;
2497 for(;;) {
2498 while (isspace(*p))
2499 p++;
2500 if (*p == '\0')
2501 break;
2502 if (nb_args >= MAX_ARGS)
2503 break;
2504 ret = get_str(buf, sizeof(buf), &p);
2505 args[nb_args] = qemu_strdup(buf);
2506 nb_args++;
2507 if (ret < 0)
2508 break;
2509 }
2510 *pnb_args = nb_args;
2511}
2512
bellard7e2515e2004-08-01 21:52:19 +00002513void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002514{
2515 const char *cmdname;
2516 char *args[MAX_ARGS];
2517 int nb_args, i, len;
2518 const char *ptype, *str;
2519 term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002520 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002521
2522 parse_cmdline(cmdline, &nb_args, args);
2523#ifdef DEBUG_COMPLETION
2524 for(i = 0; i < nb_args; i++) {
2525 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2526 }
2527#endif
2528
2529 /* if the line ends with a space, it means we want to complete the
2530 next arg */
2531 len = strlen(cmdline);
2532 if (len > 0 && isspace(cmdline[len - 1])) {
2533 if (nb_args >= MAX_ARGS)
2534 return;
2535 args[nb_args++] = qemu_strdup("");
2536 }
2537 if (nb_args <= 1) {
2538 /* command completion */
2539 if (nb_args == 0)
2540 cmdname = "";
2541 else
2542 cmdname = args[0];
2543 completion_index = strlen(cmdname);
2544 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2545 cmd_completion(cmdname, cmd->name);
2546 }
2547 } else {
2548 /* find the command */
2549 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2550 if (compare_cmd(args[0], cmd->name))
2551 goto found;
2552 }
2553 return;
2554 found:
2555 ptype = cmd->args_type;
2556 for(i = 0; i < nb_args - 2; i++) {
2557 if (*ptype != '\0') {
2558 ptype++;
2559 while (*ptype == '?')
2560 ptype++;
2561 }
2562 }
2563 str = args[nb_args - 1];
2564 switch(*ptype) {
2565 case 'F':
2566 /* file completion */
2567 completion_index = strlen(str);
2568 file_completion(str);
2569 break;
2570 case 'B':
2571 /* block device name completion */
2572 completion_index = strlen(str);
2573 bdrv_iterate(block_completion_it, (void *)str);
2574 break;
bellard7fe48482004-10-09 18:08:01 +00002575 case 's':
2576 /* XXX: more generic ? */
2577 if (!strcmp(cmd->name, "info")) {
2578 completion_index = strlen(str);
2579 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2580 cmd_completion(str, cmd->name);
2581 }
bellard64866c32006-05-07 18:03:31 +00002582 } else if (!strcmp(cmd->name, "sendkey")) {
2583 completion_index = strlen(str);
2584 for(key = key_defs; key->name != NULL; key++) {
2585 cmd_completion(str, key->name);
2586 }
bellard7fe48482004-10-09 18:08:01 +00002587 }
2588 break;
bellard81d09122004-07-14 17:21:37 +00002589 default:
2590 break;
2591 }
2592 }
2593 for(i = 0; i < nb_args; i++)
2594 qemu_free(args[i]);
2595}
2596
bellard9dc39cb2004-03-14 21:38:27 +00002597static int term_can_read(void *opaque)
2598{
bellard81d09122004-07-14 17:21:37 +00002599 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002600}
2601
2602static void term_read(void *opaque, const uint8_t *buf, int size)
2603{
2604 int i;
2605 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002606 readline_handle_byte(buf[i]);
2607}
2608
2609static void monitor_start_input(void);
2610
2611static void monitor_handle_command1(void *opaque, const char *cmdline)
2612{
2613 monitor_handle_command(cmdline);
2614 monitor_start_input();
2615}
2616
2617static void monitor_start_input(void)
2618{
2619 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002620}
2621
ths86e94de2007-01-05 22:01:59 +00002622static void term_event(void *opaque, int event)
2623{
2624 if (event != CHR_EVENT_RESET)
2625 return;
2626
2627 if (!hide_banner)
2628 term_printf("QEMU %s monitor - type 'help' for more information\n",
2629 QEMU_VERSION);
2630 monitor_start_input();
2631}
2632
ths20d8a3e2007-02-18 17:04:49 +00002633static int is_first_init = 1;
2634
bellard81d09122004-07-14 17:21:37 +00002635void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002636{
ths20d8a3e2007-02-18 17:04:49 +00002637 int i;
2638
2639 if (is_first_init) {
2640 for (i = 0; i < MAX_MON; i++) {
2641 monitor_hd[i] = NULL;
2642 }
2643 is_first_init = 0;
2644 }
2645 for (i = 0; i < MAX_MON; i++) {
2646 if (monitor_hd[i] == NULL) {
2647 monitor_hd[i] = hd;
2648 break;
2649 }
2650 }
2651
ths86e94de2007-01-05 22:01:59 +00002652 hide_banner = !show_banner;
2653
pbrooke5b0bc42007-01-27 23:46:43 +00002654 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
blueswir1ad8efe42007-11-30 16:45:21 +00002655
2656 readline_start("", 0, monitor_handle_command1, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002657}
2658
2659/* XXX: use threads ? */
2660/* modal monitor readline */
2661static int monitor_readline_started;
2662static char *monitor_readline_buf;
2663static int monitor_readline_buf_size;
2664
2665static void monitor_readline_cb(void *opaque, const char *input)
2666{
2667 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2668 monitor_readline_started = 0;
2669}
2670
2671void monitor_readline(const char *prompt, int is_password,
2672 char *buf, int buf_size)
2673{
ths20d8a3e2007-02-18 17:04:49 +00002674 int i;
2675
bellard7e2515e2004-08-01 21:52:19 +00002676 if (is_password) {
ths20d8a3e2007-02-18 17:04:49 +00002677 for (i = 0; i < MAX_MON; i++)
2678 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
2679 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
bellard7e2515e2004-08-01 21:52:19 +00002680 }
2681 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2682 monitor_readline_buf = buf;
2683 monitor_readline_buf_size = buf_size;
2684 monitor_readline_started = 1;
2685 while (monitor_readline_started) {
2686 main_loop_wait(10);
2687 }
bellard9dc39cb2004-03-14 21:38:27 +00002688}