blob: 7bad3263d6d695ab1fc5e1d9a7b5d368bc087e4d [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);
bellardad49ff92005-11-23 21:01:33 +0000317 if (env->hflags & HF_HALTED_MASK)
bellard6a00d602005-11-21 23:25:50 +0000318 term_printf(" (halted)");
bellarde80e1cc2005-11-23 22:05:28 +0000319#elif defined(TARGET_PPC)
320 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
bellard50443c92005-11-26 20:15:14 +0000321 if (env->halted)
bellarde80e1cc2005-11-23 22:05:28 +0000322 term_printf(" (halted)");
bellardba3c64f2005-12-05 20:31:52 +0000323#elif defined(TARGET_SPARC)
324 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
325 if (env->halted)
326 term_printf(" (halted)");
thsead93602007-09-06 00:18:15 +0000327#elif defined(TARGET_MIPS)
328 term_printf(" PC=0x" TARGET_FMT_lx, env->PC[env->current_tc]);
329 if (env->halted)
330 term_printf(" (halted)");
bellard6a00d602005-11-21 23:25:50 +0000331#endif
332 term_printf("\n");
333 }
334}
335
336static void do_cpu_set(int index)
337{
338 if (mon_set_cpu(index) < 0)
339 term_printf("Invalid CPU index\n");
340}
341
bellarde3db7222005-01-26 22:00:47 +0000342static void do_info_jit(void)
343{
344 dump_exec_info(NULL, monitor_fprintf);
345}
346
bellardaa455482004-04-04 13:07:25 +0000347static void do_info_history (void)
348{
349 int i;
bellard7e2515e2004-08-01 21:52:19 +0000350 const char *str;
ths3b46e622007-09-17 08:09:54 +0000351
bellard7e2515e2004-08-01 21:52:19 +0000352 i = 0;
353 for(;;) {
354 str = readline_get_history(i);
355 if (!str)
356 break;
357 term_printf("%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000358 i++;
bellardaa455482004-04-04 13:07:25 +0000359 }
360}
361
j_mayer76a66252007-03-07 08:32:30 +0000362#if defined(TARGET_PPC)
363/* XXX: not implemented in other targets */
364static void do_info_cpu_stats (void)
365{
366 CPUState *env;
367
368 env = mon_get_cpu();
369 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
370}
371#endif
372
bellard9307c4c2004-04-04 12:57:25 +0000373static void do_quit(void)
bellard9dc39cb2004-03-14 21:38:27 +0000374{
375 exit(0);
376}
377
378static int eject_device(BlockDriverState *bs, int force)
379{
380 if (bdrv_is_inserted(bs)) {
381 if (!force) {
382 if (!bdrv_is_removable(bs)) {
383 term_printf("device is not removable\n");
384 return -1;
385 }
386 if (bdrv_is_locked(bs)) {
387 term_printf("device is locked\n");
388 return -1;
389 }
390 }
391 bdrv_close(bs);
392 }
393 return 0;
394}
395
bellard9307c4c2004-04-04 12:57:25 +0000396static void do_eject(int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000397{
398 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000399
bellard9307c4c2004-04-04 12:57:25 +0000400 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000401 if (!bs) {
402 term_printf("device not found\n");
403 return;
404 }
405 eject_device(bs, force);
406}
407
thse25a5822007-08-25 01:36:20 +0000408static void do_change_block(const char *device, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000409{
410 BlockDriverState *bs;
411
bellard9307c4c2004-04-04 12:57:25 +0000412 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000413 if (!bs) {
414 term_printf("device not found\n");
415 return;
416 }
417 if (eject_device(bs, 0) < 0)
418 return;
bellard9307c4c2004-04-04 12:57:25 +0000419 bdrv_open(bs, filename, 0);
balrog2bac6012007-04-30 01:34:31 +0000420 qemu_key_check(bs, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000421}
422
thse25a5822007-08-25 01:36:20 +0000423static void do_change_vnc(const char *target)
424{
ths70848512007-08-25 01:37:05 +0000425 if (strcmp(target, "passwd") == 0 ||
426 strcmp(target, "password") == 0) {
427 char password[9];
428 monitor_readline("Password: ", 1, password, sizeof(password)-1);
429 password[sizeof(password)-1] = '\0';
430 if (vnc_display_password(NULL, password) < 0)
431 term_printf("could not set VNC server password\n");
432 } else {
433 if (vnc_display_open(NULL, target) < 0)
434 term_printf("could not start VNC server on %s\n", target);
435 }
thse25a5822007-08-25 01:36:20 +0000436}
437
438static void do_change(const char *device, const char *target)
439{
440 if (strcmp(device, "vnc") == 0) {
441 do_change_vnc(target);
442 } else {
443 do_change_block(device, target);
444 }
445}
446
bellard9307c4c2004-04-04 12:57:25 +0000447static void do_screen_dump(const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000448{
pbrook95219892006-04-09 01:06:34 +0000449 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000450}
451
pbrooke735b912007-06-30 13:53:24 +0000452static void do_logfile(const char *filename)
453{
454 cpu_set_log_filename(filename);
455}
456
bellard9307c4c2004-04-04 12:57:25 +0000457static void do_log(const char *items)
bellardf193c792004-03-21 17:06:25 +0000458{
459 int mask;
ths3b46e622007-09-17 08:09:54 +0000460
bellard9307c4c2004-04-04 12:57:25 +0000461 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000462 mask = 0;
463 } else {
bellard9307c4c2004-04-04 12:57:25 +0000464 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000465 if (!mask) {
bellard9307c4c2004-04-04 12:57:25 +0000466 help_cmd("log");
bellardf193c792004-03-21 17:06:25 +0000467 return;
468 }
469 }
470 cpu_set_log(mask);
471}
472
bellard9307c4c2004-04-04 12:57:25 +0000473static void do_stop(void)
bellard8a7ddc32004-03-31 19:00:16 +0000474{
475 vm_stop(EXCP_INTERRUPT);
476}
477
bellard9307c4c2004-04-04 12:57:25 +0000478static void do_cont(void)
bellard8a7ddc32004-03-31 19:00:16 +0000479{
480 vm_start();
481}
482
bellard67b915a2004-03-31 23:37:16 +0000483#ifdef CONFIG_GDBSTUB
pbrookcfc34752007-02-22 01:48:01 +0000484static void do_gdbserver(const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000485{
pbrookcfc34752007-02-22 01:48:01 +0000486 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000487 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000488 if (gdbserver_start(port) < 0) {
489 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000490 } else {
pbrookcfc34752007-02-22 01:48:01 +0000491 qemu_printf("Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000492 }
493}
bellard67b915a2004-03-31 23:37:16 +0000494#endif
bellard8a7ddc32004-03-31 19:00:16 +0000495
bellard9307c4c2004-04-04 12:57:25 +0000496static void term_printc(int c)
497{
498 term_printf("'");
499 switch(c) {
500 case '\'':
501 term_printf("\\'");
502 break;
503 case '\\':
504 term_printf("\\\\");
505 break;
506 case '\n':
507 term_printf("\\n");
508 break;
509 case '\r':
510 term_printf("\\r");
511 break;
512 default:
513 if (c >= 32 && c <= 126) {
514 term_printf("%c", c);
515 } else {
516 term_printf("\\x%02x", c);
517 }
518 break;
519 }
520 term_printf("'");
521}
522
ths5fafdf22007-09-16 21:08:06 +0000523static void memory_dump(int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000524 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000525{
bellard6a00d602005-11-21 23:25:50 +0000526 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000527 int nb_per_line, l, line_size, i, max_digits, len;
528 uint8_t buf[16];
529 uint64_t v;
530
531 if (format == 'i') {
532 int flags;
533 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000534 env = mon_get_cpu();
535 if (!env && !is_physical)
536 return;
bellard9307c4c2004-04-04 12:57:25 +0000537#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000538 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000539 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000540 } else if (wsize == 4) {
541 flags = 0;
542 } else {
bellard6a15fd12006-04-12 21:07:07 +0000543 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000544 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000545 if (env) {
546#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000547 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000548 (env->segs[R_CS].flags & DESC_L_MASK))
549 flags = 2;
550 else
551#endif
552 if (!(env->segs[R_CS].flags & DESC_B_MASK))
553 flags = 1;
554 }
bellard4c27ba22004-04-25 18:05:08 +0000555 }
556#endif
bellard6a00d602005-11-21 23:25:50 +0000557 monitor_disas(env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000558 return;
559 }
560
561 len = wsize * count;
562 if (wsize == 1)
563 line_size = 8;
564 else
565 line_size = 16;
566 nb_per_line = line_size / wsize;
567 max_digits = 0;
568
569 switch(format) {
570 case 'o':
571 max_digits = (wsize * 8 + 2) / 3;
572 break;
573 default:
574 case 'x':
575 max_digits = (wsize * 8) / 4;
576 break;
577 case 'u':
578 case 'd':
579 max_digits = (wsize * 8 * 10 + 32) / 33;
580 break;
581 case 'c':
582 wsize = 1;
583 break;
584 }
585
586 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000587 if (is_physical)
588 term_printf(TARGET_FMT_plx ":", addr);
589 else
590 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000591 l = len;
592 if (l > line_size)
593 l = line_size;
594 if (is_physical) {
595 cpu_physical_memory_rw(addr, buf, l, 0);
596 } else {
bellard6a00d602005-11-21 23:25:50 +0000597 env = mon_get_cpu();
598 if (!env)
599 break;
600 cpu_memory_rw_debug(env, addr, buf, l, 0);
bellard9307c4c2004-04-04 12:57:25 +0000601 }
ths5fafdf22007-09-16 21:08:06 +0000602 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000603 while (i < l) {
604 switch(wsize) {
605 default:
606 case 1:
607 v = ldub_raw(buf + i);
608 break;
609 case 2:
610 v = lduw_raw(buf + i);
611 break;
612 case 4:
bellard92a31b12005-02-10 22:00:52 +0000613 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000614 break;
615 case 8:
616 v = ldq_raw(buf + i);
617 break;
618 }
619 term_printf(" ");
620 switch(format) {
621 case 'o':
bellard26a76462006-06-25 18:15:32 +0000622 term_printf("%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000623 break;
624 case 'x':
bellard26a76462006-06-25 18:15:32 +0000625 term_printf("0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000626 break;
627 case 'u':
bellard26a76462006-06-25 18:15:32 +0000628 term_printf("%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000629 break;
630 case 'd':
bellard26a76462006-06-25 18:15:32 +0000631 term_printf("%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000632 break;
633 case 'c':
634 term_printc(v);
635 break;
636 }
637 i += wsize;
638 }
639 term_printf("\n");
640 addr += l;
641 len -= l;
642 }
643}
644
bellard92a31b12005-02-10 22:00:52 +0000645#if TARGET_LONG_BITS == 64
646#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
647#else
648#define GET_TLONG(h, l) (l)
649#endif
650
ths5fafdf22007-09-16 21:08:06 +0000651static void do_memory_dump(int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000652 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000653{
bellard92a31b12005-02-10 22:00:52 +0000654 target_long addr = GET_TLONG(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000655 memory_dump(count, format, size, addr, 0);
656}
657
blueswir17743e582007-09-24 18:39:04 +0000658#if TARGET_PHYS_ADDR_BITS > 32
659#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
660#else
661#define GET_TPHYSADDR(h, l) (l)
662#endif
663
bellard92a31b12005-02-10 22:00:52 +0000664static void do_physical_memory_dump(int count, int format, int size,
665 uint32_t addrh, uint32_t addrl)
666
bellard9307c4c2004-04-04 12:57:25 +0000667{
blueswir17743e582007-09-24 18:39:04 +0000668 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000669 memory_dump(count, format, size, addr, 1);
670}
671
bellard92a31b12005-02-10 22:00:52 +0000672static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000673{
blueswir17743e582007-09-24 18:39:04 +0000674 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
675#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000676 switch(format) {
677 case 'o':
678 term_printf("%#o", val);
679 break;
680 case 'x':
681 term_printf("%#x", val);
682 break;
683 case 'u':
684 term_printf("%u", val);
685 break;
686 default:
687 case 'd':
688 term_printf("%d", val);
689 break;
690 case 'c':
691 term_printc(val);
692 break;
693 }
bellard92a31b12005-02-10 22:00:52 +0000694#else
695 switch(format) {
696 case 'o':
bellard26a76462006-06-25 18:15:32 +0000697 term_printf("%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000698 break;
699 case 'x':
bellard26a76462006-06-25 18:15:32 +0000700 term_printf("%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000701 break;
702 case 'u':
bellard26a76462006-06-25 18:15:32 +0000703 term_printf("%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000704 break;
705 default:
706 case 'd':
bellard26a76462006-06-25 18:15:32 +0000707 term_printf("%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000708 break;
709 case 'c':
710 term_printc(val);
711 break;
712 }
713#endif
bellard9307c4c2004-04-04 12:57:25 +0000714 term_printf("\n");
715}
716
ths5fafdf22007-09-16 21:08:06 +0000717static void do_memory_save(unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000718 uint32_t size, const char *filename)
719{
720 FILE *f;
721 target_long addr = GET_TLONG(valh, vall);
722 uint32_t l;
723 CPUState *env;
724 uint8_t buf[1024];
725
726 env = mon_get_cpu();
727 if (!env)
728 return;
729
730 f = fopen(filename, "wb");
731 if (!f) {
732 term_printf("could not open '%s'\n", filename);
733 return;
734 }
735 while (size != 0) {
736 l = sizeof(buf);
737 if (l > size)
738 l = size;
739 cpu_memory_rw_debug(env, addr, buf, l, 0);
740 fwrite(buf, 1, l, f);
741 addr += l;
742 size -= l;
743 }
744 fclose(f);
745}
746
aurel32a8bdf7a2008-04-11 21:36:14 +0000747static void do_physical_memory_save(unsigned int valh, unsigned int vall,
748 uint32_t size, const char *filename)
749{
750 FILE *f;
751 uint32_t l;
752 uint8_t buf[1024];
753 target_long addr = GET_TLONG(valh, vall);
754
755 f = fopen(filename, "wb");
756 if (!f) {
757 term_printf("could not open '%s'\n", filename);
758 return;
759 }
760 while (size != 0) {
761 l = sizeof(buf);
762 if (l > size)
763 l = size;
764 cpu_physical_memory_rw(addr, buf, l, 0);
765 fwrite(buf, 1, l, f);
766 fflush(f);
767 addr += l;
768 size -= l;
769 }
770 fclose(f);
771}
772
bellarde4cf1ad2005-06-04 20:15:57 +0000773static void do_sum(uint32_t start, uint32_t size)
774{
775 uint32_t addr;
776 uint8_t buf[1];
777 uint16_t sum;
778
779 sum = 0;
780 for(addr = start; addr < (start + size); addr++) {
781 cpu_physical_memory_rw(addr, buf, 1, 0);
782 /* BSD sum algorithm ('sum' Unix command) */
783 sum = (sum >> 1) | (sum << 15);
784 sum += buf[0];
785 }
786 term_printf("%05d\n", sum);
787}
788
bellarda3a91a32004-06-04 11:06:21 +0000789typedef struct {
790 int keycode;
791 const char *name;
792} KeyDef;
793
794static const KeyDef key_defs[] = {
795 { 0x2a, "shift" },
796 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000797
bellarda3a91a32004-06-04 11:06:21 +0000798 { 0x38, "alt" },
799 { 0xb8, "alt_r" },
800 { 0x1d, "ctrl" },
801 { 0x9d, "ctrl_r" },
802
803 { 0xdd, "menu" },
804
805 { 0x01, "esc" },
806
807 { 0x02, "1" },
808 { 0x03, "2" },
809 { 0x04, "3" },
810 { 0x05, "4" },
811 { 0x06, "5" },
812 { 0x07, "6" },
813 { 0x08, "7" },
814 { 0x09, "8" },
815 { 0x0a, "9" },
816 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000817 { 0x0c, "minus" },
818 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000819 { 0x0e, "backspace" },
820
821 { 0x0f, "tab" },
822 { 0x10, "q" },
823 { 0x11, "w" },
824 { 0x12, "e" },
825 { 0x13, "r" },
826 { 0x14, "t" },
827 { 0x15, "y" },
828 { 0x16, "u" },
829 { 0x17, "i" },
830 { 0x18, "o" },
831 { 0x19, "p" },
832
833 { 0x1c, "ret" },
834
835 { 0x1e, "a" },
836 { 0x1f, "s" },
837 { 0x20, "d" },
838 { 0x21, "f" },
839 { 0x22, "g" },
840 { 0x23, "h" },
841 { 0x24, "j" },
842 { 0x25, "k" },
843 { 0x26, "l" },
844
845 { 0x2c, "z" },
846 { 0x2d, "x" },
847 { 0x2e, "c" },
848 { 0x2f, "v" },
849 { 0x30, "b" },
850 { 0x31, "n" },
851 { 0x32, "m" },
ths3b46e622007-09-17 08:09:54 +0000852
balrog4d3b6f62008-02-10 16:33:14 +0000853 { 0x37, "asterisk" },
854
bellarda3a91a32004-06-04 11:06:21 +0000855 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000856 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000857 { 0x3b, "f1" },
858 { 0x3c, "f2" },
859 { 0x3d, "f3" },
860 { 0x3e, "f4" },
861 { 0x3f, "f5" },
862 { 0x40, "f6" },
863 { 0x41, "f7" },
864 { 0x42, "f8" },
865 { 0x43, "f9" },
866 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000867 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000868 { 0x46, "scroll_lock" },
869
bellard64866c32006-05-07 18:03:31 +0000870 { 0xb5, "kp_divide" },
871 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000872 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000873 { 0x4e, "kp_add" },
874 { 0x9c, "kp_enter" },
875 { 0x53, "kp_decimal" },
876
877 { 0x52, "kp_0" },
878 { 0x4f, "kp_1" },
879 { 0x50, "kp_2" },
880 { 0x51, "kp_3" },
881 { 0x4b, "kp_4" },
882 { 0x4c, "kp_5" },
883 { 0x4d, "kp_6" },
884 { 0x47, "kp_7" },
885 { 0x48, "kp_8" },
886 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000887
bellarda3a91a32004-06-04 11:06:21 +0000888 { 0x56, "<" },
889
890 { 0x57, "f11" },
891 { 0x58, "f12" },
892
893 { 0xb7, "print" },
894
895 { 0xc7, "home" },
896 { 0xc9, "pgup" },
897 { 0xd1, "pgdn" },
898 { 0xcf, "end" },
899
900 { 0xcb, "left" },
901 { 0xc8, "up" },
902 { 0xd0, "down" },
903 { 0xcd, "right" },
904
905 { 0xd2, "insert" },
906 { 0xd3, "delete" },
907 { 0, NULL },
908};
909
910static int get_keycode(const char *key)
911{
912 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +0000913 char *endp;
914 int ret;
bellarda3a91a32004-06-04 11:06:21 +0000915
916 for(p = key_defs; p->name != NULL; p++) {
917 if (!strcmp(key, p->name))
918 return p->keycode;
919 }
bellard64866c32006-05-07 18:03:31 +0000920 if (strstart(key, "0x", NULL)) {
921 ret = strtoul(key, &endp, 0);
922 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
923 return ret;
924 }
bellarda3a91a32004-06-04 11:06:21 +0000925 return -1;
926}
927
928static void do_send_key(const char *string)
929{
930 char keybuf[16], *q;
931 uint8_t keycodes[16];
932 const char *p;
933 int nb_keycodes, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000934
bellarda3a91a32004-06-04 11:06:21 +0000935 nb_keycodes = 0;
936 p = string;
937 while (*p != '\0') {
938 q = keybuf;
939 while (*p != '\0' && *p != '-') {
940 if ((q - keybuf) < sizeof(keybuf) - 1) {
941 *q++ = *p;
942 }
943 p++;
944 }
945 *q = '\0';
946 keycode = get_keycode(keybuf);
947 if (keycode < 0) {
948 term_printf("unknown key: '%s'\n", keybuf);
949 return;
950 }
951 keycodes[nb_keycodes++] = keycode;
952 if (*p == '\0')
953 break;
954 p++;
955 }
956 /* key down events */
957 for(i = 0; i < nb_keycodes; i++) {
958 keycode = keycodes[i];
959 if (keycode & 0x80)
960 kbd_put_keycode(0xe0);
961 kbd_put_keycode(keycode & 0x7f);
962 }
963 /* key up events */
964 for(i = nb_keycodes - 1; i >= 0; i--) {
965 keycode = keycodes[i];
966 if (keycode & 0x80)
967 kbd_put_keycode(0xe0);
968 kbd_put_keycode(keycode | 0x80);
969 }
970}
971
bellard13224a82006-07-14 22:03:35 +0000972static int mouse_button_state;
973
ths5fafdf22007-09-16 21:08:06 +0000974static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +0000975 const char *dz_str)
976{
977 int dx, dy, dz;
978 dx = strtol(dx_str, NULL, 0);
979 dy = strtol(dy_str, NULL, 0);
980 dz = 0;
ths5fafdf22007-09-16 21:08:06 +0000981 if (dz_str)
bellard13224a82006-07-14 22:03:35 +0000982 dz = strtol(dz_str, NULL, 0);
983 kbd_mouse_event(dx, dy, dz, mouse_button_state);
984}
985
986static void do_mouse_button(int button_state)
987{
988 mouse_button_state = button_state;
989 kbd_mouse_event(0, 0, 0, mouse_button_state);
990}
991
bellard34405572004-06-08 00:55:58 +0000992static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
993{
994 uint32_t val;
995 int suffix;
996
997 if (has_index) {
998 cpu_outb(NULL, addr & 0xffff, index & 0xff);
999 addr++;
1000 }
1001 addr &= 0xffff;
1002
1003 switch(size) {
1004 default:
1005 case 1:
1006 val = cpu_inb(NULL, addr);
1007 suffix = 'b';
1008 break;
1009 case 2:
1010 val = cpu_inw(NULL, addr);
1011 suffix = 'w';
1012 break;
1013 case 4:
1014 val = cpu_inl(NULL, addr);
1015 suffix = 'l';
1016 break;
1017 }
1018 term_printf("port%c[0x%04x] = %#0*x\n",
1019 suffix, addr, size * 2, val);
1020}
bellarda3a91a32004-06-04 11:06:21 +00001021
bellarde4f90822004-06-20 12:35:44 +00001022static void do_system_reset(void)
1023{
1024 qemu_system_reset_request();
1025}
1026
bellard34751872005-07-02 14:31:34 +00001027static void do_system_powerdown(void)
1028{
1029 qemu_system_powerdown_request();
1030}
1031
bellardb86bda52004-09-18 19:32:46 +00001032#if defined(TARGET_I386)
1033static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1034{
ths5fafdf22007-09-16 21:08:06 +00001035 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001036 addr,
1037 pte & mask,
1038 pte & PG_GLOBAL_MASK ? 'G' : '-',
1039 pte & PG_PSE_MASK ? 'P' : '-',
1040 pte & PG_DIRTY_MASK ? 'D' : '-',
1041 pte & PG_ACCESSED_MASK ? 'A' : '-',
1042 pte & PG_PCD_MASK ? 'C' : '-',
1043 pte & PG_PWT_MASK ? 'T' : '-',
1044 pte & PG_USER_MASK ? 'U' : '-',
1045 pte & PG_RW_MASK ? 'W' : '-');
1046}
1047
1048static void tlb_info(void)
1049{
bellard6a00d602005-11-21 23:25:50 +00001050 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001051 int l1, l2;
1052 uint32_t pgd, pde, pte;
1053
bellard6a00d602005-11-21 23:25:50 +00001054 env = mon_get_cpu();
1055 if (!env)
1056 return;
1057
bellardb86bda52004-09-18 19:32:46 +00001058 if (!(env->cr[0] & CR0_PG_MASK)) {
1059 term_printf("PG disabled\n");
1060 return;
1061 }
1062 pgd = env->cr[3] & ~0xfff;
1063 for(l1 = 0; l1 < 1024; l1++) {
1064 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1065 pde = le32_to_cpu(pde);
1066 if (pde & PG_PRESENT_MASK) {
1067 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1068 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1069 } else {
1070 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001071 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001072 (uint8_t *)&pte, 4);
1073 pte = le32_to_cpu(pte);
1074 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001075 print_pte((l1 << 22) + (l2 << 12),
1076 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001077 ~0xfff);
1078 }
1079 }
1080 }
1081 }
1082 }
1083}
1084
ths5fafdf22007-09-16 21:08:06 +00001085static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001086 uint32_t end, int prot)
1087{
bellard9746b152004-11-11 18:30:24 +00001088 int prot1;
1089 prot1 = *plast_prot;
1090 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001091 if (*pstart != -1) {
1092 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001093 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001094 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001095 'r',
bellard9746b152004-11-11 18:30:24 +00001096 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001097 }
1098 if (prot != 0)
1099 *pstart = end;
1100 else
1101 *pstart = -1;
1102 *plast_prot = prot;
1103 }
1104}
1105
1106static void mem_info(void)
1107{
bellard6a00d602005-11-21 23:25:50 +00001108 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001109 int l1, l2, prot, last_prot;
1110 uint32_t pgd, pde, pte, start, end;
1111
bellard6a00d602005-11-21 23:25:50 +00001112 env = mon_get_cpu();
1113 if (!env)
1114 return;
1115
bellardb86bda52004-09-18 19:32:46 +00001116 if (!(env->cr[0] & CR0_PG_MASK)) {
1117 term_printf("PG disabled\n");
1118 return;
1119 }
1120 pgd = env->cr[3] & ~0xfff;
1121 last_prot = 0;
1122 start = -1;
1123 for(l1 = 0; l1 < 1024; l1++) {
1124 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1125 pde = le32_to_cpu(pde);
1126 end = l1 << 22;
1127 if (pde & PG_PRESENT_MASK) {
1128 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1129 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1130 mem_print(&start, &last_prot, end, prot);
1131 } else {
1132 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001133 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001134 (uint8_t *)&pte, 4);
1135 pte = le32_to_cpu(pte);
1136 end = (l1 << 22) + (l2 << 12);
1137 if (pte & PG_PRESENT_MASK) {
1138 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1139 } else {
1140 prot = 0;
1141 }
1142 mem_print(&start, &last_prot, end, prot);
1143 }
1144 }
1145 } else {
1146 prot = 0;
1147 mem_print(&start, &last_prot, end, prot);
1148 }
1149 }
1150}
1151#endif
1152
bellard0f4c6412005-07-24 18:10:56 +00001153static void do_info_kqemu(void)
1154{
1155#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001156 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001157 int val;
1158 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001159 env = mon_get_cpu();
1160 if (!env) {
1161 term_printf("No cpu initialized yet");
1162 return;
1163 }
1164 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001165 term_printf("kqemu support: ");
1166 switch(val) {
1167 default:
1168 case 0:
1169 term_printf("disabled\n");
1170 break;
1171 case 1:
1172 term_printf("enabled for user code\n");
1173 break;
1174 case 2:
1175 term_printf("enabled for user and kernel code\n");
1176 break;
1177 }
bellard0f4c6412005-07-24 18:10:56 +00001178#else
bellard5f1ce942006-02-08 22:40:15 +00001179 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001180#endif
ths5fafdf22007-09-16 21:08:06 +00001181}
bellard0f4c6412005-07-24 18:10:56 +00001182
bellard5f1ce942006-02-08 22:40:15 +00001183#ifdef CONFIG_PROFILER
1184
1185int64_t kqemu_time;
1186int64_t qemu_time;
1187int64_t kqemu_exec_count;
1188int64_t dev_time;
1189int64_t kqemu_ret_int_count;
1190int64_t kqemu_ret_excp_count;
1191int64_t kqemu_ret_intr_count;
1192
1193static void do_info_profile(void)
1194{
1195 int64_t total;
1196 total = qemu_time;
1197 if (total == 0)
1198 total = 1;
bellard26a76462006-06-25 18:15:32 +00001199 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001200 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001201 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001202 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001203 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001204 kqemu_time, kqemu_time / (double)ticks_per_sec,
1205 kqemu_time / (double)total * 100.0,
1206 kqemu_exec_count,
1207 kqemu_ret_int_count,
1208 kqemu_ret_excp_count,
1209 kqemu_ret_intr_count);
1210 qemu_time = 0;
1211 kqemu_time = 0;
1212 kqemu_exec_count = 0;
1213 dev_time = 0;
1214 kqemu_ret_int_count = 0;
1215 kqemu_ret_excp_count = 0;
1216 kqemu_ret_intr_count = 0;
1217#ifdef USE_KQEMU
1218 kqemu_record_dump();
1219#endif
1220}
1221#else
1222static void do_info_profile(void)
1223{
1224 term_printf("Internal profiler not compiled\n");
1225}
1226#endif
1227
bellardec36b692006-07-16 18:57:03 +00001228/* Capture support */
1229static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1230
1231static void do_info_capture (void)
1232{
1233 int i;
1234 CaptureState *s;
1235
1236 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1237 term_printf ("[%d]: ", i);
1238 s->ops.info (s->opaque);
1239 }
1240}
1241
1242static void do_stop_capture (int n)
1243{
1244 int i;
1245 CaptureState *s;
1246
1247 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1248 if (i == n) {
1249 s->ops.destroy (s->opaque);
1250 LIST_REMOVE (s, entries);
1251 qemu_free (s);
1252 return;
1253 }
1254 }
1255}
1256
1257#ifdef HAS_AUDIO
1258int wav_start_capture (CaptureState *s, const char *path, int freq,
1259 int bits, int nchannels);
1260
1261static void do_wav_capture (const char *path,
1262 int has_freq, int freq,
1263 int has_bits, int bits,
1264 int has_channels, int nchannels)
1265{
1266 CaptureState *s;
1267
1268 s = qemu_mallocz (sizeof (*s));
1269 if (!s) {
1270 term_printf ("Not enough memory to add wave capture\n");
1271 return;
1272 }
1273
1274 freq = has_freq ? freq : 44100;
1275 bits = has_bits ? bits : 16;
1276 nchannels = has_channels ? nchannels : 2;
1277
1278 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1279 term_printf ("Faied to add wave capture\n");
1280 qemu_free (s);
1281 }
1282 LIST_INSERT_HEAD (&capture_head, s, entries);
1283}
1284#endif
1285
bellard9dc39cb2004-03-14 21:38:27 +00001286static term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001287 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001288 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001289 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001290 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001291 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001292 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001293 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001294 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001295 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001296 "[-f] device", "eject a removable medium (use -f to force it)" },
bellard81d09122004-07-14 17:21:37 +00001297 { "change", "BF", do_change,
thse5987522007-03-30 18:58:01 +00001298 "device filename", "change a removable medium" },
ths5fafdf22007-09-16 21:08:06 +00001299 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001300 "filename", "save screen into PPM image 'filename'" },
pbrooke735b912007-06-30 13:53:24 +00001301 { "logfile", "s", do_logfile,
1302 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001303 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001304 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001305 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001306 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001307 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001308 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001309 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001310 "tag|id", "delete a VM snapshot from its tag or id" },
1311 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001312 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001313 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001314 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001315#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001316 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001317 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001318#endif
ths5fafdf22007-09-16 21:08:06 +00001319 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001320 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001321 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001322 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001323 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001324 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001325 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001326 "/fmt addr", "I/O port read" },
1327
ths5fafdf22007-09-16 21:08:06 +00001328 { "sendkey", "s", do_send_key,
bellarda3a91a32004-06-04 11:06:21 +00001329 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
ths5fafdf22007-09-16 21:08:06 +00001330 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001331 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001332 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001333 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001334 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001335 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001336 { "usb_add", "s", do_usb_add,
1337 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1338 { "usb_del", "s", do_usb_del,
1339 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001340 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001341 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001342 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001343 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001344 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001345 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001346 { "mouse_set", "i", do_mouse_set,
1347 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001348#ifdef HAS_AUDIO
1349 { "wavcapture", "si?i?i?", do_wav_capture,
1350 "path [frequency bits channels]",
1351 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1352#endif
1353 { "stopcapture", "i", do_stop_capture,
1354 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001355 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001356 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001357 { "pmemsave", "lis", do_physical_memory_save,
1358 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
ths5fafdf22007-09-16 21:08:06 +00001359 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001360};
1361
1362static term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001363 { "version", "", do_info_version,
1364 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001365 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001366 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001367 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001368 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001369 { "blockstats", "", do_info_blockstats,
1370 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001371 { "registers", "", do_info_registers,
1372 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001373 { "cpus", "", do_info_cpus,
1374 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001375 { "history", "", do_info_history,
1376 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001377 { "irq", "", irq_info,
1378 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001379 { "pic", "", pic_info,
1380 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001381 { "pci", "", pci_info,
1382 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001383#if defined(TARGET_I386)
1384 { "tlb", "", tlb_info,
1385 "", "show virtual to physical memory mappings", },
1386 { "mem", "", mem_info,
1387 "", "show the active virtual memory mappings", },
1388#endif
bellarde3db7222005-01-26 22:00:47 +00001389 { "jit", "", do_info_jit,
1390 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001391 { "kqemu", "", do_info_kqemu,
1392 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001393 { "usb", "", usb_info,
1394 "", "show guest USB devices", },
1395 { "usbhost", "", usb_host_info,
1396 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001397 { "profile", "", do_info_profile,
1398 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001399 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001400 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001401 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001402 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001403 { "pcmcia", "", pcmcia_info,
1404 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001405 { "mice", "", do_info_mice,
1406 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001407 { "vnc", "", do_info_vnc,
1408 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001409 { "name", "", do_info_name,
1410 "", "show the current VM name" },
j_mayer76a66252007-03-07 08:32:30 +00001411#if defined(TARGET_PPC)
1412 { "cpustats", "", do_info_cpu_stats,
1413 "", "show CPU statistics", },
1414#endif
blueswir131a60e22007-10-26 18:42:59 +00001415#if defined(CONFIG_SLIRP)
1416 { "slirp", "", do_info_slirp,
1417 "", "show SLIRP statistics", },
1418#endif
bellard9dc39cb2004-03-14 21:38:27 +00001419 { NULL, NULL, },
1420};
1421
bellard9307c4c2004-04-04 12:57:25 +00001422/*******************************************************************/
1423
1424static const char *pch;
1425static jmp_buf expr_env;
1426
bellard92a31b12005-02-10 22:00:52 +00001427#define MD_TLONG 0
1428#define MD_I32 1
1429
bellard9307c4c2004-04-04 12:57:25 +00001430typedef struct MonitorDef {
1431 const char *name;
1432 int offset;
bellard92a31b12005-02-10 22:00:52 +00001433 target_long (*get_value)(struct MonitorDef *md, int val);
1434 int type;
bellard9307c4c2004-04-04 12:57:25 +00001435} MonitorDef;
1436
bellard57206fd2004-04-25 18:54:52 +00001437#if defined(TARGET_I386)
bellard92a31b12005-02-10 22:00:52 +00001438static target_long monitor_get_pc (struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001439{
bellard6a00d602005-11-21 23:25:50 +00001440 CPUState *env = mon_get_cpu();
1441 if (!env)
1442 return 0;
1443 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001444}
1445#endif
1446
bellarda541f292004-04-12 20:39:29 +00001447#if defined(TARGET_PPC)
bellard92a31b12005-02-10 22:00:52 +00001448static target_long monitor_get_ccr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001449{
bellard6a00d602005-11-21 23:25:50 +00001450 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001451 unsigned int u;
1452 int i;
1453
bellard6a00d602005-11-21 23:25:50 +00001454 if (!env)
1455 return 0;
1456
bellarda541f292004-04-12 20:39:29 +00001457 u = 0;
1458 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001459 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001460
1461 return u;
1462}
1463
bellard92a31b12005-02-10 22:00:52 +00001464static target_long monitor_get_msr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001465{
bellard6a00d602005-11-21 23:25:50 +00001466 CPUState *env = mon_get_cpu();
1467 if (!env)
1468 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001469 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001470}
1471
bellard92a31b12005-02-10 22:00:52 +00001472static target_long monitor_get_xer (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001473{
bellard6a00d602005-11-21 23:25:50 +00001474 CPUState *env = mon_get_cpu();
1475 if (!env)
1476 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001477 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001478}
bellard9fddaa02004-05-21 12:59:32 +00001479
bellard92a31b12005-02-10 22:00:52 +00001480static target_long monitor_get_decr (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001481{
bellard6a00d602005-11-21 23:25:50 +00001482 CPUState *env = mon_get_cpu();
1483 if (!env)
1484 return 0;
1485 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001486}
1487
bellard92a31b12005-02-10 22:00:52 +00001488static target_long monitor_get_tbu (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001489{
bellard6a00d602005-11-21 23:25:50 +00001490 CPUState *env = mon_get_cpu();
1491 if (!env)
1492 return 0;
1493 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001494}
1495
bellard92a31b12005-02-10 22:00:52 +00001496static target_long monitor_get_tbl (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001497{
bellard6a00d602005-11-21 23:25:50 +00001498 CPUState *env = mon_get_cpu();
1499 if (!env)
1500 return 0;
1501 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001502}
bellarda541f292004-04-12 20:39:29 +00001503#endif
1504
bellarde95c8d52004-09-30 22:22:08 +00001505#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001506#ifndef TARGET_SPARC64
bellard92a31b12005-02-10 22:00:52 +00001507static target_long monitor_get_psr (struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001508{
bellard6a00d602005-11-21 23:25:50 +00001509 CPUState *env = mon_get_cpu();
1510 if (!env)
1511 return 0;
1512 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001513}
bellard7b936c02005-10-30 17:05:13 +00001514#endif
bellarde95c8d52004-09-30 22:22:08 +00001515
bellard92a31b12005-02-10 22:00:52 +00001516static target_long monitor_get_reg(struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001517{
bellard6a00d602005-11-21 23:25:50 +00001518 CPUState *env = mon_get_cpu();
1519 if (!env)
1520 return 0;
1521 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001522}
1523#endif
1524
bellard9307c4c2004-04-04 12:57:25 +00001525static MonitorDef monitor_defs[] = {
1526#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001527
1528#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001529 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001530 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001531 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001532
bellard9307c4c2004-04-04 12:57:25 +00001533 { "eax", offsetof(CPUState, regs[0]) },
1534 { "ecx", offsetof(CPUState, regs[1]) },
1535 { "edx", offsetof(CPUState, regs[2]) },
1536 { "ebx", offsetof(CPUState, regs[3]) },
1537 { "esp|sp", offsetof(CPUState, regs[4]) },
1538 { "ebp|fp", offsetof(CPUState, regs[5]) },
1539 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001540 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001541#ifdef TARGET_X86_64
1542 { "r8", offsetof(CPUState, regs[8]) },
1543 { "r9", offsetof(CPUState, regs[9]) },
1544 { "r10", offsetof(CPUState, regs[10]) },
1545 { "r11", offsetof(CPUState, regs[11]) },
1546 { "r12", offsetof(CPUState, regs[12]) },
1547 { "r13", offsetof(CPUState, regs[13]) },
1548 { "r14", offsetof(CPUState, regs[14]) },
1549 { "r15", offsetof(CPUState, regs[15]) },
1550#endif
bellard9307c4c2004-04-04 12:57:25 +00001551 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001552 { "eip", offsetof(CPUState, eip) },
1553 SEG("cs", R_CS)
1554 SEG("ds", R_DS)
1555 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001556 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001557 SEG("fs", R_FS)
1558 SEG("gs", R_GS)
1559 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001560#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001561 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001562 { "r0", offsetof(CPUState, gpr[0]) },
1563 { "r1", offsetof(CPUState, gpr[1]) },
1564 { "r2", offsetof(CPUState, gpr[2]) },
1565 { "r3", offsetof(CPUState, gpr[3]) },
1566 { "r4", offsetof(CPUState, gpr[4]) },
1567 { "r5", offsetof(CPUState, gpr[5]) },
1568 { "r6", offsetof(CPUState, gpr[6]) },
1569 { "r7", offsetof(CPUState, gpr[7]) },
1570 { "r8", offsetof(CPUState, gpr[8]) },
1571 { "r9", offsetof(CPUState, gpr[9]) },
1572 { "r10", offsetof(CPUState, gpr[10]) },
1573 { "r11", offsetof(CPUState, gpr[11]) },
1574 { "r12", offsetof(CPUState, gpr[12]) },
1575 { "r13", offsetof(CPUState, gpr[13]) },
1576 { "r14", offsetof(CPUState, gpr[14]) },
1577 { "r15", offsetof(CPUState, gpr[15]) },
1578 { "r16", offsetof(CPUState, gpr[16]) },
1579 { "r17", offsetof(CPUState, gpr[17]) },
1580 { "r18", offsetof(CPUState, gpr[18]) },
1581 { "r19", offsetof(CPUState, gpr[19]) },
1582 { "r20", offsetof(CPUState, gpr[20]) },
1583 { "r21", offsetof(CPUState, gpr[21]) },
1584 { "r22", offsetof(CPUState, gpr[22]) },
1585 { "r23", offsetof(CPUState, gpr[23]) },
1586 { "r24", offsetof(CPUState, gpr[24]) },
1587 { "r25", offsetof(CPUState, gpr[25]) },
1588 { "r26", offsetof(CPUState, gpr[26]) },
1589 { "r27", offsetof(CPUState, gpr[27]) },
1590 { "r28", offsetof(CPUState, gpr[28]) },
1591 { "r29", offsetof(CPUState, gpr[29]) },
1592 { "r30", offsetof(CPUState, gpr[30]) },
1593 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001594 /* Floating point registers */
1595 { "f0", offsetof(CPUState, fpr[0]) },
1596 { "f1", offsetof(CPUState, fpr[1]) },
1597 { "f2", offsetof(CPUState, fpr[2]) },
1598 { "f3", offsetof(CPUState, fpr[3]) },
1599 { "f4", offsetof(CPUState, fpr[4]) },
1600 { "f5", offsetof(CPUState, fpr[5]) },
1601 { "f6", offsetof(CPUState, fpr[6]) },
1602 { "f7", offsetof(CPUState, fpr[7]) },
1603 { "f8", offsetof(CPUState, fpr[8]) },
1604 { "f9", offsetof(CPUState, fpr[9]) },
1605 { "f10", offsetof(CPUState, fpr[10]) },
1606 { "f11", offsetof(CPUState, fpr[11]) },
1607 { "f12", offsetof(CPUState, fpr[12]) },
1608 { "f13", offsetof(CPUState, fpr[13]) },
1609 { "f14", offsetof(CPUState, fpr[14]) },
1610 { "f15", offsetof(CPUState, fpr[15]) },
1611 { "f16", offsetof(CPUState, fpr[16]) },
1612 { "f17", offsetof(CPUState, fpr[17]) },
1613 { "f18", offsetof(CPUState, fpr[18]) },
1614 { "f19", offsetof(CPUState, fpr[19]) },
1615 { "f20", offsetof(CPUState, fpr[20]) },
1616 { "f21", offsetof(CPUState, fpr[21]) },
1617 { "f22", offsetof(CPUState, fpr[22]) },
1618 { "f23", offsetof(CPUState, fpr[23]) },
1619 { "f24", offsetof(CPUState, fpr[24]) },
1620 { "f25", offsetof(CPUState, fpr[25]) },
1621 { "f26", offsetof(CPUState, fpr[26]) },
1622 { "f27", offsetof(CPUState, fpr[27]) },
1623 { "f28", offsetof(CPUState, fpr[28]) },
1624 { "f29", offsetof(CPUState, fpr[29]) },
1625 { "f30", offsetof(CPUState, fpr[30]) },
1626 { "f31", offsetof(CPUState, fpr[31]) },
1627 { "fpscr", offsetof(CPUState, fpscr) },
1628 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001629 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001630 { "lr", offsetof(CPUState, lr) },
1631 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001632 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001633 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001634 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001635 { "msr", 0, &monitor_get_msr, },
1636 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001637 { "tbu", 0, &monitor_get_tbu, },
1638 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001639#if defined(TARGET_PPC64)
1640 /* Address space register */
1641 { "asr", offsetof(CPUState, asr) },
1642#endif
1643 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001644 { "sdr1", offsetof(CPUState, sdr1) },
1645 { "sr0", offsetof(CPUState, sr[0]) },
1646 { "sr1", offsetof(CPUState, sr[1]) },
1647 { "sr2", offsetof(CPUState, sr[2]) },
1648 { "sr3", offsetof(CPUState, sr[3]) },
1649 { "sr4", offsetof(CPUState, sr[4]) },
1650 { "sr5", offsetof(CPUState, sr[5]) },
1651 { "sr6", offsetof(CPUState, sr[6]) },
1652 { "sr7", offsetof(CPUState, sr[7]) },
1653 { "sr8", offsetof(CPUState, sr[8]) },
1654 { "sr9", offsetof(CPUState, sr[9]) },
1655 { "sr10", offsetof(CPUState, sr[10]) },
1656 { "sr11", offsetof(CPUState, sr[11]) },
1657 { "sr12", offsetof(CPUState, sr[12]) },
1658 { "sr13", offsetof(CPUState, sr[13]) },
1659 { "sr14", offsetof(CPUState, sr[14]) },
1660 { "sr15", offsetof(CPUState, sr[15]) },
1661 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001662#elif defined(TARGET_SPARC)
1663 { "g0", offsetof(CPUState, gregs[0]) },
1664 { "g1", offsetof(CPUState, gregs[1]) },
1665 { "g2", offsetof(CPUState, gregs[2]) },
1666 { "g3", offsetof(CPUState, gregs[3]) },
1667 { "g4", offsetof(CPUState, gregs[4]) },
1668 { "g5", offsetof(CPUState, gregs[5]) },
1669 { "g6", offsetof(CPUState, gregs[6]) },
1670 { "g7", offsetof(CPUState, gregs[7]) },
1671 { "o0", 0, monitor_get_reg },
1672 { "o1", 1, monitor_get_reg },
1673 { "o2", 2, monitor_get_reg },
1674 { "o3", 3, monitor_get_reg },
1675 { "o4", 4, monitor_get_reg },
1676 { "o5", 5, monitor_get_reg },
1677 { "o6", 6, monitor_get_reg },
1678 { "o7", 7, monitor_get_reg },
1679 { "l0", 8, monitor_get_reg },
1680 { "l1", 9, monitor_get_reg },
1681 { "l2", 10, monitor_get_reg },
1682 { "l3", 11, monitor_get_reg },
1683 { "l4", 12, monitor_get_reg },
1684 { "l5", 13, monitor_get_reg },
1685 { "l6", 14, monitor_get_reg },
1686 { "l7", 15, monitor_get_reg },
1687 { "i0", 16, monitor_get_reg },
1688 { "i1", 17, monitor_get_reg },
1689 { "i2", 18, monitor_get_reg },
1690 { "i3", 19, monitor_get_reg },
1691 { "i4", 20, monitor_get_reg },
1692 { "i5", 21, monitor_get_reg },
1693 { "i6", 22, monitor_get_reg },
1694 { "i7", 23, monitor_get_reg },
1695 { "pc", offsetof(CPUState, pc) },
1696 { "npc", offsetof(CPUState, npc) },
1697 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001698#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001699 { "psr", 0, &monitor_get_psr, },
1700 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001701#endif
bellarde95c8d52004-09-30 22:22:08 +00001702 { "tbr", offsetof(CPUState, tbr) },
1703 { "fsr", offsetof(CPUState, fsr) },
1704 { "f0", offsetof(CPUState, fpr[0]) },
1705 { "f1", offsetof(CPUState, fpr[1]) },
1706 { "f2", offsetof(CPUState, fpr[2]) },
1707 { "f3", offsetof(CPUState, fpr[3]) },
1708 { "f4", offsetof(CPUState, fpr[4]) },
1709 { "f5", offsetof(CPUState, fpr[5]) },
1710 { "f6", offsetof(CPUState, fpr[6]) },
1711 { "f7", offsetof(CPUState, fpr[7]) },
1712 { "f8", offsetof(CPUState, fpr[8]) },
1713 { "f9", offsetof(CPUState, fpr[9]) },
1714 { "f10", offsetof(CPUState, fpr[10]) },
1715 { "f11", offsetof(CPUState, fpr[11]) },
1716 { "f12", offsetof(CPUState, fpr[12]) },
1717 { "f13", offsetof(CPUState, fpr[13]) },
1718 { "f14", offsetof(CPUState, fpr[14]) },
1719 { "f15", offsetof(CPUState, fpr[15]) },
1720 { "f16", offsetof(CPUState, fpr[16]) },
1721 { "f17", offsetof(CPUState, fpr[17]) },
1722 { "f18", offsetof(CPUState, fpr[18]) },
1723 { "f19", offsetof(CPUState, fpr[19]) },
1724 { "f20", offsetof(CPUState, fpr[20]) },
1725 { "f21", offsetof(CPUState, fpr[21]) },
1726 { "f22", offsetof(CPUState, fpr[22]) },
1727 { "f23", offsetof(CPUState, fpr[23]) },
1728 { "f24", offsetof(CPUState, fpr[24]) },
1729 { "f25", offsetof(CPUState, fpr[25]) },
1730 { "f26", offsetof(CPUState, fpr[26]) },
1731 { "f27", offsetof(CPUState, fpr[27]) },
1732 { "f28", offsetof(CPUState, fpr[28]) },
1733 { "f29", offsetof(CPUState, fpr[29]) },
1734 { "f30", offsetof(CPUState, fpr[30]) },
1735 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001736#ifdef TARGET_SPARC64
1737 { "f32", offsetof(CPUState, fpr[32]) },
1738 { "f34", offsetof(CPUState, fpr[34]) },
1739 { "f36", offsetof(CPUState, fpr[36]) },
1740 { "f38", offsetof(CPUState, fpr[38]) },
1741 { "f40", offsetof(CPUState, fpr[40]) },
1742 { "f42", offsetof(CPUState, fpr[42]) },
1743 { "f44", offsetof(CPUState, fpr[44]) },
1744 { "f46", offsetof(CPUState, fpr[46]) },
1745 { "f48", offsetof(CPUState, fpr[48]) },
1746 { "f50", offsetof(CPUState, fpr[50]) },
1747 { "f52", offsetof(CPUState, fpr[52]) },
1748 { "f54", offsetof(CPUState, fpr[54]) },
1749 { "f56", offsetof(CPUState, fpr[56]) },
1750 { "f58", offsetof(CPUState, fpr[58]) },
1751 { "f60", offsetof(CPUState, fpr[60]) },
1752 { "f62", offsetof(CPUState, fpr[62]) },
1753 { "asi", offsetof(CPUState, asi) },
1754 { "pstate", offsetof(CPUState, pstate) },
1755 { "cansave", offsetof(CPUState, cansave) },
1756 { "canrestore", offsetof(CPUState, canrestore) },
1757 { "otherwin", offsetof(CPUState, otherwin) },
1758 { "wstate", offsetof(CPUState, wstate) },
1759 { "cleanwin", offsetof(CPUState, cleanwin) },
1760 { "fprs", offsetof(CPUState, fprs) },
1761#endif
bellard9307c4c2004-04-04 12:57:25 +00001762#endif
1763 { NULL },
1764};
1765
ths5fafdf22007-09-16 21:08:06 +00001766static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001767{
bellard9307c4c2004-04-04 12:57:25 +00001768 term_printf(fmt);
1769 term_printf("\n");
1770 longjmp(expr_env, 1);
1771}
1772
bellard6a00d602005-11-21 23:25:50 +00001773/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001774static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001775{
1776 MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001777 void *ptr;
1778
bellard9307c4c2004-04-04 12:57:25 +00001779 for(md = monitor_defs; md->name != NULL; md++) {
1780 if (compare_cmd(name, md->name)) {
1781 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001782 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001783 } else {
bellard6a00d602005-11-21 23:25:50 +00001784 CPUState *env = mon_get_cpu();
1785 if (!env)
1786 return -2;
1787 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001788 switch(md->type) {
1789 case MD_I32:
1790 *pval = *(int32_t *)ptr;
1791 break;
1792 case MD_TLONG:
1793 *pval = *(target_long *)ptr;
1794 break;
1795 default:
1796 *pval = 0;
1797 break;
1798 }
bellard9307c4c2004-04-04 12:57:25 +00001799 }
1800 return 0;
1801 }
1802 }
1803 return -1;
1804}
1805
1806static void next(void)
1807{
1808 if (pch != '\0') {
1809 pch++;
1810 while (isspace(*pch))
1811 pch++;
1812 }
1813}
1814
blueswir1c2efc952007-09-25 17:28:42 +00001815static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001816
blueswir1c2efc952007-09-25 17:28:42 +00001817static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001818{
blueswir1c2efc952007-09-25 17:28:42 +00001819 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001820 char *p;
bellard6a00d602005-11-21 23:25:50 +00001821 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001822
1823 switch(*pch) {
1824 case '+':
1825 next();
1826 n = expr_unary();
1827 break;
1828 case '-':
1829 next();
1830 n = -expr_unary();
1831 break;
1832 case '~':
1833 next();
1834 n = ~expr_unary();
1835 break;
1836 case '(':
1837 next();
1838 n = expr_sum();
1839 if (*pch != ')') {
1840 expr_error("')' expected");
1841 }
1842 next();
1843 break;
bellard81d09122004-07-14 17:21:37 +00001844 case '\'':
1845 pch++;
1846 if (*pch == '\0')
1847 expr_error("character constant expected");
1848 n = *pch;
1849 pch++;
1850 if (*pch != '\'')
1851 expr_error("missing terminating \' character");
1852 next();
1853 break;
bellard9307c4c2004-04-04 12:57:25 +00001854 case '$':
1855 {
1856 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001857 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001858
bellard9307c4c2004-04-04 12:57:25 +00001859 pch++;
1860 q = buf;
1861 while ((*pch >= 'a' && *pch <= 'z') ||
1862 (*pch >= 'A' && *pch <= 'Z') ||
1863 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001864 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001865 if ((q - buf) < sizeof(buf) - 1)
1866 *q++ = *pch;
1867 pch++;
1868 }
1869 while (isspace(*pch))
1870 pch++;
1871 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001872 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001873 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001874 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001875 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001876 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001877 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001878 }
1879 break;
1880 case '\0':
1881 expr_error("unexpected end of expression");
1882 n = 0;
1883 break;
1884 default:
blueswir17743e582007-09-24 18:39:04 +00001885#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001886 n = strtoull(pch, &p, 0);
1887#else
bellard9307c4c2004-04-04 12:57:25 +00001888 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001889#endif
bellard9307c4c2004-04-04 12:57:25 +00001890 if (pch == p) {
1891 expr_error("invalid char in expression");
1892 }
1893 pch = p;
1894 while (isspace(*pch))
1895 pch++;
1896 break;
1897 }
1898 return n;
1899}
1900
1901
blueswir1c2efc952007-09-25 17:28:42 +00001902static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00001903{
blueswir1c2efc952007-09-25 17:28:42 +00001904 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001905 int op;
ths3b46e622007-09-17 08:09:54 +00001906
bellard9307c4c2004-04-04 12:57:25 +00001907 val = expr_unary();
1908 for(;;) {
1909 op = *pch;
1910 if (op != '*' && op != '/' && op != '%')
1911 break;
1912 next();
1913 val2 = expr_unary();
1914 switch(op) {
1915 default:
1916 case '*':
1917 val *= val2;
1918 break;
1919 case '/':
1920 case '%':
ths5fafdf22007-09-16 21:08:06 +00001921 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00001922 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00001923 if (op == '/')
1924 val /= val2;
1925 else
1926 val %= val2;
1927 break;
1928 }
1929 }
1930 return val;
1931}
1932
blueswir1c2efc952007-09-25 17:28:42 +00001933static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00001934{
blueswir1c2efc952007-09-25 17:28:42 +00001935 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001936 int op;
bellard9307c4c2004-04-04 12:57:25 +00001937
1938 val = expr_prod();
1939 for(;;) {
1940 op = *pch;
1941 if (op != '&' && op != '|' && op != '^')
1942 break;
1943 next();
1944 val2 = expr_prod();
1945 switch(op) {
1946 default:
1947 case '&':
1948 val &= val2;
1949 break;
1950 case '|':
1951 val |= val2;
1952 break;
1953 case '^':
1954 val ^= val2;
1955 break;
1956 }
1957 }
1958 return val;
1959}
1960
blueswir1c2efc952007-09-25 17:28:42 +00001961static int64_t expr_sum(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_logic();
1967 for(;;) {
1968 op = *pch;
1969 if (op != '+' && op != '-')
1970 break;
1971 next();
1972 val2 = expr_logic();
1973 if (op == '+')
1974 val += val2;
1975 else
1976 val -= val2;
1977 }
1978 return val;
1979}
1980
blueswir1c2efc952007-09-25 17:28:42 +00001981static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00001982{
1983 pch = *pp;
1984 if (setjmp(expr_env)) {
1985 *pp = pch;
1986 return -1;
1987 }
1988 while (isspace(*pch))
1989 pch++;
1990 *pval = expr_sum();
1991 *pp = pch;
1992 return 0;
1993}
1994
1995static int get_str(char *buf, int buf_size, const char **pp)
1996{
1997 const char *p;
1998 char *q;
1999 int c;
2000
bellard81d09122004-07-14 17:21:37 +00002001 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002002 p = *pp;
2003 while (isspace(*p))
2004 p++;
2005 if (*p == '\0') {
2006 fail:
bellard81d09122004-07-14 17:21:37 +00002007 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002008 *pp = p;
2009 return -1;
2010 }
bellard9307c4c2004-04-04 12:57:25 +00002011 if (*p == '\"') {
2012 p++;
2013 while (*p != '\0' && *p != '\"') {
2014 if (*p == '\\') {
2015 p++;
2016 c = *p++;
2017 switch(c) {
2018 case 'n':
2019 c = '\n';
2020 break;
2021 case 'r':
2022 c = '\r';
2023 break;
2024 case '\\':
2025 case '\'':
2026 case '\"':
2027 break;
2028 default:
2029 qemu_printf("unsupported escape code: '\\%c'\n", c);
2030 goto fail;
2031 }
2032 if ((q - buf) < buf_size - 1) {
2033 *q++ = c;
2034 }
2035 } else {
2036 if ((q - buf) < buf_size - 1) {
2037 *q++ = *p;
2038 }
2039 p++;
2040 }
2041 }
2042 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002043 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002044 goto fail;
2045 }
2046 p++;
2047 } else {
2048 while (*p != '\0' && !isspace(*p)) {
2049 if ((q - buf) < buf_size - 1) {
2050 *q++ = *p;
2051 }
2052 p++;
2053 }
bellard9307c4c2004-04-04 12:57:25 +00002054 }
bellard81d09122004-07-14 17:21:37 +00002055 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002056 *pp = p;
2057 return 0;
2058}
2059
2060static int default_fmt_format = 'x';
2061static int default_fmt_size = 4;
2062
2063#define MAX_ARGS 16
2064
bellard7e2515e2004-08-01 21:52:19 +00002065static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002066{
2067 const char *p, *pstart, *typestr;
2068 char *q;
2069 int c, nb_args, len, i, has_arg;
bellard9dc39cb2004-03-14 21:38:27 +00002070 term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002071 char cmdname[256];
2072 char buf[1024];
2073 void *str_allocated[MAX_ARGS];
2074 void *args[MAX_ARGS];
bellard9dc39cb2004-03-14 21:38:27 +00002075
2076#ifdef DEBUG
2077 term_printf("command='%s'\n", cmdline);
2078#endif
ths3b46e622007-09-17 08:09:54 +00002079
bellard9307c4c2004-04-04 12:57:25 +00002080 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002081 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002082 q = cmdname;
2083 while (isspace(*p))
2084 p++;
2085 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002086 return;
bellard9307c4c2004-04-04 12:57:25 +00002087 pstart = p;
2088 while (*p != '\0' && *p != '/' && !isspace(*p))
2089 p++;
2090 len = p - pstart;
2091 if (len > sizeof(cmdname) - 1)
2092 len = sizeof(cmdname) - 1;
2093 memcpy(cmdname, pstart, len);
2094 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002095
bellard9307c4c2004-04-04 12:57:25 +00002096 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002097 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002098 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002099 goto found;
2100 }
bellard9307c4c2004-04-04 12:57:25 +00002101 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002102 return;
2103 found:
bellard9307c4c2004-04-04 12:57:25 +00002104
2105 for(i = 0; i < MAX_ARGS; i++)
2106 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002107
bellard9307c4c2004-04-04 12:57:25 +00002108 /* parse the parameters */
2109 typestr = cmd->args_type;
2110 nb_args = 0;
2111 for(;;) {
2112 c = *typestr;
2113 if (c == '\0')
2114 break;
2115 typestr++;
2116 switch(c) {
2117 case 'F':
bellard81d09122004-07-14 17:21:37 +00002118 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002119 case 's':
2120 {
2121 int ret;
2122 char *str;
ths3b46e622007-09-17 08:09:54 +00002123
ths5fafdf22007-09-16 21:08:06 +00002124 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002125 p++;
2126 if (*typestr == '?') {
2127 typestr++;
2128 if (*p == '\0') {
2129 /* no optional string: NULL argument */
2130 str = NULL;
2131 goto add_str;
2132 }
2133 }
2134 ret = get_str(buf, sizeof(buf), &p);
2135 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002136 switch(c) {
2137 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002138 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002139 break;
2140 case 'B':
2141 term_printf("%s: block device name expected\n", cmdname);
2142 break;
2143 default:
bellard9307c4c2004-04-04 12:57:25 +00002144 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002145 break;
2146 }
bellard9307c4c2004-04-04 12:57:25 +00002147 goto fail;
2148 }
2149 str = qemu_malloc(strlen(buf) + 1);
2150 strcpy(str, buf);
2151 str_allocated[nb_args] = str;
2152 add_str:
2153 if (nb_args >= MAX_ARGS) {
2154 error_args:
2155 term_printf("%s: too many arguments\n", cmdname);
2156 goto fail;
2157 }
2158 args[nb_args++] = str;
2159 }
2160 break;
2161 case '/':
2162 {
2163 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002164
bellard9307c4c2004-04-04 12:57:25 +00002165 while (isspace(*p))
2166 p++;
2167 if (*p == '/') {
2168 /* format found */
2169 p++;
2170 count = 1;
2171 if (isdigit(*p)) {
2172 count = 0;
2173 while (isdigit(*p)) {
2174 count = count * 10 + (*p - '0');
2175 p++;
2176 }
2177 }
2178 size = -1;
2179 format = -1;
2180 for(;;) {
2181 switch(*p) {
2182 case 'o':
2183 case 'd':
2184 case 'u':
2185 case 'x':
2186 case 'i':
2187 case 'c':
2188 format = *p++;
2189 break;
2190 case 'b':
2191 size = 1;
2192 p++;
2193 break;
2194 case 'h':
2195 size = 2;
2196 p++;
2197 break;
2198 case 'w':
2199 size = 4;
2200 p++;
2201 break;
2202 case 'g':
2203 case 'L':
2204 size = 8;
2205 p++;
2206 break;
2207 default:
2208 goto next;
2209 }
2210 }
2211 next:
2212 if (*p != '\0' && !isspace(*p)) {
2213 term_printf("invalid char in format: '%c'\n", *p);
2214 goto fail;
2215 }
bellard9307c4c2004-04-04 12:57:25 +00002216 if (format < 0)
2217 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002218 if (format != 'i') {
2219 /* for 'i', not specifying a size gives -1 as size */
2220 if (size < 0)
2221 size = default_fmt_size;
2222 }
bellard9307c4c2004-04-04 12:57:25 +00002223 default_fmt_size = size;
2224 default_fmt_format = format;
2225 } else {
2226 count = 1;
2227 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002228 if (format != 'i') {
2229 size = default_fmt_size;
2230 } else {
2231 size = -1;
2232 }
bellard9307c4c2004-04-04 12:57:25 +00002233 }
2234 if (nb_args + 3 > MAX_ARGS)
2235 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002236 args[nb_args++] = (void*)(long)count;
2237 args[nb_args++] = (void*)(long)format;
2238 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002239 }
2240 break;
2241 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002242 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002243 {
blueswir1c2efc952007-09-25 17:28:42 +00002244 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002245
ths5fafdf22007-09-16 21:08:06 +00002246 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002247 p++;
bellard34405572004-06-08 00:55:58 +00002248 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002249 if (*typestr == '?') {
2250 if (*p == '\0')
2251 has_arg = 0;
2252 else
2253 has_arg = 1;
2254 } else {
2255 if (*p == '.') {
2256 p++;
ths5fafdf22007-09-16 21:08:06 +00002257 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002258 p++;
2259 has_arg = 1;
2260 } else {
2261 has_arg = 0;
2262 }
2263 }
bellard13224a82006-07-14 22:03:35 +00002264 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002265 if (nb_args >= MAX_ARGS)
2266 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002267 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002268 if (!has_arg) {
2269 if (nb_args >= MAX_ARGS)
2270 goto error_args;
2271 val = -1;
2272 goto add_num;
2273 }
2274 }
2275 if (get_expr(&val, &p))
2276 goto fail;
2277 add_num:
bellard92a31b12005-02-10 22:00:52 +00002278 if (c == 'i') {
2279 if (nb_args >= MAX_ARGS)
2280 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002281 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002282 } else {
2283 if ((nb_args + 1) >= MAX_ARGS)
2284 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002285#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002286 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002287#else
2288 args[nb_args++] = (void *)0;
2289#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002290 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002291 }
bellard9307c4c2004-04-04 12:57:25 +00002292 }
2293 break;
2294 case '-':
2295 {
2296 int has_option;
2297 /* option */
ths3b46e622007-09-17 08:09:54 +00002298
bellard9307c4c2004-04-04 12:57:25 +00002299 c = *typestr++;
2300 if (c == '\0')
2301 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002302 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002303 p++;
2304 has_option = 0;
2305 if (*p == '-') {
2306 p++;
2307 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002308 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002309 cmdname, *p);
2310 goto fail;
2311 }
2312 p++;
2313 has_option = 1;
2314 }
2315 if (nb_args >= MAX_ARGS)
2316 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002317 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002318 }
2319 break;
2320 default:
2321 bad_type:
2322 term_printf("%s: unknown type '%c'\n", cmdname, c);
2323 goto fail;
2324 }
2325 }
2326 /* check that all arguments were parsed */
2327 while (isspace(*p))
2328 p++;
2329 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002330 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002331 cmdname);
2332 goto fail;
2333 }
2334
2335 switch(nb_args) {
2336 case 0:
2337 cmd->handler();
2338 break;
2339 case 1:
2340 cmd->handler(args[0]);
2341 break;
2342 case 2:
2343 cmd->handler(args[0], args[1]);
2344 break;
2345 case 3:
2346 cmd->handler(args[0], args[1], args[2]);
2347 break;
2348 case 4:
2349 cmd->handler(args[0], args[1], args[2], args[3]);
2350 break;
2351 case 5:
2352 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2353 break;
bellard34405572004-06-08 00:55:58 +00002354 case 6:
2355 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2356 break;
bellardec36b692006-07-16 18:57:03 +00002357 case 7:
2358 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2359 break;
bellard9307c4c2004-04-04 12:57:25 +00002360 default:
2361 term_printf("unsupported number of arguments: %d\n", nb_args);
2362 goto fail;
2363 }
2364 fail:
2365 for(i = 0; i < MAX_ARGS; i++)
2366 qemu_free(str_allocated[i]);
2367 return;
bellard9dc39cb2004-03-14 21:38:27 +00002368}
2369
bellard81d09122004-07-14 17:21:37 +00002370static void cmd_completion(const char *name, const char *list)
2371{
2372 const char *p, *pstart;
2373 char cmd[128];
2374 int len;
2375
2376 p = list;
2377 for(;;) {
2378 pstart = p;
2379 p = strchr(p, '|');
2380 if (!p)
2381 p = pstart + strlen(pstart);
2382 len = p - pstart;
2383 if (len > sizeof(cmd) - 2)
2384 len = sizeof(cmd) - 2;
2385 memcpy(cmd, pstart, len);
2386 cmd[len] = '\0';
2387 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2388 add_completion(cmd);
2389 }
2390 if (*p == '\0')
2391 break;
2392 p++;
2393 }
2394}
2395
2396static void file_completion(const char *input)
2397{
2398 DIR *ffs;
2399 struct dirent *d;
2400 char path[1024];
2401 char file[1024], file_prefix[1024];
2402 int input_path_len;
2403 const char *p;
2404
ths5fafdf22007-09-16 21:08:06 +00002405 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002406 if (!p) {
2407 input_path_len = 0;
2408 pstrcpy(file_prefix, sizeof(file_prefix), input);
2409 strcpy(path, ".");
2410 } else {
2411 input_path_len = p - input + 1;
2412 memcpy(path, input, input_path_len);
2413 if (input_path_len > sizeof(path) - 1)
2414 input_path_len = sizeof(path) - 1;
2415 path[input_path_len] = '\0';
2416 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2417 }
2418#ifdef DEBUG_COMPLETION
2419 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2420#endif
2421 ffs = opendir(path);
2422 if (!ffs)
2423 return;
2424 for(;;) {
2425 struct stat sb;
2426 d = readdir(ffs);
2427 if (!d)
2428 break;
2429 if (strstart(d->d_name, file_prefix, NULL)) {
2430 memcpy(file, input, input_path_len);
2431 strcpy(file + input_path_len, d->d_name);
2432 /* stat the file to find out if it's a directory.
2433 * In that case add a slash to speed up typing long paths
2434 */
2435 stat(file, &sb);
2436 if(S_ISDIR(sb.st_mode))
2437 strcat(file, "/");
2438 add_completion(file);
2439 }
2440 }
2441 closedir(ffs);
2442}
2443
2444static void block_completion_it(void *opaque, const char *name)
2445{
2446 const char *input = opaque;
2447
2448 if (input[0] == '\0' ||
2449 !strncmp(name, (char *)input, strlen(input))) {
2450 add_completion(name);
2451 }
2452}
2453
2454/* NOTE: this parser is an approximate form of the real command parser */
2455static void parse_cmdline(const char *cmdline,
2456 int *pnb_args, char **args)
2457{
2458 const char *p;
2459 int nb_args, ret;
2460 char buf[1024];
2461
2462 p = cmdline;
2463 nb_args = 0;
2464 for(;;) {
2465 while (isspace(*p))
2466 p++;
2467 if (*p == '\0')
2468 break;
2469 if (nb_args >= MAX_ARGS)
2470 break;
2471 ret = get_str(buf, sizeof(buf), &p);
2472 args[nb_args] = qemu_strdup(buf);
2473 nb_args++;
2474 if (ret < 0)
2475 break;
2476 }
2477 *pnb_args = nb_args;
2478}
2479
bellard7e2515e2004-08-01 21:52:19 +00002480void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002481{
2482 const char *cmdname;
2483 char *args[MAX_ARGS];
2484 int nb_args, i, len;
2485 const char *ptype, *str;
2486 term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002487 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002488
2489 parse_cmdline(cmdline, &nb_args, args);
2490#ifdef DEBUG_COMPLETION
2491 for(i = 0; i < nb_args; i++) {
2492 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2493 }
2494#endif
2495
2496 /* if the line ends with a space, it means we want to complete the
2497 next arg */
2498 len = strlen(cmdline);
2499 if (len > 0 && isspace(cmdline[len - 1])) {
2500 if (nb_args >= MAX_ARGS)
2501 return;
2502 args[nb_args++] = qemu_strdup("");
2503 }
2504 if (nb_args <= 1) {
2505 /* command completion */
2506 if (nb_args == 0)
2507 cmdname = "";
2508 else
2509 cmdname = args[0];
2510 completion_index = strlen(cmdname);
2511 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2512 cmd_completion(cmdname, cmd->name);
2513 }
2514 } else {
2515 /* find the command */
2516 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2517 if (compare_cmd(args[0], cmd->name))
2518 goto found;
2519 }
2520 return;
2521 found:
2522 ptype = cmd->args_type;
2523 for(i = 0; i < nb_args - 2; i++) {
2524 if (*ptype != '\0') {
2525 ptype++;
2526 while (*ptype == '?')
2527 ptype++;
2528 }
2529 }
2530 str = args[nb_args - 1];
2531 switch(*ptype) {
2532 case 'F':
2533 /* file completion */
2534 completion_index = strlen(str);
2535 file_completion(str);
2536 break;
2537 case 'B':
2538 /* block device name completion */
2539 completion_index = strlen(str);
2540 bdrv_iterate(block_completion_it, (void *)str);
2541 break;
bellard7fe48482004-10-09 18:08:01 +00002542 case 's':
2543 /* XXX: more generic ? */
2544 if (!strcmp(cmd->name, "info")) {
2545 completion_index = strlen(str);
2546 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2547 cmd_completion(str, cmd->name);
2548 }
bellard64866c32006-05-07 18:03:31 +00002549 } else if (!strcmp(cmd->name, "sendkey")) {
2550 completion_index = strlen(str);
2551 for(key = key_defs; key->name != NULL; key++) {
2552 cmd_completion(str, key->name);
2553 }
bellard7fe48482004-10-09 18:08:01 +00002554 }
2555 break;
bellard81d09122004-07-14 17:21:37 +00002556 default:
2557 break;
2558 }
2559 }
2560 for(i = 0; i < nb_args; i++)
2561 qemu_free(args[i]);
2562}
2563
bellard9dc39cb2004-03-14 21:38:27 +00002564static int term_can_read(void *opaque)
2565{
bellard81d09122004-07-14 17:21:37 +00002566 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002567}
2568
2569static void term_read(void *opaque, const uint8_t *buf, int size)
2570{
2571 int i;
2572 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002573 readline_handle_byte(buf[i]);
2574}
2575
2576static void monitor_start_input(void);
2577
2578static void monitor_handle_command1(void *opaque, const char *cmdline)
2579{
2580 monitor_handle_command(cmdline);
2581 monitor_start_input();
2582}
2583
2584static void monitor_start_input(void)
2585{
2586 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002587}
2588
ths86e94de2007-01-05 22:01:59 +00002589static void term_event(void *opaque, int event)
2590{
2591 if (event != CHR_EVENT_RESET)
2592 return;
2593
2594 if (!hide_banner)
2595 term_printf("QEMU %s monitor - type 'help' for more information\n",
2596 QEMU_VERSION);
2597 monitor_start_input();
2598}
2599
ths20d8a3e2007-02-18 17:04:49 +00002600static int is_first_init = 1;
2601
bellard81d09122004-07-14 17:21:37 +00002602void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002603{
ths20d8a3e2007-02-18 17:04:49 +00002604 int i;
2605
2606 if (is_first_init) {
2607 for (i = 0; i < MAX_MON; i++) {
2608 monitor_hd[i] = NULL;
2609 }
2610 is_first_init = 0;
2611 }
2612 for (i = 0; i < MAX_MON; i++) {
2613 if (monitor_hd[i] == NULL) {
2614 monitor_hd[i] = hd;
2615 break;
2616 }
2617 }
2618
ths86e94de2007-01-05 22:01:59 +00002619 hide_banner = !show_banner;
2620
pbrooke5b0bc42007-01-27 23:46:43 +00002621 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
blueswir1ad8efe42007-11-30 16:45:21 +00002622
2623 readline_start("", 0, monitor_handle_command1, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002624}
2625
2626/* XXX: use threads ? */
2627/* modal monitor readline */
2628static int monitor_readline_started;
2629static char *monitor_readline_buf;
2630static int monitor_readline_buf_size;
2631
2632static void monitor_readline_cb(void *opaque, const char *input)
2633{
2634 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2635 monitor_readline_started = 0;
2636}
2637
2638void monitor_readline(const char *prompt, int is_password,
2639 char *buf, int buf_size)
2640{
ths20d8a3e2007-02-18 17:04:49 +00002641 int i;
2642
bellard7e2515e2004-08-01 21:52:19 +00002643 if (is_password) {
ths20d8a3e2007-02-18 17:04:49 +00002644 for (i = 0; i < MAX_MON; i++)
2645 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
2646 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
bellard7e2515e2004-08-01 21:52:19 +00002647 }
2648 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2649 monitor_readline_buf = buf;
2650 monitor_readline_buf_size = buf_size;
2651 monitor_readline_started = 1;
2652 while (monitor_readline_started) {
2653 main_loop_wait(10);
2654 }
bellard9dc39cb2004-03-14 21:38:27 +00002655}