blob: 5a9a7fa166fc5d6fe5f3aaa6f452c5dbf791f11f [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
922static void do_send_key(const char *string)
923{
924 char keybuf[16], *q;
925 uint8_t keycodes[16];
926 const char *p;
927 int nb_keycodes, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000928
bellarda3a91a32004-06-04 11:06:21 +0000929 nb_keycodes = 0;
930 p = string;
931 while (*p != '\0') {
932 q = keybuf;
933 while (*p != '\0' && *p != '-') {
934 if ((q - keybuf) < sizeof(keybuf) - 1) {
935 *q++ = *p;
936 }
937 p++;
938 }
939 *q = '\0';
940 keycode = get_keycode(keybuf);
941 if (keycode < 0) {
942 term_printf("unknown key: '%s'\n", keybuf);
943 return;
944 }
945 keycodes[nb_keycodes++] = keycode;
946 if (*p == '\0')
947 break;
948 p++;
949 }
950 /* key down events */
951 for(i = 0; i < nb_keycodes; i++) {
952 keycode = keycodes[i];
953 if (keycode & 0x80)
954 kbd_put_keycode(0xe0);
955 kbd_put_keycode(keycode & 0x7f);
956 }
957 /* key up events */
958 for(i = nb_keycodes - 1; i >= 0; i--) {
959 keycode = keycodes[i];
960 if (keycode & 0x80)
961 kbd_put_keycode(0xe0);
962 kbd_put_keycode(keycode | 0x80);
963 }
964}
965
bellard13224a82006-07-14 22:03:35 +0000966static int mouse_button_state;
967
ths5fafdf22007-09-16 21:08:06 +0000968static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +0000969 const char *dz_str)
970{
971 int dx, dy, dz;
972 dx = strtol(dx_str, NULL, 0);
973 dy = strtol(dy_str, NULL, 0);
974 dz = 0;
ths5fafdf22007-09-16 21:08:06 +0000975 if (dz_str)
bellard13224a82006-07-14 22:03:35 +0000976 dz = strtol(dz_str, NULL, 0);
977 kbd_mouse_event(dx, dy, dz, mouse_button_state);
978}
979
980static void do_mouse_button(int button_state)
981{
982 mouse_button_state = button_state;
983 kbd_mouse_event(0, 0, 0, mouse_button_state);
984}
985
bellard34405572004-06-08 00:55:58 +0000986static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
987{
988 uint32_t val;
989 int suffix;
990
991 if (has_index) {
992 cpu_outb(NULL, addr & 0xffff, index & 0xff);
993 addr++;
994 }
995 addr &= 0xffff;
996
997 switch(size) {
998 default:
999 case 1:
1000 val = cpu_inb(NULL, addr);
1001 suffix = 'b';
1002 break;
1003 case 2:
1004 val = cpu_inw(NULL, addr);
1005 suffix = 'w';
1006 break;
1007 case 4:
1008 val = cpu_inl(NULL, addr);
1009 suffix = 'l';
1010 break;
1011 }
1012 term_printf("port%c[0x%04x] = %#0*x\n",
1013 suffix, addr, size * 2, val);
1014}
bellarda3a91a32004-06-04 11:06:21 +00001015
aurel320ecdffb2008-05-04 20:11:34 +00001016static void do_boot_set(const char *bootdevice)
1017{
1018 int res;
1019
1020 if (qemu_boot_set_handler) {
1021 res = qemu_boot_set_handler(bootdevice);
1022 if (res == 0)
1023 term_printf("boot device list now set to %s\n", bootdevice);
1024 else
1025 term_printf("setting boot device list failed with error %i\n", res);
1026 } else {
1027 term_printf("no function defined to set boot device list for this architecture\n");
1028 }
1029}
1030
bellarde4f90822004-06-20 12:35:44 +00001031static void do_system_reset(void)
1032{
1033 qemu_system_reset_request();
1034}
1035
bellard34751872005-07-02 14:31:34 +00001036static void do_system_powerdown(void)
1037{
1038 qemu_system_powerdown_request();
1039}
1040
bellardb86bda52004-09-18 19:32:46 +00001041#if defined(TARGET_I386)
1042static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1043{
ths5fafdf22007-09-16 21:08:06 +00001044 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001045 addr,
1046 pte & mask,
1047 pte & PG_GLOBAL_MASK ? 'G' : '-',
1048 pte & PG_PSE_MASK ? 'P' : '-',
1049 pte & PG_DIRTY_MASK ? 'D' : '-',
1050 pte & PG_ACCESSED_MASK ? 'A' : '-',
1051 pte & PG_PCD_MASK ? 'C' : '-',
1052 pte & PG_PWT_MASK ? 'T' : '-',
1053 pte & PG_USER_MASK ? 'U' : '-',
1054 pte & PG_RW_MASK ? 'W' : '-');
1055}
1056
1057static void tlb_info(void)
1058{
bellard6a00d602005-11-21 23:25:50 +00001059 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001060 int l1, l2;
1061 uint32_t pgd, pde, pte;
1062
bellard6a00d602005-11-21 23:25:50 +00001063 env = mon_get_cpu();
1064 if (!env)
1065 return;
1066
bellardb86bda52004-09-18 19:32:46 +00001067 if (!(env->cr[0] & CR0_PG_MASK)) {
1068 term_printf("PG disabled\n");
1069 return;
1070 }
1071 pgd = env->cr[3] & ~0xfff;
1072 for(l1 = 0; l1 < 1024; l1++) {
1073 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1074 pde = le32_to_cpu(pde);
1075 if (pde & PG_PRESENT_MASK) {
1076 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1077 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1078 } else {
1079 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001080 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001081 (uint8_t *)&pte, 4);
1082 pte = le32_to_cpu(pte);
1083 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001084 print_pte((l1 << 22) + (l2 << 12),
1085 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001086 ~0xfff);
1087 }
1088 }
1089 }
1090 }
1091 }
1092}
1093
ths5fafdf22007-09-16 21:08:06 +00001094static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001095 uint32_t end, int prot)
1096{
bellard9746b152004-11-11 18:30:24 +00001097 int prot1;
1098 prot1 = *plast_prot;
1099 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001100 if (*pstart != -1) {
1101 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001102 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001103 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001104 'r',
bellard9746b152004-11-11 18:30:24 +00001105 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001106 }
1107 if (prot != 0)
1108 *pstart = end;
1109 else
1110 *pstart = -1;
1111 *plast_prot = prot;
1112 }
1113}
1114
1115static void mem_info(void)
1116{
bellard6a00d602005-11-21 23:25:50 +00001117 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001118 int l1, l2, prot, last_prot;
1119 uint32_t pgd, pde, pte, start, end;
1120
bellard6a00d602005-11-21 23:25:50 +00001121 env = mon_get_cpu();
1122 if (!env)
1123 return;
1124
bellardb86bda52004-09-18 19:32:46 +00001125 if (!(env->cr[0] & CR0_PG_MASK)) {
1126 term_printf("PG disabled\n");
1127 return;
1128 }
1129 pgd = env->cr[3] & ~0xfff;
1130 last_prot = 0;
1131 start = -1;
1132 for(l1 = 0; l1 < 1024; l1++) {
1133 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1134 pde = le32_to_cpu(pde);
1135 end = l1 << 22;
1136 if (pde & PG_PRESENT_MASK) {
1137 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1138 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1139 mem_print(&start, &last_prot, end, prot);
1140 } else {
1141 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001142 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001143 (uint8_t *)&pte, 4);
1144 pte = le32_to_cpu(pte);
1145 end = (l1 << 22) + (l2 << 12);
1146 if (pte & PG_PRESENT_MASK) {
1147 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1148 } else {
1149 prot = 0;
1150 }
1151 mem_print(&start, &last_prot, end, prot);
1152 }
1153 }
1154 } else {
1155 prot = 0;
1156 mem_print(&start, &last_prot, end, prot);
1157 }
1158 }
1159}
1160#endif
1161
bellard0f4c6412005-07-24 18:10:56 +00001162static void do_info_kqemu(void)
1163{
1164#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001165 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001166 int val;
1167 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001168 env = mon_get_cpu();
1169 if (!env) {
1170 term_printf("No cpu initialized yet");
1171 return;
1172 }
1173 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001174 term_printf("kqemu support: ");
1175 switch(val) {
1176 default:
1177 case 0:
1178 term_printf("disabled\n");
1179 break;
1180 case 1:
1181 term_printf("enabled for user code\n");
1182 break;
1183 case 2:
1184 term_printf("enabled for user and kernel code\n");
1185 break;
1186 }
bellard0f4c6412005-07-24 18:10:56 +00001187#else
bellard5f1ce942006-02-08 22:40:15 +00001188 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001189#endif
ths5fafdf22007-09-16 21:08:06 +00001190}
bellard0f4c6412005-07-24 18:10:56 +00001191
bellard5f1ce942006-02-08 22:40:15 +00001192#ifdef CONFIG_PROFILER
1193
1194int64_t kqemu_time;
1195int64_t qemu_time;
1196int64_t kqemu_exec_count;
1197int64_t dev_time;
1198int64_t kqemu_ret_int_count;
1199int64_t kqemu_ret_excp_count;
1200int64_t kqemu_ret_intr_count;
1201
1202static void do_info_profile(void)
1203{
1204 int64_t total;
1205 total = qemu_time;
1206 if (total == 0)
1207 total = 1;
bellard26a76462006-06-25 18:15:32 +00001208 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001209 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001210 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001211 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001212 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001213 kqemu_time, kqemu_time / (double)ticks_per_sec,
1214 kqemu_time / (double)total * 100.0,
1215 kqemu_exec_count,
1216 kqemu_ret_int_count,
1217 kqemu_ret_excp_count,
1218 kqemu_ret_intr_count);
1219 qemu_time = 0;
1220 kqemu_time = 0;
1221 kqemu_exec_count = 0;
1222 dev_time = 0;
1223 kqemu_ret_int_count = 0;
1224 kqemu_ret_excp_count = 0;
1225 kqemu_ret_intr_count = 0;
1226#ifdef USE_KQEMU
1227 kqemu_record_dump();
1228#endif
1229}
1230#else
1231static void do_info_profile(void)
1232{
1233 term_printf("Internal profiler not compiled\n");
1234}
1235#endif
1236
bellardec36b692006-07-16 18:57:03 +00001237/* Capture support */
1238static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1239
1240static void do_info_capture (void)
1241{
1242 int i;
1243 CaptureState *s;
1244
1245 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1246 term_printf ("[%d]: ", i);
1247 s->ops.info (s->opaque);
1248 }
1249}
1250
1251static void do_stop_capture (int n)
1252{
1253 int i;
1254 CaptureState *s;
1255
1256 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1257 if (i == n) {
1258 s->ops.destroy (s->opaque);
1259 LIST_REMOVE (s, entries);
1260 qemu_free (s);
1261 return;
1262 }
1263 }
1264}
1265
1266#ifdef HAS_AUDIO
1267int wav_start_capture (CaptureState *s, const char *path, int freq,
1268 int bits, int nchannels);
1269
1270static void do_wav_capture (const char *path,
1271 int has_freq, int freq,
1272 int has_bits, int bits,
1273 int has_channels, int nchannels)
1274{
1275 CaptureState *s;
1276
1277 s = qemu_mallocz (sizeof (*s));
1278 if (!s) {
1279 term_printf ("Not enough memory to add wave capture\n");
1280 return;
1281 }
1282
1283 freq = has_freq ? freq : 44100;
1284 bits = has_bits ? bits : 16;
1285 nchannels = has_channels ? nchannels : 2;
1286
1287 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1288 term_printf ("Faied to add wave capture\n");
1289 qemu_free (s);
1290 }
1291 LIST_INSERT_HEAD (&capture_head, s, entries);
1292}
1293#endif
1294
aurel32dc1c0b72008-04-27 23:52:12 +00001295#if defined(TARGET_I386)
1296static void do_inject_nmi(int cpu_index)
1297{
1298 CPUState *env;
1299
1300 for (env = first_cpu; env != NULL; env = env->next_cpu)
1301 if (env->cpu_index == cpu_index) {
1302 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1303 break;
1304 }
1305}
1306#endif
1307
bellard9dc39cb2004-03-14 21:38:27 +00001308static term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001309 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001310 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001311 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001312 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001313 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001314 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001315 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001316 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001317 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001318 "[-f] device", "eject a removable medium (use -f to force it)" },
bellard81d09122004-07-14 17:21:37 +00001319 { "change", "BF", do_change,
thse5987522007-03-30 18:58:01 +00001320 "device filename", "change a removable medium" },
ths5fafdf22007-09-16 21:08:06 +00001321 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001322 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001323 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001324 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001325 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001326 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001327 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001328 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001329 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001330 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001331 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001332 "tag|id", "delete a VM snapshot from its tag or id" },
1333 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001334 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001335 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001336 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001337#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001338 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001339 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001340#endif
ths5fafdf22007-09-16 21:08:06 +00001341 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001342 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001343 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001344 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001345 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001346 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001347 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001348 "/fmt addr", "I/O port read" },
1349
ths5fafdf22007-09-16 21:08:06 +00001350 { "sendkey", "s", do_send_key,
bellarda3a91a32004-06-04 11:06:21 +00001351 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
ths5fafdf22007-09-16 21:08:06 +00001352 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001353 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001354 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001355 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001356 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001357 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001358 { "usb_add", "s", do_usb_add,
1359 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1360 { "usb_del", "s", do_usb_del,
1361 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001362 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001363 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001364 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001365 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001366 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001367 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001368 { "mouse_set", "i", do_mouse_set,
1369 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001370#ifdef HAS_AUDIO
1371 { "wavcapture", "si?i?i?", do_wav_capture,
1372 "path [frequency bits channels]",
1373 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1374#endif
1375 { "stopcapture", "i", do_stop_capture,
1376 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001377 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001378 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001379 { "pmemsave", "lis", do_physical_memory_save,
1380 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001381 { "boot_set", "s", do_boot_set,
1382 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001383#if defined(TARGET_I386)
1384 { "nmi", "i", do_inject_nmi,
1385 "cpu", "inject an NMI on the given CPU", },
1386#endif
ths5fafdf22007-09-16 21:08:06 +00001387 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001388};
1389
1390static term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001391 { "version", "", do_info_version,
1392 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001393 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001394 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001395 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001396 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001397 { "blockstats", "", do_info_blockstats,
1398 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001399 { "registers", "", do_info_registers,
1400 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001401 { "cpus", "", do_info_cpus,
1402 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001403 { "history", "", do_info_history,
1404 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001405 { "irq", "", irq_info,
1406 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001407 { "pic", "", pic_info,
1408 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001409 { "pci", "", pci_info,
1410 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001411#if defined(TARGET_I386)
1412 { "tlb", "", tlb_info,
1413 "", "show virtual to physical memory mappings", },
1414 { "mem", "", mem_info,
1415 "", "show the active virtual memory mappings", },
1416#endif
bellarde3db7222005-01-26 22:00:47 +00001417 { "jit", "", do_info_jit,
1418 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001419 { "kqemu", "", do_info_kqemu,
1420 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001421 { "usb", "", usb_info,
1422 "", "show guest USB devices", },
1423 { "usbhost", "", usb_host_info,
1424 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001425 { "profile", "", do_info_profile,
1426 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001427 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001428 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001429 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001430 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001431 { "pcmcia", "", pcmcia_info,
1432 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001433 { "mice", "", do_info_mice,
1434 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001435 { "vnc", "", do_info_vnc,
1436 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001437 { "name", "", do_info_name,
1438 "", "show the current VM name" },
j_mayer76a66252007-03-07 08:32:30 +00001439#if defined(TARGET_PPC)
1440 { "cpustats", "", do_info_cpu_stats,
1441 "", "show CPU statistics", },
1442#endif
blueswir131a60e22007-10-26 18:42:59 +00001443#if defined(CONFIG_SLIRP)
1444 { "slirp", "", do_info_slirp,
1445 "", "show SLIRP statistics", },
1446#endif
bellard9dc39cb2004-03-14 21:38:27 +00001447 { NULL, NULL, },
1448};
1449
bellard9307c4c2004-04-04 12:57:25 +00001450/*******************************************************************/
1451
1452static const char *pch;
1453static jmp_buf expr_env;
1454
bellard92a31b12005-02-10 22:00:52 +00001455#define MD_TLONG 0
1456#define MD_I32 1
1457
bellard9307c4c2004-04-04 12:57:25 +00001458typedef struct MonitorDef {
1459 const char *name;
1460 int offset;
bellard92a31b12005-02-10 22:00:52 +00001461 target_long (*get_value)(struct MonitorDef *md, int val);
1462 int type;
bellard9307c4c2004-04-04 12:57:25 +00001463} MonitorDef;
1464
bellard57206fd2004-04-25 18:54:52 +00001465#if defined(TARGET_I386)
bellard92a31b12005-02-10 22:00:52 +00001466static target_long monitor_get_pc (struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001467{
bellard6a00d602005-11-21 23:25:50 +00001468 CPUState *env = mon_get_cpu();
1469 if (!env)
1470 return 0;
1471 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001472}
1473#endif
1474
bellarda541f292004-04-12 20:39:29 +00001475#if defined(TARGET_PPC)
bellard92a31b12005-02-10 22:00:52 +00001476static target_long monitor_get_ccr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001477{
bellard6a00d602005-11-21 23:25:50 +00001478 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001479 unsigned int u;
1480 int i;
1481
bellard6a00d602005-11-21 23:25:50 +00001482 if (!env)
1483 return 0;
1484
bellarda541f292004-04-12 20:39:29 +00001485 u = 0;
1486 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001487 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001488
1489 return u;
1490}
1491
bellard92a31b12005-02-10 22:00:52 +00001492static target_long monitor_get_msr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001493{
bellard6a00d602005-11-21 23:25:50 +00001494 CPUState *env = mon_get_cpu();
1495 if (!env)
1496 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001497 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001498}
1499
bellard92a31b12005-02-10 22:00:52 +00001500static target_long monitor_get_xer (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001501{
bellard6a00d602005-11-21 23:25:50 +00001502 CPUState *env = mon_get_cpu();
1503 if (!env)
1504 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001505 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001506}
bellard9fddaa02004-05-21 12:59:32 +00001507
bellard92a31b12005-02-10 22:00:52 +00001508static target_long monitor_get_decr (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001509{
bellard6a00d602005-11-21 23:25:50 +00001510 CPUState *env = mon_get_cpu();
1511 if (!env)
1512 return 0;
1513 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001514}
1515
bellard92a31b12005-02-10 22:00:52 +00001516static target_long monitor_get_tbu (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001517{
bellard6a00d602005-11-21 23:25:50 +00001518 CPUState *env = mon_get_cpu();
1519 if (!env)
1520 return 0;
1521 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001522}
1523
bellard92a31b12005-02-10 22:00:52 +00001524static target_long monitor_get_tbl (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001525{
bellard6a00d602005-11-21 23:25:50 +00001526 CPUState *env = mon_get_cpu();
1527 if (!env)
1528 return 0;
1529 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001530}
bellarda541f292004-04-12 20:39:29 +00001531#endif
1532
bellarde95c8d52004-09-30 22:22:08 +00001533#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001534#ifndef TARGET_SPARC64
bellard92a31b12005-02-10 22:00:52 +00001535static target_long monitor_get_psr (struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001536{
bellard6a00d602005-11-21 23:25:50 +00001537 CPUState *env = mon_get_cpu();
1538 if (!env)
1539 return 0;
1540 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001541}
bellard7b936c02005-10-30 17:05:13 +00001542#endif
bellarde95c8d52004-09-30 22:22:08 +00001543
bellard92a31b12005-02-10 22:00:52 +00001544static target_long monitor_get_reg(struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001545{
bellard6a00d602005-11-21 23:25:50 +00001546 CPUState *env = mon_get_cpu();
1547 if (!env)
1548 return 0;
1549 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001550}
1551#endif
1552
bellard9307c4c2004-04-04 12:57:25 +00001553static MonitorDef monitor_defs[] = {
1554#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001555
1556#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001557 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001558 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001559 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001560
bellard9307c4c2004-04-04 12:57:25 +00001561 { "eax", offsetof(CPUState, regs[0]) },
1562 { "ecx", offsetof(CPUState, regs[1]) },
1563 { "edx", offsetof(CPUState, regs[2]) },
1564 { "ebx", offsetof(CPUState, regs[3]) },
1565 { "esp|sp", offsetof(CPUState, regs[4]) },
1566 { "ebp|fp", offsetof(CPUState, regs[5]) },
1567 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001568 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001569#ifdef TARGET_X86_64
1570 { "r8", offsetof(CPUState, regs[8]) },
1571 { "r9", offsetof(CPUState, regs[9]) },
1572 { "r10", offsetof(CPUState, regs[10]) },
1573 { "r11", offsetof(CPUState, regs[11]) },
1574 { "r12", offsetof(CPUState, regs[12]) },
1575 { "r13", offsetof(CPUState, regs[13]) },
1576 { "r14", offsetof(CPUState, regs[14]) },
1577 { "r15", offsetof(CPUState, regs[15]) },
1578#endif
bellard9307c4c2004-04-04 12:57:25 +00001579 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001580 { "eip", offsetof(CPUState, eip) },
1581 SEG("cs", R_CS)
1582 SEG("ds", R_DS)
1583 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001584 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001585 SEG("fs", R_FS)
1586 SEG("gs", R_GS)
1587 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001588#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001589 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001590 { "r0", offsetof(CPUState, gpr[0]) },
1591 { "r1", offsetof(CPUState, gpr[1]) },
1592 { "r2", offsetof(CPUState, gpr[2]) },
1593 { "r3", offsetof(CPUState, gpr[3]) },
1594 { "r4", offsetof(CPUState, gpr[4]) },
1595 { "r5", offsetof(CPUState, gpr[5]) },
1596 { "r6", offsetof(CPUState, gpr[6]) },
1597 { "r7", offsetof(CPUState, gpr[7]) },
1598 { "r8", offsetof(CPUState, gpr[8]) },
1599 { "r9", offsetof(CPUState, gpr[9]) },
1600 { "r10", offsetof(CPUState, gpr[10]) },
1601 { "r11", offsetof(CPUState, gpr[11]) },
1602 { "r12", offsetof(CPUState, gpr[12]) },
1603 { "r13", offsetof(CPUState, gpr[13]) },
1604 { "r14", offsetof(CPUState, gpr[14]) },
1605 { "r15", offsetof(CPUState, gpr[15]) },
1606 { "r16", offsetof(CPUState, gpr[16]) },
1607 { "r17", offsetof(CPUState, gpr[17]) },
1608 { "r18", offsetof(CPUState, gpr[18]) },
1609 { "r19", offsetof(CPUState, gpr[19]) },
1610 { "r20", offsetof(CPUState, gpr[20]) },
1611 { "r21", offsetof(CPUState, gpr[21]) },
1612 { "r22", offsetof(CPUState, gpr[22]) },
1613 { "r23", offsetof(CPUState, gpr[23]) },
1614 { "r24", offsetof(CPUState, gpr[24]) },
1615 { "r25", offsetof(CPUState, gpr[25]) },
1616 { "r26", offsetof(CPUState, gpr[26]) },
1617 { "r27", offsetof(CPUState, gpr[27]) },
1618 { "r28", offsetof(CPUState, gpr[28]) },
1619 { "r29", offsetof(CPUState, gpr[29]) },
1620 { "r30", offsetof(CPUState, gpr[30]) },
1621 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001622 /* Floating point registers */
1623 { "f0", offsetof(CPUState, fpr[0]) },
1624 { "f1", offsetof(CPUState, fpr[1]) },
1625 { "f2", offsetof(CPUState, fpr[2]) },
1626 { "f3", offsetof(CPUState, fpr[3]) },
1627 { "f4", offsetof(CPUState, fpr[4]) },
1628 { "f5", offsetof(CPUState, fpr[5]) },
1629 { "f6", offsetof(CPUState, fpr[6]) },
1630 { "f7", offsetof(CPUState, fpr[7]) },
1631 { "f8", offsetof(CPUState, fpr[8]) },
1632 { "f9", offsetof(CPUState, fpr[9]) },
1633 { "f10", offsetof(CPUState, fpr[10]) },
1634 { "f11", offsetof(CPUState, fpr[11]) },
1635 { "f12", offsetof(CPUState, fpr[12]) },
1636 { "f13", offsetof(CPUState, fpr[13]) },
1637 { "f14", offsetof(CPUState, fpr[14]) },
1638 { "f15", offsetof(CPUState, fpr[15]) },
1639 { "f16", offsetof(CPUState, fpr[16]) },
1640 { "f17", offsetof(CPUState, fpr[17]) },
1641 { "f18", offsetof(CPUState, fpr[18]) },
1642 { "f19", offsetof(CPUState, fpr[19]) },
1643 { "f20", offsetof(CPUState, fpr[20]) },
1644 { "f21", offsetof(CPUState, fpr[21]) },
1645 { "f22", offsetof(CPUState, fpr[22]) },
1646 { "f23", offsetof(CPUState, fpr[23]) },
1647 { "f24", offsetof(CPUState, fpr[24]) },
1648 { "f25", offsetof(CPUState, fpr[25]) },
1649 { "f26", offsetof(CPUState, fpr[26]) },
1650 { "f27", offsetof(CPUState, fpr[27]) },
1651 { "f28", offsetof(CPUState, fpr[28]) },
1652 { "f29", offsetof(CPUState, fpr[29]) },
1653 { "f30", offsetof(CPUState, fpr[30]) },
1654 { "f31", offsetof(CPUState, fpr[31]) },
1655 { "fpscr", offsetof(CPUState, fpscr) },
1656 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001657 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001658 { "lr", offsetof(CPUState, lr) },
1659 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001660 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001661 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001662 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001663 { "msr", 0, &monitor_get_msr, },
1664 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001665 { "tbu", 0, &monitor_get_tbu, },
1666 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001667#if defined(TARGET_PPC64)
1668 /* Address space register */
1669 { "asr", offsetof(CPUState, asr) },
1670#endif
1671 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001672 { "sdr1", offsetof(CPUState, sdr1) },
1673 { "sr0", offsetof(CPUState, sr[0]) },
1674 { "sr1", offsetof(CPUState, sr[1]) },
1675 { "sr2", offsetof(CPUState, sr[2]) },
1676 { "sr3", offsetof(CPUState, sr[3]) },
1677 { "sr4", offsetof(CPUState, sr[4]) },
1678 { "sr5", offsetof(CPUState, sr[5]) },
1679 { "sr6", offsetof(CPUState, sr[6]) },
1680 { "sr7", offsetof(CPUState, sr[7]) },
1681 { "sr8", offsetof(CPUState, sr[8]) },
1682 { "sr9", offsetof(CPUState, sr[9]) },
1683 { "sr10", offsetof(CPUState, sr[10]) },
1684 { "sr11", offsetof(CPUState, sr[11]) },
1685 { "sr12", offsetof(CPUState, sr[12]) },
1686 { "sr13", offsetof(CPUState, sr[13]) },
1687 { "sr14", offsetof(CPUState, sr[14]) },
1688 { "sr15", offsetof(CPUState, sr[15]) },
1689 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001690#elif defined(TARGET_SPARC)
1691 { "g0", offsetof(CPUState, gregs[0]) },
1692 { "g1", offsetof(CPUState, gregs[1]) },
1693 { "g2", offsetof(CPUState, gregs[2]) },
1694 { "g3", offsetof(CPUState, gregs[3]) },
1695 { "g4", offsetof(CPUState, gregs[4]) },
1696 { "g5", offsetof(CPUState, gregs[5]) },
1697 { "g6", offsetof(CPUState, gregs[6]) },
1698 { "g7", offsetof(CPUState, gregs[7]) },
1699 { "o0", 0, monitor_get_reg },
1700 { "o1", 1, monitor_get_reg },
1701 { "o2", 2, monitor_get_reg },
1702 { "o3", 3, monitor_get_reg },
1703 { "o4", 4, monitor_get_reg },
1704 { "o5", 5, monitor_get_reg },
1705 { "o6", 6, monitor_get_reg },
1706 { "o7", 7, monitor_get_reg },
1707 { "l0", 8, monitor_get_reg },
1708 { "l1", 9, monitor_get_reg },
1709 { "l2", 10, monitor_get_reg },
1710 { "l3", 11, monitor_get_reg },
1711 { "l4", 12, monitor_get_reg },
1712 { "l5", 13, monitor_get_reg },
1713 { "l6", 14, monitor_get_reg },
1714 { "l7", 15, monitor_get_reg },
1715 { "i0", 16, monitor_get_reg },
1716 { "i1", 17, monitor_get_reg },
1717 { "i2", 18, monitor_get_reg },
1718 { "i3", 19, monitor_get_reg },
1719 { "i4", 20, monitor_get_reg },
1720 { "i5", 21, monitor_get_reg },
1721 { "i6", 22, monitor_get_reg },
1722 { "i7", 23, monitor_get_reg },
1723 { "pc", offsetof(CPUState, pc) },
1724 { "npc", offsetof(CPUState, npc) },
1725 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001726#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001727 { "psr", 0, &monitor_get_psr, },
1728 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001729#endif
bellarde95c8d52004-09-30 22:22:08 +00001730 { "tbr", offsetof(CPUState, tbr) },
1731 { "fsr", offsetof(CPUState, fsr) },
1732 { "f0", offsetof(CPUState, fpr[0]) },
1733 { "f1", offsetof(CPUState, fpr[1]) },
1734 { "f2", offsetof(CPUState, fpr[2]) },
1735 { "f3", offsetof(CPUState, fpr[3]) },
1736 { "f4", offsetof(CPUState, fpr[4]) },
1737 { "f5", offsetof(CPUState, fpr[5]) },
1738 { "f6", offsetof(CPUState, fpr[6]) },
1739 { "f7", offsetof(CPUState, fpr[7]) },
1740 { "f8", offsetof(CPUState, fpr[8]) },
1741 { "f9", offsetof(CPUState, fpr[9]) },
1742 { "f10", offsetof(CPUState, fpr[10]) },
1743 { "f11", offsetof(CPUState, fpr[11]) },
1744 { "f12", offsetof(CPUState, fpr[12]) },
1745 { "f13", offsetof(CPUState, fpr[13]) },
1746 { "f14", offsetof(CPUState, fpr[14]) },
1747 { "f15", offsetof(CPUState, fpr[15]) },
1748 { "f16", offsetof(CPUState, fpr[16]) },
1749 { "f17", offsetof(CPUState, fpr[17]) },
1750 { "f18", offsetof(CPUState, fpr[18]) },
1751 { "f19", offsetof(CPUState, fpr[19]) },
1752 { "f20", offsetof(CPUState, fpr[20]) },
1753 { "f21", offsetof(CPUState, fpr[21]) },
1754 { "f22", offsetof(CPUState, fpr[22]) },
1755 { "f23", offsetof(CPUState, fpr[23]) },
1756 { "f24", offsetof(CPUState, fpr[24]) },
1757 { "f25", offsetof(CPUState, fpr[25]) },
1758 { "f26", offsetof(CPUState, fpr[26]) },
1759 { "f27", offsetof(CPUState, fpr[27]) },
1760 { "f28", offsetof(CPUState, fpr[28]) },
1761 { "f29", offsetof(CPUState, fpr[29]) },
1762 { "f30", offsetof(CPUState, fpr[30]) },
1763 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001764#ifdef TARGET_SPARC64
1765 { "f32", offsetof(CPUState, fpr[32]) },
1766 { "f34", offsetof(CPUState, fpr[34]) },
1767 { "f36", offsetof(CPUState, fpr[36]) },
1768 { "f38", offsetof(CPUState, fpr[38]) },
1769 { "f40", offsetof(CPUState, fpr[40]) },
1770 { "f42", offsetof(CPUState, fpr[42]) },
1771 { "f44", offsetof(CPUState, fpr[44]) },
1772 { "f46", offsetof(CPUState, fpr[46]) },
1773 { "f48", offsetof(CPUState, fpr[48]) },
1774 { "f50", offsetof(CPUState, fpr[50]) },
1775 { "f52", offsetof(CPUState, fpr[52]) },
1776 { "f54", offsetof(CPUState, fpr[54]) },
1777 { "f56", offsetof(CPUState, fpr[56]) },
1778 { "f58", offsetof(CPUState, fpr[58]) },
1779 { "f60", offsetof(CPUState, fpr[60]) },
1780 { "f62", offsetof(CPUState, fpr[62]) },
1781 { "asi", offsetof(CPUState, asi) },
1782 { "pstate", offsetof(CPUState, pstate) },
1783 { "cansave", offsetof(CPUState, cansave) },
1784 { "canrestore", offsetof(CPUState, canrestore) },
1785 { "otherwin", offsetof(CPUState, otherwin) },
1786 { "wstate", offsetof(CPUState, wstate) },
1787 { "cleanwin", offsetof(CPUState, cleanwin) },
1788 { "fprs", offsetof(CPUState, fprs) },
1789#endif
bellard9307c4c2004-04-04 12:57:25 +00001790#endif
1791 { NULL },
1792};
1793
ths5fafdf22007-09-16 21:08:06 +00001794static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001795{
bellard9307c4c2004-04-04 12:57:25 +00001796 term_printf(fmt);
1797 term_printf("\n");
1798 longjmp(expr_env, 1);
1799}
1800
bellard6a00d602005-11-21 23:25:50 +00001801/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001802static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001803{
1804 MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001805 void *ptr;
1806
bellard9307c4c2004-04-04 12:57:25 +00001807 for(md = monitor_defs; md->name != NULL; md++) {
1808 if (compare_cmd(name, md->name)) {
1809 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001810 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001811 } else {
bellard6a00d602005-11-21 23:25:50 +00001812 CPUState *env = mon_get_cpu();
1813 if (!env)
1814 return -2;
1815 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001816 switch(md->type) {
1817 case MD_I32:
1818 *pval = *(int32_t *)ptr;
1819 break;
1820 case MD_TLONG:
1821 *pval = *(target_long *)ptr;
1822 break;
1823 default:
1824 *pval = 0;
1825 break;
1826 }
bellard9307c4c2004-04-04 12:57:25 +00001827 }
1828 return 0;
1829 }
1830 }
1831 return -1;
1832}
1833
1834static void next(void)
1835{
1836 if (pch != '\0') {
1837 pch++;
1838 while (isspace(*pch))
1839 pch++;
1840 }
1841}
1842
blueswir1c2efc952007-09-25 17:28:42 +00001843static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001844
blueswir1c2efc952007-09-25 17:28:42 +00001845static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001846{
blueswir1c2efc952007-09-25 17:28:42 +00001847 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001848 char *p;
bellard6a00d602005-11-21 23:25:50 +00001849 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001850
1851 switch(*pch) {
1852 case '+':
1853 next();
1854 n = expr_unary();
1855 break;
1856 case '-':
1857 next();
1858 n = -expr_unary();
1859 break;
1860 case '~':
1861 next();
1862 n = ~expr_unary();
1863 break;
1864 case '(':
1865 next();
1866 n = expr_sum();
1867 if (*pch != ')') {
1868 expr_error("')' expected");
1869 }
1870 next();
1871 break;
bellard81d09122004-07-14 17:21:37 +00001872 case '\'':
1873 pch++;
1874 if (*pch == '\0')
1875 expr_error("character constant expected");
1876 n = *pch;
1877 pch++;
1878 if (*pch != '\'')
1879 expr_error("missing terminating \' character");
1880 next();
1881 break;
bellard9307c4c2004-04-04 12:57:25 +00001882 case '$':
1883 {
1884 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001885 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001886
bellard9307c4c2004-04-04 12:57:25 +00001887 pch++;
1888 q = buf;
1889 while ((*pch >= 'a' && *pch <= 'z') ||
1890 (*pch >= 'A' && *pch <= 'Z') ||
1891 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001892 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001893 if ((q - buf) < sizeof(buf) - 1)
1894 *q++ = *pch;
1895 pch++;
1896 }
1897 while (isspace(*pch))
1898 pch++;
1899 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001900 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001901 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001902 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001903 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001904 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001905 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001906 }
1907 break;
1908 case '\0':
1909 expr_error("unexpected end of expression");
1910 n = 0;
1911 break;
1912 default:
blueswir17743e582007-09-24 18:39:04 +00001913#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001914 n = strtoull(pch, &p, 0);
1915#else
bellard9307c4c2004-04-04 12:57:25 +00001916 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001917#endif
bellard9307c4c2004-04-04 12:57:25 +00001918 if (pch == p) {
1919 expr_error("invalid char in expression");
1920 }
1921 pch = p;
1922 while (isspace(*pch))
1923 pch++;
1924 break;
1925 }
1926 return n;
1927}
1928
1929
blueswir1c2efc952007-09-25 17:28:42 +00001930static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00001931{
blueswir1c2efc952007-09-25 17:28:42 +00001932 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001933 int op;
ths3b46e622007-09-17 08:09:54 +00001934
bellard9307c4c2004-04-04 12:57:25 +00001935 val = expr_unary();
1936 for(;;) {
1937 op = *pch;
1938 if (op != '*' && op != '/' && op != '%')
1939 break;
1940 next();
1941 val2 = expr_unary();
1942 switch(op) {
1943 default:
1944 case '*':
1945 val *= val2;
1946 break;
1947 case '/':
1948 case '%':
ths5fafdf22007-09-16 21:08:06 +00001949 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00001950 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00001951 if (op == '/')
1952 val /= val2;
1953 else
1954 val %= val2;
1955 break;
1956 }
1957 }
1958 return val;
1959}
1960
blueswir1c2efc952007-09-25 17:28:42 +00001961static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00001962{
blueswir1c2efc952007-09-25 17:28:42 +00001963 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001964 int op;
bellard9307c4c2004-04-04 12:57:25 +00001965
1966 val = expr_prod();
1967 for(;;) {
1968 op = *pch;
1969 if (op != '&' && op != '|' && op != '^')
1970 break;
1971 next();
1972 val2 = expr_prod();
1973 switch(op) {
1974 default:
1975 case '&':
1976 val &= val2;
1977 break;
1978 case '|':
1979 val |= val2;
1980 break;
1981 case '^':
1982 val ^= val2;
1983 break;
1984 }
1985 }
1986 return val;
1987}
1988
blueswir1c2efc952007-09-25 17:28:42 +00001989static int64_t expr_sum(void)
bellard9307c4c2004-04-04 12:57:25 +00001990{
blueswir1c2efc952007-09-25 17:28:42 +00001991 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001992 int op;
bellard9307c4c2004-04-04 12:57:25 +00001993
1994 val = expr_logic();
1995 for(;;) {
1996 op = *pch;
1997 if (op != '+' && op != '-')
1998 break;
1999 next();
2000 val2 = expr_logic();
2001 if (op == '+')
2002 val += val2;
2003 else
2004 val -= val2;
2005 }
2006 return val;
2007}
2008
blueswir1c2efc952007-09-25 17:28:42 +00002009static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002010{
2011 pch = *pp;
2012 if (setjmp(expr_env)) {
2013 *pp = pch;
2014 return -1;
2015 }
2016 while (isspace(*pch))
2017 pch++;
2018 *pval = expr_sum();
2019 *pp = pch;
2020 return 0;
2021}
2022
2023static int get_str(char *buf, int buf_size, const char **pp)
2024{
2025 const char *p;
2026 char *q;
2027 int c;
2028
bellard81d09122004-07-14 17:21:37 +00002029 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002030 p = *pp;
2031 while (isspace(*p))
2032 p++;
2033 if (*p == '\0') {
2034 fail:
bellard81d09122004-07-14 17:21:37 +00002035 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002036 *pp = p;
2037 return -1;
2038 }
bellard9307c4c2004-04-04 12:57:25 +00002039 if (*p == '\"') {
2040 p++;
2041 while (*p != '\0' && *p != '\"') {
2042 if (*p == '\\') {
2043 p++;
2044 c = *p++;
2045 switch(c) {
2046 case 'n':
2047 c = '\n';
2048 break;
2049 case 'r':
2050 c = '\r';
2051 break;
2052 case '\\':
2053 case '\'':
2054 case '\"':
2055 break;
2056 default:
2057 qemu_printf("unsupported escape code: '\\%c'\n", c);
2058 goto fail;
2059 }
2060 if ((q - buf) < buf_size - 1) {
2061 *q++ = c;
2062 }
2063 } else {
2064 if ((q - buf) < buf_size - 1) {
2065 *q++ = *p;
2066 }
2067 p++;
2068 }
2069 }
2070 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002071 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002072 goto fail;
2073 }
2074 p++;
2075 } else {
2076 while (*p != '\0' && !isspace(*p)) {
2077 if ((q - buf) < buf_size - 1) {
2078 *q++ = *p;
2079 }
2080 p++;
2081 }
bellard9307c4c2004-04-04 12:57:25 +00002082 }
bellard81d09122004-07-14 17:21:37 +00002083 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002084 *pp = p;
2085 return 0;
2086}
2087
2088static int default_fmt_format = 'x';
2089static int default_fmt_size = 4;
2090
2091#define MAX_ARGS 16
2092
bellard7e2515e2004-08-01 21:52:19 +00002093static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002094{
2095 const char *p, *pstart, *typestr;
2096 char *q;
2097 int c, nb_args, len, i, has_arg;
bellard9dc39cb2004-03-14 21:38:27 +00002098 term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002099 char cmdname[256];
2100 char buf[1024];
2101 void *str_allocated[MAX_ARGS];
2102 void *args[MAX_ARGS];
bellard9dc39cb2004-03-14 21:38:27 +00002103
2104#ifdef DEBUG
2105 term_printf("command='%s'\n", cmdline);
2106#endif
ths3b46e622007-09-17 08:09:54 +00002107
bellard9307c4c2004-04-04 12:57:25 +00002108 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002109 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002110 q = cmdname;
2111 while (isspace(*p))
2112 p++;
2113 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002114 return;
bellard9307c4c2004-04-04 12:57:25 +00002115 pstart = p;
2116 while (*p != '\0' && *p != '/' && !isspace(*p))
2117 p++;
2118 len = p - pstart;
2119 if (len > sizeof(cmdname) - 1)
2120 len = sizeof(cmdname) - 1;
2121 memcpy(cmdname, pstart, len);
2122 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002123
bellard9307c4c2004-04-04 12:57:25 +00002124 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002125 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002126 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002127 goto found;
2128 }
bellard9307c4c2004-04-04 12:57:25 +00002129 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002130 return;
2131 found:
bellard9307c4c2004-04-04 12:57:25 +00002132
2133 for(i = 0; i < MAX_ARGS; i++)
2134 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002135
bellard9307c4c2004-04-04 12:57:25 +00002136 /* parse the parameters */
2137 typestr = cmd->args_type;
2138 nb_args = 0;
2139 for(;;) {
2140 c = *typestr;
2141 if (c == '\0')
2142 break;
2143 typestr++;
2144 switch(c) {
2145 case 'F':
bellard81d09122004-07-14 17:21:37 +00002146 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002147 case 's':
2148 {
2149 int ret;
2150 char *str;
ths3b46e622007-09-17 08:09:54 +00002151
ths5fafdf22007-09-16 21:08:06 +00002152 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002153 p++;
2154 if (*typestr == '?') {
2155 typestr++;
2156 if (*p == '\0') {
2157 /* no optional string: NULL argument */
2158 str = NULL;
2159 goto add_str;
2160 }
2161 }
2162 ret = get_str(buf, sizeof(buf), &p);
2163 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002164 switch(c) {
2165 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002166 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002167 break;
2168 case 'B':
2169 term_printf("%s: block device name expected\n", cmdname);
2170 break;
2171 default:
bellard9307c4c2004-04-04 12:57:25 +00002172 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002173 break;
2174 }
bellard9307c4c2004-04-04 12:57:25 +00002175 goto fail;
2176 }
2177 str = qemu_malloc(strlen(buf) + 1);
2178 strcpy(str, buf);
2179 str_allocated[nb_args] = str;
2180 add_str:
2181 if (nb_args >= MAX_ARGS) {
2182 error_args:
2183 term_printf("%s: too many arguments\n", cmdname);
2184 goto fail;
2185 }
2186 args[nb_args++] = str;
2187 }
2188 break;
2189 case '/':
2190 {
2191 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002192
bellard9307c4c2004-04-04 12:57:25 +00002193 while (isspace(*p))
2194 p++;
2195 if (*p == '/') {
2196 /* format found */
2197 p++;
2198 count = 1;
2199 if (isdigit(*p)) {
2200 count = 0;
2201 while (isdigit(*p)) {
2202 count = count * 10 + (*p - '0');
2203 p++;
2204 }
2205 }
2206 size = -1;
2207 format = -1;
2208 for(;;) {
2209 switch(*p) {
2210 case 'o':
2211 case 'd':
2212 case 'u':
2213 case 'x':
2214 case 'i':
2215 case 'c':
2216 format = *p++;
2217 break;
2218 case 'b':
2219 size = 1;
2220 p++;
2221 break;
2222 case 'h':
2223 size = 2;
2224 p++;
2225 break;
2226 case 'w':
2227 size = 4;
2228 p++;
2229 break;
2230 case 'g':
2231 case 'L':
2232 size = 8;
2233 p++;
2234 break;
2235 default:
2236 goto next;
2237 }
2238 }
2239 next:
2240 if (*p != '\0' && !isspace(*p)) {
2241 term_printf("invalid char in format: '%c'\n", *p);
2242 goto fail;
2243 }
bellard9307c4c2004-04-04 12:57:25 +00002244 if (format < 0)
2245 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002246 if (format != 'i') {
2247 /* for 'i', not specifying a size gives -1 as size */
2248 if (size < 0)
2249 size = default_fmt_size;
2250 }
bellard9307c4c2004-04-04 12:57:25 +00002251 default_fmt_size = size;
2252 default_fmt_format = format;
2253 } else {
2254 count = 1;
2255 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002256 if (format != 'i') {
2257 size = default_fmt_size;
2258 } else {
2259 size = -1;
2260 }
bellard9307c4c2004-04-04 12:57:25 +00002261 }
2262 if (nb_args + 3 > MAX_ARGS)
2263 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002264 args[nb_args++] = (void*)(long)count;
2265 args[nb_args++] = (void*)(long)format;
2266 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002267 }
2268 break;
2269 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002270 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002271 {
blueswir1c2efc952007-09-25 17:28:42 +00002272 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002273
ths5fafdf22007-09-16 21:08:06 +00002274 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002275 p++;
bellard34405572004-06-08 00:55:58 +00002276 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002277 if (*typestr == '?') {
2278 if (*p == '\0')
2279 has_arg = 0;
2280 else
2281 has_arg = 1;
2282 } else {
2283 if (*p == '.') {
2284 p++;
ths5fafdf22007-09-16 21:08:06 +00002285 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002286 p++;
2287 has_arg = 1;
2288 } else {
2289 has_arg = 0;
2290 }
2291 }
bellard13224a82006-07-14 22:03:35 +00002292 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002293 if (nb_args >= MAX_ARGS)
2294 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002295 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002296 if (!has_arg) {
2297 if (nb_args >= MAX_ARGS)
2298 goto error_args;
2299 val = -1;
2300 goto add_num;
2301 }
2302 }
2303 if (get_expr(&val, &p))
2304 goto fail;
2305 add_num:
bellard92a31b12005-02-10 22:00:52 +00002306 if (c == 'i') {
2307 if (nb_args >= MAX_ARGS)
2308 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002309 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002310 } else {
2311 if ((nb_args + 1) >= MAX_ARGS)
2312 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002313#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002314 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002315#else
2316 args[nb_args++] = (void *)0;
2317#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002318 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002319 }
bellard9307c4c2004-04-04 12:57:25 +00002320 }
2321 break;
2322 case '-':
2323 {
2324 int has_option;
2325 /* option */
ths3b46e622007-09-17 08:09:54 +00002326
bellard9307c4c2004-04-04 12:57:25 +00002327 c = *typestr++;
2328 if (c == '\0')
2329 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002330 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002331 p++;
2332 has_option = 0;
2333 if (*p == '-') {
2334 p++;
2335 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002336 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002337 cmdname, *p);
2338 goto fail;
2339 }
2340 p++;
2341 has_option = 1;
2342 }
2343 if (nb_args >= MAX_ARGS)
2344 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002345 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002346 }
2347 break;
2348 default:
2349 bad_type:
2350 term_printf("%s: unknown type '%c'\n", cmdname, c);
2351 goto fail;
2352 }
2353 }
2354 /* check that all arguments were parsed */
2355 while (isspace(*p))
2356 p++;
2357 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002358 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002359 cmdname);
2360 goto fail;
2361 }
2362
2363 switch(nb_args) {
2364 case 0:
2365 cmd->handler();
2366 break;
2367 case 1:
2368 cmd->handler(args[0]);
2369 break;
2370 case 2:
2371 cmd->handler(args[0], args[1]);
2372 break;
2373 case 3:
2374 cmd->handler(args[0], args[1], args[2]);
2375 break;
2376 case 4:
2377 cmd->handler(args[0], args[1], args[2], args[3]);
2378 break;
2379 case 5:
2380 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2381 break;
bellard34405572004-06-08 00:55:58 +00002382 case 6:
2383 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2384 break;
bellardec36b692006-07-16 18:57:03 +00002385 case 7:
2386 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2387 break;
bellard9307c4c2004-04-04 12:57:25 +00002388 default:
2389 term_printf("unsupported number of arguments: %d\n", nb_args);
2390 goto fail;
2391 }
2392 fail:
2393 for(i = 0; i < MAX_ARGS; i++)
2394 qemu_free(str_allocated[i]);
2395 return;
bellard9dc39cb2004-03-14 21:38:27 +00002396}
2397
bellard81d09122004-07-14 17:21:37 +00002398static void cmd_completion(const char *name, const char *list)
2399{
2400 const char *p, *pstart;
2401 char cmd[128];
2402 int len;
2403
2404 p = list;
2405 for(;;) {
2406 pstart = p;
2407 p = strchr(p, '|');
2408 if (!p)
2409 p = pstart + strlen(pstart);
2410 len = p - pstart;
2411 if (len > sizeof(cmd) - 2)
2412 len = sizeof(cmd) - 2;
2413 memcpy(cmd, pstart, len);
2414 cmd[len] = '\0';
2415 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2416 add_completion(cmd);
2417 }
2418 if (*p == '\0')
2419 break;
2420 p++;
2421 }
2422}
2423
2424static void file_completion(const char *input)
2425{
2426 DIR *ffs;
2427 struct dirent *d;
2428 char path[1024];
2429 char file[1024], file_prefix[1024];
2430 int input_path_len;
2431 const char *p;
2432
ths5fafdf22007-09-16 21:08:06 +00002433 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002434 if (!p) {
2435 input_path_len = 0;
2436 pstrcpy(file_prefix, sizeof(file_prefix), input);
2437 strcpy(path, ".");
2438 } else {
2439 input_path_len = p - input + 1;
2440 memcpy(path, input, input_path_len);
2441 if (input_path_len > sizeof(path) - 1)
2442 input_path_len = sizeof(path) - 1;
2443 path[input_path_len] = '\0';
2444 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2445 }
2446#ifdef DEBUG_COMPLETION
2447 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2448#endif
2449 ffs = opendir(path);
2450 if (!ffs)
2451 return;
2452 for(;;) {
2453 struct stat sb;
2454 d = readdir(ffs);
2455 if (!d)
2456 break;
2457 if (strstart(d->d_name, file_prefix, NULL)) {
2458 memcpy(file, input, input_path_len);
2459 strcpy(file + input_path_len, d->d_name);
2460 /* stat the file to find out if it's a directory.
2461 * In that case add a slash to speed up typing long paths
2462 */
2463 stat(file, &sb);
2464 if(S_ISDIR(sb.st_mode))
2465 strcat(file, "/");
2466 add_completion(file);
2467 }
2468 }
2469 closedir(ffs);
2470}
2471
2472static void block_completion_it(void *opaque, const char *name)
2473{
2474 const char *input = opaque;
2475
2476 if (input[0] == '\0' ||
2477 !strncmp(name, (char *)input, strlen(input))) {
2478 add_completion(name);
2479 }
2480}
2481
2482/* NOTE: this parser is an approximate form of the real command parser */
2483static void parse_cmdline(const char *cmdline,
2484 int *pnb_args, char **args)
2485{
2486 const char *p;
2487 int nb_args, ret;
2488 char buf[1024];
2489
2490 p = cmdline;
2491 nb_args = 0;
2492 for(;;) {
2493 while (isspace(*p))
2494 p++;
2495 if (*p == '\0')
2496 break;
2497 if (nb_args >= MAX_ARGS)
2498 break;
2499 ret = get_str(buf, sizeof(buf), &p);
2500 args[nb_args] = qemu_strdup(buf);
2501 nb_args++;
2502 if (ret < 0)
2503 break;
2504 }
2505 *pnb_args = nb_args;
2506}
2507
bellard7e2515e2004-08-01 21:52:19 +00002508void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002509{
2510 const char *cmdname;
2511 char *args[MAX_ARGS];
2512 int nb_args, i, len;
2513 const char *ptype, *str;
2514 term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002515 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002516
2517 parse_cmdline(cmdline, &nb_args, args);
2518#ifdef DEBUG_COMPLETION
2519 for(i = 0; i < nb_args; i++) {
2520 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2521 }
2522#endif
2523
2524 /* if the line ends with a space, it means we want to complete the
2525 next arg */
2526 len = strlen(cmdline);
2527 if (len > 0 && isspace(cmdline[len - 1])) {
2528 if (nb_args >= MAX_ARGS)
2529 return;
2530 args[nb_args++] = qemu_strdup("");
2531 }
2532 if (nb_args <= 1) {
2533 /* command completion */
2534 if (nb_args == 0)
2535 cmdname = "";
2536 else
2537 cmdname = args[0];
2538 completion_index = strlen(cmdname);
2539 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2540 cmd_completion(cmdname, cmd->name);
2541 }
2542 } else {
2543 /* find the command */
2544 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2545 if (compare_cmd(args[0], cmd->name))
2546 goto found;
2547 }
2548 return;
2549 found:
2550 ptype = cmd->args_type;
2551 for(i = 0; i < nb_args - 2; i++) {
2552 if (*ptype != '\0') {
2553 ptype++;
2554 while (*ptype == '?')
2555 ptype++;
2556 }
2557 }
2558 str = args[nb_args - 1];
2559 switch(*ptype) {
2560 case 'F':
2561 /* file completion */
2562 completion_index = strlen(str);
2563 file_completion(str);
2564 break;
2565 case 'B':
2566 /* block device name completion */
2567 completion_index = strlen(str);
2568 bdrv_iterate(block_completion_it, (void *)str);
2569 break;
bellard7fe48482004-10-09 18:08:01 +00002570 case 's':
2571 /* XXX: more generic ? */
2572 if (!strcmp(cmd->name, "info")) {
2573 completion_index = strlen(str);
2574 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2575 cmd_completion(str, cmd->name);
2576 }
bellard64866c32006-05-07 18:03:31 +00002577 } else if (!strcmp(cmd->name, "sendkey")) {
2578 completion_index = strlen(str);
2579 for(key = key_defs; key->name != NULL; key++) {
2580 cmd_completion(str, key->name);
2581 }
bellard7fe48482004-10-09 18:08:01 +00002582 }
2583 break;
bellard81d09122004-07-14 17:21:37 +00002584 default:
2585 break;
2586 }
2587 }
2588 for(i = 0; i < nb_args; i++)
2589 qemu_free(args[i]);
2590}
2591
bellard9dc39cb2004-03-14 21:38:27 +00002592static int term_can_read(void *opaque)
2593{
bellard81d09122004-07-14 17:21:37 +00002594 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002595}
2596
2597static void term_read(void *opaque, const uint8_t *buf, int size)
2598{
2599 int i;
2600 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002601 readline_handle_byte(buf[i]);
2602}
2603
2604static void monitor_start_input(void);
2605
2606static void monitor_handle_command1(void *opaque, const char *cmdline)
2607{
2608 monitor_handle_command(cmdline);
2609 monitor_start_input();
2610}
2611
2612static void monitor_start_input(void)
2613{
2614 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002615}
2616
ths86e94de2007-01-05 22:01:59 +00002617static void term_event(void *opaque, int event)
2618{
2619 if (event != CHR_EVENT_RESET)
2620 return;
2621
2622 if (!hide_banner)
2623 term_printf("QEMU %s monitor - type 'help' for more information\n",
2624 QEMU_VERSION);
2625 monitor_start_input();
2626}
2627
ths20d8a3e2007-02-18 17:04:49 +00002628static int is_first_init = 1;
2629
bellard81d09122004-07-14 17:21:37 +00002630void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002631{
ths20d8a3e2007-02-18 17:04:49 +00002632 int i;
2633
2634 if (is_first_init) {
2635 for (i = 0; i < MAX_MON; i++) {
2636 monitor_hd[i] = NULL;
2637 }
2638 is_first_init = 0;
2639 }
2640 for (i = 0; i < MAX_MON; i++) {
2641 if (monitor_hd[i] == NULL) {
2642 monitor_hd[i] = hd;
2643 break;
2644 }
2645 }
2646
ths86e94de2007-01-05 22:01:59 +00002647 hide_banner = !show_banner;
2648
pbrooke5b0bc42007-01-27 23:46:43 +00002649 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
blueswir1ad8efe42007-11-30 16:45:21 +00002650
2651 readline_start("", 0, monitor_handle_command1, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002652}
2653
2654/* XXX: use threads ? */
2655/* modal monitor readline */
2656static int monitor_readline_started;
2657static char *monitor_readline_buf;
2658static int monitor_readline_buf_size;
2659
2660static void monitor_readline_cb(void *opaque, const char *input)
2661{
2662 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2663 monitor_readline_started = 0;
2664}
2665
2666void monitor_readline(const char *prompt, int is_password,
2667 char *buf, int buf_size)
2668{
ths20d8a3e2007-02-18 17:04:49 +00002669 int i;
2670
bellard7e2515e2004-08-01 21:52:19 +00002671 if (is_password) {
ths20d8a3e2007-02-18 17:04:49 +00002672 for (i = 0; i < MAX_MON; i++)
2673 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
2674 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
bellard7e2515e2004-08-01 21:52:19 +00002675 }
2676 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2677 monitor_readline_buf = buf;
2678 monitor_readline_buf_size = buf_size;
2679 monitor_readline_started = 1;
2680 while (monitor_readline_started) {
2681 main_loop_wait(10);
2682 }
bellard9dc39cb2004-03-14 21:38:27 +00002683}