blob: 038b2f9e4f426e2adab5c4a60bd1dcdd2cfeaaad [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>
balrogc8256f92008-06-08 22:45:01 +000038#include "qemu-timer.h"
ths6a5bd302007-12-03 17:05:38 +000039
bellard9dc39cb2004-03-14 21:38:27 +000040//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000041//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000042
bellard9307c4c2004-04-04 12:57:25 +000043/*
44 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000045 *
bellard9307c4c2004-04-04 12:57:25 +000046 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000047 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000048 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000049 * 'i' 32 bit integer
50 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000051 * '/' optional gdb-like print format (like "/10x")
52 *
53 * '?' optional type (for 'F', 's' and 'i')
54 *
55 */
56
bellard9dc39cb2004-03-14 21:38:27 +000057typedef struct term_cmd_t {
58 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000059 const char *args_type;
blueswir1a5f1b962008-08-17 20:21:51 +000060 void *handler;
bellard9dc39cb2004-03-14 21:38:27 +000061 const char *params;
62 const char *help;
63} term_cmd_t;
64
ths20d8a3e2007-02-18 17:04:49 +000065#define MAX_MON 4
66static CharDriverState *monitor_hd[MAX_MON];
ths86e94de2007-01-05 22:01:59 +000067static int hide_banner;
bellard7e2515e2004-08-01 21:52:19 +000068
blueswir18662d652008-10-02 18:32:44 +000069static const term_cmd_t term_cmds[];
70static const term_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +000071
ths60fe76f2007-12-16 03:02:09 +000072static uint8_t term_outbuf[1024];
bellard7e2515e2004-08-01 21:52:19 +000073static int term_outbuf_index;
bellard81d09122004-07-14 17:21:37 +000074
aliguori83ab7952008-08-19 14:44:22 +000075static void monitor_start_input(void);
76
bellard6a00d602005-11-21 23:25:50 +000077CPUState *mon_cpu = NULL;
78
bellard9dc39cb2004-03-14 21:38:27 +000079void term_flush(void)
80{
ths20d8a3e2007-02-18 17:04:49 +000081 int i;
bellard7e2515e2004-08-01 21:52:19 +000082 if (term_outbuf_index > 0) {
ths20d8a3e2007-02-18 17:04:49 +000083 for (i = 0; i < MAX_MON; i++)
84 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
85 qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index);
bellard7e2515e2004-08-01 21:52:19 +000086 term_outbuf_index = 0;
87 }
88}
89
90/* flush at every end of line or if the buffer is full */
91void term_puts(const char *str)
92{
ths60fe76f2007-12-16 03:02:09 +000093 char c;
bellard7e2515e2004-08-01 21:52:19 +000094 for(;;) {
95 c = *str++;
96 if (c == '\0')
97 break;
bellard7ba12602006-07-14 20:26:42 +000098 if (c == '\n')
99 term_outbuf[term_outbuf_index++] = '\r';
bellard7e2515e2004-08-01 21:52:19 +0000100 term_outbuf[term_outbuf_index++] = c;
bellard7ba12602006-07-14 20:26:42 +0000101 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
bellard7e2515e2004-08-01 21:52:19 +0000102 c == '\n')
103 term_flush();
104 }
105}
106
107void term_vprintf(const char *fmt, va_list ap)
108{
109 char buf[4096];
110 vsnprintf(buf, sizeof(buf), fmt, ap);
111 term_puts(buf);
112}
113
114void term_printf(const char *fmt, ...)
115{
116 va_list ap;
117 va_start(ap, fmt);
118 term_vprintf(fmt, ap);
119 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000120}
121
thsfef30742006-12-22 14:11:32 +0000122void term_print_filename(const char *filename)
123{
124 int i;
125
126 for (i = 0; filename[i]; i++) {
127 switch (filename[i]) {
128 case ' ':
129 case '"':
130 case '\\':
131 term_printf("\\%c", filename[i]);
132 break;
133 case '\t':
134 term_printf("\\t");
135 break;
136 case '\r':
137 term_printf("\\r");
138 break;
139 case '\n':
140 term_printf("\\n");
141 break;
142 default:
143 term_printf("%c", filename[i]);
144 break;
145 }
146 }
147}
148
bellard7fe48482004-10-09 18:08:01 +0000149static int monitor_fprintf(FILE *stream, const char *fmt, ...)
150{
151 va_list ap;
152 va_start(ap, fmt);
153 term_vprintf(fmt, ap);
154 va_end(ap);
155 return 0;
156}
157
bellard9dc39cb2004-03-14 21:38:27 +0000158static int compare_cmd(const char *name, const char *list)
159{
160 const char *p, *pstart;
161 int len;
162 len = strlen(name);
163 p = list;
164 for(;;) {
165 pstart = p;
166 p = strchr(p, '|');
167 if (!p)
168 p = pstart + strlen(pstart);
169 if ((p - pstart) == len && !memcmp(pstart, name, len))
170 return 1;
171 if (*p == '\0')
172 break;
173 p++;
174 }
175 return 0;
176}
177
blueswir18662d652008-10-02 18:32:44 +0000178static void help_cmd1(const term_cmd_t *cmds, const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000179{
blueswir18662d652008-10-02 18:32:44 +0000180 const term_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000181
182 for(cmd = cmds; cmd->name != NULL; cmd++) {
183 if (!name || !strcmp(name, cmd->name))
184 term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
185 }
186}
187
188static void help_cmd(const char *name)
189{
190 if (name && !strcmp(name, "info")) {
191 help_cmd1(info_cmds, "info ", NULL);
192 } else {
193 help_cmd1(term_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000194 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000195 const CPULogItem *item;
bellardf193c792004-03-21 17:06:25 +0000196 term_printf("Log items (comma separated):\n");
197 term_printf("%-10s %s\n", "none", "remove all logs");
198 for(item = cpu_log_items; item->mask != 0; item++) {
199 term_printf("%-10s %s\n", item->name, item->help);
200 }
201 }
bellard9dc39cb2004-03-14 21:38:27 +0000202 }
203}
204
bellard9307c4c2004-04-04 12:57:25 +0000205static void do_help(const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000206{
bellard9307c4c2004-04-04 12:57:25 +0000207 help_cmd(name);
bellard9dc39cb2004-03-14 21:38:27 +0000208}
209
bellard7954c732006-08-01 15:52:40 +0000210static void do_commit(const char *device)
bellard9dc39cb2004-03-14 21:38:27 +0000211{
bellard7954c732006-08-01 15:52:40 +0000212 int i, all_devices;
balrog2dc7b602007-05-24 18:53:22 +0000213
bellard7954c732006-08-01 15:52:40 +0000214 all_devices = !strcmp(device, "all");
thse4bcb142007-12-02 04:51:10 +0000215 for (i = 0; i < nb_drives; i++) {
ths5fafdf22007-09-16 21:08:06 +0000216 if (all_devices ||
thse4bcb142007-12-02 04:51:10 +0000217 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
218 bdrv_commit(drives_table[i].bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000219 }
220}
221
bellard9307c4c2004-04-04 12:57:25 +0000222static void do_info(const char *item)
bellard9dc39cb2004-03-14 21:38:27 +0000223{
blueswir18662d652008-10-02 18:32:44 +0000224 const term_cmd_t *cmd;
blueswir1a5f1b962008-08-17 20:21:51 +0000225 void (*handler)(void);
bellard9dc39cb2004-03-14 21:38:27 +0000226
bellard9307c4c2004-04-04 12:57:25 +0000227 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000228 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000229 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000230 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000231 goto found;
232 }
233 help:
bellard9307c4c2004-04-04 12:57:25 +0000234 help_cmd("info");
bellard9dc39cb2004-03-14 21:38:27 +0000235 return;
236 found:
blueswir1a5f1b962008-08-17 20:21:51 +0000237 handler = cmd->handler;
238 handler();
bellard9dc39cb2004-03-14 21:38:27 +0000239}
240
bellard9bc9d1c2004-10-10 15:15:51 +0000241static void do_info_version(void)
242{
243 term_printf("%s\n", QEMU_VERSION);
244}
245
thsc35734b2007-03-19 15:17:08 +0000246static void do_info_name(void)
247{
248 if (qemu_name)
249 term_printf("%s\n", qemu_name);
250}
251
blueswir1f1f23ad2008-09-18 18:30:20 +0000252static void do_info_uuid(void)
253{
254 term_printf(UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1], qemu_uuid[2],
255 qemu_uuid[3], qemu_uuid[4], qemu_uuid[5], qemu_uuid[6],
256 qemu_uuid[7], qemu_uuid[8], qemu_uuid[9], qemu_uuid[10],
257 qemu_uuid[11], qemu_uuid[12], qemu_uuid[13], qemu_uuid[14],
258 qemu_uuid[15]);
259}
260
bellard9307c4c2004-04-04 12:57:25 +0000261static void do_info_block(void)
bellard9dc39cb2004-03-14 21:38:27 +0000262{
263 bdrv_info();
264}
265
thsa36e69d2007-12-02 05:18:19 +0000266static void do_info_blockstats(void)
267{
268 bdrv_info_stats();
269}
270
bellard6a00d602005-11-21 23:25:50 +0000271/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000272static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000273{
274 CPUState *env;
275
276 for(env = first_cpu; env != NULL; env = env->next_cpu) {
277 if (env->cpu_index == cpu_index) {
278 mon_cpu = env;
279 return 0;
280 }
281 }
282 return -1;
283}
284
pbrook9596ebb2007-11-18 01:44:38 +0000285static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000286{
287 if (!mon_cpu) {
288 mon_set_cpu(0);
289 }
290 return mon_cpu;
291}
292
bellard9307c4c2004-04-04 12:57:25 +0000293static void do_info_registers(void)
294{
bellard6a00d602005-11-21 23:25:50 +0000295 CPUState *env;
296 env = mon_get_cpu();
297 if (!env)
298 return;
bellard9307c4c2004-04-04 12:57:25 +0000299#ifdef TARGET_I386
bellard6a00d602005-11-21 23:25:50 +0000300 cpu_dump_state(env, NULL, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000301 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000302#else
ths5fafdf22007-09-16 21:08:06 +0000303 cpu_dump_state(env, NULL, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000304 0);
bellard9307c4c2004-04-04 12:57:25 +0000305#endif
306}
307
bellard6a00d602005-11-21 23:25:50 +0000308static void do_info_cpus(void)
309{
310 CPUState *env;
311
312 /* just to set the default cpu if not already done */
313 mon_get_cpu();
314
315 for(env = first_cpu; env != NULL; env = env->next_cpu) {
ths5fafdf22007-09-16 21:08:06 +0000316 term_printf("%c CPU #%d:",
bellard6a00d602005-11-21 23:25:50 +0000317 (env == mon_cpu) ? '*' : ' ',
318 env->cpu_index);
319#if defined(TARGET_I386)
320 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000321#elif defined(TARGET_PPC)
322 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
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);
thsead93602007-09-06 00:18:15 +0000325#elif defined(TARGET_MIPS)
thsb5dc7732008-06-27 10:02:35 +0000326 term_printf(" PC=0x" TARGET_FMT_lx, env->active_tc.PC);
bellardce5232c2008-05-28 17:14:10 +0000327#endif
thsead93602007-09-06 00:18:15 +0000328 if (env->halted)
329 term_printf(" (halted)");
bellard6a00d602005-11-21 23:25:50 +0000330 term_printf("\n");
331 }
332}
333
334static void do_cpu_set(int index)
335{
336 if (mon_set_cpu(index) < 0)
337 term_printf("Invalid CPU index\n");
338}
339
bellarde3db7222005-01-26 22:00:47 +0000340static void do_info_jit(void)
341{
342 dump_exec_info(NULL, monitor_fprintf);
343}
344
bellardaa455482004-04-04 13:07:25 +0000345static void do_info_history (void)
346{
347 int i;
bellard7e2515e2004-08-01 21:52:19 +0000348 const char *str;
ths3b46e622007-09-17 08:09:54 +0000349
bellard7e2515e2004-08-01 21:52:19 +0000350 i = 0;
351 for(;;) {
352 str = readline_get_history(i);
353 if (!str)
354 break;
355 term_printf("%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000356 i++;
bellardaa455482004-04-04 13:07:25 +0000357 }
358}
359
j_mayer76a66252007-03-07 08:32:30 +0000360#if defined(TARGET_PPC)
361/* XXX: not implemented in other targets */
362static void do_info_cpu_stats (void)
363{
364 CPUState *env;
365
366 env = mon_get_cpu();
367 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
368}
369#endif
370
bellard9307c4c2004-04-04 12:57:25 +0000371static void do_quit(void)
bellard9dc39cb2004-03-14 21:38:27 +0000372{
373 exit(0);
374}
375
376static int eject_device(BlockDriverState *bs, int force)
377{
378 if (bdrv_is_inserted(bs)) {
379 if (!force) {
380 if (!bdrv_is_removable(bs)) {
381 term_printf("device is not removable\n");
382 return -1;
383 }
384 if (bdrv_is_locked(bs)) {
385 term_printf("device is locked\n");
386 return -1;
387 }
388 }
389 bdrv_close(bs);
390 }
391 return 0;
392}
393
bellard9307c4c2004-04-04 12:57:25 +0000394static void do_eject(int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000395{
396 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000397
bellard9307c4c2004-04-04 12:57:25 +0000398 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000399 if (!bs) {
400 term_printf("device not found\n");
401 return;
402 }
403 eject_device(bs, force);
404}
405
aurel322ecea9b2008-06-18 22:10:01 +0000406static void do_change_block(const char *device, const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000407{
408 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000409 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000410
bellard9307c4c2004-04-04 12:57:25 +0000411 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000412 if (!bs) {
413 term_printf("device not found\n");
414 return;
415 }
aurel322ecea9b2008-06-18 22:10:01 +0000416 if (fmt) {
417 drv = bdrv_find_format(fmt);
418 if (!drv) {
419 term_printf("invalid format %s\n", fmt);
420 return;
421 }
422 }
bellard9dc39cb2004-03-14 21:38:27 +0000423 if (eject_device(bs, 0) < 0)
424 return;
aurel322ecea9b2008-06-18 22:10:01 +0000425 bdrv_open2(bs, filename, 0, drv);
balrog2bac6012007-04-30 01:34:31 +0000426 qemu_key_check(bs, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000427}
428
thse25a5822007-08-25 01:36:20 +0000429static void do_change_vnc(const char *target)
430{
ths70848512007-08-25 01:37:05 +0000431 if (strcmp(target, "passwd") == 0 ||
432 strcmp(target, "password") == 0) {
433 char password[9];
434 monitor_readline("Password: ", 1, password, sizeof(password)-1);
435 password[sizeof(password)-1] = '\0';
436 if (vnc_display_password(NULL, password) < 0)
437 term_printf("could not set VNC server password\n");
438 } else {
439 if (vnc_display_open(NULL, target) < 0)
440 term_printf("could not start VNC server on %s\n", target);
441 }
thse25a5822007-08-25 01:36:20 +0000442}
443
aurel322ecea9b2008-06-18 22:10:01 +0000444static void do_change(const char *device, const char *target, const char *fmt)
thse25a5822007-08-25 01:36:20 +0000445{
446 if (strcmp(device, "vnc") == 0) {
447 do_change_vnc(target);
448 } else {
aurel322ecea9b2008-06-18 22:10:01 +0000449 do_change_block(device, target, fmt);
thse25a5822007-08-25 01:36:20 +0000450 }
451}
452
bellard9307c4c2004-04-04 12:57:25 +0000453static void do_screen_dump(const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000454{
pbrook95219892006-04-09 01:06:34 +0000455 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000456}
457
pbrooke735b912007-06-30 13:53:24 +0000458static void do_logfile(const char *filename)
459{
460 cpu_set_log_filename(filename);
461}
462
bellard9307c4c2004-04-04 12:57:25 +0000463static void do_log(const char *items)
bellardf193c792004-03-21 17:06:25 +0000464{
465 int mask;
ths3b46e622007-09-17 08:09:54 +0000466
bellard9307c4c2004-04-04 12:57:25 +0000467 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000468 mask = 0;
469 } else {
bellard9307c4c2004-04-04 12:57:25 +0000470 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000471 if (!mask) {
bellard9307c4c2004-04-04 12:57:25 +0000472 help_cmd("log");
bellardf193c792004-03-21 17:06:25 +0000473 return;
474 }
475 }
476 cpu_set_log(mask);
477}
478
bellard9307c4c2004-04-04 12:57:25 +0000479static void do_stop(void)
bellard8a7ddc32004-03-31 19:00:16 +0000480{
481 vm_stop(EXCP_INTERRUPT);
482}
483
bellard9307c4c2004-04-04 12:57:25 +0000484static void do_cont(void)
bellard8a7ddc32004-03-31 19:00:16 +0000485{
486 vm_start();
487}
488
bellard67b915a2004-03-31 23:37:16 +0000489#ifdef CONFIG_GDBSTUB
pbrookcfc34752007-02-22 01:48:01 +0000490static void do_gdbserver(const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000491{
pbrookcfc34752007-02-22 01:48:01 +0000492 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000493 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000494 if (gdbserver_start(port) < 0) {
495 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000496 } else {
pbrookcfc34752007-02-22 01:48:01 +0000497 qemu_printf("Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000498 }
499}
bellard67b915a2004-03-31 23:37:16 +0000500#endif
bellard8a7ddc32004-03-31 19:00:16 +0000501
bellard9307c4c2004-04-04 12:57:25 +0000502static void term_printc(int c)
503{
504 term_printf("'");
505 switch(c) {
506 case '\'':
507 term_printf("\\'");
508 break;
509 case '\\':
510 term_printf("\\\\");
511 break;
512 case '\n':
513 term_printf("\\n");
514 break;
515 case '\r':
516 term_printf("\\r");
517 break;
518 default:
519 if (c >= 32 && c <= 126) {
520 term_printf("%c", c);
521 } else {
522 term_printf("\\x%02x", c);
523 }
524 break;
525 }
526 term_printf("'");
527}
528
ths5fafdf22007-09-16 21:08:06 +0000529static void memory_dump(int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000530 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000531{
bellard6a00d602005-11-21 23:25:50 +0000532 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000533 int nb_per_line, l, line_size, i, max_digits, len;
534 uint8_t buf[16];
535 uint64_t v;
536
537 if (format == 'i') {
538 int flags;
539 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000540 env = mon_get_cpu();
541 if (!env && !is_physical)
542 return;
bellard9307c4c2004-04-04 12:57:25 +0000543#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000544 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000545 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000546 } else if (wsize == 4) {
547 flags = 0;
548 } else {
bellard6a15fd12006-04-12 21:07:07 +0000549 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000550 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000551 if (env) {
552#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000553 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000554 (env->segs[R_CS].flags & DESC_L_MASK))
555 flags = 2;
556 else
557#endif
558 if (!(env->segs[R_CS].flags & DESC_B_MASK))
559 flags = 1;
560 }
bellard4c27ba22004-04-25 18:05:08 +0000561 }
562#endif
bellard6a00d602005-11-21 23:25:50 +0000563 monitor_disas(env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000564 return;
565 }
566
567 len = wsize * count;
568 if (wsize == 1)
569 line_size = 8;
570 else
571 line_size = 16;
572 nb_per_line = line_size / wsize;
573 max_digits = 0;
574
575 switch(format) {
576 case 'o':
577 max_digits = (wsize * 8 + 2) / 3;
578 break;
579 default:
580 case 'x':
581 max_digits = (wsize * 8) / 4;
582 break;
583 case 'u':
584 case 'd':
585 max_digits = (wsize * 8 * 10 + 32) / 33;
586 break;
587 case 'c':
588 wsize = 1;
589 break;
590 }
591
592 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000593 if (is_physical)
594 term_printf(TARGET_FMT_plx ":", addr);
595 else
596 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000597 l = len;
598 if (l > line_size)
599 l = line_size;
600 if (is_physical) {
601 cpu_physical_memory_rw(addr, buf, l, 0);
602 } else {
bellard6a00d602005-11-21 23:25:50 +0000603 env = mon_get_cpu();
604 if (!env)
605 break;
aliguoric8f79b62008-08-18 14:00:20 +0000606 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
607 term_printf(" Cannot access memory\n");
608 break;
609 }
bellard9307c4c2004-04-04 12:57:25 +0000610 }
ths5fafdf22007-09-16 21:08:06 +0000611 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000612 while (i < l) {
613 switch(wsize) {
614 default:
615 case 1:
616 v = ldub_raw(buf + i);
617 break;
618 case 2:
619 v = lduw_raw(buf + i);
620 break;
621 case 4:
bellard92a31b12005-02-10 22:00:52 +0000622 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000623 break;
624 case 8:
625 v = ldq_raw(buf + i);
626 break;
627 }
628 term_printf(" ");
629 switch(format) {
630 case 'o':
bellard26a76462006-06-25 18:15:32 +0000631 term_printf("%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000632 break;
633 case 'x':
bellard26a76462006-06-25 18:15:32 +0000634 term_printf("0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000635 break;
636 case 'u':
bellard26a76462006-06-25 18:15:32 +0000637 term_printf("%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000638 break;
639 case 'd':
bellard26a76462006-06-25 18:15:32 +0000640 term_printf("%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000641 break;
642 case 'c':
643 term_printc(v);
644 break;
645 }
646 i += wsize;
647 }
648 term_printf("\n");
649 addr += l;
650 len -= l;
651 }
652}
653
bellard92a31b12005-02-10 22:00:52 +0000654#if TARGET_LONG_BITS == 64
655#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
656#else
657#define GET_TLONG(h, l) (l)
658#endif
659
ths5fafdf22007-09-16 21:08:06 +0000660static void do_memory_dump(int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000661 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000662{
bellard92a31b12005-02-10 22:00:52 +0000663 target_long addr = GET_TLONG(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000664 memory_dump(count, format, size, addr, 0);
665}
666
blueswir17743e582007-09-24 18:39:04 +0000667#if TARGET_PHYS_ADDR_BITS > 32
668#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
669#else
670#define GET_TPHYSADDR(h, l) (l)
671#endif
672
bellard92a31b12005-02-10 22:00:52 +0000673static void do_physical_memory_dump(int count, int format, int size,
674 uint32_t addrh, uint32_t addrl)
675
bellard9307c4c2004-04-04 12:57:25 +0000676{
blueswir17743e582007-09-24 18:39:04 +0000677 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000678 memory_dump(count, format, size, addr, 1);
679}
680
bellard92a31b12005-02-10 22:00:52 +0000681static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000682{
blueswir17743e582007-09-24 18:39:04 +0000683 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
684#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000685 switch(format) {
686 case 'o':
687 term_printf("%#o", val);
688 break;
689 case 'x':
690 term_printf("%#x", val);
691 break;
692 case 'u':
693 term_printf("%u", val);
694 break;
695 default:
696 case 'd':
697 term_printf("%d", val);
698 break;
699 case 'c':
700 term_printc(val);
701 break;
702 }
bellard92a31b12005-02-10 22:00:52 +0000703#else
704 switch(format) {
705 case 'o':
bellard26a76462006-06-25 18:15:32 +0000706 term_printf("%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000707 break;
708 case 'x':
bellard26a76462006-06-25 18:15:32 +0000709 term_printf("%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000710 break;
711 case 'u':
bellard26a76462006-06-25 18:15:32 +0000712 term_printf("%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000713 break;
714 default:
715 case 'd':
bellard26a76462006-06-25 18:15:32 +0000716 term_printf("%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000717 break;
718 case 'c':
719 term_printc(val);
720 break;
721 }
722#endif
bellard9307c4c2004-04-04 12:57:25 +0000723 term_printf("\n");
724}
725
ths5fafdf22007-09-16 21:08:06 +0000726static void do_memory_save(unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000727 uint32_t size, const char *filename)
728{
729 FILE *f;
730 target_long addr = GET_TLONG(valh, vall);
731 uint32_t l;
732 CPUState *env;
733 uint8_t buf[1024];
734
735 env = mon_get_cpu();
736 if (!env)
737 return;
738
739 f = fopen(filename, "wb");
740 if (!f) {
741 term_printf("could not open '%s'\n", filename);
742 return;
743 }
744 while (size != 0) {
745 l = sizeof(buf);
746 if (l > size)
747 l = size;
748 cpu_memory_rw_debug(env, addr, buf, l, 0);
749 fwrite(buf, 1, l, f);
750 addr += l;
751 size -= l;
752 }
753 fclose(f);
754}
755
aurel32a8bdf7a2008-04-11 21:36:14 +0000756static void do_physical_memory_save(unsigned int valh, unsigned int vall,
757 uint32_t size, const char *filename)
758{
759 FILE *f;
760 uint32_t l;
761 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000762 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000763
764 f = fopen(filename, "wb");
765 if (!f) {
766 term_printf("could not open '%s'\n", filename);
767 return;
768 }
769 while (size != 0) {
770 l = sizeof(buf);
771 if (l > size)
772 l = size;
773 cpu_physical_memory_rw(addr, buf, l, 0);
774 fwrite(buf, 1, l, f);
775 fflush(f);
776 addr += l;
777 size -= l;
778 }
779 fclose(f);
780}
781
bellarde4cf1ad2005-06-04 20:15:57 +0000782static void do_sum(uint32_t start, uint32_t size)
783{
784 uint32_t addr;
785 uint8_t buf[1];
786 uint16_t sum;
787
788 sum = 0;
789 for(addr = start; addr < (start + size); addr++) {
790 cpu_physical_memory_rw(addr, buf, 1, 0);
791 /* BSD sum algorithm ('sum' Unix command) */
792 sum = (sum >> 1) | (sum << 15);
793 sum += buf[0];
794 }
795 term_printf("%05d\n", sum);
796}
797
bellarda3a91a32004-06-04 11:06:21 +0000798typedef struct {
799 int keycode;
800 const char *name;
801} KeyDef;
802
803static const KeyDef key_defs[] = {
804 { 0x2a, "shift" },
805 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000806
bellarda3a91a32004-06-04 11:06:21 +0000807 { 0x38, "alt" },
808 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +0000809 { 0x64, "altgr" },
810 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +0000811 { 0x1d, "ctrl" },
812 { 0x9d, "ctrl_r" },
813
814 { 0xdd, "menu" },
815
816 { 0x01, "esc" },
817
818 { 0x02, "1" },
819 { 0x03, "2" },
820 { 0x04, "3" },
821 { 0x05, "4" },
822 { 0x06, "5" },
823 { 0x07, "6" },
824 { 0x08, "7" },
825 { 0x09, "8" },
826 { 0x0a, "9" },
827 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000828 { 0x0c, "minus" },
829 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000830 { 0x0e, "backspace" },
831
832 { 0x0f, "tab" },
833 { 0x10, "q" },
834 { 0x11, "w" },
835 { 0x12, "e" },
836 { 0x13, "r" },
837 { 0x14, "t" },
838 { 0x15, "y" },
839 { 0x16, "u" },
840 { 0x17, "i" },
841 { 0x18, "o" },
842 { 0x19, "p" },
843
844 { 0x1c, "ret" },
845
846 { 0x1e, "a" },
847 { 0x1f, "s" },
848 { 0x20, "d" },
849 { 0x21, "f" },
850 { 0x22, "g" },
851 { 0x23, "h" },
852 { 0x24, "j" },
853 { 0x25, "k" },
854 { 0x26, "l" },
855
856 { 0x2c, "z" },
857 { 0x2d, "x" },
858 { 0x2e, "c" },
859 { 0x2f, "v" },
860 { 0x30, "b" },
861 { 0x31, "n" },
862 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +0000863 { 0x33, "comma" },
864 { 0x34, "dot" },
865 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +0000866
balrog4d3b6f62008-02-10 16:33:14 +0000867 { 0x37, "asterisk" },
868
bellarda3a91a32004-06-04 11:06:21 +0000869 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000870 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000871 { 0x3b, "f1" },
872 { 0x3c, "f2" },
873 { 0x3d, "f3" },
874 { 0x3e, "f4" },
875 { 0x3f, "f5" },
876 { 0x40, "f6" },
877 { 0x41, "f7" },
878 { 0x42, "f8" },
879 { 0x43, "f9" },
880 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000881 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000882 { 0x46, "scroll_lock" },
883
bellard64866c32006-05-07 18:03:31 +0000884 { 0xb5, "kp_divide" },
885 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000886 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000887 { 0x4e, "kp_add" },
888 { 0x9c, "kp_enter" },
889 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +0000890 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +0000891
892 { 0x52, "kp_0" },
893 { 0x4f, "kp_1" },
894 { 0x50, "kp_2" },
895 { 0x51, "kp_3" },
896 { 0x4b, "kp_4" },
897 { 0x4c, "kp_5" },
898 { 0x4d, "kp_6" },
899 { 0x47, "kp_7" },
900 { 0x48, "kp_8" },
901 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000902
bellarda3a91a32004-06-04 11:06:21 +0000903 { 0x56, "<" },
904
905 { 0x57, "f11" },
906 { 0x58, "f12" },
907
908 { 0xb7, "print" },
909
910 { 0xc7, "home" },
911 { 0xc9, "pgup" },
912 { 0xd1, "pgdn" },
913 { 0xcf, "end" },
914
915 { 0xcb, "left" },
916 { 0xc8, "up" },
917 { 0xd0, "down" },
918 { 0xcd, "right" },
919
920 { 0xd2, "insert" },
921 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +0000922#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
923 { 0xf0, "stop" },
924 { 0xf1, "again" },
925 { 0xf2, "props" },
926 { 0xf3, "undo" },
927 { 0xf4, "front" },
928 { 0xf5, "copy" },
929 { 0xf6, "open" },
930 { 0xf7, "paste" },
931 { 0xf8, "find" },
932 { 0xf9, "cut" },
933 { 0xfa, "lf" },
934 { 0xfb, "help" },
935 { 0xfc, "meta_l" },
936 { 0xfd, "meta_r" },
937 { 0xfe, "compose" },
938#endif
bellarda3a91a32004-06-04 11:06:21 +0000939 { 0, NULL },
940};
941
942static int get_keycode(const char *key)
943{
944 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +0000945 char *endp;
946 int ret;
bellarda3a91a32004-06-04 11:06:21 +0000947
948 for(p = key_defs; p->name != NULL; p++) {
949 if (!strcmp(key, p->name))
950 return p->keycode;
951 }
bellard64866c32006-05-07 18:03:31 +0000952 if (strstart(key, "0x", NULL)) {
953 ret = strtoul(key, &endp, 0);
954 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
955 return ret;
956 }
bellarda3a91a32004-06-04 11:06:21 +0000957 return -1;
958}
959
balrogc8256f92008-06-08 22:45:01 +0000960#define MAX_KEYCODES 16
961static uint8_t keycodes[MAX_KEYCODES];
962static int nb_pending_keycodes;
963static QEMUTimer *key_timer;
964
965static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +0000966{
balrogc8256f92008-06-08 22:45:01 +0000967 int keycode;
968
969 while (nb_pending_keycodes > 0) {
970 nb_pending_keycodes--;
971 keycode = keycodes[nb_pending_keycodes];
972 if (keycode & 0x80)
973 kbd_put_keycode(0xe0);
974 kbd_put_keycode(keycode | 0x80);
975 }
976}
977
978static void do_sendkey(const char *string, int has_hold_time, int hold_time)
979{
balrog3401c0d2008-06-04 10:05:59 +0000980 char keyname_buf[16];
981 char *separator;
982 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000983
balrogc8256f92008-06-08 22:45:01 +0000984 if (nb_pending_keycodes > 0) {
985 qemu_del_timer(key_timer);
986 release_keys(NULL);
987 }
988 if (!has_hold_time)
989 hold_time = 100;
990 i = 0;
balrog3401c0d2008-06-04 10:05:59 +0000991 while (1) {
992 separator = strchr(string, '-');
993 keyname_len = separator ? separator - string : strlen(string);
994 if (keyname_len > 0) {
995 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
996 if (keyname_len > sizeof(keyname_buf) - 1) {
997 term_printf("invalid key: '%s...'\n", keyname_buf);
998 return;
bellarda3a91a32004-06-04 11:06:21 +0000999 }
balrogc8256f92008-06-08 22:45:01 +00001000 if (i == MAX_KEYCODES) {
balrog3401c0d2008-06-04 10:05:59 +00001001 term_printf("too many keys\n");
1002 return;
1003 }
1004 keyname_buf[keyname_len] = 0;
1005 keycode = get_keycode(keyname_buf);
1006 if (keycode < 0) {
1007 term_printf("unknown key: '%s'\n", keyname_buf);
1008 return;
1009 }
balrogc8256f92008-06-08 22:45:01 +00001010 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001011 }
balrog3401c0d2008-06-04 10:05:59 +00001012 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001013 break;
balrog3401c0d2008-06-04 10:05:59 +00001014 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001015 }
balrogc8256f92008-06-08 22:45:01 +00001016 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001017 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001018 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001019 keycode = keycodes[i];
1020 if (keycode & 0x80)
1021 kbd_put_keycode(0xe0);
1022 kbd_put_keycode(keycode & 0x7f);
1023 }
balrogc8256f92008-06-08 22:45:01 +00001024 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001025 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1026 muldiv64(ticks_per_sec, hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001027}
1028
bellard13224a82006-07-14 22:03:35 +00001029static int mouse_button_state;
1030
ths5fafdf22007-09-16 21:08:06 +00001031static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +00001032 const char *dz_str)
1033{
1034 int dx, dy, dz;
1035 dx = strtol(dx_str, NULL, 0);
1036 dy = strtol(dy_str, NULL, 0);
1037 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001038 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001039 dz = strtol(dz_str, NULL, 0);
1040 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1041}
1042
1043static void do_mouse_button(int button_state)
1044{
1045 mouse_button_state = button_state;
1046 kbd_mouse_event(0, 0, 0, mouse_button_state);
1047}
1048
bellard34405572004-06-08 00:55:58 +00001049static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
1050{
1051 uint32_t val;
1052 int suffix;
1053
1054 if (has_index) {
1055 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1056 addr++;
1057 }
1058 addr &= 0xffff;
1059
1060 switch(size) {
1061 default:
1062 case 1:
1063 val = cpu_inb(NULL, addr);
1064 suffix = 'b';
1065 break;
1066 case 2:
1067 val = cpu_inw(NULL, addr);
1068 suffix = 'w';
1069 break;
1070 case 4:
1071 val = cpu_inl(NULL, addr);
1072 suffix = 'l';
1073 break;
1074 }
1075 term_printf("port%c[0x%04x] = %#0*x\n",
1076 suffix, addr, size * 2, val);
1077}
bellarda3a91a32004-06-04 11:06:21 +00001078
blueswir13b4366d2008-06-20 16:25:06 +00001079/* boot_set handler */
1080static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1081static void *boot_opaque;
1082
1083void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1084{
1085 qemu_boot_set_handler = func;
1086 boot_opaque = opaque;
1087}
1088
aurel320ecdffb2008-05-04 20:11:34 +00001089static void do_boot_set(const char *bootdevice)
1090{
1091 int res;
1092
1093 if (qemu_boot_set_handler) {
blueswir13b4366d2008-06-20 16:25:06 +00001094 res = qemu_boot_set_handler(boot_opaque, bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001095 if (res == 0)
1096 term_printf("boot device list now set to %s\n", bootdevice);
1097 else
1098 term_printf("setting boot device list failed with error %i\n", res);
1099 } else {
1100 term_printf("no function defined to set boot device list for this architecture\n");
1101 }
1102}
1103
bellarde4f90822004-06-20 12:35:44 +00001104static void do_system_reset(void)
1105{
1106 qemu_system_reset_request();
1107}
1108
bellard34751872005-07-02 14:31:34 +00001109static void do_system_powerdown(void)
1110{
1111 qemu_system_powerdown_request();
1112}
1113
bellardb86bda52004-09-18 19:32:46 +00001114#if defined(TARGET_I386)
1115static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1116{
ths5fafdf22007-09-16 21:08:06 +00001117 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001118 addr,
1119 pte & mask,
1120 pte & PG_GLOBAL_MASK ? 'G' : '-',
1121 pte & PG_PSE_MASK ? 'P' : '-',
1122 pte & PG_DIRTY_MASK ? 'D' : '-',
1123 pte & PG_ACCESSED_MASK ? 'A' : '-',
1124 pte & PG_PCD_MASK ? 'C' : '-',
1125 pte & PG_PWT_MASK ? 'T' : '-',
1126 pte & PG_USER_MASK ? 'U' : '-',
1127 pte & PG_RW_MASK ? 'W' : '-');
1128}
1129
1130static void tlb_info(void)
1131{
bellard6a00d602005-11-21 23:25:50 +00001132 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001133 int l1, l2;
1134 uint32_t pgd, pde, pte;
1135
bellard6a00d602005-11-21 23:25:50 +00001136 env = mon_get_cpu();
1137 if (!env)
1138 return;
1139
bellardb86bda52004-09-18 19:32:46 +00001140 if (!(env->cr[0] & CR0_PG_MASK)) {
1141 term_printf("PG disabled\n");
1142 return;
1143 }
1144 pgd = env->cr[3] & ~0xfff;
1145 for(l1 = 0; l1 < 1024; l1++) {
1146 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1147 pde = le32_to_cpu(pde);
1148 if (pde & PG_PRESENT_MASK) {
1149 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1150 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1151 } else {
1152 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001153 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001154 (uint8_t *)&pte, 4);
1155 pte = le32_to_cpu(pte);
1156 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001157 print_pte((l1 << 22) + (l2 << 12),
1158 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001159 ~0xfff);
1160 }
1161 }
1162 }
1163 }
1164 }
1165}
1166
ths5fafdf22007-09-16 21:08:06 +00001167static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001168 uint32_t end, int prot)
1169{
bellard9746b152004-11-11 18:30:24 +00001170 int prot1;
1171 prot1 = *plast_prot;
1172 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001173 if (*pstart != -1) {
1174 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001175 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001176 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001177 'r',
bellard9746b152004-11-11 18:30:24 +00001178 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001179 }
1180 if (prot != 0)
1181 *pstart = end;
1182 else
1183 *pstart = -1;
1184 *plast_prot = prot;
1185 }
1186}
1187
1188static void mem_info(void)
1189{
bellard6a00d602005-11-21 23:25:50 +00001190 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001191 int l1, l2, prot, last_prot;
1192 uint32_t pgd, pde, pte, start, end;
1193
bellard6a00d602005-11-21 23:25:50 +00001194 env = mon_get_cpu();
1195 if (!env)
1196 return;
1197
bellardb86bda52004-09-18 19:32:46 +00001198 if (!(env->cr[0] & CR0_PG_MASK)) {
1199 term_printf("PG disabled\n");
1200 return;
1201 }
1202 pgd = env->cr[3] & ~0xfff;
1203 last_prot = 0;
1204 start = -1;
1205 for(l1 = 0; l1 < 1024; l1++) {
1206 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1207 pde = le32_to_cpu(pde);
1208 end = l1 << 22;
1209 if (pde & PG_PRESENT_MASK) {
1210 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1211 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1212 mem_print(&start, &last_prot, end, prot);
1213 } else {
1214 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001215 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001216 (uint8_t *)&pte, 4);
1217 pte = le32_to_cpu(pte);
1218 end = (l1 << 22) + (l2 << 12);
1219 if (pte & PG_PRESENT_MASK) {
1220 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1221 } else {
1222 prot = 0;
1223 }
1224 mem_print(&start, &last_prot, end, prot);
1225 }
1226 }
1227 } else {
1228 prot = 0;
1229 mem_print(&start, &last_prot, end, prot);
1230 }
1231 }
1232}
1233#endif
1234
bellard0f4c6412005-07-24 18:10:56 +00001235static void do_info_kqemu(void)
1236{
1237#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001238 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001239 int val;
1240 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001241 env = mon_get_cpu();
1242 if (!env) {
1243 term_printf("No cpu initialized yet");
1244 return;
1245 }
1246 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001247 term_printf("kqemu support: ");
1248 switch(val) {
1249 default:
1250 case 0:
1251 term_printf("disabled\n");
1252 break;
1253 case 1:
1254 term_printf("enabled for user code\n");
1255 break;
1256 case 2:
1257 term_printf("enabled for user and kernel code\n");
1258 break;
1259 }
bellard0f4c6412005-07-24 18:10:56 +00001260#else
bellard5f1ce942006-02-08 22:40:15 +00001261 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001262#endif
ths5fafdf22007-09-16 21:08:06 +00001263}
bellard0f4c6412005-07-24 18:10:56 +00001264
bellard5f1ce942006-02-08 22:40:15 +00001265#ifdef CONFIG_PROFILER
1266
1267int64_t kqemu_time;
1268int64_t qemu_time;
1269int64_t kqemu_exec_count;
1270int64_t dev_time;
1271int64_t kqemu_ret_int_count;
1272int64_t kqemu_ret_excp_count;
1273int64_t kqemu_ret_intr_count;
1274
1275static void do_info_profile(void)
1276{
1277 int64_t total;
1278 total = qemu_time;
1279 if (total == 0)
1280 total = 1;
bellard26a76462006-06-25 18:15:32 +00001281 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001282 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001283 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001284 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001285 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001286 kqemu_time, kqemu_time / (double)ticks_per_sec,
1287 kqemu_time / (double)total * 100.0,
1288 kqemu_exec_count,
1289 kqemu_ret_int_count,
1290 kqemu_ret_excp_count,
1291 kqemu_ret_intr_count);
1292 qemu_time = 0;
1293 kqemu_time = 0;
1294 kqemu_exec_count = 0;
1295 dev_time = 0;
1296 kqemu_ret_int_count = 0;
1297 kqemu_ret_excp_count = 0;
1298 kqemu_ret_intr_count = 0;
1299#ifdef USE_KQEMU
1300 kqemu_record_dump();
1301#endif
1302}
1303#else
1304static void do_info_profile(void)
1305{
1306 term_printf("Internal profiler not compiled\n");
1307}
1308#endif
1309
bellardec36b692006-07-16 18:57:03 +00001310/* Capture support */
1311static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1312
1313static void do_info_capture (void)
1314{
1315 int i;
1316 CaptureState *s;
1317
1318 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1319 term_printf ("[%d]: ", i);
1320 s->ops.info (s->opaque);
1321 }
1322}
1323
1324static void do_stop_capture (int n)
1325{
1326 int i;
1327 CaptureState *s;
1328
1329 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1330 if (i == n) {
1331 s->ops.destroy (s->opaque);
1332 LIST_REMOVE (s, entries);
1333 qemu_free (s);
1334 return;
1335 }
1336 }
1337}
1338
1339#ifdef HAS_AUDIO
1340int wav_start_capture (CaptureState *s, const char *path, int freq,
1341 int bits, int nchannels);
1342
1343static void do_wav_capture (const char *path,
1344 int has_freq, int freq,
1345 int has_bits, int bits,
1346 int has_channels, int nchannels)
1347{
1348 CaptureState *s;
1349
1350 s = qemu_mallocz (sizeof (*s));
1351 if (!s) {
1352 term_printf ("Not enough memory to add wave capture\n");
1353 return;
1354 }
1355
1356 freq = has_freq ? freq : 44100;
1357 bits = has_bits ? bits : 16;
1358 nchannels = has_channels ? nchannels : 2;
1359
1360 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1361 term_printf ("Faied to add wave capture\n");
1362 qemu_free (s);
1363 }
1364 LIST_INSERT_HEAD (&capture_head, s, entries);
1365}
1366#endif
1367
aurel32dc1c0b72008-04-27 23:52:12 +00001368#if defined(TARGET_I386)
1369static void do_inject_nmi(int cpu_index)
1370{
1371 CPUState *env;
1372
1373 for (env = first_cpu; env != NULL; env = env->next_cpu)
1374 if (env->cpu_index == cpu_index) {
1375 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1376 break;
1377 }
1378}
1379#endif
1380
blueswir18662d652008-10-02 18:32:44 +00001381static const term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001382 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001383 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001384 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001385 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001386 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001387 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001388 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001389 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001390 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001391 "[-f] device", "eject a removable medium (use -f to force it)" },
aurel322ecea9b2008-06-18 22:10:01 +00001392 { "change", "BFs?", do_change,
1393 "device filename [format]", "change a removable medium, optional format" },
ths5fafdf22007-09-16 21:08:06 +00001394 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001395 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001396 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001397 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001398 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001399 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001400 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001401 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001402 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001403 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001404 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001405 "tag|id", "delete a VM snapshot from its tag or id" },
1406 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001407 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001408 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001409 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001410#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001411 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001412 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001413#endif
ths5fafdf22007-09-16 21:08:06 +00001414 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001415 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001416 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001417 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001418 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001419 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001420 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001421 "/fmt addr", "I/O port read" },
1422
balrogc8256f92008-06-08 22:45:01 +00001423 { "sendkey", "si?", do_sendkey,
1424 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
ths5fafdf22007-09-16 21:08:06 +00001425 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001426 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001427 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001428 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001429 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001430 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001431 { "usb_add", "s", do_usb_add,
1432 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1433 { "usb_del", "s", do_usb_del,
1434 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001435 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001436 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001437 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001438 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001439 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001440 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001441 { "mouse_set", "i", do_mouse_set,
1442 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001443#ifdef HAS_AUDIO
1444 { "wavcapture", "si?i?i?", do_wav_capture,
1445 "path [frequency bits channels]",
1446 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1447#endif
1448 { "stopcapture", "i", do_stop_capture,
1449 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001450 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001451 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001452 { "pmemsave", "lis", do_physical_memory_save,
1453 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001454 { "boot_set", "s", do_boot_set,
1455 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001456#if defined(TARGET_I386)
1457 { "nmi", "i", do_inject_nmi,
1458 "cpu", "inject an NMI on the given CPU", },
1459#endif
ths5fafdf22007-09-16 21:08:06 +00001460 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001461};
1462
blueswir18662d652008-10-02 18:32:44 +00001463static const term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001464 { "version", "", do_info_version,
1465 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001466 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001467 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001468 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001469 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001470 { "blockstats", "", do_info_blockstats,
1471 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001472 { "registers", "", do_info_registers,
1473 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001474 { "cpus", "", do_info_cpus,
1475 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001476 { "history", "", do_info_history,
1477 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001478 { "irq", "", irq_info,
1479 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001480 { "pic", "", pic_info,
1481 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001482 { "pci", "", pci_info,
1483 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001484#if defined(TARGET_I386)
1485 { "tlb", "", tlb_info,
1486 "", "show virtual to physical memory mappings", },
1487 { "mem", "", mem_info,
1488 "", "show the active virtual memory mappings", },
1489#endif
bellarde3db7222005-01-26 22:00:47 +00001490 { "jit", "", do_info_jit,
1491 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001492 { "kqemu", "", do_info_kqemu,
1493 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001494 { "usb", "", usb_info,
1495 "", "show guest USB devices", },
1496 { "usbhost", "", usb_host_info,
1497 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001498 { "profile", "", do_info_profile,
1499 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001500 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001501 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001502 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001503 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001504 { "pcmcia", "", pcmcia_info,
1505 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001506 { "mice", "", do_info_mice,
1507 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001508 { "vnc", "", do_info_vnc,
1509 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001510 { "name", "", do_info_name,
1511 "", "show the current VM name" },
blueswir1f1f23ad2008-09-18 18:30:20 +00001512 { "uuid", "", do_info_uuid,
1513 "", "show the current VM UUID" },
j_mayer76a66252007-03-07 08:32:30 +00001514#if defined(TARGET_PPC)
1515 { "cpustats", "", do_info_cpu_stats,
1516 "", "show CPU statistics", },
1517#endif
blueswir131a60e22007-10-26 18:42:59 +00001518#if defined(CONFIG_SLIRP)
1519 { "slirp", "", do_info_slirp,
1520 "", "show SLIRP statistics", },
1521#endif
bellard9dc39cb2004-03-14 21:38:27 +00001522 { NULL, NULL, },
1523};
1524
bellard9307c4c2004-04-04 12:57:25 +00001525/*******************************************************************/
1526
1527static const char *pch;
1528static jmp_buf expr_env;
1529
bellard92a31b12005-02-10 22:00:52 +00001530#define MD_TLONG 0
1531#define MD_I32 1
1532
bellard9307c4c2004-04-04 12:57:25 +00001533typedef struct MonitorDef {
1534 const char *name;
1535 int offset;
blueswir18662d652008-10-02 18:32:44 +00001536 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00001537 int type;
bellard9307c4c2004-04-04 12:57:25 +00001538} MonitorDef;
1539
bellard57206fd2004-04-25 18:54:52 +00001540#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00001541static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001542{
bellard6a00d602005-11-21 23:25:50 +00001543 CPUState *env = mon_get_cpu();
1544 if (!env)
1545 return 0;
1546 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001547}
1548#endif
1549
bellarda541f292004-04-12 20:39:29 +00001550#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00001551static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001552{
bellard6a00d602005-11-21 23:25:50 +00001553 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001554 unsigned int u;
1555 int i;
1556
bellard6a00d602005-11-21 23:25:50 +00001557 if (!env)
1558 return 0;
1559
bellarda541f292004-04-12 20:39:29 +00001560 u = 0;
1561 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001562 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001563
1564 return u;
1565}
1566
blueswir18662d652008-10-02 18:32:44 +00001567static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001568{
bellard6a00d602005-11-21 23:25:50 +00001569 CPUState *env = mon_get_cpu();
1570 if (!env)
1571 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001572 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001573}
1574
blueswir18662d652008-10-02 18:32:44 +00001575static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001576{
bellard6a00d602005-11-21 23:25:50 +00001577 CPUState *env = mon_get_cpu();
1578 if (!env)
1579 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001580 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001581}
bellard9fddaa02004-05-21 12:59:32 +00001582
blueswir18662d652008-10-02 18:32:44 +00001583static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001584{
bellard6a00d602005-11-21 23:25:50 +00001585 CPUState *env = mon_get_cpu();
1586 if (!env)
1587 return 0;
1588 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001589}
1590
blueswir18662d652008-10-02 18:32:44 +00001591static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001592{
bellard6a00d602005-11-21 23:25:50 +00001593 CPUState *env = mon_get_cpu();
1594 if (!env)
1595 return 0;
1596 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001597}
1598
blueswir18662d652008-10-02 18:32:44 +00001599static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001600{
bellard6a00d602005-11-21 23:25:50 +00001601 CPUState *env = mon_get_cpu();
1602 if (!env)
1603 return 0;
1604 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001605}
bellarda541f292004-04-12 20:39:29 +00001606#endif
1607
bellarde95c8d52004-09-30 22:22:08 +00001608#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001609#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00001610static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001611{
bellard6a00d602005-11-21 23:25:50 +00001612 CPUState *env = mon_get_cpu();
1613 if (!env)
1614 return 0;
1615 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001616}
bellard7b936c02005-10-30 17:05:13 +00001617#endif
bellarde95c8d52004-09-30 22:22:08 +00001618
blueswir18662d652008-10-02 18:32:44 +00001619static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001620{
bellard6a00d602005-11-21 23:25:50 +00001621 CPUState *env = mon_get_cpu();
1622 if (!env)
1623 return 0;
1624 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001625}
1626#endif
1627
blueswir18662d652008-10-02 18:32:44 +00001628static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00001629#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001630
1631#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001632 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001633 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001634 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001635
bellard9307c4c2004-04-04 12:57:25 +00001636 { "eax", offsetof(CPUState, regs[0]) },
1637 { "ecx", offsetof(CPUState, regs[1]) },
1638 { "edx", offsetof(CPUState, regs[2]) },
1639 { "ebx", offsetof(CPUState, regs[3]) },
1640 { "esp|sp", offsetof(CPUState, regs[4]) },
1641 { "ebp|fp", offsetof(CPUState, regs[5]) },
1642 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001643 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001644#ifdef TARGET_X86_64
1645 { "r8", offsetof(CPUState, regs[8]) },
1646 { "r9", offsetof(CPUState, regs[9]) },
1647 { "r10", offsetof(CPUState, regs[10]) },
1648 { "r11", offsetof(CPUState, regs[11]) },
1649 { "r12", offsetof(CPUState, regs[12]) },
1650 { "r13", offsetof(CPUState, regs[13]) },
1651 { "r14", offsetof(CPUState, regs[14]) },
1652 { "r15", offsetof(CPUState, regs[15]) },
1653#endif
bellard9307c4c2004-04-04 12:57:25 +00001654 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001655 { "eip", offsetof(CPUState, eip) },
1656 SEG("cs", R_CS)
1657 SEG("ds", R_DS)
1658 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001659 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001660 SEG("fs", R_FS)
1661 SEG("gs", R_GS)
1662 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001663#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001664 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001665 { "r0", offsetof(CPUState, gpr[0]) },
1666 { "r1", offsetof(CPUState, gpr[1]) },
1667 { "r2", offsetof(CPUState, gpr[2]) },
1668 { "r3", offsetof(CPUState, gpr[3]) },
1669 { "r4", offsetof(CPUState, gpr[4]) },
1670 { "r5", offsetof(CPUState, gpr[5]) },
1671 { "r6", offsetof(CPUState, gpr[6]) },
1672 { "r7", offsetof(CPUState, gpr[7]) },
1673 { "r8", offsetof(CPUState, gpr[8]) },
1674 { "r9", offsetof(CPUState, gpr[9]) },
1675 { "r10", offsetof(CPUState, gpr[10]) },
1676 { "r11", offsetof(CPUState, gpr[11]) },
1677 { "r12", offsetof(CPUState, gpr[12]) },
1678 { "r13", offsetof(CPUState, gpr[13]) },
1679 { "r14", offsetof(CPUState, gpr[14]) },
1680 { "r15", offsetof(CPUState, gpr[15]) },
1681 { "r16", offsetof(CPUState, gpr[16]) },
1682 { "r17", offsetof(CPUState, gpr[17]) },
1683 { "r18", offsetof(CPUState, gpr[18]) },
1684 { "r19", offsetof(CPUState, gpr[19]) },
1685 { "r20", offsetof(CPUState, gpr[20]) },
1686 { "r21", offsetof(CPUState, gpr[21]) },
1687 { "r22", offsetof(CPUState, gpr[22]) },
1688 { "r23", offsetof(CPUState, gpr[23]) },
1689 { "r24", offsetof(CPUState, gpr[24]) },
1690 { "r25", offsetof(CPUState, gpr[25]) },
1691 { "r26", offsetof(CPUState, gpr[26]) },
1692 { "r27", offsetof(CPUState, gpr[27]) },
1693 { "r28", offsetof(CPUState, gpr[28]) },
1694 { "r29", offsetof(CPUState, gpr[29]) },
1695 { "r30", offsetof(CPUState, gpr[30]) },
1696 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001697 /* Floating point registers */
1698 { "f0", offsetof(CPUState, fpr[0]) },
1699 { "f1", offsetof(CPUState, fpr[1]) },
1700 { "f2", offsetof(CPUState, fpr[2]) },
1701 { "f3", offsetof(CPUState, fpr[3]) },
1702 { "f4", offsetof(CPUState, fpr[4]) },
1703 { "f5", offsetof(CPUState, fpr[5]) },
1704 { "f6", offsetof(CPUState, fpr[6]) },
1705 { "f7", offsetof(CPUState, fpr[7]) },
1706 { "f8", offsetof(CPUState, fpr[8]) },
1707 { "f9", offsetof(CPUState, fpr[9]) },
1708 { "f10", offsetof(CPUState, fpr[10]) },
1709 { "f11", offsetof(CPUState, fpr[11]) },
1710 { "f12", offsetof(CPUState, fpr[12]) },
1711 { "f13", offsetof(CPUState, fpr[13]) },
1712 { "f14", offsetof(CPUState, fpr[14]) },
1713 { "f15", offsetof(CPUState, fpr[15]) },
1714 { "f16", offsetof(CPUState, fpr[16]) },
1715 { "f17", offsetof(CPUState, fpr[17]) },
1716 { "f18", offsetof(CPUState, fpr[18]) },
1717 { "f19", offsetof(CPUState, fpr[19]) },
1718 { "f20", offsetof(CPUState, fpr[20]) },
1719 { "f21", offsetof(CPUState, fpr[21]) },
1720 { "f22", offsetof(CPUState, fpr[22]) },
1721 { "f23", offsetof(CPUState, fpr[23]) },
1722 { "f24", offsetof(CPUState, fpr[24]) },
1723 { "f25", offsetof(CPUState, fpr[25]) },
1724 { "f26", offsetof(CPUState, fpr[26]) },
1725 { "f27", offsetof(CPUState, fpr[27]) },
1726 { "f28", offsetof(CPUState, fpr[28]) },
1727 { "f29", offsetof(CPUState, fpr[29]) },
1728 { "f30", offsetof(CPUState, fpr[30]) },
1729 { "f31", offsetof(CPUState, fpr[31]) },
1730 { "fpscr", offsetof(CPUState, fpscr) },
1731 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001732 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001733 { "lr", offsetof(CPUState, lr) },
1734 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001735 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001736 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001737 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001738 { "msr", 0, &monitor_get_msr, },
1739 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001740 { "tbu", 0, &monitor_get_tbu, },
1741 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001742#if defined(TARGET_PPC64)
1743 /* Address space register */
1744 { "asr", offsetof(CPUState, asr) },
1745#endif
1746 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001747 { "sdr1", offsetof(CPUState, sdr1) },
1748 { "sr0", offsetof(CPUState, sr[0]) },
1749 { "sr1", offsetof(CPUState, sr[1]) },
1750 { "sr2", offsetof(CPUState, sr[2]) },
1751 { "sr3", offsetof(CPUState, sr[3]) },
1752 { "sr4", offsetof(CPUState, sr[4]) },
1753 { "sr5", offsetof(CPUState, sr[5]) },
1754 { "sr6", offsetof(CPUState, sr[6]) },
1755 { "sr7", offsetof(CPUState, sr[7]) },
1756 { "sr8", offsetof(CPUState, sr[8]) },
1757 { "sr9", offsetof(CPUState, sr[9]) },
1758 { "sr10", offsetof(CPUState, sr[10]) },
1759 { "sr11", offsetof(CPUState, sr[11]) },
1760 { "sr12", offsetof(CPUState, sr[12]) },
1761 { "sr13", offsetof(CPUState, sr[13]) },
1762 { "sr14", offsetof(CPUState, sr[14]) },
1763 { "sr15", offsetof(CPUState, sr[15]) },
1764 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001765#elif defined(TARGET_SPARC)
1766 { "g0", offsetof(CPUState, gregs[0]) },
1767 { "g1", offsetof(CPUState, gregs[1]) },
1768 { "g2", offsetof(CPUState, gregs[2]) },
1769 { "g3", offsetof(CPUState, gregs[3]) },
1770 { "g4", offsetof(CPUState, gregs[4]) },
1771 { "g5", offsetof(CPUState, gregs[5]) },
1772 { "g6", offsetof(CPUState, gregs[6]) },
1773 { "g7", offsetof(CPUState, gregs[7]) },
1774 { "o0", 0, monitor_get_reg },
1775 { "o1", 1, monitor_get_reg },
1776 { "o2", 2, monitor_get_reg },
1777 { "o3", 3, monitor_get_reg },
1778 { "o4", 4, monitor_get_reg },
1779 { "o5", 5, monitor_get_reg },
1780 { "o6", 6, monitor_get_reg },
1781 { "o7", 7, monitor_get_reg },
1782 { "l0", 8, monitor_get_reg },
1783 { "l1", 9, monitor_get_reg },
1784 { "l2", 10, monitor_get_reg },
1785 { "l3", 11, monitor_get_reg },
1786 { "l4", 12, monitor_get_reg },
1787 { "l5", 13, monitor_get_reg },
1788 { "l6", 14, monitor_get_reg },
1789 { "l7", 15, monitor_get_reg },
1790 { "i0", 16, monitor_get_reg },
1791 { "i1", 17, monitor_get_reg },
1792 { "i2", 18, monitor_get_reg },
1793 { "i3", 19, monitor_get_reg },
1794 { "i4", 20, monitor_get_reg },
1795 { "i5", 21, monitor_get_reg },
1796 { "i6", 22, monitor_get_reg },
1797 { "i7", 23, monitor_get_reg },
1798 { "pc", offsetof(CPUState, pc) },
1799 { "npc", offsetof(CPUState, npc) },
1800 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001801#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001802 { "psr", 0, &monitor_get_psr, },
1803 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001804#endif
bellarde95c8d52004-09-30 22:22:08 +00001805 { "tbr", offsetof(CPUState, tbr) },
1806 { "fsr", offsetof(CPUState, fsr) },
1807 { "f0", offsetof(CPUState, fpr[0]) },
1808 { "f1", offsetof(CPUState, fpr[1]) },
1809 { "f2", offsetof(CPUState, fpr[2]) },
1810 { "f3", offsetof(CPUState, fpr[3]) },
1811 { "f4", offsetof(CPUState, fpr[4]) },
1812 { "f5", offsetof(CPUState, fpr[5]) },
1813 { "f6", offsetof(CPUState, fpr[6]) },
1814 { "f7", offsetof(CPUState, fpr[7]) },
1815 { "f8", offsetof(CPUState, fpr[8]) },
1816 { "f9", offsetof(CPUState, fpr[9]) },
1817 { "f10", offsetof(CPUState, fpr[10]) },
1818 { "f11", offsetof(CPUState, fpr[11]) },
1819 { "f12", offsetof(CPUState, fpr[12]) },
1820 { "f13", offsetof(CPUState, fpr[13]) },
1821 { "f14", offsetof(CPUState, fpr[14]) },
1822 { "f15", offsetof(CPUState, fpr[15]) },
1823 { "f16", offsetof(CPUState, fpr[16]) },
1824 { "f17", offsetof(CPUState, fpr[17]) },
1825 { "f18", offsetof(CPUState, fpr[18]) },
1826 { "f19", offsetof(CPUState, fpr[19]) },
1827 { "f20", offsetof(CPUState, fpr[20]) },
1828 { "f21", offsetof(CPUState, fpr[21]) },
1829 { "f22", offsetof(CPUState, fpr[22]) },
1830 { "f23", offsetof(CPUState, fpr[23]) },
1831 { "f24", offsetof(CPUState, fpr[24]) },
1832 { "f25", offsetof(CPUState, fpr[25]) },
1833 { "f26", offsetof(CPUState, fpr[26]) },
1834 { "f27", offsetof(CPUState, fpr[27]) },
1835 { "f28", offsetof(CPUState, fpr[28]) },
1836 { "f29", offsetof(CPUState, fpr[29]) },
1837 { "f30", offsetof(CPUState, fpr[30]) },
1838 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001839#ifdef TARGET_SPARC64
1840 { "f32", offsetof(CPUState, fpr[32]) },
1841 { "f34", offsetof(CPUState, fpr[34]) },
1842 { "f36", offsetof(CPUState, fpr[36]) },
1843 { "f38", offsetof(CPUState, fpr[38]) },
1844 { "f40", offsetof(CPUState, fpr[40]) },
1845 { "f42", offsetof(CPUState, fpr[42]) },
1846 { "f44", offsetof(CPUState, fpr[44]) },
1847 { "f46", offsetof(CPUState, fpr[46]) },
1848 { "f48", offsetof(CPUState, fpr[48]) },
1849 { "f50", offsetof(CPUState, fpr[50]) },
1850 { "f52", offsetof(CPUState, fpr[52]) },
1851 { "f54", offsetof(CPUState, fpr[54]) },
1852 { "f56", offsetof(CPUState, fpr[56]) },
1853 { "f58", offsetof(CPUState, fpr[58]) },
1854 { "f60", offsetof(CPUState, fpr[60]) },
1855 { "f62", offsetof(CPUState, fpr[62]) },
1856 { "asi", offsetof(CPUState, asi) },
1857 { "pstate", offsetof(CPUState, pstate) },
1858 { "cansave", offsetof(CPUState, cansave) },
1859 { "canrestore", offsetof(CPUState, canrestore) },
1860 { "otherwin", offsetof(CPUState, otherwin) },
1861 { "wstate", offsetof(CPUState, wstate) },
1862 { "cleanwin", offsetof(CPUState, cleanwin) },
1863 { "fprs", offsetof(CPUState, fprs) },
1864#endif
bellard9307c4c2004-04-04 12:57:25 +00001865#endif
1866 { NULL },
1867};
1868
ths5fafdf22007-09-16 21:08:06 +00001869static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001870{
bellard9307c4c2004-04-04 12:57:25 +00001871 term_printf(fmt);
1872 term_printf("\n");
1873 longjmp(expr_env, 1);
1874}
1875
bellard6a00d602005-11-21 23:25:50 +00001876/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001877static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001878{
blueswir18662d652008-10-02 18:32:44 +00001879 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001880 void *ptr;
1881
bellard9307c4c2004-04-04 12:57:25 +00001882 for(md = monitor_defs; md->name != NULL; md++) {
1883 if (compare_cmd(name, md->name)) {
1884 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001885 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001886 } else {
bellard6a00d602005-11-21 23:25:50 +00001887 CPUState *env = mon_get_cpu();
1888 if (!env)
1889 return -2;
1890 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001891 switch(md->type) {
1892 case MD_I32:
1893 *pval = *(int32_t *)ptr;
1894 break;
1895 case MD_TLONG:
1896 *pval = *(target_long *)ptr;
1897 break;
1898 default:
1899 *pval = 0;
1900 break;
1901 }
bellard9307c4c2004-04-04 12:57:25 +00001902 }
1903 return 0;
1904 }
1905 }
1906 return -1;
1907}
1908
1909static void next(void)
1910{
1911 if (pch != '\0') {
1912 pch++;
1913 while (isspace(*pch))
1914 pch++;
1915 }
1916}
1917
blueswir1c2efc952007-09-25 17:28:42 +00001918static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001919
blueswir1c2efc952007-09-25 17:28:42 +00001920static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001921{
blueswir1c2efc952007-09-25 17:28:42 +00001922 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001923 char *p;
bellard6a00d602005-11-21 23:25:50 +00001924 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001925
1926 switch(*pch) {
1927 case '+':
1928 next();
1929 n = expr_unary();
1930 break;
1931 case '-':
1932 next();
1933 n = -expr_unary();
1934 break;
1935 case '~':
1936 next();
1937 n = ~expr_unary();
1938 break;
1939 case '(':
1940 next();
1941 n = expr_sum();
1942 if (*pch != ')') {
1943 expr_error("')' expected");
1944 }
1945 next();
1946 break;
bellard81d09122004-07-14 17:21:37 +00001947 case '\'':
1948 pch++;
1949 if (*pch == '\0')
1950 expr_error("character constant expected");
1951 n = *pch;
1952 pch++;
1953 if (*pch != '\'')
1954 expr_error("missing terminating \' character");
1955 next();
1956 break;
bellard9307c4c2004-04-04 12:57:25 +00001957 case '$':
1958 {
1959 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001960 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001961
bellard9307c4c2004-04-04 12:57:25 +00001962 pch++;
1963 q = buf;
1964 while ((*pch >= 'a' && *pch <= 'z') ||
1965 (*pch >= 'A' && *pch <= 'Z') ||
1966 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001967 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001968 if ((q - buf) < sizeof(buf) - 1)
1969 *q++ = *pch;
1970 pch++;
1971 }
1972 while (isspace(*pch))
1973 pch++;
1974 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001975 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001976 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001977 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001978 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001979 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001980 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001981 }
1982 break;
1983 case '\0':
1984 expr_error("unexpected end of expression");
1985 n = 0;
1986 break;
1987 default:
blueswir17743e582007-09-24 18:39:04 +00001988#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001989 n = strtoull(pch, &p, 0);
1990#else
bellard9307c4c2004-04-04 12:57:25 +00001991 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001992#endif
bellard9307c4c2004-04-04 12:57:25 +00001993 if (pch == p) {
1994 expr_error("invalid char in expression");
1995 }
1996 pch = p;
1997 while (isspace(*pch))
1998 pch++;
1999 break;
2000 }
2001 return n;
2002}
2003
2004
blueswir1c2efc952007-09-25 17:28:42 +00002005static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00002006{
blueswir1c2efc952007-09-25 17:28:42 +00002007 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002008 int op;
ths3b46e622007-09-17 08:09:54 +00002009
bellard9307c4c2004-04-04 12:57:25 +00002010 val = expr_unary();
2011 for(;;) {
2012 op = *pch;
2013 if (op != '*' && op != '/' && op != '%')
2014 break;
2015 next();
2016 val2 = expr_unary();
2017 switch(op) {
2018 default:
2019 case '*':
2020 val *= val2;
2021 break;
2022 case '/':
2023 case '%':
ths5fafdf22007-09-16 21:08:06 +00002024 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00002025 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002026 if (op == '/')
2027 val /= val2;
2028 else
2029 val %= val2;
2030 break;
2031 }
2032 }
2033 return val;
2034}
2035
blueswir1c2efc952007-09-25 17:28:42 +00002036static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00002037{
blueswir1c2efc952007-09-25 17:28:42 +00002038 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002039 int op;
bellard9307c4c2004-04-04 12:57:25 +00002040
2041 val = expr_prod();
2042 for(;;) {
2043 op = *pch;
2044 if (op != '&' && op != '|' && op != '^')
2045 break;
2046 next();
2047 val2 = expr_prod();
2048 switch(op) {
2049 default:
2050 case '&':
2051 val &= val2;
2052 break;
2053 case '|':
2054 val |= val2;
2055 break;
2056 case '^':
2057 val ^= val2;
2058 break;
2059 }
2060 }
2061 return val;
2062}
2063
blueswir1c2efc952007-09-25 17:28:42 +00002064static int64_t expr_sum(void)
bellard9307c4c2004-04-04 12:57:25 +00002065{
blueswir1c2efc952007-09-25 17:28:42 +00002066 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002067 int op;
bellard9307c4c2004-04-04 12:57:25 +00002068
2069 val = expr_logic();
2070 for(;;) {
2071 op = *pch;
2072 if (op != '+' && op != '-')
2073 break;
2074 next();
2075 val2 = expr_logic();
2076 if (op == '+')
2077 val += val2;
2078 else
2079 val -= val2;
2080 }
2081 return val;
2082}
2083
blueswir1c2efc952007-09-25 17:28:42 +00002084static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002085{
2086 pch = *pp;
2087 if (setjmp(expr_env)) {
2088 *pp = pch;
2089 return -1;
2090 }
2091 while (isspace(*pch))
2092 pch++;
2093 *pval = expr_sum();
2094 *pp = pch;
2095 return 0;
2096}
2097
2098static int get_str(char *buf, int buf_size, const char **pp)
2099{
2100 const char *p;
2101 char *q;
2102 int c;
2103
bellard81d09122004-07-14 17:21:37 +00002104 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002105 p = *pp;
2106 while (isspace(*p))
2107 p++;
2108 if (*p == '\0') {
2109 fail:
bellard81d09122004-07-14 17:21:37 +00002110 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002111 *pp = p;
2112 return -1;
2113 }
bellard9307c4c2004-04-04 12:57:25 +00002114 if (*p == '\"') {
2115 p++;
2116 while (*p != '\0' && *p != '\"') {
2117 if (*p == '\\') {
2118 p++;
2119 c = *p++;
2120 switch(c) {
2121 case 'n':
2122 c = '\n';
2123 break;
2124 case 'r':
2125 c = '\r';
2126 break;
2127 case '\\':
2128 case '\'':
2129 case '\"':
2130 break;
2131 default:
2132 qemu_printf("unsupported escape code: '\\%c'\n", c);
2133 goto fail;
2134 }
2135 if ((q - buf) < buf_size - 1) {
2136 *q++ = c;
2137 }
2138 } else {
2139 if ((q - buf) < buf_size - 1) {
2140 *q++ = *p;
2141 }
2142 p++;
2143 }
2144 }
2145 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002146 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002147 goto fail;
2148 }
2149 p++;
2150 } else {
2151 while (*p != '\0' && !isspace(*p)) {
2152 if ((q - buf) < buf_size - 1) {
2153 *q++ = *p;
2154 }
2155 p++;
2156 }
bellard9307c4c2004-04-04 12:57:25 +00002157 }
bellard81d09122004-07-14 17:21:37 +00002158 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002159 *pp = p;
2160 return 0;
2161}
2162
2163static int default_fmt_format = 'x';
2164static int default_fmt_size = 4;
2165
2166#define MAX_ARGS 16
2167
bellard7e2515e2004-08-01 21:52:19 +00002168static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002169{
2170 const char *p, *pstart, *typestr;
2171 char *q;
2172 int c, nb_args, len, i, has_arg;
blueswir18662d652008-10-02 18:32:44 +00002173 const term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002174 char cmdname[256];
2175 char buf[1024];
2176 void *str_allocated[MAX_ARGS];
2177 void *args[MAX_ARGS];
blueswir1a5f1b962008-08-17 20:21:51 +00002178 void (*handler_0)(void);
2179 void (*handler_1)(void *arg0);
2180 void (*handler_2)(void *arg0, void *arg1);
2181 void (*handler_3)(void *arg0, void *arg1, void *arg2);
2182 void (*handler_4)(void *arg0, void *arg1, void *arg2, void *arg3);
2183 void (*handler_5)(void *arg0, void *arg1, void *arg2, void *arg3,
2184 void *arg4);
2185 void (*handler_6)(void *arg0, void *arg1, void *arg2, void *arg3,
2186 void *arg4, void *arg5);
2187 void (*handler_7)(void *arg0, void *arg1, void *arg2, void *arg3,
2188 void *arg4, void *arg5, void *arg6);
bellard9dc39cb2004-03-14 21:38:27 +00002189
2190#ifdef DEBUG
2191 term_printf("command='%s'\n", cmdline);
2192#endif
ths3b46e622007-09-17 08:09:54 +00002193
bellard9307c4c2004-04-04 12:57:25 +00002194 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002195 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002196 q = cmdname;
2197 while (isspace(*p))
2198 p++;
2199 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002200 return;
bellard9307c4c2004-04-04 12:57:25 +00002201 pstart = p;
2202 while (*p != '\0' && *p != '/' && !isspace(*p))
2203 p++;
2204 len = p - pstart;
2205 if (len > sizeof(cmdname) - 1)
2206 len = sizeof(cmdname) - 1;
2207 memcpy(cmdname, pstart, len);
2208 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002209
bellard9307c4c2004-04-04 12:57:25 +00002210 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002211 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002212 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002213 goto found;
2214 }
bellard9307c4c2004-04-04 12:57:25 +00002215 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002216 return;
2217 found:
bellard9307c4c2004-04-04 12:57:25 +00002218
2219 for(i = 0; i < MAX_ARGS; i++)
2220 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002221
bellard9307c4c2004-04-04 12:57:25 +00002222 /* parse the parameters */
2223 typestr = cmd->args_type;
2224 nb_args = 0;
2225 for(;;) {
2226 c = *typestr;
2227 if (c == '\0')
2228 break;
2229 typestr++;
2230 switch(c) {
2231 case 'F':
bellard81d09122004-07-14 17:21:37 +00002232 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002233 case 's':
2234 {
2235 int ret;
2236 char *str;
ths3b46e622007-09-17 08:09:54 +00002237
ths5fafdf22007-09-16 21:08:06 +00002238 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002239 p++;
2240 if (*typestr == '?') {
2241 typestr++;
2242 if (*p == '\0') {
2243 /* no optional string: NULL argument */
2244 str = NULL;
2245 goto add_str;
2246 }
2247 }
2248 ret = get_str(buf, sizeof(buf), &p);
2249 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002250 switch(c) {
2251 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002252 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002253 break;
2254 case 'B':
2255 term_printf("%s: block device name expected\n", cmdname);
2256 break;
2257 default:
bellard9307c4c2004-04-04 12:57:25 +00002258 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002259 break;
2260 }
bellard9307c4c2004-04-04 12:57:25 +00002261 goto fail;
2262 }
2263 str = qemu_malloc(strlen(buf) + 1);
blueswir1363a37d2008-08-21 17:58:08 +00002264 pstrcpy(str, sizeof(buf), buf);
bellard9307c4c2004-04-04 12:57:25 +00002265 str_allocated[nb_args] = str;
2266 add_str:
2267 if (nb_args >= MAX_ARGS) {
2268 error_args:
2269 term_printf("%s: too many arguments\n", cmdname);
2270 goto fail;
2271 }
2272 args[nb_args++] = str;
2273 }
2274 break;
2275 case '/':
2276 {
2277 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002278
bellard9307c4c2004-04-04 12:57:25 +00002279 while (isspace(*p))
2280 p++;
2281 if (*p == '/') {
2282 /* format found */
2283 p++;
2284 count = 1;
2285 if (isdigit(*p)) {
2286 count = 0;
2287 while (isdigit(*p)) {
2288 count = count * 10 + (*p - '0');
2289 p++;
2290 }
2291 }
2292 size = -1;
2293 format = -1;
2294 for(;;) {
2295 switch(*p) {
2296 case 'o':
2297 case 'd':
2298 case 'u':
2299 case 'x':
2300 case 'i':
2301 case 'c':
2302 format = *p++;
2303 break;
2304 case 'b':
2305 size = 1;
2306 p++;
2307 break;
2308 case 'h':
2309 size = 2;
2310 p++;
2311 break;
2312 case 'w':
2313 size = 4;
2314 p++;
2315 break;
2316 case 'g':
2317 case 'L':
2318 size = 8;
2319 p++;
2320 break;
2321 default:
2322 goto next;
2323 }
2324 }
2325 next:
2326 if (*p != '\0' && !isspace(*p)) {
2327 term_printf("invalid char in format: '%c'\n", *p);
2328 goto fail;
2329 }
bellard9307c4c2004-04-04 12:57:25 +00002330 if (format < 0)
2331 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002332 if (format != 'i') {
2333 /* for 'i', not specifying a size gives -1 as size */
2334 if (size < 0)
2335 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00002336 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00002337 }
bellard9307c4c2004-04-04 12:57:25 +00002338 default_fmt_format = format;
2339 } else {
2340 count = 1;
2341 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002342 if (format != 'i') {
2343 size = default_fmt_size;
2344 } else {
2345 size = -1;
2346 }
bellard9307c4c2004-04-04 12:57:25 +00002347 }
2348 if (nb_args + 3 > MAX_ARGS)
2349 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002350 args[nb_args++] = (void*)(long)count;
2351 args[nb_args++] = (void*)(long)format;
2352 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002353 }
2354 break;
2355 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002356 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002357 {
blueswir1c2efc952007-09-25 17:28:42 +00002358 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002359
ths5fafdf22007-09-16 21:08:06 +00002360 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002361 p++;
bellard34405572004-06-08 00:55:58 +00002362 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002363 if (*typestr == '?') {
2364 if (*p == '\0')
2365 has_arg = 0;
2366 else
2367 has_arg = 1;
2368 } else {
2369 if (*p == '.') {
2370 p++;
ths5fafdf22007-09-16 21:08:06 +00002371 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002372 p++;
2373 has_arg = 1;
2374 } else {
2375 has_arg = 0;
2376 }
2377 }
bellard13224a82006-07-14 22:03:35 +00002378 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002379 if (nb_args >= MAX_ARGS)
2380 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002381 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002382 if (!has_arg) {
2383 if (nb_args >= MAX_ARGS)
2384 goto error_args;
2385 val = -1;
2386 goto add_num;
2387 }
2388 }
2389 if (get_expr(&val, &p))
2390 goto fail;
2391 add_num:
bellard92a31b12005-02-10 22:00:52 +00002392 if (c == 'i') {
2393 if (nb_args >= MAX_ARGS)
2394 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002395 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002396 } else {
2397 if ((nb_args + 1) >= MAX_ARGS)
2398 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002399#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002400 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002401#else
2402 args[nb_args++] = (void *)0;
2403#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002404 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002405 }
bellard9307c4c2004-04-04 12:57:25 +00002406 }
2407 break;
2408 case '-':
2409 {
2410 int has_option;
2411 /* option */
ths3b46e622007-09-17 08:09:54 +00002412
bellard9307c4c2004-04-04 12:57:25 +00002413 c = *typestr++;
2414 if (c == '\0')
2415 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002416 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002417 p++;
2418 has_option = 0;
2419 if (*p == '-') {
2420 p++;
2421 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002422 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002423 cmdname, *p);
2424 goto fail;
2425 }
2426 p++;
2427 has_option = 1;
2428 }
2429 if (nb_args >= MAX_ARGS)
2430 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002431 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002432 }
2433 break;
2434 default:
2435 bad_type:
2436 term_printf("%s: unknown type '%c'\n", cmdname, c);
2437 goto fail;
2438 }
2439 }
2440 /* check that all arguments were parsed */
2441 while (isspace(*p))
2442 p++;
2443 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002444 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002445 cmdname);
2446 goto fail;
2447 }
2448
2449 switch(nb_args) {
2450 case 0:
blueswir1a5f1b962008-08-17 20:21:51 +00002451 handler_0 = cmd->handler;
2452 handler_0();
bellard9307c4c2004-04-04 12:57:25 +00002453 break;
2454 case 1:
blueswir1a5f1b962008-08-17 20:21:51 +00002455 handler_1 = cmd->handler;
2456 handler_1(args[0]);
bellard9307c4c2004-04-04 12:57:25 +00002457 break;
2458 case 2:
blueswir1a5f1b962008-08-17 20:21:51 +00002459 handler_2 = cmd->handler;
2460 handler_2(args[0], args[1]);
bellard9307c4c2004-04-04 12:57:25 +00002461 break;
2462 case 3:
blueswir1a5f1b962008-08-17 20:21:51 +00002463 handler_3 = cmd->handler;
2464 handler_3(args[0], args[1], args[2]);
bellard9307c4c2004-04-04 12:57:25 +00002465 break;
2466 case 4:
blueswir1a5f1b962008-08-17 20:21:51 +00002467 handler_4 = cmd->handler;
2468 handler_4(args[0], args[1], args[2], args[3]);
bellard9307c4c2004-04-04 12:57:25 +00002469 break;
2470 case 5:
blueswir1a5f1b962008-08-17 20:21:51 +00002471 handler_5 = cmd->handler;
2472 handler_5(args[0], args[1], args[2], args[3], args[4]);
bellard9307c4c2004-04-04 12:57:25 +00002473 break;
bellard34405572004-06-08 00:55:58 +00002474 case 6:
blueswir1a5f1b962008-08-17 20:21:51 +00002475 handler_6 = cmd->handler;
2476 handler_6(args[0], args[1], args[2], args[3], args[4], args[5]);
bellard34405572004-06-08 00:55:58 +00002477 break;
bellardec36b692006-07-16 18:57:03 +00002478 case 7:
blueswir1a5f1b962008-08-17 20:21:51 +00002479 handler_7 = cmd->handler;
2480 handler_7(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
bellardec36b692006-07-16 18:57:03 +00002481 break;
bellard9307c4c2004-04-04 12:57:25 +00002482 default:
2483 term_printf("unsupported number of arguments: %d\n", nb_args);
2484 goto fail;
2485 }
2486 fail:
2487 for(i = 0; i < MAX_ARGS; i++)
2488 qemu_free(str_allocated[i]);
2489 return;
bellard9dc39cb2004-03-14 21:38:27 +00002490}
2491
bellard81d09122004-07-14 17:21:37 +00002492static void cmd_completion(const char *name, const char *list)
2493{
2494 const char *p, *pstart;
2495 char cmd[128];
2496 int len;
2497
2498 p = list;
2499 for(;;) {
2500 pstart = p;
2501 p = strchr(p, '|');
2502 if (!p)
2503 p = pstart + strlen(pstart);
2504 len = p - pstart;
2505 if (len > sizeof(cmd) - 2)
2506 len = sizeof(cmd) - 2;
2507 memcpy(cmd, pstart, len);
2508 cmd[len] = '\0';
2509 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2510 add_completion(cmd);
2511 }
2512 if (*p == '\0')
2513 break;
2514 p++;
2515 }
2516}
2517
2518static void file_completion(const char *input)
2519{
2520 DIR *ffs;
2521 struct dirent *d;
2522 char path[1024];
2523 char file[1024], file_prefix[1024];
2524 int input_path_len;
2525 const char *p;
2526
ths5fafdf22007-09-16 21:08:06 +00002527 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002528 if (!p) {
2529 input_path_len = 0;
2530 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00002531 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00002532 } else {
2533 input_path_len = p - input + 1;
2534 memcpy(path, input, input_path_len);
2535 if (input_path_len > sizeof(path) - 1)
2536 input_path_len = sizeof(path) - 1;
2537 path[input_path_len] = '\0';
2538 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2539 }
2540#ifdef DEBUG_COMPLETION
2541 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2542#endif
2543 ffs = opendir(path);
2544 if (!ffs)
2545 return;
2546 for(;;) {
2547 struct stat sb;
2548 d = readdir(ffs);
2549 if (!d)
2550 break;
2551 if (strstart(d->d_name, file_prefix, NULL)) {
2552 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00002553 if (input_path_len < sizeof(file))
2554 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2555 d->d_name);
bellard81d09122004-07-14 17:21:37 +00002556 /* stat the file to find out if it's a directory.
2557 * In that case add a slash to speed up typing long paths
2558 */
2559 stat(file, &sb);
2560 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00002561 pstrcat(file, sizeof(file), "/");
bellard81d09122004-07-14 17:21:37 +00002562 add_completion(file);
2563 }
2564 }
2565 closedir(ffs);
2566}
2567
2568static void block_completion_it(void *opaque, const char *name)
2569{
2570 const char *input = opaque;
2571
2572 if (input[0] == '\0' ||
2573 !strncmp(name, (char *)input, strlen(input))) {
2574 add_completion(name);
2575 }
2576}
2577
2578/* NOTE: this parser is an approximate form of the real command parser */
2579static void parse_cmdline(const char *cmdline,
2580 int *pnb_args, char **args)
2581{
2582 const char *p;
2583 int nb_args, ret;
2584 char buf[1024];
2585
2586 p = cmdline;
2587 nb_args = 0;
2588 for(;;) {
2589 while (isspace(*p))
2590 p++;
2591 if (*p == '\0')
2592 break;
2593 if (nb_args >= MAX_ARGS)
2594 break;
2595 ret = get_str(buf, sizeof(buf), &p);
2596 args[nb_args] = qemu_strdup(buf);
2597 nb_args++;
2598 if (ret < 0)
2599 break;
2600 }
2601 *pnb_args = nb_args;
2602}
2603
bellard7e2515e2004-08-01 21:52:19 +00002604void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002605{
2606 const char *cmdname;
2607 char *args[MAX_ARGS];
2608 int nb_args, i, len;
2609 const char *ptype, *str;
blueswir18662d652008-10-02 18:32:44 +00002610 const term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002611 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002612
2613 parse_cmdline(cmdline, &nb_args, args);
2614#ifdef DEBUG_COMPLETION
2615 for(i = 0; i < nb_args; i++) {
2616 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2617 }
2618#endif
2619
2620 /* if the line ends with a space, it means we want to complete the
2621 next arg */
2622 len = strlen(cmdline);
2623 if (len > 0 && isspace(cmdline[len - 1])) {
2624 if (nb_args >= MAX_ARGS)
2625 return;
2626 args[nb_args++] = qemu_strdup("");
2627 }
2628 if (nb_args <= 1) {
2629 /* command completion */
2630 if (nb_args == 0)
2631 cmdname = "";
2632 else
2633 cmdname = args[0];
2634 completion_index = strlen(cmdname);
2635 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2636 cmd_completion(cmdname, cmd->name);
2637 }
2638 } else {
2639 /* find the command */
2640 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2641 if (compare_cmd(args[0], cmd->name))
2642 goto found;
2643 }
2644 return;
2645 found:
2646 ptype = cmd->args_type;
2647 for(i = 0; i < nb_args - 2; i++) {
2648 if (*ptype != '\0') {
2649 ptype++;
2650 while (*ptype == '?')
2651 ptype++;
2652 }
2653 }
2654 str = args[nb_args - 1];
2655 switch(*ptype) {
2656 case 'F':
2657 /* file completion */
2658 completion_index = strlen(str);
2659 file_completion(str);
2660 break;
2661 case 'B':
2662 /* block device name completion */
2663 completion_index = strlen(str);
2664 bdrv_iterate(block_completion_it, (void *)str);
2665 break;
bellard7fe48482004-10-09 18:08:01 +00002666 case 's':
2667 /* XXX: more generic ? */
2668 if (!strcmp(cmd->name, "info")) {
2669 completion_index = strlen(str);
2670 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2671 cmd_completion(str, cmd->name);
2672 }
bellard64866c32006-05-07 18:03:31 +00002673 } else if (!strcmp(cmd->name, "sendkey")) {
2674 completion_index = strlen(str);
2675 for(key = key_defs; key->name != NULL; key++) {
2676 cmd_completion(str, key->name);
2677 }
bellard7fe48482004-10-09 18:08:01 +00002678 }
2679 break;
bellard81d09122004-07-14 17:21:37 +00002680 default:
2681 break;
2682 }
2683 }
2684 for(i = 0; i < nb_args; i++)
2685 qemu_free(args[i]);
2686}
2687
bellard9dc39cb2004-03-14 21:38:27 +00002688static int term_can_read(void *opaque)
2689{
bellard81d09122004-07-14 17:21:37 +00002690 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002691}
2692
2693static void term_read(void *opaque, const uint8_t *buf, int size)
2694{
2695 int i;
2696 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002697 readline_handle_byte(buf[i]);
2698}
2699
bellard7e2515e2004-08-01 21:52:19 +00002700static void monitor_handle_command1(void *opaque, const char *cmdline)
2701{
2702 monitor_handle_command(cmdline);
2703 monitor_start_input();
2704}
2705
aliguori83ab7952008-08-19 14:44:22 +00002706static void monitor_start_input(void)
bellard7e2515e2004-08-01 21:52:19 +00002707{
2708 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002709}
2710
ths86e94de2007-01-05 22:01:59 +00002711static void term_event(void *opaque, int event)
2712{
2713 if (event != CHR_EVENT_RESET)
2714 return;
2715
2716 if (!hide_banner)
2717 term_printf("QEMU %s monitor - type 'help' for more information\n",
2718 QEMU_VERSION);
2719 monitor_start_input();
2720}
2721
ths20d8a3e2007-02-18 17:04:49 +00002722static int is_first_init = 1;
2723
bellard81d09122004-07-14 17:21:37 +00002724void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002725{
ths20d8a3e2007-02-18 17:04:49 +00002726 int i;
2727
2728 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00002729 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2730 if (!key_timer)
2731 return;
ths20d8a3e2007-02-18 17:04:49 +00002732 for (i = 0; i < MAX_MON; i++) {
2733 monitor_hd[i] = NULL;
2734 }
2735 is_first_init = 0;
2736 }
2737 for (i = 0; i < MAX_MON; i++) {
2738 if (monitor_hd[i] == NULL) {
2739 monitor_hd[i] = hd;
2740 break;
2741 }
2742 }
2743
ths86e94de2007-01-05 22:01:59 +00002744 hide_banner = !show_banner;
2745
pbrooke5b0bc42007-01-27 23:46:43 +00002746 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
aliguori83ab7952008-08-19 14:44:22 +00002747
2748 readline_start("", 0, monitor_handle_command1, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002749}
2750
2751/* XXX: use threads ? */
2752/* modal monitor readline */
2753static int monitor_readline_started;
2754static char *monitor_readline_buf;
2755static int monitor_readline_buf_size;
2756
2757static void monitor_readline_cb(void *opaque, const char *input)
2758{
2759 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2760 monitor_readline_started = 0;
2761}
2762
2763void monitor_readline(const char *prompt, int is_password,
2764 char *buf, int buf_size)
2765{
ths20d8a3e2007-02-18 17:04:49 +00002766 int i;
aliguoribc0129d2008-08-01 15:12:34 +00002767 int old_focus[MAX_MON];
ths20d8a3e2007-02-18 17:04:49 +00002768
bellard7e2515e2004-08-01 21:52:19 +00002769 if (is_password) {
aliguoribc0129d2008-08-01 15:12:34 +00002770 for (i = 0; i < MAX_MON; i++) {
2771 old_focus[i] = 0;
2772 if (monitor_hd[i]) {
2773 old_focus[i] = monitor_hd[i]->focus;
2774 monitor_hd[i]->focus = 0;
ths20d8a3e2007-02-18 17:04:49 +00002775 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
aliguoribc0129d2008-08-01 15:12:34 +00002776 }
2777 }
bellard7e2515e2004-08-01 21:52:19 +00002778 }
aliguoribc0129d2008-08-01 15:12:34 +00002779
bellard7e2515e2004-08-01 21:52:19 +00002780 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2781 monitor_readline_buf = buf;
2782 monitor_readline_buf_size = buf_size;
2783 monitor_readline_started = 1;
2784 while (monitor_readline_started) {
2785 main_loop_wait(10);
2786 }
aliguoribc0129d2008-08-01 15:12:34 +00002787 /* restore original focus */
2788 if (is_password) {
2789 for (i = 0; i < MAX_MON; i++)
2790 if (old_focus[i])
2791 monitor_hd[i]->focus = old_focus[i];
2792 }
bellard9dc39cb2004-03-14 21:38:27 +00002793}