blob: a6d2ea9e97b853b8d88f8e89d0241f3152476000 [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#ifndef offsetof
44#define offsetof(type, field) ((size_t) &((type *)0)->field)
45#endif
46
bellard9307c4c2004-04-04 12:57:25 +000047/*
48 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000049 *
bellard9307c4c2004-04-04 12:57:25 +000050 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000051 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000052 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000053 * 'i' 32 bit integer
54 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000055 * '/' optional gdb-like print format (like "/10x")
56 *
57 * '?' optional type (for 'F', 's' and 'i')
58 *
59 */
60
bellard9dc39cb2004-03-14 21:38:27 +000061typedef struct term_cmd_t {
62 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000063 const char *args_type;
64 void (*handler)();
bellard9dc39cb2004-03-14 21:38:27 +000065 const char *params;
66 const char *help;
67} term_cmd_t;
68
ths20d8a3e2007-02-18 17:04:49 +000069#define MAX_MON 4
70static CharDriverState *monitor_hd[MAX_MON];
ths86e94de2007-01-05 22:01:59 +000071static int hide_banner;
bellard7e2515e2004-08-01 21:52:19 +000072
bellard9dc39cb2004-03-14 21:38:27 +000073static term_cmd_t term_cmds[];
74static term_cmd_t info_cmds[];
75
ths60fe76f2007-12-16 03:02:09 +000076static uint8_t term_outbuf[1024];
bellard7e2515e2004-08-01 21:52:19 +000077static int term_outbuf_index;
bellard81d09122004-07-14 17:21:37 +000078
bellard6a00d602005-11-21 23:25:50 +000079CPUState *mon_cpu = NULL;
80
bellard9dc39cb2004-03-14 21:38:27 +000081void term_flush(void)
82{
ths20d8a3e2007-02-18 17:04:49 +000083 int i;
bellard7e2515e2004-08-01 21:52:19 +000084 if (term_outbuf_index > 0) {
ths20d8a3e2007-02-18 17:04:49 +000085 for (i = 0; i < MAX_MON; i++)
86 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
87 qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index);
bellard7e2515e2004-08-01 21:52:19 +000088 term_outbuf_index = 0;
89 }
90}
91
92/* flush at every end of line or if the buffer is full */
93void term_puts(const char *str)
94{
ths60fe76f2007-12-16 03:02:09 +000095 char c;
bellard7e2515e2004-08-01 21:52:19 +000096 for(;;) {
97 c = *str++;
98 if (c == '\0')
99 break;
bellard7ba12602006-07-14 20:26:42 +0000100 if (c == '\n')
101 term_outbuf[term_outbuf_index++] = '\r';
bellard7e2515e2004-08-01 21:52:19 +0000102 term_outbuf[term_outbuf_index++] = c;
bellard7ba12602006-07-14 20:26:42 +0000103 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
bellard7e2515e2004-08-01 21:52:19 +0000104 c == '\n')
105 term_flush();
106 }
107}
108
109void term_vprintf(const char *fmt, va_list ap)
110{
111 char buf[4096];
112 vsnprintf(buf, sizeof(buf), fmt, ap);
113 term_puts(buf);
114}
115
116void term_printf(const char *fmt, ...)
117{
118 va_list ap;
119 va_start(ap, fmt);
120 term_vprintf(fmt, ap);
121 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000122}
123
thsfef30742006-12-22 14:11:32 +0000124void term_print_filename(const char *filename)
125{
126 int i;
127
128 for (i = 0; filename[i]; i++) {
129 switch (filename[i]) {
130 case ' ':
131 case '"':
132 case '\\':
133 term_printf("\\%c", filename[i]);
134 break;
135 case '\t':
136 term_printf("\\t");
137 break;
138 case '\r':
139 term_printf("\\r");
140 break;
141 case '\n':
142 term_printf("\\n");
143 break;
144 default:
145 term_printf("%c", filename[i]);
146 break;
147 }
148 }
149}
150
bellard7fe48482004-10-09 18:08:01 +0000151static int monitor_fprintf(FILE *stream, const char *fmt, ...)
152{
153 va_list ap;
154 va_start(ap, fmt);
155 term_vprintf(fmt, ap);
156 va_end(ap);
157 return 0;
158}
159
bellard9dc39cb2004-03-14 21:38:27 +0000160static int compare_cmd(const char *name, const char *list)
161{
162 const char *p, *pstart;
163 int len;
164 len = strlen(name);
165 p = list;
166 for(;;) {
167 pstart = p;
168 p = strchr(p, '|');
169 if (!p)
170 p = pstart + strlen(pstart);
171 if ((p - pstart) == len && !memcmp(pstart, name, len))
172 return 1;
173 if (*p == '\0')
174 break;
175 p++;
176 }
177 return 0;
178}
179
180static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name)
181{
182 term_cmd_t *cmd;
183
184 for(cmd = cmds; cmd->name != NULL; cmd++) {
185 if (!name || !strcmp(name, cmd->name))
186 term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
187 }
188}
189
190static void help_cmd(const char *name)
191{
192 if (name && !strcmp(name, "info")) {
193 help_cmd1(info_cmds, "info ", NULL);
194 } else {
195 help_cmd1(term_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000196 if (name && !strcmp(name, "log")) {
197 CPULogItem *item;
198 term_printf("Log items (comma separated):\n");
199 term_printf("%-10s %s\n", "none", "remove all logs");
200 for(item = cpu_log_items; item->mask != 0; item++) {
201 term_printf("%-10s %s\n", item->name, item->help);
202 }
203 }
bellard9dc39cb2004-03-14 21:38:27 +0000204 }
205}
206
bellard9307c4c2004-04-04 12:57:25 +0000207static void do_help(const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000208{
bellard9307c4c2004-04-04 12:57:25 +0000209 help_cmd(name);
bellard9dc39cb2004-03-14 21:38:27 +0000210}
211
bellard7954c732006-08-01 15:52:40 +0000212static void do_commit(const char *device)
bellard9dc39cb2004-03-14 21:38:27 +0000213{
bellard7954c732006-08-01 15:52:40 +0000214 int i, all_devices;
balrog2dc7b602007-05-24 18:53:22 +0000215
bellard7954c732006-08-01 15:52:40 +0000216 all_devices = !strcmp(device, "all");
thse4bcb142007-12-02 04:51:10 +0000217 for (i = 0; i < nb_drives; i++) {
ths5fafdf22007-09-16 21:08:06 +0000218 if (all_devices ||
thse4bcb142007-12-02 04:51:10 +0000219 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
220 bdrv_commit(drives_table[i].bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000221 }
222}
223
bellard9307c4c2004-04-04 12:57:25 +0000224static void do_info(const char *item)
bellard9dc39cb2004-03-14 21:38:27 +0000225{
226 term_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000227
bellard9307c4c2004-04-04 12:57:25 +0000228 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000229 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000230 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000231 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000232 goto found;
233 }
234 help:
bellard9307c4c2004-04-04 12:57:25 +0000235 help_cmd("info");
bellard9dc39cb2004-03-14 21:38:27 +0000236 return;
237 found:
bellard9307c4c2004-04-04 12:57:25 +0000238 cmd->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
bellard9307c4c2004-04-04 12:57:25 +0000252static void do_info_block(void)
bellard9dc39cb2004-03-14 21:38:27 +0000253{
254 bdrv_info();
255}
256
thsa36e69d2007-12-02 05:18:19 +0000257static void do_info_blockstats(void)
258{
259 bdrv_info_stats();
260}
261
bellard6a00d602005-11-21 23:25:50 +0000262/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000263static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000264{
265 CPUState *env;
266
267 for(env = first_cpu; env != NULL; env = env->next_cpu) {
268 if (env->cpu_index == cpu_index) {
269 mon_cpu = env;
270 return 0;
271 }
272 }
273 return -1;
274}
275
pbrook9596ebb2007-11-18 01:44:38 +0000276static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000277{
278 if (!mon_cpu) {
279 mon_set_cpu(0);
280 }
281 return mon_cpu;
282}
283
bellard9307c4c2004-04-04 12:57:25 +0000284static void do_info_registers(void)
285{
bellard6a00d602005-11-21 23:25:50 +0000286 CPUState *env;
287 env = mon_get_cpu();
288 if (!env)
289 return;
bellard9307c4c2004-04-04 12:57:25 +0000290#ifdef TARGET_I386
bellard6a00d602005-11-21 23:25:50 +0000291 cpu_dump_state(env, NULL, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000292 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000293#else
ths5fafdf22007-09-16 21:08:06 +0000294 cpu_dump_state(env, NULL, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000295 0);
bellard9307c4c2004-04-04 12:57:25 +0000296#endif
297}
298
bellard6a00d602005-11-21 23:25:50 +0000299static void do_info_cpus(void)
300{
301 CPUState *env;
302
303 /* just to set the default cpu if not already done */
304 mon_get_cpu();
305
306 for(env = first_cpu; env != NULL; env = env->next_cpu) {
ths5fafdf22007-09-16 21:08:06 +0000307 term_printf("%c CPU #%d:",
bellard6a00d602005-11-21 23:25:50 +0000308 (env == mon_cpu) ? '*' : ' ',
309 env->cpu_index);
310#if defined(TARGET_I386)
311 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000312#elif defined(TARGET_PPC)
313 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
bellardba3c64f2005-12-05 20:31:52 +0000314#elif defined(TARGET_SPARC)
315 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
thsead93602007-09-06 00:18:15 +0000316#elif defined(TARGET_MIPS)
thsb5dc7732008-06-27 10:02:35 +0000317 term_printf(" PC=0x" TARGET_FMT_lx, env->active_tc.PC);
bellardce5232c2008-05-28 17:14:10 +0000318#endif
thsead93602007-09-06 00:18:15 +0000319 if (env->halted)
320 term_printf(" (halted)");
bellard6a00d602005-11-21 23:25:50 +0000321 term_printf("\n");
322 }
323}
324
325static void do_cpu_set(int index)
326{
327 if (mon_set_cpu(index) < 0)
328 term_printf("Invalid CPU index\n");
329}
330
bellarde3db7222005-01-26 22:00:47 +0000331static void do_info_jit(void)
332{
333 dump_exec_info(NULL, monitor_fprintf);
334}
335
bellardaa455482004-04-04 13:07:25 +0000336static void do_info_history (void)
337{
338 int i;
bellard7e2515e2004-08-01 21:52:19 +0000339 const char *str;
ths3b46e622007-09-17 08:09:54 +0000340
bellard7e2515e2004-08-01 21:52:19 +0000341 i = 0;
342 for(;;) {
343 str = readline_get_history(i);
344 if (!str)
345 break;
346 term_printf("%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000347 i++;
bellardaa455482004-04-04 13:07:25 +0000348 }
349}
350
j_mayer76a66252007-03-07 08:32:30 +0000351#if defined(TARGET_PPC)
352/* XXX: not implemented in other targets */
353static void do_info_cpu_stats (void)
354{
355 CPUState *env;
356
357 env = mon_get_cpu();
358 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
359}
360#endif
361
bellard9307c4c2004-04-04 12:57:25 +0000362static void do_quit(void)
bellard9dc39cb2004-03-14 21:38:27 +0000363{
364 exit(0);
365}
366
367static int eject_device(BlockDriverState *bs, int force)
368{
369 if (bdrv_is_inserted(bs)) {
370 if (!force) {
371 if (!bdrv_is_removable(bs)) {
372 term_printf("device is not removable\n");
373 return -1;
374 }
375 if (bdrv_is_locked(bs)) {
376 term_printf("device is locked\n");
377 return -1;
378 }
379 }
380 bdrv_close(bs);
381 }
382 return 0;
383}
384
bellard9307c4c2004-04-04 12:57:25 +0000385static void do_eject(int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000386{
387 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000388
bellard9307c4c2004-04-04 12:57:25 +0000389 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000390 if (!bs) {
391 term_printf("device not found\n");
392 return;
393 }
394 eject_device(bs, force);
395}
396
aurel322ecea9b2008-06-18 22:10:01 +0000397static void do_change_block(const char *device, const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000398{
399 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000400 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000401
bellard9307c4c2004-04-04 12:57:25 +0000402 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000403 if (!bs) {
404 term_printf("device not found\n");
405 return;
406 }
aurel322ecea9b2008-06-18 22:10:01 +0000407 if (fmt) {
408 drv = bdrv_find_format(fmt);
409 if (!drv) {
410 term_printf("invalid format %s\n", fmt);
411 return;
412 }
413 }
bellard9dc39cb2004-03-14 21:38:27 +0000414 if (eject_device(bs, 0) < 0)
415 return;
aurel322ecea9b2008-06-18 22:10:01 +0000416 bdrv_open2(bs, filename, 0, drv);
balrog2bac6012007-04-30 01:34:31 +0000417 qemu_key_check(bs, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000418}
419
thse25a5822007-08-25 01:36:20 +0000420static void do_change_vnc(const char *target)
421{
ths70848512007-08-25 01:37:05 +0000422 if (strcmp(target, "passwd") == 0 ||
423 strcmp(target, "password") == 0) {
424 char password[9];
425 monitor_readline("Password: ", 1, password, sizeof(password)-1);
426 password[sizeof(password)-1] = '\0';
427 if (vnc_display_password(NULL, password) < 0)
428 term_printf("could not set VNC server password\n");
429 } else {
430 if (vnc_display_open(NULL, target) < 0)
431 term_printf("could not start VNC server on %s\n", target);
432 }
thse25a5822007-08-25 01:36:20 +0000433}
434
aurel322ecea9b2008-06-18 22:10:01 +0000435static void do_change(const char *device, const char *target, const char *fmt)
thse25a5822007-08-25 01:36:20 +0000436{
437 if (strcmp(device, "vnc") == 0) {
438 do_change_vnc(target);
439 } else {
aurel322ecea9b2008-06-18 22:10:01 +0000440 do_change_block(device, target, fmt);
thse25a5822007-08-25 01:36:20 +0000441 }
442}
443
bellard9307c4c2004-04-04 12:57:25 +0000444static void do_screen_dump(const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000445{
pbrook95219892006-04-09 01:06:34 +0000446 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000447}
448
pbrooke735b912007-06-30 13:53:24 +0000449static void do_logfile(const char *filename)
450{
451 cpu_set_log_filename(filename);
452}
453
bellard9307c4c2004-04-04 12:57:25 +0000454static void do_log(const char *items)
bellardf193c792004-03-21 17:06:25 +0000455{
456 int mask;
ths3b46e622007-09-17 08:09:54 +0000457
bellard9307c4c2004-04-04 12:57:25 +0000458 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000459 mask = 0;
460 } else {
bellard9307c4c2004-04-04 12:57:25 +0000461 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000462 if (!mask) {
bellard9307c4c2004-04-04 12:57:25 +0000463 help_cmd("log");
bellardf193c792004-03-21 17:06:25 +0000464 return;
465 }
466 }
467 cpu_set_log(mask);
468}
469
bellard9307c4c2004-04-04 12:57:25 +0000470static void do_stop(void)
bellard8a7ddc32004-03-31 19:00:16 +0000471{
472 vm_stop(EXCP_INTERRUPT);
473}
474
bellard9307c4c2004-04-04 12:57:25 +0000475static void do_cont(void)
bellard8a7ddc32004-03-31 19:00:16 +0000476{
477 vm_start();
478}
479
bellard67b915a2004-03-31 23:37:16 +0000480#ifdef CONFIG_GDBSTUB
pbrookcfc34752007-02-22 01:48:01 +0000481static void do_gdbserver(const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000482{
pbrookcfc34752007-02-22 01:48:01 +0000483 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000484 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000485 if (gdbserver_start(port) < 0) {
486 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000487 } else {
pbrookcfc34752007-02-22 01:48:01 +0000488 qemu_printf("Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000489 }
490}
bellard67b915a2004-03-31 23:37:16 +0000491#endif
bellard8a7ddc32004-03-31 19:00:16 +0000492
bellard9307c4c2004-04-04 12:57:25 +0000493static void term_printc(int c)
494{
495 term_printf("'");
496 switch(c) {
497 case '\'':
498 term_printf("\\'");
499 break;
500 case '\\':
501 term_printf("\\\\");
502 break;
503 case '\n':
504 term_printf("\\n");
505 break;
506 case '\r':
507 term_printf("\\r");
508 break;
509 default:
510 if (c >= 32 && c <= 126) {
511 term_printf("%c", c);
512 } else {
513 term_printf("\\x%02x", c);
514 }
515 break;
516 }
517 term_printf("'");
518}
519
ths5fafdf22007-09-16 21:08:06 +0000520static void memory_dump(int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000521 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000522{
bellard6a00d602005-11-21 23:25:50 +0000523 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000524 int nb_per_line, l, line_size, i, max_digits, len;
525 uint8_t buf[16];
526 uint64_t v;
527
528 if (format == 'i') {
529 int flags;
530 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000531 env = mon_get_cpu();
532 if (!env && !is_physical)
533 return;
bellard9307c4c2004-04-04 12:57:25 +0000534#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000535 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000536 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000537 } else if (wsize == 4) {
538 flags = 0;
539 } else {
bellard6a15fd12006-04-12 21:07:07 +0000540 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000541 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000542 if (env) {
543#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000544 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000545 (env->segs[R_CS].flags & DESC_L_MASK))
546 flags = 2;
547 else
548#endif
549 if (!(env->segs[R_CS].flags & DESC_B_MASK))
550 flags = 1;
551 }
bellard4c27ba22004-04-25 18:05:08 +0000552 }
553#endif
bellard6a00d602005-11-21 23:25:50 +0000554 monitor_disas(env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000555 return;
556 }
557
558 len = wsize * count;
559 if (wsize == 1)
560 line_size = 8;
561 else
562 line_size = 16;
563 nb_per_line = line_size / wsize;
564 max_digits = 0;
565
566 switch(format) {
567 case 'o':
568 max_digits = (wsize * 8 + 2) / 3;
569 break;
570 default:
571 case 'x':
572 max_digits = (wsize * 8) / 4;
573 break;
574 case 'u':
575 case 'd':
576 max_digits = (wsize * 8 * 10 + 32) / 33;
577 break;
578 case 'c':
579 wsize = 1;
580 break;
581 }
582
583 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000584 if (is_physical)
585 term_printf(TARGET_FMT_plx ":", addr);
586 else
587 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000588 l = len;
589 if (l > line_size)
590 l = line_size;
591 if (is_physical) {
592 cpu_physical_memory_rw(addr, buf, l, 0);
593 } else {
bellard6a00d602005-11-21 23:25:50 +0000594 env = mon_get_cpu();
595 if (!env)
596 break;
597 cpu_memory_rw_debug(env, addr, buf, l, 0);
bellard9307c4c2004-04-04 12:57:25 +0000598 }
ths5fafdf22007-09-16 21:08:06 +0000599 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000600 while (i < l) {
601 switch(wsize) {
602 default:
603 case 1:
604 v = ldub_raw(buf + i);
605 break;
606 case 2:
607 v = lduw_raw(buf + i);
608 break;
609 case 4:
bellard92a31b12005-02-10 22:00:52 +0000610 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000611 break;
612 case 8:
613 v = ldq_raw(buf + i);
614 break;
615 }
616 term_printf(" ");
617 switch(format) {
618 case 'o':
bellard26a76462006-06-25 18:15:32 +0000619 term_printf("%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000620 break;
621 case 'x':
bellard26a76462006-06-25 18:15:32 +0000622 term_printf("0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000623 break;
624 case 'u':
bellard26a76462006-06-25 18:15:32 +0000625 term_printf("%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000626 break;
627 case 'd':
bellard26a76462006-06-25 18:15:32 +0000628 term_printf("%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000629 break;
630 case 'c':
631 term_printc(v);
632 break;
633 }
634 i += wsize;
635 }
636 term_printf("\n");
637 addr += l;
638 len -= l;
639 }
640}
641
bellard92a31b12005-02-10 22:00:52 +0000642#if TARGET_LONG_BITS == 64
643#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
644#else
645#define GET_TLONG(h, l) (l)
646#endif
647
ths5fafdf22007-09-16 21:08:06 +0000648static void do_memory_dump(int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000649 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000650{
bellard92a31b12005-02-10 22:00:52 +0000651 target_long addr = GET_TLONG(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000652 memory_dump(count, format, size, addr, 0);
653}
654
blueswir17743e582007-09-24 18:39:04 +0000655#if TARGET_PHYS_ADDR_BITS > 32
656#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
657#else
658#define GET_TPHYSADDR(h, l) (l)
659#endif
660
bellard92a31b12005-02-10 22:00:52 +0000661static void do_physical_memory_dump(int count, int format, int size,
662 uint32_t addrh, uint32_t addrl)
663
bellard9307c4c2004-04-04 12:57:25 +0000664{
blueswir17743e582007-09-24 18:39:04 +0000665 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000666 memory_dump(count, format, size, addr, 1);
667}
668
bellard92a31b12005-02-10 22:00:52 +0000669static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000670{
blueswir17743e582007-09-24 18:39:04 +0000671 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
672#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000673 switch(format) {
674 case 'o':
675 term_printf("%#o", val);
676 break;
677 case 'x':
678 term_printf("%#x", val);
679 break;
680 case 'u':
681 term_printf("%u", val);
682 break;
683 default:
684 case 'd':
685 term_printf("%d", val);
686 break;
687 case 'c':
688 term_printc(val);
689 break;
690 }
bellard92a31b12005-02-10 22:00:52 +0000691#else
692 switch(format) {
693 case 'o':
bellard26a76462006-06-25 18:15:32 +0000694 term_printf("%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000695 break;
696 case 'x':
bellard26a76462006-06-25 18:15:32 +0000697 term_printf("%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000698 break;
699 case 'u':
bellard26a76462006-06-25 18:15:32 +0000700 term_printf("%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000701 break;
702 default:
703 case 'd':
bellard26a76462006-06-25 18:15:32 +0000704 term_printf("%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000705 break;
706 case 'c':
707 term_printc(val);
708 break;
709 }
710#endif
bellard9307c4c2004-04-04 12:57:25 +0000711 term_printf("\n");
712}
713
ths5fafdf22007-09-16 21:08:06 +0000714static void do_memory_save(unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000715 uint32_t size, const char *filename)
716{
717 FILE *f;
718 target_long addr = GET_TLONG(valh, vall);
719 uint32_t l;
720 CPUState *env;
721 uint8_t buf[1024];
722
723 env = mon_get_cpu();
724 if (!env)
725 return;
726
727 f = fopen(filename, "wb");
728 if (!f) {
729 term_printf("could not open '%s'\n", filename);
730 return;
731 }
732 while (size != 0) {
733 l = sizeof(buf);
734 if (l > size)
735 l = size;
736 cpu_memory_rw_debug(env, addr, buf, l, 0);
737 fwrite(buf, 1, l, f);
738 addr += l;
739 size -= l;
740 }
741 fclose(f);
742}
743
aurel32a8bdf7a2008-04-11 21:36:14 +0000744static void do_physical_memory_save(unsigned int valh, unsigned int vall,
745 uint32_t size, const char *filename)
746{
747 FILE *f;
748 uint32_t l;
749 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000750 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000751
752 f = fopen(filename, "wb");
753 if (!f) {
754 term_printf("could not open '%s'\n", filename);
755 return;
756 }
757 while (size != 0) {
758 l = sizeof(buf);
759 if (l > size)
760 l = size;
761 cpu_physical_memory_rw(addr, buf, l, 0);
762 fwrite(buf, 1, l, f);
763 fflush(f);
764 addr += l;
765 size -= l;
766 }
767 fclose(f);
768}
769
bellarde4cf1ad2005-06-04 20:15:57 +0000770static void do_sum(uint32_t start, uint32_t size)
771{
772 uint32_t addr;
773 uint8_t buf[1];
774 uint16_t sum;
775
776 sum = 0;
777 for(addr = start; addr < (start + size); addr++) {
778 cpu_physical_memory_rw(addr, buf, 1, 0);
779 /* BSD sum algorithm ('sum' Unix command) */
780 sum = (sum >> 1) | (sum << 15);
781 sum += buf[0];
782 }
783 term_printf("%05d\n", sum);
784}
785
bellarda3a91a32004-06-04 11:06:21 +0000786typedef struct {
787 int keycode;
788 const char *name;
789} KeyDef;
790
791static const KeyDef key_defs[] = {
792 { 0x2a, "shift" },
793 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000794
bellarda3a91a32004-06-04 11:06:21 +0000795 { 0x38, "alt" },
796 { 0xb8, "alt_r" },
797 { 0x1d, "ctrl" },
798 { 0x9d, "ctrl_r" },
799
800 { 0xdd, "menu" },
801
802 { 0x01, "esc" },
803
804 { 0x02, "1" },
805 { 0x03, "2" },
806 { 0x04, "3" },
807 { 0x05, "4" },
808 { 0x06, "5" },
809 { 0x07, "6" },
810 { 0x08, "7" },
811 { 0x09, "8" },
812 { 0x0a, "9" },
813 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000814 { 0x0c, "minus" },
815 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000816 { 0x0e, "backspace" },
817
818 { 0x0f, "tab" },
819 { 0x10, "q" },
820 { 0x11, "w" },
821 { 0x12, "e" },
822 { 0x13, "r" },
823 { 0x14, "t" },
824 { 0x15, "y" },
825 { 0x16, "u" },
826 { 0x17, "i" },
827 { 0x18, "o" },
828 { 0x19, "p" },
829
830 { 0x1c, "ret" },
831
832 { 0x1e, "a" },
833 { 0x1f, "s" },
834 { 0x20, "d" },
835 { 0x21, "f" },
836 { 0x22, "g" },
837 { 0x23, "h" },
838 { 0x24, "j" },
839 { 0x25, "k" },
840 { 0x26, "l" },
841
842 { 0x2c, "z" },
843 { 0x2d, "x" },
844 { 0x2e, "c" },
845 { 0x2f, "v" },
846 { 0x30, "b" },
847 { 0x31, "n" },
848 { 0x32, "m" },
ths3b46e622007-09-17 08:09:54 +0000849
balrog4d3b6f62008-02-10 16:33:14 +0000850 { 0x37, "asterisk" },
851
bellarda3a91a32004-06-04 11:06:21 +0000852 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000853 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000854 { 0x3b, "f1" },
855 { 0x3c, "f2" },
856 { 0x3d, "f3" },
857 { 0x3e, "f4" },
858 { 0x3f, "f5" },
859 { 0x40, "f6" },
860 { 0x41, "f7" },
861 { 0x42, "f8" },
862 { 0x43, "f9" },
863 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000864 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000865 { 0x46, "scroll_lock" },
866
bellard64866c32006-05-07 18:03:31 +0000867 { 0xb5, "kp_divide" },
868 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000869 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000870 { 0x4e, "kp_add" },
871 { 0x9c, "kp_enter" },
872 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +0000873 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +0000874
875 { 0x52, "kp_0" },
876 { 0x4f, "kp_1" },
877 { 0x50, "kp_2" },
878 { 0x51, "kp_3" },
879 { 0x4b, "kp_4" },
880 { 0x4c, "kp_5" },
881 { 0x4d, "kp_6" },
882 { 0x47, "kp_7" },
883 { 0x48, "kp_8" },
884 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000885
bellarda3a91a32004-06-04 11:06:21 +0000886 { 0x56, "<" },
887
888 { 0x57, "f11" },
889 { 0x58, "f12" },
890
891 { 0xb7, "print" },
892
893 { 0xc7, "home" },
894 { 0xc9, "pgup" },
895 { 0xd1, "pgdn" },
896 { 0xcf, "end" },
897
898 { 0xcb, "left" },
899 { 0xc8, "up" },
900 { 0xd0, "down" },
901 { 0xcd, "right" },
902
903 { 0xd2, "insert" },
904 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +0000905#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
906 { 0xf0, "stop" },
907 { 0xf1, "again" },
908 { 0xf2, "props" },
909 { 0xf3, "undo" },
910 { 0xf4, "front" },
911 { 0xf5, "copy" },
912 { 0xf6, "open" },
913 { 0xf7, "paste" },
914 { 0xf8, "find" },
915 { 0xf9, "cut" },
916 { 0xfa, "lf" },
917 { 0xfb, "help" },
918 { 0xfc, "meta_l" },
919 { 0xfd, "meta_r" },
920 { 0xfe, "compose" },
921#endif
bellarda3a91a32004-06-04 11:06:21 +0000922 { 0, NULL },
923};
924
925static int get_keycode(const char *key)
926{
927 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +0000928 char *endp;
929 int ret;
bellarda3a91a32004-06-04 11:06:21 +0000930
931 for(p = key_defs; p->name != NULL; p++) {
932 if (!strcmp(key, p->name))
933 return p->keycode;
934 }
bellard64866c32006-05-07 18:03:31 +0000935 if (strstart(key, "0x", NULL)) {
936 ret = strtoul(key, &endp, 0);
937 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
938 return ret;
939 }
bellarda3a91a32004-06-04 11:06:21 +0000940 return -1;
941}
942
balrogc8256f92008-06-08 22:45:01 +0000943#define MAX_KEYCODES 16
944static uint8_t keycodes[MAX_KEYCODES];
945static int nb_pending_keycodes;
946static QEMUTimer *key_timer;
947
948static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +0000949{
balrogc8256f92008-06-08 22:45:01 +0000950 int keycode;
951
952 while (nb_pending_keycodes > 0) {
953 nb_pending_keycodes--;
954 keycode = keycodes[nb_pending_keycodes];
955 if (keycode & 0x80)
956 kbd_put_keycode(0xe0);
957 kbd_put_keycode(keycode | 0x80);
958 }
959}
960
961static void do_sendkey(const char *string, int has_hold_time, int hold_time)
962{
balrog3401c0d2008-06-04 10:05:59 +0000963 char keyname_buf[16];
964 char *separator;
965 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000966
balrogc8256f92008-06-08 22:45:01 +0000967 if (nb_pending_keycodes > 0) {
968 qemu_del_timer(key_timer);
969 release_keys(NULL);
970 }
971 if (!has_hold_time)
972 hold_time = 100;
973 i = 0;
balrog3401c0d2008-06-04 10:05:59 +0000974 while (1) {
975 separator = strchr(string, '-');
976 keyname_len = separator ? separator - string : strlen(string);
977 if (keyname_len > 0) {
978 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
979 if (keyname_len > sizeof(keyname_buf) - 1) {
980 term_printf("invalid key: '%s...'\n", keyname_buf);
981 return;
bellarda3a91a32004-06-04 11:06:21 +0000982 }
balrogc8256f92008-06-08 22:45:01 +0000983 if (i == MAX_KEYCODES) {
balrog3401c0d2008-06-04 10:05:59 +0000984 term_printf("too many keys\n");
985 return;
986 }
987 keyname_buf[keyname_len] = 0;
988 keycode = get_keycode(keyname_buf);
989 if (keycode < 0) {
990 term_printf("unknown key: '%s'\n", keyname_buf);
991 return;
992 }
balrogc8256f92008-06-08 22:45:01 +0000993 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +0000994 }
balrog3401c0d2008-06-04 10:05:59 +0000995 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +0000996 break;
balrog3401c0d2008-06-04 10:05:59 +0000997 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +0000998 }
balrogc8256f92008-06-08 22:45:01 +0000999 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001000 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001001 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001002 keycode = keycodes[i];
1003 if (keycode & 0x80)
1004 kbd_put_keycode(0xe0);
1005 kbd_put_keycode(keycode & 0x7f);
1006 }
balrogc8256f92008-06-08 22:45:01 +00001007 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001008 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1009 muldiv64(ticks_per_sec, hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001010}
1011
bellard13224a82006-07-14 22:03:35 +00001012static int mouse_button_state;
1013
ths5fafdf22007-09-16 21:08:06 +00001014static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +00001015 const char *dz_str)
1016{
1017 int dx, dy, dz;
1018 dx = strtol(dx_str, NULL, 0);
1019 dy = strtol(dy_str, NULL, 0);
1020 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001021 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001022 dz = strtol(dz_str, NULL, 0);
1023 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1024}
1025
1026static void do_mouse_button(int button_state)
1027{
1028 mouse_button_state = button_state;
1029 kbd_mouse_event(0, 0, 0, mouse_button_state);
1030}
1031
bellard34405572004-06-08 00:55:58 +00001032static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
1033{
1034 uint32_t val;
1035 int suffix;
1036
1037 if (has_index) {
1038 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1039 addr++;
1040 }
1041 addr &= 0xffff;
1042
1043 switch(size) {
1044 default:
1045 case 1:
1046 val = cpu_inb(NULL, addr);
1047 suffix = 'b';
1048 break;
1049 case 2:
1050 val = cpu_inw(NULL, addr);
1051 suffix = 'w';
1052 break;
1053 case 4:
1054 val = cpu_inl(NULL, addr);
1055 suffix = 'l';
1056 break;
1057 }
1058 term_printf("port%c[0x%04x] = %#0*x\n",
1059 suffix, addr, size * 2, val);
1060}
bellarda3a91a32004-06-04 11:06:21 +00001061
blueswir13b4366d2008-06-20 16:25:06 +00001062/* boot_set handler */
1063static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1064static void *boot_opaque;
1065
1066void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1067{
1068 qemu_boot_set_handler = func;
1069 boot_opaque = opaque;
1070}
1071
aurel320ecdffb2008-05-04 20:11:34 +00001072static void do_boot_set(const char *bootdevice)
1073{
1074 int res;
1075
1076 if (qemu_boot_set_handler) {
blueswir13b4366d2008-06-20 16:25:06 +00001077 res = qemu_boot_set_handler(boot_opaque, bootdevice);
aurel320ecdffb2008-05-04 20:11:34 +00001078 if (res == 0)
1079 term_printf("boot device list now set to %s\n", bootdevice);
1080 else
1081 term_printf("setting boot device list failed with error %i\n", res);
1082 } else {
1083 term_printf("no function defined to set boot device list for this architecture\n");
1084 }
1085}
1086
bellarde4f90822004-06-20 12:35:44 +00001087static void do_system_reset(void)
1088{
1089 qemu_system_reset_request();
1090}
1091
bellard34751872005-07-02 14:31:34 +00001092static void do_system_powerdown(void)
1093{
1094 qemu_system_powerdown_request();
1095}
1096
bellardb86bda52004-09-18 19:32:46 +00001097#if defined(TARGET_I386)
1098static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1099{
ths5fafdf22007-09-16 21:08:06 +00001100 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001101 addr,
1102 pte & mask,
1103 pte & PG_GLOBAL_MASK ? 'G' : '-',
1104 pte & PG_PSE_MASK ? 'P' : '-',
1105 pte & PG_DIRTY_MASK ? 'D' : '-',
1106 pte & PG_ACCESSED_MASK ? 'A' : '-',
1107 pte & PG_PCD_MASK ? 'C' : '-',
1108 pte & PG_PWT_MASK ? 'T' : '-',
1109 pte & PG_USER_MASK ? 'U' : '-',
1110 pte & PG_RW_MASK ? 'W' : '-');
1111}
1112
1113static void tlb_info(void)
1114{
bellard6a00d602005-11-21 23:25:50 +00001115 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001116 int l1, l2;
1117 uint32_t pgd, pde, pte;
1118
bellard6a00d602005-11-21 23:25:50 +00001119 env = mon_get_cpu();
1120 if (!env)
1121 return;
1122
bellardb86bda52004-09-18 19:32:46 +00001123 if (!(env->cr[0] & CR0_PG_MASK)) {
1124 term_printf("PG disabled\n");
1125 return;
1126 }
1127 pgd = env->cr[3] & ~0xfff;
1128 for(l1 = 0; l1 < 1024; l1++) {
1129 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1130 pde = le32_to_cpu(pde);
1131 if (pde & PG_PRESENT_MASK) {
1132 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1133 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1134 } else {
1135 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001136 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001137 (uint8_t *)&pte, 4);
1138 pte = le32_to_cpu(pte);
1139 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001140 print_pte((l1 << 22) + (l2 << 12),
1141 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001142 ~0xfff);
1143 }
1144 }
1145 }
1146 }
1147 }
1148}
1149
ths5fafdf22007-09-16 21:08:06 +00001150static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001151 uint32_t end, int prot)
1152{
bellard9746b152004-11-11 18:30:24 +00001153 int prot1;
1154 prot1 = *plast_prot;
1155 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001156 if (*pstart != -1) {
1157 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001158 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001159 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001160 'r',
bellard9746b152004-11-11 18:30:24 +00001161 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001162 }
1163 if (prot != 0)
1164 *pstart = end;
1165 else
1166 *pstart = -1;
1167 *plast_prot = prot;
1168 }
1169}
1170
1171static void mem_info(void)
1172{
bellard6a00d602005-11-21 23:25:50 +00001173 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001174 int l1, l2, prot, last_prot;
1175 uint32_t pgd, pde, pte, start, end;
1176
bellard6a00d602005-11-21 23:25:50 +00001177 env = mon_get_cpu();
1178 if (!env)
1179 return;
1180
bellardb86bda52004-09-18 19:32:46 +00001181 if (!(env->cr[0] & CR0_PG_MASK)) {
1182 term_printf("PG disabled\n");
1183 return;
1184 }
1185 pgd = env->cr[3] & ~0xfff;
1186 last_prot = 0;
1187 start = -1;
1188 for(l1 = 0; l1 < 1024; l1++) {
1189 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1190 pde = le32_to_cpu(pde);
1191 end = l1 << 22;
1192 if (pde & PG_PRESENT_MASK) {
1193 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1194 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1195 mem_print(&start, &last_prot, end, prot);
1196 } else {
1197 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001198 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001199 (uint8_t *)&pte, 4);
1200 pte = le32_to_cpu(pte);
1201 end = (l1 << 22) + (l2 << 12);
1202 if (pte & PG_PRESENT_MASK) {
1203 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1204 } else {
1205 prot = 0;
1206 }
1207 mem_print(&start, &last_prot, end, prot);
1208 }
1209 }
1210 } else {
1211 prot = 0;
1212 mem_print(&start, &last_prot, end, prot);
1213 }
1214 }
1215}
1216#endif
1217
bellard0f4c6412005-07-24 18:10:56 +00001218static void do_info_kqemu(void)
1219{
1220#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001221 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001222 int val;
1223 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001224 env = mon_get_cpu();
1225 if (!env) {
1226 term_printf("No cpu initialized yet");
1227 return;
1228 }
1229 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001230 term_printf("kqemu support: ");
1231 switch(val) {
1232 default:
1233 case 0:
1234 term_printf("disabled\n");
1235 break;
1236 case 1:
1237 term_printf("enabled for user code\n");
1238 break;
1239 case 2:
1240 term_printf("enabled for user and kernel code\n");
1241 break;
1242 }
bellard0f4c6412005-07-24 18:10:56 +00001243#else
bellard5f1ce942006-02-08 22:40:15 +00001244 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001245#endif
ths5fafdf22007-09-16 21:08:06 +00001246}
bellard0f4c6412005-07-24 18:10:56 +00001247
bellard5f1ce942006-02-08 22:40:15 +00001248#ifdef CONFIG_PROFILER
1249
1250int64_t kqemu_time;
1251int64_t qemu_time;
1252int64_t kqemu_exec_count;
1253int64_t dev_time;
1254int64_t kqemu_ret_int_count;
1255int64_t kqemu_ret_excp_count;
1256int64_t kqemu_ret_intr_count;
1257
1258static void do_info_profile(void)
1259{
1260 int64_t total;
1261 total = qemu_time;
1262 if (total == 0)
1263 total = 1;
bellard26a76462006-06-25 18:15:32 +00001264 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001265 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001266 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001267 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001268 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001269 kqemu_time, kqemu_time / (double)ticks_per_sec,
1270 kqemu_time / (double)total * 100.0,
1271 kqemu_exec_count,
1272 kqemu_ret_int_count,
1273 kqemu_ret_excp_count,
1274 kqemu_ret_intr_count);
1275 qemu_time = 0;
1276 kqemu_time = 0;
1277 kqemu_exec_count = 0;
1278 dev_time = 0;
1279 kqemu_ret_int_count = 0;
1280 kqemu_ret_excp_count = 0;
1281 kqemu_ret_intr_count = 0;
1282#ifdef USE_KQEMU
1283 kqemu_record_dump();
1284#endif
1285}
1286#else
1287static void do_info_profile(void)
1288{
1289 term_printf("Internal profiler not compiled\n");
1290}
1291#endif
1292
bellardec36b692006-07-16 18:57:03 +00001293/* Capture support */
1294static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1295
1296static void do_info_capture (void)
1297{
1298 int i;
1299 CaptureState *s;
1300
1301 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1302 term_printf ("[%d]: ", i);
1303 s->ops.info (s->opaque);
1304 }
1305}
1306
1307static void do_stop_capture (int n)
1308{
1309 int i;
1310 CaptureState *s;
1311
1312 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1313 if (i == n) {
1314 s->ops.destroy (s->opaque);
1315 LIST_REMOVE (s, entries);
1316 qemu_free (s);
1317 return;
1318 }
1319 }
1320}
1321
1322#ifdef HAS_AUDIO
1323int wav_start_capture (CaptureState *s, const char *path, int freq,
1324 int bits, int nchannels);
1325
1326static void do_wav_capture (const char *path,
1327 int has_freq, int freq,
1328 int has_bits, int bits,
1329 int has_channels, int nchannels)
1330{
1331 CaptureState *s;
1332
1333 s = qemu_mallocz (sizeof (*s));
1334 if (!s) {
1335 term_printf ("Not enough memory to add wave capture\n");
1336 return;
1337 }
1338
1339 freq = has_freq ? freq : 44100;
1340 bits = has_bits ? bits : 16;
1341 nchannels = has_channels ? nchannels : 2;
1342
1343 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1344 term_printf ("Faied to add wave capture\n");
1345 qemu_free (s);
1346 }
1347 LIST_INSERT_HEAD (&capture_head, s, entries);
1348}
1349#endif
1350
aurel32dc1c0b72008-04-27 23:52:12 +00001351#if defined(TARGET_I386)
1352static void do_inject_nmi(int cpu_index)
1353{
1354 CPUState *env;
1355
1356 for (env = first_cpu; env != NULL; env = env->next_cpu)
1357 if (env->cpu_index == cpu_index) {
1358 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1359 break;
1360 }
1361}
1362#endif
1363
bellard9dc39cb2004-03-14 21:38:27 +00001364static term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001365 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001366 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001367 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001368 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001369 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001370 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001371 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001372 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001373 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001374 "[-f] device", "eject a removable medium (use -f to force it)" },
aurel322ecea9b2008-06-18 22:10:01 +00001375 { "change", "BFs?", do_change,
1376 "device filename [format]", "change a removable medium, optional format" },
ths5fafdf22007-09-16 21:08:06 +00001377 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001378 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001379 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001380 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001381 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001382 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001383 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001384 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001385 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001386 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001387 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001388 "tag|id", "delete a VM snapshot from its tag or id" },
1389 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001390 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001391 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001392 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001393#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001394 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001395 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001396#endif
ths5fafdf22007-09-16 21:08:06 +00001397 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001398 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001399 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001400 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001401 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001402 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001403 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001404 "/fmt addr", "I/O port read" },
1405
balrogc8256f92008-06-08 22:45:01 +00001406 { "sendkey", "si?", do_sendkey,
1407 "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 +00001408 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001409 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001410 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001411 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001412 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001413 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001414 { "usb_add", "s", do_usb_add,
1415 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1416 { "usb_del", "s", do_usb_del,
1417 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001418 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001419 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001420 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001421 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001422 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001423 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001424 { "mouse_set", "i", do_mouse_set,
1425 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001426#ifdef HAS_AUDIO
1427 { "wavcapture", "si?i?i?", do_wav_capture,
1428 "path [frequency bits channels]",
1429 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1430#endif
1431 { "stopcapture", "i", do_stop_capture,
1432 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001433 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001434 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001435 { "pmemsave", "lis", do_physical_memory_save,
1436 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001437 { "boot_set", "s", do_boot_set,
1438 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001439#if defined(TARGET_I386)
1440 { "nmi", "i", do_inject_nmi,
1441 "cpu", "inject an NMI on the given CPU", },
1442#endif
ths5fafdf22007-09-16 21:08:06 +00001443 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001444};
1445
1446static term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001447 { "version", "", do_info_version,
1448 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001449 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001450 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001451 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001452 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001453 { "blockstats", "", do_info_blockstats,
1454 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001455 { "registers", "", do_info_registers,
1456 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001457 { "cpus", "", do_info_cpus,
1458 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001459 { "history", "", do_info_history,
1460 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001461 { "irq", "", irq_info,
1462 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001463 { "pic", "", pic_info,
1464 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001465 { "pci", "", pci_info,
1466 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001467#if defined(TARGET_I386)
1468 { "tlb", "", tlb_info,
1469 "", "show virtual to physical memory mappings", },
1470 { "mem", "", mem_info,
1471 "", "show the active virtual memory mappings", },
1472#endif
bellarde3db7222005-01-26 22:00:47 +00001473 { "jit", "", do_info_jit,
1474 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001475 { "kqemu", "", do_info_kqemu,
1476 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001477 { "usb", "", usb_info,
1478 "", "show guest USB devices", },
1479 { "usbhost", "", usb_host_info,
1480 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001481 { "profile", "", do_info_profile,
1482 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001483 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001484 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001485 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001486 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001487 { "pcmcia", "", pcmcia_info,
1488 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001489 { "mice", "", do_info_mice,
1490 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001491 { "vnc", "", do_info_vnc,
1492 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001493 { "name", "", do_info_name,
1494 "", "show the current VM name" },
j_mayer76a66252007-03-07 08:32:30 +00001495#if defined(TARGET_PPC)
1496 { "cpustats", "", do_info_cpu_stats,
1497 "", "show CPU statistics", },
1498#endif
blueswir131a60e22007-10-26 18:42:59 +00001499#if defined(CONFIG_SLIRP)
1500 { "slirp", "", do_info_slirp,
1501 "", "show SLIRP statistics", },
1502#endif
bellard9dc39cb2004-03-14 21:38:27 +00001503 { NULL, NULL, },
1504};
1505
bellard9307c4c2004-04-04 12:57:25 +00001506/*******************************************************************/
1507
1508static const char *pch;
1509static jmp_buf expr_env;
1510
bellard92a31b12005-02-10 22:00:52 +00001511#define MD_TLONG 0
1512#define MD_I32 1
1513
bellard9307c4c2004-04-04 12:57:25 +00001514typedef struct MonitorDef {
1515 const char *name;
1516 int offset;
bellard92a31b12005-02-10 22:00:52 +00001517 target_long (*get_value)(struct MonitorDef *md, int val);
1518 int type;
bellard9307c4c2004-04-04 12:57:25 +00001519} MonitorDef;
1520
bellard57206fd2004-04-25 18:54:52 +00001521#if defined(TARGET_I386)
bellard92a31b12005-02-10 22:00:52 +00001522static target_long monitor_get_pc (struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001523{
bellard6a00d602005-11-21 23:25:50 +00001524 CPUState *env = mon_get_cpu();
1525 if (!env)
1526 return 0;
1527 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001528}
1529#endif
1530
bellarda541f292004-04-12 20:39:29 +00001531#if defined(TARGET_PPC)
bellard92a31b12005-02-10 22:00:52 +00001532static target_long monitor_get_ccr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001533{
bellard6a00d602005-11-21 23:25:50 +00001534 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001535 unsigned int u;
1536 int i;
1537
bellard6a00d602005-11-21 23:25:50 +00001538 if (!env)
1539 return 0;
1540
bellarda541f292004-04-12 20:39:29 +00001541 u = 0;
1542 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001543 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001544
1545 return u;
1546}
1547
bellard92a31b12005-02-10 22:00:52 +00001548static target_long monitor_get_msr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001549{
bellard6a00d602005-11-21 23:25:50 +00001550 CPUState *env = mon_get_cpu();
1551 if (!env)
1552 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001553 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001554}
1555
bellard92a31b12005-02-10 22:00:52 +00001556static target_long monitor_get_xer (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001557{
bellard6a00d602005-11-21 23:25:50 +00001558 CPUState *env = mon_get_cpu();
1559 if (!env)
1560 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001561 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001562}
bellard9fddaa02004-05-21 12:59:32 +00001563
bellard92a31b12005-02-10 22:00:52 +00001564static target_long monitor_get_decr (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001565{
bellard6a00d602005-11-21 23:25:50 +00001566 CPUState *env = mon_get_cpu();
1567 if (!env)
1568 return 0;
1569 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001570}
1571
bellard92a31b12005-02-10 22:00:52 +00001572static target_long monitor_get_tbu (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001573{
bellard6a00d602005-11-21 23:25:50 +00001574 CPUState *env = mon_get_cpu();
1575 if (!env)
1576 return 0;
1577 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001578}
1579
bellard92a31b12005-02-10 22:00:52 +00001580static target_long monitor_get_tbl (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001581{
bellard6a00d602005-11-21 23:25:50 +00001582 CPUState *env = mon_get_cpu();
1583 if (!env)
1584 return 0;
1585 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001586}
bellarda541f292004-04-12 20:39:29 +00001587#endif
1588
bellarde95c8d52004-09-30 22:22:08 +00001589#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001590#ifndef TARGET_SPARC64
bellard92a31b12005-02-10 22:00:52 +00001591static target_long monitor_get_psr (struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001592{
bellard6a00d602005-11-21 23:25:50 +00001593 CPUState *env = mon_get_cpu();
1594 if (!env)
1595 return 0;
1596 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001597}
bellard7b936c02005-10-30 17:05:13 +00001598#endif
bellarde95c8d52004-09-30 22:22:08 +00001599
bellard92a31b12005-02-10 22:00:52 +00001600static target_long monitor_get_reg(struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001601{
bellard6a00d602005-11-21 23:25:50 +00001602 CPUState *env = mon_get_cpu();
1603 if (!env)
1604 return 0;
1605 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001606}
1607#endif
1608
bellard9307c4c2004-04-04 12:57:25 +00001609static MonitorDef monitor_defs[] = {
1610#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001611
1612#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001613 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001614 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001615 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001616
bellard9307c4c2004-04-04 12:57:25 +00001617 { "eax", offsetof(CPUState, regs[0]) },
1618 { "ecx", offsetof(CPUState, regs[1]) },
1619 { "edx", offsetof(CPUState, regs[2]) },
1620 { "ebx", offsetof(CPUState, regs[3]) },
1621 { "esp|sp", offsetof(CPUState, regs[4]) },
1622 { "ebp|fp", offsetof(CPUState, regs[5]) },
1623 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001624 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001625#ifdef TARGET_X86_64
1626 { "r8", offsetof(CPUState, regs[8]) },
1627 { "r9", offsetof(CPUState, regs[9]) },
1628 { "r10", offsetof(CPUState, regs[10]) },
1629 { "r11", offsetof(CPUState, regs[11]) },
1630 { "r12", offsetof(CPUState, regs[12]) },
1631 { "r13", offsetof(CPUState, regs[13]) },
1632 { "r14", offsetof(CPUState, regs[14]) },
1633 { "r15", offsetof(CPUState, regs[15]) },
1634#endif
bellard9307c4c2004-04-04 12:57:25 +00001635 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001636 { "eip", offsetof(CPUState, eip) },
1637 SEG("cs", R_CS)
1638 SEG("ds", R_DS)
1639 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001640 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001641 SEG("fs", R_FS)
1642 SEG("gs", R_GS)
1643 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001644#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001645 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001646 { "r0", offsetof(CPUState, gpr[0]) },
1647 { "r1", offsetof(CPUState, gpr[1]) },
1648 { "r2", offsetof(CPUState, gpr[2]) },
1649 { "r3", offsetof(CPUState, gpr[3]) },
1650 { "r4", offsetof(CPUState, gpr[4]) },
1651 { "r5", offsetof(CPUState, gpr[5]) },
1652 { "r6", offsetof(CPUState, gpr[6]) },
1653 { "r7", offsetof(CPUState, gpr[7]) },
1654 { "r8", offsetof(CPUState, gpr[8]) },
1655 { "r9", offsetof(CPUState, gpr[9]) },
1656 { "r10", offsetof(CPUState, gpr[10]) },
1657 { "r11", offsetof(CPUState, gpr[11]) },
1658 { "r12", offsetof(CPUState, gpr[12]) },
1659 { "r13", offsetof(CPUState, gpr[13]) },
1660 { "r14", offsetof(CPUState, gpr[14]) },
1661 { "r15", offsetof(CPUState, gpr[15]) },
1662 { "r16", offsetof(CPUState, gpr[16]) },
1663 { "r17", offsetof(CPUState, gpr[17]) },
1664 { "r18", offsetof(CPUState, gpr[18]) },
1665 { "r19", offsetof(CPUState, gpr[19]) },
1666 { "r20", offsetof(CPUState, gpr[20]) },
1667 { "r21", offsetof(CPUState, gpr[21]) },
1668 { "r22", offsetof(CPUState, gpr[22]) },
1669 { "r23", offsetof(CPUState, gpr[23]) },
1670 { "r24", offsetof(CPUState, gpr[24]) },
1671 { "r25", offsetof(CPUState, gpr[25]) },
1672 { "r26", offsetof(CPUState, gpr[26]) },
1673 { "r27", offsetof(CPUState, gpr[27]) },
1674 { "r28", offsetof(CPUState, gpr[28]) },
1675 { "r29", offsetof(CPUState, gpr[29]) },
1676 { "r30", offsetof(CPUState, gpr[30]) },
1677 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001678 /* Floating point registers */
1679 { "f0", offsetof(CPUState, fpr[0]) },
1680 { "f1", offsetof(CPUState, fpr[1]) },
1681 { "f2", offsetof(CPUState, fpr[2]) },
1682 { "f3", offsetof(CPUState, fpr[3]) },
1683 { "f4", offsetof(CPUState, fpr[4]) },
1684 { "f5", offsetof(CPUState, fpr[5]) },
1685 { "f6", offsetof(CPUState, fpr[6]) },
1686 { "f7", offsetof(CPUState, fpr[7]) },
1687 { "f8", offsetof(CPUState, fpr[8]) },
1688 { "f9", offsetof(CPUState, fpr[9]) },
1689 { "f10", offsetof(CPUState, fpr[10]) },
1690 { "f11", offsetof(CPUState, fpr[11]) },
1691 { "f12", offsetof(CPUState, fpr[12]) },
1692 { "f13", offsetof(CPUState, fpr[13]) },
1693 { "f14", offsetof(CPUState, fpr[14]) },
1694 { "f15", offsetof(CPUState, fpr[15]) },
1695 { "f16", offsetof(CPUState, fpr[16]) },
1696 { "f17", offsetof(CPUState, fpr[17]) },
1697 { "f18", offsetof(CPUState, fpr[18]) },
1698 { "f19", offsetof(CPUState, fpr[19]) },
1699 { "f20", offsetof(CPUState, fpr[20]) },
1700 { "f21", offsetof(CPUState, fpr[21]) },
1701 { "f22", offsetof(CPUState, fpr[22]) },
1702 { "f23", offsetof(CPUState, fpr[23]) },
1703 { "f24", offsetof(CPUState, fpr[24]) },
1704 { "f25", offsetof(CPUState, fpr[25]) },
1705 { "f26", offsetof(CPUState, fpr[26]) },
1706 { "f27", offsetof(CPUState, fpr[27]) },
1707 { "f28", offsetof(CPUState, fpr[28]) },
1708 { "f29", offsetof(CPUState, fpr[29]) },
1709 { "f30", offsetof(CPUState, fpr[30]) },
1710 { "f31", offsetof(CPUState, fpr[31]) },
1711 { "fpscr", offsetof(CPUState, fpscr) },
1712 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001713 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001714 { "lr", offsetof(CPUState, lr) },
1715 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001716 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001717 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001718 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001719 { "msr", 0, &monitor_get_msr, },
1720 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001721 { "tbu", 0, &monitor_get_tbu, },
1722 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001723#if defined(TARGET_PPC64)
1724 /* Address space register */
1725 { "asr", offsetof(CPUState, asr) },
1726#endif
1727 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001728 { "sdr1", offsetof(CPUState, sdr1) },
1729 { "sr0", offsetof(CPUState, sr[0]) },
1730 { "sr1", offsetof(CPUState, sr[1]) },
1731 { "sr2", offsetof(CPUState, sr[2]) },
1732 { "sr3", offsetof(CPUState, sr[3]) },
1733 { "sr4", offsetof(CPUState, sr[4]) },
1734 { "sr5", offsetof(CPUState, sr[5]) },
1735 { "sr6", offsetof(CPUState, sr[6]) },
1736 { "sr7", offsetof(CPUState, sr[7]) },
1737 { "sr8", offsetof(CPUState, sr[8]) },
1738 { "sr9", offsetof(CPUState, sr[9]) },
1739 { "sr10", offsetof(CPUState, sr[10]) },
1740 { "sr11", offsetof(CPUState, sr[11]) },
1741 { "sr12", offsetof(CPUState, sr[12]) },
1742 { "sr13", offsetof(CPUState, sr[13]) },
1743 { "sr14", offsetof(CPUState, sr[14]) },
1744 { "sr15", offsetof(CPUState, sr[15]) },
1745 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001746#elif defined(TARGET_SPARC)
1747 { "g0", offsetof(CPUState, gregs[0]) },
1748 { "g1", offsetof(CPUState, gregs[1]) },
1749 { "g2", offsetof(CPUState, gregs[2]) },
1750 { "g3", offsetof(CPUState, gregs[3]) },
1751 { "g4", offsetof(CPUState, gregs[4]) },
1752 { "g5", offsetof(CPUState, gregs[5]) },
1753 { "g6", offsetof(CPUState, gregs[6]) },
1754 { "g7", offsetof(CPUState, gregs[7]) },
1755 { "o0", 0, monitor_get_reg },
1756 { "o1", 1, monitor_get_reg },
1757 { "o2", 2, monitor_get_reg },
1758 { "o3", 3, monitor_get_reg },
1759 { "o4", 4, monitor_get_reg },
1760 { "o5", 5, monitor_get_reg },
1761 { "o6", 6, monitor_get_reg },
1762 { "o7", 7, monitor_get_reg },
1763 { "l0", 8, monitor_get_reg },
1764 { "l1", 9, monitor_get_reg },
1765 { "l2", 10, monitor_get_reg },
1766 { "l3", 11, monitor_get_reg },
1767 { "l4", 12, monitor_get_reg },
1768 { "l5", 13, monitor_get_reg },
1769 { "l6", 14, monitor_get_reg },
1770 { "l7", 15, monitor_get_reg },
1771 { "i0", 16, monitor_get_reg },
1772 { "i1", 17, monitor_get_reg },
1773 { "i2", 18, monitor_get_reg },
1774 { "i3", 19, monitor_get_reg },
1775 { "i4", 20, monitor_get_reg },
1776 { "i5", 21, monitor_get_reg },
1777 { "i6", 22, monitor_get_reg },
1778 { "i7", 23, monitor_get_reg },
1779 { "pc", offsetof(CPUState, pc) },
1780 { "npc", offsetof(CPUState, npc) },
1781 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001782#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001783 { "psr", 0, &monitor_get_psr, },
1784 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001785#endif
bellarde95c8d52004-09-30 22:22:08 +00001786 { "tbr", offsetof(CPUState, tbr) },
1787 { "fsr", offsetof(CPUState, fsr) },
1788 { "f0", offsetof(CPUState, fpr[0]) },
1789 { "f1", offsetof(CPUState, fpr[1]) },
1790 { "f2", offsetof(CPUState, fpr[2]) },
1791 { "f3", offsetof(CPUState, fpr[3]) },
1792 { "f4", offsetof(CPUState, fpr[4]) },
1793 { "f5", offsetof(CPUState, fpr[5]) },
1794 { "f6", offsetof(CPUState, fpr[6]) },
1795 { "f7", offsetof(CPUState, fpr[7]) },
1796 { "f8", offsetof(CPUState, fpr[8]) },
1797 { "f9", offsetof(CPUState, fpr[9]) },
1798 { "f10", offsetof(CPUState, fpr[10]) },
1799 { "f11", offsetof(CPUState, fpr[11]) },
1800 { "f12", offsetof(CPUState, fpr[12]) },
1801 { "f13", offsetof(CPUState, fpr[13]) },
1802 { "f14", offsetof(CPUState, fpr[14]) },
1803 { "f15", offsetof(CPUState, fpr[15]) },
1804 { "f16", offsetof(CPUState, fpr[16]) },
1805 { "f17", offsetof(CPUState, fpr[17]) },
1806 { "f18", offsetof(CPUState, fpr[18]) },
1807 { "f19", offsetof(CPUState, fpr[19]) },
1808 { "f20", offsetof(CPUState, fpr[20]) },
1809 { "f21", offsetof(CPUState, fpr[21]) },
1810 { "f22", offsetof(CPUState, fpr[22]) },
1811 { "f23", offsetof(CPUState, fpr[23]) },
1812 { "f24", offsetof(CPUState, fpr[24]) },
1813 { "f25", offsetof(CPUState, fpr[25]) },
1814 { "f26", offsetof(CPUState, fpr[26]) },
1815 { "f27", offsetof(CPUState, fpr[27]) },
1816 { "f28", offsetof(CPUState, fpr[28]) },
1817 { "f29", offsetof(CPUState, fpr[29]) },
1818 { "f30", offsetof(CPUState, fpr[30]) },
1819 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001820#ifdef TARGET_SPARC64
1821 { "f32", offsetof(CPUState, fpr[32]) },
1822 { "f34", offsetof(CPUState, fpr[34]) },
1823 { "f36", offsetof(CPUState, fpr[36]) },
1824 { "f38", offsetof(CPUState, fpr[38]) },
1825 { "f40", offsetof(CPUState, fpr[40]) },
1826 { "f42", offsetof(CPUState, fpr[42]) },
1827 { "f44", offsetof(CPUState, fpr[44]) },
1828 { "f46", offsetof(CPUState, fpr[46]) },
1829 { "f48", offsetof(CPUState, fpr[48]) },
1830 { "f50", offsetof(CPUState, fpr[50]) },
1831 { "f52", offsetof(CPUState, fpr[52]) },
1832 { "f54", offsetof(CPUState, fpr[54]) },
1833 { "f56", offsetof(CPUState, fpr[56]) },
1834 { "f58", offsetof(CPUState, fpr[58]) },
1835 { "f60", offsetof(CPUState, fpr[60]) },
1836 { "f62", offsetof(CPUState, fpr[62]) },
1837 { "asi", offsetof(CPUState, asi) },
1838 { "pstate", offsetof(CPUState, pstate) },
1839 { "cansave", offsetof(CPUState, cansave) },
1840 { "canrestore", offsetof(CPUState, canrestore) },
1841 { "otherwin", offsetof(CPUState, otherwin) },
1842 { "wstate", offsetof(CPUState, wstate) },
1843 { "cleanwin", offsetof(CPUState, cleanwin) },
1844 { "fprs", offsetof(CPUState, fprs) },
1845#endif
bellard9307c4c2004-04-04 12:57:25 +00001846#endif
1847 { NULL },
1848};
1849
ths5fafdf22007-09-16 21:08:06 +00001850static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001851{
bellard9307c4c2004-04-04 12:57:25 +00001852 term_printf(fmt);
1853 term_printf("\n");
1854 longjmp(expr_env, 1);
1855}
1856
bellard6a00d602005-11-21 23:25:50 +00001857/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001858static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001859{
1860 MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001861 void *ptr;
1862
bellard9307c4c2004-04-04 12:57:25 +00001863 for(md = monitor_defs; md->name != NULL; md++) {
1864 if (compare_cmd(name, md->name)) {
1865 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001866 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001867 } else {
bellard6a00d602005-11-21 23:25:50 +00001868 CPUState *env = mon_get_cpu();
1869 if (!env)
1870 return -2;
1871 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001872 switch(md->type) {
1873 case MD_I32:
1874 *pval = *(int32_t *)ptr;
1875 break;
1876 case MD_TLONG:
1877 *pval = *(target_long *)ptr;
1878 break;
1879 default:
1880 *pval = 0;
1881 break;
1882 }
bellard9307c4c2004-04-04 12:57:25 +00001883 }
1884 return 0;
1885 }
1886 }
1887 return -1;
1888}
1889
1890static void next(void)
1891{
1892 if (pch != '\0') {
1893 pch++;
1894 while (isspace(*pch))
1895 pch++;
1896 }
1897}
1898
blueswir1c2efc952007-09-25 17:28:42 +00001899static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001900
blueswir1c2efc952007-09-25 17:28:42 +00001901static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001902{
blueswir1c2efc952007-09-25 17:28:42 +00001903 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001904 char *p;
bellard6a00d602005-11-21 23:25:50 +00001905 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001906
1907 switch(*pch) {
1908 case '+':
1909 next();
1910 n = expr_unary();
1911 break;
1912 case '-':
1913 next();
1914 n = -expr_unary();
1915 break;
1916 case '~':
1917 next();
1918 n = ~expr_unary();
1919 break;
1920 case '(':
1921 next();
1922 n = expr_sum();
1923 if (*pch != ')') {
1924 expr_error("')' expected");
1925 }
1926 next();
1927 break;
bellard81d09122004-07-14 17:21:37 +00001928 case '\'':
1929 pch++;
1930 if (*pch == '\0')
1931 expr_error("character constant expected");
1932 n = *pch;
1933 pch++;
1934 if (*pch != '\'')
1935 expr_error("missing terminating \' character");
1936 next();
1937 break;
bellard9307c4c2004-04-04 12:57:25 +00001938 case '$':
1939 {
1940 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001941 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001942
bellard9307c4c2004-04-04 12:57:25 +00001943 pch++;
1944 q = buf;
1945 while ((*pch >= 'a' && *pch <= 'z') ||
1946 (*pch >= 'A' && *pch <= 'Z') ||
1947 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001948 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001949 if ((q - buf) < sizeof(buf) - 1)
1950 *q++ = *pch;
1951 pch++;
1952 }
1953 while (isspace(*pch))
1954 pch++;
1955 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001956 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001957 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001958 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001959 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001960 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001961 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001962 }
1963 break;
1964 case '\0':
1965 expr_error("unexpected end of expression");
1966 n = 0;
1967 break;
1968 default:
blueswir17743e582007-09-24 18:39:04 +00001969#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001970 n = strtoull(pch, &p, 0);
1971#else
bellard9307c4c2004-04-04 12:57:25 +00001972 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001973#endif
bellard9307c4c2004-04-04 12:57:25 +00001974 if (pch == p) {
1975 expr_error("invalid char in expression");
1976 }
1977 pch = p;
1978 while (isspace(*pch))
1979 pch++;
1980 break;
1981 }
1982 return n;
1983}
1984
1985
blueswir1c2efc952007-09-25 17:28:42 +00001986static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00001987{
blueswir1c2efc952007-09-25 17:28:42 +00001988 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001989 int op;
ths3b46e622007-09-17 08:09:54 +00001990
bellard9307c4c2004-04-04 12:57:25 +00001991 val = expr_unary();
1992 for(;;) {
1993 op = *pch;
1994 if (op != '*' && op != '/' && op != '%')
1995 break;
1996 next();
1997 val2 = expr_unary();
1998 switch(op) {
1999 default:
2000 case '*':
2001 val *= val2;
2002 break;
2003 case '/':
2004 case '%':
ths5fafdf22007-09-16 21:08:06 +00002005 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00002006 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002007 if (op == '/')
2008 val /= val2;
2009 else
2010 val %= val2;
2011 break;
2012 }
2013 }
2014 return val;
2015}
2016
blueswir1c2efc952007-09-25 17:28:42 +00002017static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00002018{
blueswir1c2efc952007-09-25 17:28:42 +00002019 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002020 int op;
bellard9307c4c2004-04-04 12:57:25 +00002021
2022 val = expr_prod();
2023 for(;;) {
2024 op = *pch;
2025 if (op != '&' && op != '|' && op != '^')
2026 break;
2027 next();
2028 val2 = expr_prod();
2029 switch(op) {
2030 default:
2031 case '&':
2032 val &= val2;
2033 break;
2034 case '|':
2035 val |= val2;
2036 break;
2037 case '^':
2038 val ^= val2;
2039 break;
2040 }
2041 }
2042 return val;
2043}
2044
blueswir1c2efc952007-09-25 17:28:42 +00002045static int64_t expr_sum(void)
bellard9307c4c2004-04-04 12:57:25 +00002046{
blueswir1c2efc952007-09-25 17:28:42 +00002047 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002048 int op;
bellard9307c4c2004-04-04 12:57:25 +00002049
2050 val = expr_logic();
2051 for(;;) {
2052 op = *pch;
2053 if (op != '+' && op != '-')
2054 break;
2055 next();
2056 val2 = expr_logic();
2057 if (op == '+')
2058 val += val2;
2059 else
2060 val -= val2;
2061 }
2062 return val;
2063}
2064
blueswir1c2efc952007-09-25 17:28:42 +00002065static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002066{
2067 pch = *pp;
2068 if (setjmp(expr_env)) {
2069 *pp = pch;
2070 return -1;
2071 }
2072 while (isspace(*pch))
2073 pch++;
2074 *pval = expr_sum();
2075 *pp = pch;
2076 return 0;
2077}
2078
2079static int get_str(char *buf, int buf_size, const char **pp)
2080{
2081 const char *p;
2082 char *q;
2083 int c;
2084
bellard81d09122004-07-14 17:21:37 +00002085 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002086 p = *pp;
2087 while (isspace(*p))
2088 p++;
2089 if (*p == '\0') {
2090 fail:
bellard81d09122004-07-14 17:21:37 +00002091 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002092 *pp = p;
2093 return -1;
2094 }
bellard9307c4c2004-04-04 12:57:25 +00002095 if (*p == '\"') {
2096 p++;
2097 while (*p != '\0' && *p != '\"') {
2098 if (*p == '\\') {
2099 p++;
2100 c = *p++;
2101 switch(c) {
2102 case 'n':
2103 c = '\n';
2104 break;
2105 case 'r':
2106 c = '\r';
2107 break;
2108 case '\\':
2109 case '\'':
2110 case '\"':
2111 break;
2112 default:
2113 qemu_printf("unsupported escape code: '\\%c'\n", c);
2114 goto fail;
2115 }
2116 if ((q - buf) < buf_size - 1) {
2117 *q++ = c;
2118 }
2119 } else {
2120 if ((q - buf) < buf_size - 1) {
2121 *q++ = *p;
2122 }
2123 p++;
2124 }
2125 }
2126 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002127 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002128 goto fail;
2129 }
2130 p++;
2131 } else {
2132 while (*p != '\0' && !isspace(*p)) {
2133 if ((q - buf) < buf_size - 1) {
2134 *q++ = *p;
2135 }
2136 p++;
2137 }
bellard9307c4c2004-04-04 12:57:25 +00002138 }
bellard81d09122004-07-14 17:21:37 +00002139 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002140 *pp = p;
2141 return 0;
2142}
2143
2144static int default_fmt_format = 'x';
2145static int default_fmt_size = 4;
2146
2147#define MAX_ARGS 16
2148
bellard7e2515e2004-08-01 21:52:19 +00002149static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002150{
2151 const char *p, *pstart, *typestr;
2152 char *q;
2153 int c, nb_args, len, i, has_arg;
bellard9dc39cb2004-03-14 21:38:27 +00002154 term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002155 char cmdname[256];
2156 char buf[1024];
2157 void *str_allocated[MAX_ARGS];
2158 void *args[MAX_ARGS];
bellard9dc39cb2004-03-14 21:38:27 +00002159
2160#ifdef DEBUG
2161 term_printf("command='%s'\n", cmdline);
2162#endif
ths3b46e622007-09-17 08:09:54 +00002163
bellard9307c4c2004-04-04 12:57:25 +00002164 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002165 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002166 q = cmdname;
2167 while (isspace(*p))
2168 p++;
2169 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002170 return;
bellard9307c4c2004-04-04 12:57:25 +00002171 pstart = p;
2172 while (*p != '\0' && *p != '/' && !isspace(*p))
2173 p++;
2174 len = p - pstart;
2175 if (len > sizeof(cmdname) - 1)
2176 len = sizeof(cmdname) - 1;
2177 memcpy(cmdname, pstart, len);
2178 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002179
bellard9307c4c2004-04-04 12:57:25 +00002180 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002181 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002182 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002183 goto found;
2184 }
bellard9307c4c2004-04-04 12:57:25 +00002185 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002186 return;
2187 found:
bellard9307c4c2004-04-04 12:57:25 +00002188
2189 for(i = 0; i < MAX_ARGS; i++)
2190 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002191
bellard9307c4c2004-04-04 12:57:25 +00002192 /* parse the parameters */
2193 typestr = cmd->args_type;
2194 nb_args = 0;
2195 for(;;) {
2196 c = *typestr;
2197 if (c == '\0')
2198 break;
2199 typestr++;
2200 switch(c) {
2201 case 'F':
bellard81d09122004-07-14 17:21:37 +00002202 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002203 case 's':
2204 {
2205 int ret;
2206 char *str;
ths3b46e622007-09-17 08:09:54 +00002207
ths5fafdf22007-09-16 21:08:06 +00002208 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002209 p++;
2210 if (*typestr == '?') {
2211 typestr++;
2212 if (*p == '\0') {
2213 /* no optional string: NULL argument */
2214 str = NULL;
2215 goto add_str;
2216 }
2217 }
2218 ret = get_str(buf, sizeof(buf), &p);
2219 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002220 switch(c) {
2221 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002222 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002223 break;
2224 case 'B':
2225 term_printf("%s: block device name expected\n", cmdname);
2226 break;
2227 default:
bellard9307c4c2004-04-04 12:57:25 +00002228 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002229 break;
2230 }
bellard9307c4c2004-04-04 12:57:25 +00002231 goto fail;
2232 }
2233 str = qemu_malloc(strlen(buf) + 1);
2234 strcpy(str, buf);
2235 str_allocated[nb_args] = str;
2236 add_str:
2237 if (nb_args >= MAX_ARGS) {
2238 error_args:
2239 term_printf("%s: too many arguments\n", cmdname);
2240 goto fail;
2241 }
2242 args[nb_args++] = str;
2243 }
2244 break;
2245 case '/':
2246 {
2247 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002248
bellard9307c4c2004-04-04 12:57:25 +00002249 while (isspace(*p))
2250 p++;
2251 if (*p == '/') {
2252 /* format found */
2253 p++;
2254 count = 1;
2255 if (isdigit(*p)) {
2256 count = 0;
2257 while (isdigit(*p)) {
2258 count = count * 10 + (*p - '0');
2259 p++;
2260 }
2261 }
2262 size = -1;
2263 format = -1;
2264 for(;;) {
2265 switch(*p) {
2266 case 'o':
2267 case 'd':
2268 case 'u':
2269 case 'x':
2270 case 'i':
2271 case 'c':
2272 format = *p++;
2273 break;
2274 case 'b':
2275 size = 1;
2276 p++;
2277 break;
2278 case 'h':
2279 size = 2;
2280 p++;
2281 break;
2282 case 'w':
2283 size = 4;
2284 p++;
2285 break;
2286 case 'g':
2287 case 'L':
2288 size = 8;
2289 p++;
2290 break;
2291 default:
2292 goto next;
2293 }
2294 }
2295 next:
2296 if (*p != '\0' && !isspace(*p)) {
2297 term_printf("invalid char in format: '%c'\n", *p);
2298 goto fail;
2299 }
bellard9307c4c2004-04-04 12:57:25 +00002300 if (format < 0)
2301 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002302 if (format != 'i') {
2303 /* for 'i', not specifying a size gives -1 as size */
2304 if (size < 0)
2305 size = default_fmt_size;
2306 }
bellard9307c4c2004-04-04 12:57:25 +00002307 default_fmt_size = size;
2308 default_fmt_format = format;
2309 } else {
2310 count = 1;
2311 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002312 if (format != 'i') {
2313 size = default_fmt_size;
2314 } else {
2315 size = -1;
2316 }
bellard9307c4c2004-04-04 12:57:25 +00002317 }
2318 if (nb_args + 3 > MAX_ARGS)
2319 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002320 args[nb_args++] = (void*)(long)count;
2321 args[nb_args++] = (void*)(long)format;
2322 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002323 }
2324 break;
2325 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002326 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002327 {
blueswir1c2efc952007-09-25 17:28:42 +00002328 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002329
ths5fafdf22007-09-16 21:08:06 +00002330 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002331 p++;
bellard34405572004-06-08 00:55:58 +00002332 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002333 if (*typestr == '?') {
2334 if (*p == '\0')
2335 has_arg = 0;
2336 else
2337 has_arg = 1;
2338 } else {
2339 if (*p == '.') {
2340 p++;
ths5fafdf22007-09-16 21:08:06 +00002341 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002342 p++;
2343 has_arg = 1;
2344 } else {
2345 has_arg = 0;
2346 }
2347 }
bellard13224a82006-07-14 22:03:35 +00002348 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002349 if (nb_args >= MAX_ARGS)
2350 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002351 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002352 if (!has_arg) {
2353 if (nb_args >= MAX_ARGS)
2354 goto error_args;
2355 val = -1;
2356 goto add_num;
2357 }
2358 }
2359 if (get_expr(&val, &p))
2360 goto fail;
2361 add_num:
bellard92a31b12005-02-10 22:00:52 +00002362 if (c == 'i') {
2363 if (nb_args >= MAX_ARGS)
2364 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002365 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002366 } else {
2367 if ((nb_args + 1) >= MAX_ARGS)
2368 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002369#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002370 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002371#else
2372 args[nb_args++] = (void *)0;
2373#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002374 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002375 }
bellard9307c4c2004-04-04 12:57:25 +00002376 }
2377 break;
2378 case '-':
2379 {
2380 int has_option;
2381 /* option */
ths3b46e622007-09-17 08:09:54 +00002382
bellard9307c4c2004-04-04 12:57:25 +00002383 c = *typestr++;
2384 if (c == '\0')
2385 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002386 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002387 p++;
2388 has_option = 0;
2389 if (*p == '-') {
2390 p++;
2391 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002392 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002393 cmdname, *p);
2394 goto fail;
2395 }
2396 p++;
2397 has_option = 1;
2398 }
2399 if (nb_args >= MAX_ARGS)
2400 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002401 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002402 }
2403 break;
2404 default:
2405 bad_type:
2406 term_printf("%s: unknown type '%c'\n", cmdname, c);
2407 goto fail;
2408 }
2409 }
2410 /* check that all arguments were parsed */
2411 while (isspace(*p))
2412 p++;
2413 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002414 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002415 cmdname);
2416 goto fail;
2417 }
2418
2419 switch(nb_args) {
2420 case 0:
2421 cmd->handler();
2422 break;
2423 case 1:
2424 cmd->handler(args[0]);
2425 break;
2426 case 2:
2427 cmd->handler(args[0], args[1]);
2428 break;
2429 case 3:
2430 cmd->handler(args[0], args[1], args[2]);
2431 break;
2432 case 4:
2433 cmd->handler(args[0], args[1], args[2], args[3]);
2434 break;
2435 case 5:
2436 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2437 break;
bellard34405572004-06-08 00:55:58 +00002438 case 6:
2439 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2440 break;
bellardec36b692006-07-16 18:57:03 +00002441 case 7:
2442 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2443 break;
bellard9307c4c2004-04-04 12:57:25 +00002444 default:
2445 term_printf("unsupported number of arguments: %d\n", nb_args);
2446 goto fail;
2447 }
2448 fail:
2449 for(i = 0; i < MAX_ARGS; i++)
2450 qemu_free(str_allocated[i]);
2451 return;
bellard9dc39cb2004-03-14 21:38:27 +00002452}
2453
bellard81d09122004-07-14 17:21:37 +00002454static void cmd_completion(const char *name, const char *list)
2455{
2456 const char *p, *pstart;
2457 char cmd[128];
2458 int len;
2459
2460 p = list;
2461 for(;;) {
2462 pstart = p;
2463 p = strchr(p, '|');
2464 if (!p)
2465 p = pstart + strlen(pstart);
2466 len = p - pstart;
2467 if (len > sizeof(cmd) - 2)
2468 len = sizeof(cmd) - 2;
2469 memcpy(cmd, pstart, len);
2470 cmd[len] = '\0';
2471 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2472 add_completion(cmd);
2473 }
2474 if (*p == '\0')
2475 break;
2476 p++;
2477 }
2478}
2479
2480static void file_completion(const char *input)
2481{
2482 DIR *ffs;
2483 struct dirent *d;
2484 char path[1024];
2485 char file[1024], file_prefix[1024];
2486 int input_path_len;
2487 const char *p;
2488
ths5fafdf22007-09-16 21:08:06 +00002489 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002490 if (!p) {
2491 input_path_len = 0;
2492 pstrcpy(file_prefix, sizeof(file_prefix), input);
2493 strcpy(path, ".");
2494 } else {
2495 input_path_len = p - input + 1;
2496 memcpy(path, input, input_path_len);
2497 if (input_path_len > sizeof(path) - 1)
2498 input_path_len = sizeof(path) - 1;
2499 path[input_path_len] = '\0';
2500 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2501 }
2502#ifdef DEBUG_COMPLETION
2503 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2504#endif
2505 ffs = opendir(path);
2506 if (!ffs)
2507 return;
2508 for(;;) {
2509 struct stat sb;
2510 d = readdir(ffs);
2511 if (!d)
2512 break;
2513 if (strstart(d->d_name, file_prefix, NULL)) {
2514 memcpy(file, input, input_path_len);
2515 strcpy(file + input_path_len, d->d_name);
2516 /* stat the file to find out if it's a directory.
2517 * In that case add a slash to speed up typing long paths
2518 */
2519 stat(file, &sb);
2520 if(S_ISDIR(sb.st_mode))
2521 strcat(file, "/");
2522 add_completion(file);
2523 }
2524 }
2525 closedir(ffs);
2526}
2527
2528static void block_completion_it(void *opaque, const char *name)
2529{
2530 const char *input = opaque;
2531
2532 if (input[0] == '\0' ||
2533 !strncmp(name, (char *)input, strlen(input))) {
2534 add_completion(name);
2535 }
2536}
2537
2538/* NOTE: this parser is an approximate form of the real command parser */
2539static void parse_cmdline(const char *cmdline,
2540 int *pnb_args, char **args)
2541{
2542 const char *p;
2543 int nb_args, ret;
2544 char buf[1024];
2545
2546 p = cmdline;
2547 nb_args = 0;
2548 for(;;) {
2549 while (isspace(*p))
2550 p++;
2551 if (*p == '\0')
2552 break;
2553 if (nb_args >= MAX_ARGS)
2554 break;
2555 ret = get_str(buf, sizeof(buf), &p);
2556 args[nb_args] = qemu_strdup(buf);
2557 nb_args++;
2558 if (ret < 0)
2559 break;
2560 }
2561 *pnb_args = nb_args;
2562}
2563
bellard7e2515e2004-08-01 21:52:19 +00002564void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002565{
2566 const char *cmdname;
2567 char *args[MAX_ARGS];
2568 int nb_args, i, len;
2569 const char *ptype, *str;
2570 term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002571 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002572
2573 parse_cmdline(cmdline, &nb_args, args);
2574#ifdef DEBUG_COMPLETION
2575 for(i = 0; i < nb_args; i++) {
2576 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2577 }
2578#endif
2579
2580 /* if the line ends with a space, it means we want to complete the
2581 next arg */
2582 len = strlen(cmdline);
2583 if (len > 0 && isspace(cmdline[len - 1])) {
2584 if (nb_args >= MAX_ARGS)
2585 return;
2586 args[nb_args++] = qemu_strdup("");
2587 }
2588 if (nb_args <= 1) {
2589 /* command completion */
2590 if (nb_args == 0)
2591 cmdname = "";
2592 else
2593 cmdname = args[0];
2594 completion_index = strlen(cmdname);
2595 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2596 cmd_completion(cmdname, cmd->name);
2597 }
2598 } else {
2599 /* find the command */
2600 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2601 if (compare_cmd(args[0], cmd->name))
2602 goto found;
2603 }
2604 return;
2605 found:
2606 ptype = cmd->args_type;
2607 for(i = 0; i < nb_args - 2; i++) {
2608 if (*ptype != '\0') {
2609 ptype++;
2610 while (*ptype == '?')
2611 ptype++;
2612 }
2613 }
2614 str = args[nb_args - 1];
2615 switch(*ptype) {
2616 case 'F':
2617 /* file completion */
2618 completion_index = strlen(str);
2619 file_completion(str);
2620 break;
2621 case 'B':
2622 /* block device name completion */
2623 completion_index = strlen(str);
2624 bdrv_iterate(block_completion_it, (void *)str);
2625 break;
bellard7fe48482004-10-09 18:08:01 +00002626 case 's':
2627 /* XXX: more generic ? */
2628 if (!strcmp(cmd->name, "info")) {
2629 completion_index = strlen(str);
2630 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2631 cmd_completion(str, cmd->name);
2632 }
bellard64866c32006-05-07 18:03:31 +00002633 } else if (!strcmp(cmd->name, "sendkey")) {
2634 completion_index = strlen(str);
2635 for(key = key_defs; key->name != NULL; key++) {
2636 cmd_completion(str, key->name);
2637 }
bellard7fe48482004-10-09 18:08:01 +00002638 }
2639 break;
bellard81d09122004-07-14 17:21:37 +00002640 default:
2641 break;
2642 }
2643 }
2644 for(i = 0; i < nb_args; i++)
2645 qemu_free(args[i]);
2646}
2647
bellard9dc39cb2004-03-14 21:38:27 +00002648static int term_can_read(void *opaque)
2649{
bellard81d09122004-07-14 17:21:37 +00002650 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002651}
2652
2653static void term_read(void *opaque, const uint8_t *buf, int size)
2654{
2655 int i;
2656 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002657 readline_handle_byte(buf[i]);
2658}
2659
bellard7e2515e2004-08-01 21:52:19 +00002660static void monitor_handle_command1(void *opaque, const char *cmdline)
2661{
2662 monitor_handle_command(cmdline);
2663 monitor_start_input();
2664}
2665
aliguori396f9292008-08-01 14:51:02 +00002666void monitor_start_input(void)
bellard7e2515e2004-08-01 21:52:19 +00002667{
2668 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002669}
2670
ths86e94de2007-01-05 22:01:59 +00002671static void term_event(void *opaque, int event)
2672{
2673 if (event != CHR_EVENT_RESET)
2674 return;
2675
2676 if (!hide_banner)
2677 term_printf("QEMU %s monitor - type 'help' for more information\n",
2678 QEMU_VERSION);
2679 monitor_start_input();
2680}
2681
ths20d8a3e2007-02-18 17:04:49 +00002682static int is_first_init = 1;
2683
bellard81d09122004-07-14 17:21:37 +00002684void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002685{
ths20d8a3e2007-02-18 17:04:49 +00002686 int i;
2687
2688 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00002689 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2690 if (!key_timer)
2691 return;
ths20d8a3e2007-02-18 17:04:49 +00002692 for (i = 0; i < MAX_MON; i++) {
2693 monitor_hd[i] = NULL;
2694 }
2695 is_first_init = 0;
2696 }
2697 for (i = 0; i < MAX_MON; i++) {
2698 if (monitor_hd[i] == NULL) {
2699 monitor_hd[i] = hd;
2700 break;
2701 }
2702 }
2703
ths86e94de2007-01-05 22:01:59 +00002704 hide_banner = !show_banner;
2705
pbrooke5b0bc42007-01-27 23:46:43 +00002706 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002707}
2708
2709/* XXX: use threads ? */
2710/* modal monitor readline */
2711static int monitor_readline_started;
2712static char *monitor_readline_buf;
2713static int monitor_readline_buf_size;
2714
2715static void monitor_readline_cb(void *opaque, const char *input)
2716{
2717 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2718 monitor_readline_started = 0;
2719}
2720
2721void monitor_readline(const char *prompt, int is_password,
2722 char *buf, int buf_size)
2723{
ths20d8a3e2007-02-18 17:04:49 +00002724 int i;
aliguoribc0129d2008-08-01 15:12:34 +00002725 int old_focus[MAX_MON];
ths20d8a3e2007-02-18 17:04:49 +00002726
bellard7e2515e2004-08-01 21:52:19 +00002727 if (is_password) {
aliguoribc0129d2008-08-01 15:12:34 +00002728 for (i = 0; i < MAX_MON; i++) {
2729 old_focus[i] = 0;
2730 if (monitor_hd[i]) {
2731 old_focus[i] = monitor_hd[i]->focus;
2732 monitor_hd[i]->focus = 0;
ths20d8a3e2007-02-18 17:04:49 +00002733 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
aliguoribc0129d2008-08-01 15:12:34 +00002734 }
2735 }
bellard7e2515e2004-08-01 21:52:19 +00002736 }
aliguoribc0129d2008-08-01 15:12:34 +00002737
bellard7e2515e2004-08-01 21:52:19 +00002738 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2739 monitor_readline_buf = buf;
2740 monitor_readline_buf_size = buf_size;
2741 monitor_readline_started = 1;
2742 while (monitor_readline_started) {
2743 main_loop_wait(10);
2744 }
aliguoribc0129d2008-08-01 15:12:34 +00002745 /* restore original focus */
2746 if (is_password) {
2747 for (i = 0; i < MAX_MON; i++)
2748 if (old_focus[i])
2749 monitor_hd[i]->focus = old_focus[i];
2750 }
bellard9dc39cb2004-03-14 21:38:27 +00002751}