blob: 9f1013ecfd6de9465a80a5270d991b69480e9cdf [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
bellard7e2515e2004-08-01 21:52:19 +000079static void monitor_start_input(void);
bellard9dc39cb2004-03-14 21:38:27 +000080
bellard6a00d602005-11-21 23:25:50 +000081CPUState *mon_cpu = NULL;
82
bellard9dc39cb2004-03-14 21:38:27 +000083void term_flush(void)
84{
ths20d8a3e2007-02-18 17:04:49 +000085 int i;
bellard7e2515e2004-08-01 21:52:19 +000086 if (term_outbuf_index > 0) {
ths20d8a3e2007-02-18 17:04:49 +000087 for (i = 0; i < MAX_MON; i++)
88 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
89 qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index);
bellard7e2515e2004-08-01 21:52:19 +000090 term_outbuf_index = 0;
91 }
92}
93
94/* flush at every end of line or if the buffer is full */
95void term_puts(const char *str)
96{
ths60fe76f2007-12-16 03:02:09 +000097 char c;
bellard7e2515e2004-08-01 21:52:19 +000098 for(;;) {
99 c = *str++;
100 if (c == '\0')
101 break;
bellard7ba12602006-07-14 20:26:42 +0000102 if (c == '\n')
103 term_outbuf[term_outbuf_index++] = '\r';
bellard7e2515e2004-08-01 21:52:19 +0000104 term_outbuf[term_outbuf_index++] = c;
bellard7ba12602006-07-14 20:26:42 +0000105 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
bellard7e2515e2004-08-01 21:52:19 +0000106 c == '\n')
107 term_flush();
108 }
109}
110
111void term_vprintf(const char *fmt, va_list ap)
112{
113 char buf[4096];
114 vsnprintf(buf, sizeof(buf), fmt, ap);
115 term_puts(buf);
116}
117
118void term_printf(const char *fmt, ...)
119{
120 va_list ap;
121 va_start(ap, fmt);
122 term_vprintf(fmt, ap);
123 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000124}
125
thsfef30742006-12-22 14:11:32 +0000126void term_print_filename(const char *filename)
127{
128 int i;
129
130 for (i = 0; filename[i]; i++) {
131 switch (filename[i]) {
132 case ' ':
133 case '"':
134 case '\\':
135 term_printf("\\%c", filename[i]);
136 break;
137 case '\t':
138 term_printf("\\t");
139 break;
140 case '\r':
141 term_printf("\\r");
142 break;
143 case '\n':
144 term_printf("\\n");
145 break;
146 default:
147 term_printf("%c", filename[i]);
148 break;
149 }
150 }
151}
152
bellard7fe48482004-10-09 18:08:01 +0000153static int monitor_fprintf(FILE *stream, const char *fmt, ...)
154{
155 va_list ap;
156 va_start(ap, fmt);
157 term_vprintf(fmt, ap);
158 va_end(ap);
159 return 0;
160}
161
bellard9dc39cb2004-03-14 21:38:27 +0000162static int compare_cmd(const char *name, const char *list)
163{
164 const char *p, *pstart;
165 int len;
166 len = strlen(name);
167 p = list;
168 for(;;) {
169 pstart = p;
170 p = strchr(p, '|');
171 if (!p)
172 p = pstart + strlen(pstart);
173 if ((p - pstart) == len && !memcmp(pstart, name, len))
174 return 1;
175 if (*p == '\0')
176 break;
177 p++;
178 }
179 return 0;
180}
181
182static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name)
183{
184 term_cmd_t *cmd;
185
186 for(cmd = cmds; cmd->name != NULL; cmd++) {
187 if (!name || !strcmp(name, cmd->name))
188 term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
189 }
190}
191
192static void help_cmd(const char *name)
193{
194 if (name && !strcmp(name, "info")) {
195 help_cmd1(info_cmds, "info ", NULL);
196 } else {
197 help_cmd1(term_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000198 if (name && !strcmp(name, "log")) {
199 CPULogItem *item;
200 term_printf("Log items (comma separated):\n");
201 term_printf("%-10s %s\n", "none", "remove all logs");
202 for(item = cpu_log_items; item->mask != 0; item++) {
203 term_printf("%-10s %s\n", item->name, item->help);
204 }
205 }
bellard9dc39cb2004-03-14 21:38:27 +0000206 }
207}
208
bellard9307c4c2004-04-04 12:57:25 +0000209static void do_help(const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000210{
bellard9307c4c2004-04-04 12:57:25 +0000211 help_cmd(name);
bellard9dc39cb2004-03-14 21:38:27 +0000212}
213
bellard7954c732006-08-01 15:52:40 +0000214static void do_commit(const char *device)
bellard9dc39cb2004-03-14 21:38:27 +0000215{
bellard7954c732006-08-01 15:52:40 +0000216 int i, all_devices;
balrog2dc7b602007-05-24 18:53:22 +0000217
bellard7954c732006-08-01 15:52:40 +0000218 all_devices = !strcmp(device, "all");
thse4bcb142007-12-02 04:51:10 +0000219 for (i = 0; i < nb_drives; i++) {
ths5fafdf22007-09-16 21:08:06 +0000220 if (all_devices ||
thse4bcb142007-12-02 04:51:10 +0000221 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
222 bdrv_commit(drives_table[i].bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000223 }
224}
225
bellard9307c4c2004-04-04 12:57:25 +0000226static void do_info(const char *item)
bellard9dc39cb2004-03-14 21:38:27 +0000227{
228 term_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000229
bellard9307c4c2004-04-04 12:57:25 +0000230 if (!item)
bellard9dc39cb2004-03-14 21:38:27 +0000231 goto help;
bellard9dc39cb2004-03-14 21:38:27 +0000232 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000233 if (compare_cmd(item, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +0000234 goto found;
235 }
236 help:
bellard9307c4c2004-04-04 12:57:25 +0000237 help_cmd("info");
bellard9dc39cb2004-03-14 21:38:27 +0000238 return;
239 found:
bellard9307c4c2004-04-04 12:57:25 +0000240 cmd->handler();
bellard9dc39cb2004-03-14 21:38:27 +0000241}
242
bellard9bc9d1c2004-10-10 15:15:51 +0000243static void do_info_version(void)
244{
245 term_printf("%s\n", QEMU_VERSION);
246}
247
thsc35734b2007-03-19 15:17:08 +0000248static void do_info_name(void)
249{
250 if (qemu_name)
251 term_printf("%s\n", qemu_name);
252}
253
bellard9307c4c2004-04-04 12:57:25 +0000254static void do_info_block(void)
bellard9dc39cb2004-03-14 21:38:27 +0000255{
256 bdrv_info();
257}
258
thsa36e69d2007-12-02 05:18:19 +0000259static void do_info_blockstats(void)
260{
261 bdrv_info_stats();
262}
263
bellard6a00d602005-11-21 23:25:50 +0000264/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000265static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000266{
267 CPUState *env;
268
269 for(env = first_cpu; env != NULL; env = env->next_cpu) {
270 if (env->cpu_index == cpu_index) {
271 mon_cpu = env;
272 return 0;
273 }
274 }
275 return -1;
276}
277
pbrook9596ebb2007-11-18 01:44:38 +0000278static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000279{
280 if (!mon_cpu) {
281 mon_set_cpu(0);
282 }
283 return mon_cpu;
284}
285
bellard9307c4c2004-04-04 12:57:25 +0000286static void do_info_registers(void)
287{
bellard6a00d602005-11-21 23:25:50 +0000288 CPUState *env;
289 env = mon_get_cpu();
290 if (!env)
291 return;
bellard9307c4c2004-04-04 12:57:25 +0000292#ifdef TARGET_I386
bellard6a00d602005-11-21 23:25:50 +0000293 cpu_dump_state(env, NULL, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000294 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000295#else
ths5fafdf22007-09-16 21:08:06 +0000296 cpu_dump_state(env, NULL, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000297 0);
bellard9307c4c2004-04-04 12:57:25 +0000298#endif
299}
300
bellard6a00d602005-11-21 23:25:50 +0000301static void do_info_cpus(void)
302{
303 CPUState *env;
304
305 /* just to set the default cpu if not already done */
306 mon_get_cpu();
307
308 for(env = first_cpu; env != NULL; env = env->next_cpu) {
ths5fafdf22007-09-16 21:08:06 +0000309 term_printf("%c CPU #%d:",
bellard6a00d602005-11-21 23:25:50 +0000310 (env == mon_cpu) ? '*' : ' ',
311 env->cpu_index);
312#if defined(TARGET_I386)
313 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
bellarde80e1cc2005-11-23 22:05:28 +0000314#elif defined(TARGET_PPC)
315 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
bellardba3c64f2005-12-05 20:31:52 +0000316#elif defined(TARGET_SPARC)
317 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
thsead93602007-09-06 00:18:15 +0000318#elif defined(TARGET_MIPS)
319 term_printf(" PC=0x" TARGET_FMT_lx, env->PC[env->current_tc]);
bellardce5232c2008-05-28 17:14:10 +0000320#endif
thsead93602007-09-06 00:18:15 +0000321 if (env->halted)
322 term_printf(" (halted)");
bellard6a00d602005-11-21 23:25:50 +0000323 term_printf("\n");
324 }
325}
326
327static void do_cpu_set(int index)
328{
329 if (mon_set_cpu(index) < 0)
330 term_printf("Invalid CPU index\n");
331}
332
bellarde3db7222005-01-26 22:00:47 +0000333static void do_info_jit(void)
334{
335 dump_exec_info(NULL, monitor_fprintf);
336}
337
bellardaa455482004-04-04 13:07:25 +0000338static void do_info_history (void)
339{
340 int i;
bellard7e2515e2004-08-01 21:52:19 +0000341 const char *str;
ths3b46e622007-09-17 08:09:54 +0000342
bellard7e2515e2004-08-01 21:52:19 +0000343 i = 0;
344 for(;;) {
345 str = readline_get_history(i);
346 if (!str)
347 break;
348 term_printf("%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000349 i++;
bellardaa455482004-04-04 13:07:25 +0000350 }
351}
352
j_mayer76a66252007-03-07 08:32:30 +0000353#if defined(TARGET_PPC)
354/* XXX: not implemented in other targets */
355static void do_info_cpu_stats (void)
356{
357 CPUState *env;
358
359 env = mon_get_cpu();
360 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
361}
362#endif
363
bellard9307c4c2004-04-04 12:57:25 +0000364static void do_quit(void)
bellard9dc39cb2004-03-14 21:38:27 +0000365{
366 exit(0);
367}
368
369static int eject_device(BlockDriverState *bs, int force)
370{
371 if (bdrv_is_inserted(bs)) {
372 if (!force) {
373 if (!bdrv_is_removable(bs)) {
374 term_printf("device is not removable\n");
375 return -1;
376 }
377 if (bdrv_is_locked(bs)) {
378 term_printf("device is locked\n");
379 return -1;
380 }
381 }
382 bdrv_close(bs);
383 }
384 return 0;
385}
386
bellard9307c4c2004-04-04 12:57:25 +0000387static void do_eject(int force, const char *filename)
bellard9dc39cb2004-03-14 21:38:27 +0000388{
389 BlockDriverState *bs;
bellard9dc39cb2004-03-14 21:38:27 +0000390
bellard9307c4c2004-04-04 12:57:25 +0000391 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000392 if (!bs) {
393 term_printf("device not found\n");
394 return;
395 }
396 eject_device(bs, force);
397}
398
aurel322ecea9b2008-06-18 22:10:01 +0000399static void do_change_block(const char *device, const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000400{
401 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000402 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000403
bellard9307c4c2004-04-04 12:57:25 +0000404 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000405 if (!bs) {
406 term_printf("device not found\n");
407 return;
408 }
aurel322ecea9b2008-06-18 22:10:01 +0000409 if (fmt) {
410 drv = bdrv_find_format(fmt);
411 if (!drv) {
412 term_printf("invalid format %s\n", fmt);
413 return;
414 }
415 }
bellard9dc39cb2004-03-14 21:38:27 +0000416 if (eject_device(bs, 0) < 0)
417 return;
aurel322ecea9b2008-06-18 22:10:01 +0000418 bdrv_open2(bs, filename, 0, drv);
balrog2bac6012007-04-30 01:34:31 +0000419 qemu_key_check(bs, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000420}
421
thse25a5822007-08-25 01:36:20 +0000422static void do_change_vnc(const char *target)
423{
ths70848512007-08-25 01:37:05 +0000424 if (strcmp(target, "passwd") == 0 ||
425 strcmp(target, "password") == 0) {
426 char password[9];
427 monitor_readline("Password: ", 1, password, sizeof(password)-1);
428 password[sizeof(password)-1] = '\0';
429 if (vnc_display_password(NULL, password) < 0)
430 term_printf("could not set VNC server password\n");
431 } else {
432 if (vnc_display_open(NULL, target) < 0)
433 term_printf("could not start VNC server on %s\n", target);
434 }
thse25a5822007-08-25 01:36:20 +0000435}
436
aurel322ecea9b2008-06-18 22:10:01 +0000437static void do_change(const char *device, const char *target, const char *fmt)
thse25a5822007-08-25 01:36:20 +0000438{
439 if (strcmp(device, "vnc") == 0) {
440 do_change_vnc(target);
441 } else {
aurel322ecea9b2008-06-18 22:10:01 +0000442 do_change_block(device, target, fmt);
thse25a5822007-08-25 01:36:20 +0000443 }
444}
445
bellard9307c4c2004-04-04 12:57:25 +0000446static void do_screen_dump(const char *filename)
bellard59a983b2004-03-17 23:17:16 +0000447{
pbrook95219892006-04-09 01:06:34 +0000448 vga_hw_screen_dump(filename);
bellard59a983b2004-03-17 23:17:16 +0000449}
450
pbrooke735b912007-06-30 13:53:24 +0000451static void do_logfile(const char *filename)
452{
453 cpu_set_log_filename(filename);
454}
455
bellard9307c4c2004-04-04 12:57:25 +0000456static void do_log(const char *items)
bellardf193c792004-03-21 17:06:25 +0000457{
458 int mask;
ths3b46e622007-09-17 08:09:54 +0000459
bellard9307c4c2004-04-04 12:57:25 +0000460 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000461 mask = 0;
462 } else {
bellard9307c4c2004-04-04 12:57:25 +0000463 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000464 if (!mask) {
bellard9307c4c2004-04-04 12:57:25 +0000465 help_cmd("log");
bellardf193c792004-03-21 17:06:25 +0000466 return;
467 }
468 }
469 cpu_set_log(mask);
470}
471
bellard9307c4c2004-04-04 12:57:25 +0000472static void do_stop(void)
bellard8a7ddc32004-03-31 19:00:16 +0000473{
474 vm_stop(EXCP_INTERRUPT);
475}
476
bellard9307c4c2004-04-04 12:57:25 +0000477static void do_cont(void)
bellard8a7ddc32004-03-31 19:00:16 +0000478{
479 vm_start();
480}
481
bellard67b915a2004-03-31 23:37:16 +0000482#ifdef CONFIG_GDBSTUB
pbrookcfc34752007-02-22 01:48:01 +0000483static void do_gdbserver(const char *port)
bellard8a7ddc32004-03-31 19:00:16 +0000484{
pbrookcfc34752007-02-22 01:48:01 +0000485 if (!port)
bellard9307c4c2004-04-04 12:57:25 +0000486 port = DEFAULT_GDBSTUB_PORT;
pbrookcfc34752007-02-22 01:48:01 +0000487 if (gdbserver_start(port) < 0) {
488 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000489 } else {
pbrookcfc34752007-02-22 01:48:01 +0000490 qemu_printf("Waiting gdb connection on port '%s'\n", port);
bellard8a7ddc32004-03-31 19:00:16 +0000491 }
492}
bellard67b915a2004-03-31 23:37:16 +0000493#endif
bellard8a7ddc32004-03-31 19:00:16 +0000494
bellard9307c4c2004-04-04 12:57:25 +0000495static void term_printc(int c)
496{
497 term_printf("'");
498 switch(c) {
499 case '\'':
500 term_printf("\\'");
501 break;
502 case '\\':
503 term_printf("\\\\");
504 break;
505 case '\n':
506 term_printf("\\n");
507 break;
508 case '\r':
509 term_printf("\\r");
510 break;
511 default:
512 if (c >= 32 && c <= 126) {
513 term_printf("%c", c);
514 } else {
515 term_printf("\\x%02x", c);
516 }
517 break;
518 }
519 term_printf("'");
520}
521
ths5fafdf22007-09-16 21:08:06 +0000522static void memory_dump(int count, int format, int wsize,
blueswir17743e582007-09-24 18:39:04 +0000523 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000524{
bellard6a00d602005-11-21 23:25:50 +0000525 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000526 int nb_per_line, l, line_size, i, max_digits, len;
527 uint8_t buf[16];
528 uint64_t v;
529
530 if (format == 'i') {
531 int flags;
532 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000533 env = mon_get_cpu();
534 if (!env && !is_physical)
535 return;
bellard9307c4c2004-04-04 12:57:25 +0000536#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000537 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000538 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000539 } else if (wsize == 4) {
540 flags = 0;
541 } else {
bellard6a15fd12006-04-12 21:07:07 +0000542 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000543 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000544 if (env) {
545#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000546 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000547 (env->segs[R_CS].flags & DESC_L_MASK))
548 flags = 2;
549 else
550#endif
551 if (!(env->segs[R_CS].flags & DESC_B_MASK))
552 flags = 1;
553 }
bellard4c27ba22004-04-25 18:05:08 +0000554 }
555#endif
bellard6a00d602005-11-21 23:25:50 +0000556 monitor_disas(env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000557 return;
558 }
559
560 len = wsize * count;
561 if (wsize == 1)
562 line_size = 8;
563 else
564 line_size = 16;
565 nb_per_line = line_size / wsize;
566 max_digits = 0;
567
568 switch(format) {
569 case 'o':
570 max_digits = (wsize * 8 + 2) / 3;
571 break;
572 default:
573 case 'x':
574 max_digits = (wsize * 8) / 4;
575 break;
576 case 'u':
577 case 'd':
578 max_digits = (wsize * 8 * 10 + 32) / 33;
579 break;
580 case 'c':
581 wsize = 1;
582 break;
583 }
584
585 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +0000586 if (is_physical)
587 term_printf(TARGET_FMT_plx ":", addr);
588 else
589 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +0000590 l = len;
591 if (l > line_size)
592 l = line_size;
593 if (is_physical) {
594 cpu_physical_memory_rw(addr, buf, l, 0);
595 } else {
bellard6a00d602005-11-21 23:25:50 +0000596 env = mon_get_cpu();
597 if (!env)
598 break;
599 cpu_memory_rw_debug(env, addr, buf, l, 0);
bellard9307c4c2004-04-04 12:57:25 +0000600 }
ths5fafdf22007-09-16 21:08:06 +0000601 i = 0;
bellard9307c4c2004-04-04 12:57:25 +0000602 while (i < l) {
603 switch(wsize) {
604 default:
605 case 1:
606 v = ldub_raw(buf + i);
607 break;
608 case 2:
609 v = lduw_raw(buf + i);
610 break;
611 case 4:
bellard92a31b12005-02-10 22:00:52 +0000612 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +0000613 break;
614 case 8:
615 v = ldq_raw(buf + i);
616 break;
617 }
618 term_printf(" ");
619 switch(format) {
620 case 'o':
bellard26a76462006-06-25 18:15:32 +0000621 term_printf("%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000622 break;
623 case 'x':
bellard26a76462006-06-25 18:15:32 +0000624 term_printf("0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000625 break;
626 case 'u':
bellard26a76462006-06-25 18:15:32 +0000627 term_printf("%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000628 break;
629 case 'd':
bellard26a76462006-06-25 18:15:32 +0000630 term_printf("%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +0000631 break;
632 case 'c':
633 term_printc(v);
634 break;
635 }
636 i += wsize;
637 }
638 term_printf("\n");
639 addr += l;
640 len -= l;
641 }
642}
643
bellard92a31b12005-02-10 22:00:52 +0000644#if TARGET_LONG_BITS == 64
645#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
646#else
647#define GET_TLONG(h, l) (l)
648#endif
649
ths5fafdf22007-09-16 21:08:06 +0000650static void do_memory_dump(int count, int format, int size,
bellard92a31b12005-02-10 22:00:52 +0000651 uint32_t addrh, uint32_t addrl)
bellard9307c4c2004-04-04 12:57:25 +0000652{
bellard92a31b12005-02-10 22:00:52 +0000653 target_long addr = GET_TLONG(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000654 memory_dump(count, format, size, addr, 0);
655}
656
blueswir17743e582007-09-24 18:39:04 +0000657#if TARGET_PHYS_ADDR_BITS > 32
658#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
659#else
660#define GET_TPHYSADDR(h, l) (l)
661#endif
662
bellard92a31b12005-02-10 22:00:52 +0000663static void do_physical_memory_dump(int count, int format, int size,
664 uint32_t addrh, uint32_t addrl)
665
bellard9307c4c2004-04-04 12:57:25 +0000666{
blueswir17743e582007-09-24 18:39:04 +0000667 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
bellard9307c4c2004-04-04 12:57:25 +0000668 memory_dump(count, format, size, addr, 1);
669}
670
bellard92a31b12005-02-10 22:00:52 +0000671static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
bellard9307c4c2004-04-04 12:57:25 +0000672{
blueswir17743e582007-09-24 18:39:04 +0000673 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
674#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +0000675 switch(format) {
676 case 'o':
677 term_printf("%#o", val);
678 break;
679 case 'x':
680 term_printf("%#x", val);
681 break;
682 case 'u':
683 term_printf("%u", val);
684 break;
685 default:
686 case 'd':
687 term_printf("%d", val);
688 break;
689 case 'c':
690 term_printc(val);
691 break;
692 }
bellard92a31b12005-02-10 22:00:52 +0000693#else
694 switch(format) {
695 case 'o':
bellard26a76462006-06-25 18:15:32 +0000696 term_printf("%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +0000697 break;
698 case 'x':
bellard26a76462006-06-25 18:15:32 +0000699 term_printf("%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +0000700 break;
701 case 'u':
bellard26a76462006-06-25 18:15:32 +0000702 term_printf("%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +0000703 break;
704 default:
705 case 'd':
bellard26a76462006-06-25 18:15:32 +0000706 term_printf("%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +0000707 break;
708 case 'c':
709 term_printc(val);
710 break;
711 }
712#endif
bellard9307c4c2004-04-04 12:57:25 +0000713 term_printf("\n");
714}
715
ths5fafdf22007-09-16 21:08:06 +0000716static void do_memory_save(unsigned int valh, unsigned int vall,
bellardb371dc52007-01-03 15:20:39 +0000717 uint32_t size, const char *filename)
718{
719 FILE *f;
720 target_long addr = GET_TLONG(valh, vall);
721 uint32_t l;
722 CPUState *env;
723 uint8_t buf[1024];
724
725 env = mon_get_cpu();
726 if (!env)
727 return;
728
729 f = fopen(filename, "wb");
730 if (!f) {
731 term_printf("could not open '%s'\n", filename);
732 return;
733 }
734 while (size != 0) {
735 l = sizeof(buf);
736 if (l > size)
737 l = size;
738 cpu_memory_rw_debug(env, addr, buf, l, 0);
739 fwrite(buf, 1, l, f);
740 addr += l;
741 size -= l;
742 }
743 fclose(f);
744}
745
aurel32a8bdf7a2008-04-11 21:36:14 +0000746static void do_physical_memory_save(unsigned int valh, unsigned int vall,
747 uint32_t size, const char *filename)
748{
749 FILE *f;
750 uint32_t l;
751 uint8_t buf[1024];
aurel32339dea22008-04-12 20:14:43 +0000752 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
aurel32a8bdf7a2008-04-11 21:36:14 +0000753
754 f = fopen(filename, "wb");
755 if (!f) {
756 term_printf("could not open '%s'\n", filename);
757 return;
758 }
759 while (size != 0) {
760 l = sizeof(buf);
761 if (l > size)
762 l = size;
763 cpu_physical_memory_rw(addr, buf, l, 0);
764 fwrite(buf, 1, l, f);
765 fflush(f);
766 addr += l;
767 size -= l;
768 }
769 fclose(f);
770}
771
bellarde4cf1ad2005-06-04 20:15:57 +0000772static void do_sum(uint32_t start, uint32_t size)
773{
774 uint32_t addr;
775 uint8_t buf[1];
776 uint16_t sum;
777
778 sum = 0;
779 for(addr = start; addr < (start + size); addr++) {
780 cpu_physical_memory_rw(addr, buf, 1, 0);
781 /* BSD sum algorithm ('sum' Unix command) */
782 sum = (sum >> 1) | (sum << 15);
783 sum += buf[0];
784 }
785 term_printf("%05d\n", sum);
786}
787
bellarda3a91a32004-06-04 11:06:21 +0000788typedef struct {
789 int keycode;
790 const char *name;
791} KeyDef;
792
793static const KeyDef key_defs[] = {
794 { 0x2a, "shift" },
795 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +0000796
bellarda3a91a32004-06-04 11:06:21 +0000797 { 0x38, "alt" },
798 { 0xb8, "alt_r" },
799 { 0x1d, "ctrl" },
800 { 0x9d, "ctrl_r" },
801
802 { 0xdd, "menu" },
803
804 { 0x01, "esc" },
805
806 { 0x02, "1" },
807 { 0x03, "2" },
808 { 0x04, "3" },
809 { 0x05, "4" },
810 { 0x06, "5" },
811 { 0x07, "6" },
812 { 0x08, "7" },
813 { 0x09, "8" },
814 { 0x0a, "9" },
815 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +0000816 { 0x0c, "minus" },
817 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +0000818 { 0x0e, "backspace" },
819
820 { 0x0f, "tab" },
821 { 0x10, "q" },
822 { 0x11, "w" },
823 { 0x12, "e" },
824 { 0x13, "r" },
825 { 0x14, "t" },
826 { 0x15, "y" },
827 { 0x16, "u" },
828 { 0x17, "i" },
829 { 0x18, "o" },
830 { 0x19, "p" },
831
832 { 0x1c, "ret" },
833
834 { 0x1e, "a" },
835 { 0x1f, "s" },
836 { 0x20, "d" },
837 { 0x21, "f" },
838 { 0x22, "g" },
839 { 0x23, "h" },
840 { 0x24, "j" },
841 { 0x25, "k" },
842 { 0x26, "l" },
843
844 { 0x2c, "z" },
845 { 0x2d, "x" },
846 { 0x2e, "c" },
847 { 0x2f, "v" },
848 { 0x30, "b" },
849 { 0x31, "n" },
850 { 0x32, "m" },
ths3b46e622007-09-17 08:09:54 +0000851
balrog4d3b6f62008-02-10 16:33:14 +0000852 { 0x37, "asterisk" },
853
bellarda3a91a32004-06-04 11:06:21 +0000854 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +0000855 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000856 { 0x3b, "f1" },
857 { 0x3c, "f2" },
858 { 0x3d, "f3" },
859 { 0x3e, "f4" },
860 { 0x3f, "f5" },
861 { 0x40, "f6" },
862 { 0x41, "f7" },
863 { 0x42, "f8" },
864 { 0x43, "f9" },
865 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +0000866 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +0000867 { 0x46, "scroll_lock" },
868
bellard64866c32006-05-07 18:03:31 +0000869 { 0xb5, "kp_divide" },
870 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +0000871 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +0000872 { 0x4e, "kp_add" },
873 { 0x9c, "kp_enter" },
874 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +0000875 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +0000876
877 { 0x52, "kp_0" },
878 { 0x4f, "kp_1" },
879 { 0x50, "kp_2" },
880 { 0x51, "kp_3" },
881 { 0x4b, "kp_4" },
882 { 0x4c, "kp_5" },
883 { 0x4d, "kp_6" },
884 { 0x47, "kp_7" },
885 { 0x48, "kp_8" },
886 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +0000887
bellarda3a91a32004-06-04 11:06:21 +0000888 { 0x56, "<" },
889
890 { 0x57, "f11" },
891 { 0x58, "f12" },
892
893 { 0xb7, "print" },
894
895 { 0xc7, "home" },
896 { 0xc9, "pgup" },
897 { 0xd1, "pgdn" },
898 { 0xcf, "end" },
899
900 { 0xcb, "left" },
901 { 0xc8, "up" },
902 { 0xd0, "down" },
903 { 0xcd, "right" },
904
905 { 0xd2, "insert" },
906 { 0xd3, "delete" },
907 { 0, NULL },
908};
909
910static int get_keycode(const char *key)
911{
912 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +0000913 char *endp;
914 int ret;
bellarda3a91a32004-06-04 11:06:21 +0000915
916 for(p = key_defs; p->name != NULL; p++) {
917 if (!strcmp(key, p->name))
918 return p->keycode;
919 }
bellard64866c32006-05-07 18:03:31 +0000920 if (strstart(key, "0x", NULL)) {
921 ret = strtoul(key, &endp, 0);
922 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
923 return ret;
924 }
bellarda3a91a32004-06-04 11:06:21 +0000925 return -1;
926}
927
balrogc8256f92008-06-08 22:45:01 +0000928#define MAX_KEYCODES 16
929static uint8_t keycodes[MAX_KEYCODES];
930static int nb_pending_keycodes;
931static QEMUTimer *key_timer;
932
933static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +0000934{
balrogc8256f92008-06-08 22:45:01 +0000935 int keycode;
936
937 while (nb_pending_keycodes > 0) {
938 nb_pending_keycodes--;
939 keycode = keycodes[nb_pending_keycodes];
940 if (keycode & 0x80)
941 kbd_put_keycode(0xe0);
942 kbd_put_keycode(keycode | 0x80);
943 }
944}
945
946static void do_sendkey(const char *string, int has_hold_time, int hold_time)
947{
balrog3401c0d2008-06-04 10:05:59 +0000948 char keyname_buf[16];
949 char *separator;
950 int keyname_len, keycode, i;
ths3b46e622007-09-17 08:09:54 +0000951
balrogc8256f92008-06-08 22:45:01 +0000952 if (nb_pending_keycodes > 0) {
953 qemu_del_timer(key_timer);
954 release_keys(NULL);
955 }
956 if (!has_hold_time)
957 hold_time = 100;
958 i = 0;
balrog3401c0d2008-06-04 10:05:59 +0000959 while (1) {
960 separator = strchr(string, '-');
961 keyname_len = separator ? separator - string : strlen(string);
962 if (keyname_len > 0) {
963 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
964 if (keyname_len > sizeof(keyname_buf) - 1) {
965 term_printf("invalid key: '%s...'\n", keyname_buf);
966 return;
bellarda3a91a32004-06-04 11:06:21 +0000967 }
balrogc8256f92008-06-08 22:45:01 +0000968 if (i == MAX_KEYCODES) {
balrog3401c0d2008-06-04 10:05:59 +0000969 term_printf("too many keys\n");
970 return;
971 }
972 keyname_buf[keyname_len] = 0;
973 keycode = get_keycode(keyname_buf);
974 if (keycode < 0) {
975 term_printf("unknown key: '%s'\n", keyname_buf);
976 return;
977 }
balrogc8256f92008-06-08 22:45:01 +0000978 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +0000979 }
balrog3401c0d2008-06-04 10:05:59 +0000980 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +0000981 break;
balrog3401c0d2008-06-04 10:05:59 +0000982 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +0000983 }
balrogc8256f92008-06-08 22:45:01 +0000984 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +0000985 /* key down events */
balrogc8256f92008-06-08 22:45:01 +0000986 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +0000987 keycode = keycodes[i];
988 if (keycode & 0x80)
989 kbd_put_keycode(0xe0);
990 kbd_put_keycode(keycode & 0x7f);
991 }
balrogc8256f92008-06-08 22:45:01 +0000992 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +0000993 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
994 muldiv64(ticks_per_sec, hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +0000995}
996
bellard13224a82006-07-14 22:03:35 +0000997static int mouse_button_state;
998
ths5fafdf22007-09-16 21:08:06 +0000999static void do_mouse_move(const char *dx_str, const char *dy_str,
bellard13224a82006-07-14 22:03:35 +00001000 const char *dz_str)
1001{
1002 int dx, dy, dz;
1003 dx = strtol(dx_str, NULL, 0);
1004 dy = strtol(dy_str, NULL, 0);
1005 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001006 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001007 dz = strtol(dz_str, NULL, 0);
1008 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1009}
1010
1011static void do_mouse_button(int button_state)
1012{
1013 mouse_button_state = button_state;
1014 kbd_mouse_event(0, 0, 0, mouse_button_state);
1015}
1016
bellard34405572004-06-08 00:55:58 +00001017static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
1018{
1019 uint32_t val;
1020 int suffix;
1021
1022 if (has_index) {
1023 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1024 addr++;
1025 }
1026 addr &= 0xffff;
1027
1028 switch(size) {
1029 default:
1030 case 1:
1031 val = cpu_inb(NULL, addr);
1032 suffix = 'b';
1033 break;
1034 case 2:
1035 val = cpu_inw(NULL, addr);
1036 suffix = 'w';
1037 break;
1038 case 4:
1039 val = cpu_inl(NULL, addr);
1040 suffix = 'l';
1041 break;
1042 }
1043 term_printf("port%c[0x%04x] = %#0*x\n",
1044 suffix, addr, size * 2, val);
1045}
bellarda3a91a32004-06-04 11:06:21 +00001046
aurel320ecdffb2008-05-04 20:11:34 +00001047static void do_boot_set(const char *bootdevice)
1048{
1049 int res;
1050
1051 if (qemu_boot_set_handler) {
1052 res = qemu_boot_set_handler(bootdevice);
1053 if (res == 0)
1054 term_printf("boot device list now set to %s\n", bootdevice);
1055 else
1056 term_printf("setting boot device list failed with error %i\n", res);
1057 } else {
1058 term_printf("no function defined to set boot device list for this architecture\n");
1059 }
1060}
1061
bellarde4f90822004-06-20 12:35:44 +00001062static void do_system_reset(void)
1063{
1064 qemu_system_reset_request();
1065}
1066
bellard34751872005-07-02 14:31:34 +00001067static void do_system_powerdown(void)
1068{
1069 qemu_system_powerdown_request();
1070}
1071
bellardb86bda52004-09-18 19:32:46 +00001072#if defined(TARGET_I386)
1073static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1074{
ths5fafdf22007-09-16 21:08:06 +00001075 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
bellardb86bda52004-09-18 19:32:46 +00001076 addr,
1077 pte & mask,
1078 pte & PG_GLOBAL_MASK ? 'G' : '-',
1079 pte & PG_PSE_MASK ? 'P' : '-',
1080 pte & PG_DIRTY_MASK ? 'D' : '-',
1081 pte & PG_ACCESSED_MASK ? 'A' : '-',
1082 pte & PG_PCD_MASK ? 'C' : '-',
1083 pte & PG_PWT_MASK ? 'T' : '-',
1084 pte & PG_USER_MASK ? 'U' : '-',
1085 pte & PG_RW_MASK ? 'W' : '-');
1086}
1087
1088static void tlb_info(void)
1089{
bellard6a00d602005-11-21 23:25:50 +00001090 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001091 int l1, l2;
1092 uint32_t pgd, pde, pte;
1093
bellard6a00d602005-11-21 23:25:50 +00001094 env = mon_get_cpu();
1095 if (!env)
1096 return;
1097
bellardb86bda52004-09-18 19:32:46 +00001098 if (!(env->cr[0] & CR0_PG_MASK)) {
1099 term_printf("PG disabled\n");
1100 return;
1101 }
1102 pgd = env->cr[3] & ~0xfff;
1103 for(l1 = 0; l1 < 1024; l1++) {
1104 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1105 pde = le32_to_cpu(pde);
1106 if (pde & PG_PRESENT_MASK) {
1107 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1108 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1109 } else {
1110 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001111 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001112 (uint8_t *)&pte, 4);
1113 pte = le32_to_cpu(pte);
1114 if (pte & PG_PRESENT_MASK) {
ths5fafdf22007-09-16 21:08:06 +00001115 print_pte((l1 << 22) + (l2 << 12),
1116 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001117 ~0xfff);
1118 }
1119 }
1120 }
1121 }
1122 }
1123}
1124
ths5fafdf22007-09-16 21:08:06 +00001125static void mem_print(uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001126 uint32_t end, int prot)
1127{
bellard9746b152004-11-11 18:30:24 +00001128 int prot1;
1129 prot1 = *plast_prot;
1130 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001131 if (*pstart != -1) {
1132 term_printf("%08x-%08x %08x %c%c%c\n",
ths5fafdf22007-09-16 21:08:06 +00001133 *pstart, end, end - *pstart,
bellard9746b152004-11-11 18:30:24 +00001134 prot1 & PG_USER_MASK ? 'u' : '-',
bellardb86bda52004-09-18 19:32:46 +00001135 'r',
bellard9746b152004-11-11 18:30:24 +00001136 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001137 }
1138 if (prot != 0)
1139 *pstart = end;
1140 else
1141 *pstart = -1;
1142 *plast_prot = prot;
1143 }
1144}
1145
1146static void mem_info(void)
1147{
bellard6a00d602005-11-21 23:25:50 +00001148 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001149 int l1, l2, prot, last_prot;
1150 uint32_t pgd, pde, pte, start, end;
1151
bellard6a00d602005-11-21 23:25:50 +00001152 env = mon_get_cpu();
1153 if (!env)
1154 return;
1155
bellardb86bda52004-09-18 19:32:46 +00001156 if (!(env->cr[0] & CR0_PG_MASK)) {
1157 term_printf("PG disabled\n");
1158 return;
1159 }
1160 pgd = env->cr[3] & ~0xfff;
1161 last_prot = 0;
1162 start = -1;
1163 for(l1 = 0; l1 < 1024; l1++) {
1164 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1165 pde = le32_to_cpu(pde);
1166 end = l1 << 22;
1167 if (pde & PG_PRESENT_MASK) {
1168 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1169 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1170 mem_print(&start, &last_prot, end, prot);
1171 } else {
1172 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001173 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001174 (uint8_t *)&pte, 4);
1175 pte = le32_to_cpu(pte);
1176 end = (l1 << 22) + (l2 << 12);
1177 if (pte & PG_PRESENT_MASK) {
1178 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1179 } else {
1180 prot = 0;
1181 }
1182 mem_print(&start, &last_prot, end, prot);
1183 }
1184 }
1185 } else {
1186 prot = 0;
1187 mem_print(&start, &last_prot, end, prot);
1188 }
1189 }
1190}
1191#endif
1192
bellard0f4c6412005-07-24 18:10:56 +00001193static void do_info_kqemu(void)
1194{
1195#ifdef USE_KQEMU
bellard6a00d602005-11-21 23:25:50 +00001196 CPUState *env;
bellard0f4c6412005-07-24 18:10:56 +00001197 int val;
1198 val = 0;
bellard6a00d602005-11-21 23:25:50 +00001199 env = mon_get_cpu();
1200 if (!env) {
1201 term_printf("No cpu initialized yet");
1202 return;
1203 }
1204 val = env->kqemu_enabled;
bellard5f1ce942006-02-08 22:40:15 +00001205 term_printf("kqemu support: ");
1206 switch(val) {
1207 default:
1208 case 0:
1209 term_printf("disabled\n");
1210 break;
1211 case 1:
1212 term_printf("enabled for user code\n");
1213 break;
1214 case 2:
1215 term_printf("enabled for user and kernel code\n");
1216 break;
1217 }
bellard0f4c6412005-07-24 18:10:56 +00001218#else
bellard5f1ce942006-02-08 22:40:15 +00001219 term_printf("kqemu support: not compiled\n");
bellard0f4c6412005-07-24 18:10:56 +00001220#endif
ths5fafdf22007-09-16 21:08:06 +00001221}
bellard0f4c6412005-07-24 18:10:56 +00001222
bellard5f1ce942006-02-08 22:40:15 +00001223#ifdef CONFIG_PROFILER
1224
1225int64_t kqemu_time;
1226int64_t qemu_time;
1227int64_t kqemu_exec_count;
1228int64_t dev_time;
1229int64_t kqemu_ret_int_count;
1230int64_t kqemu_ret_excp_count;
1231int64_t kqemu_ret_intr_count;
1232
1233static void do_info_profile(void)
1234{
1235 int64_t total;
1236 total = qemu_time;
1237 if (total == 0)
1238 total = 1;
bellard26a76462006-06-25 18:15:32 +00001239 term_printf("async time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001240 dev_time, dev_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001241 term_printf("qemu time %" PRId64 " (%0.3f)\n",
bellard5f1ce942006-02-08 22:40:15 +00001242 qemu_time, qemu_time / (double)ticks_per_sec);
bellard26a76462006-06-25 18:15:32 +00001243 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
bellard5f1ce942006-02-08 22:40:15 +00001244 kqemu_time, kqemu_time / (double)ticks_per_sec,
1245 kqemu_time / (double)total * 100.0,
1246 kqemu_exec_count,
1247 kqemu_ret_int_count,
1248 kqemu_ret_excp_count,
1249 kqemu_ret_intr_count);
1250 qemu_time = 0;
1251 kqemu_time = 0;
1252 kqemu_exec_count = 0;
1253 dev_time = 0;
1254 kqemu_ret_int_count = 0;
1255 kqemu_ret_excp_count = 0;
1256 kqemu_ret_intr_count = 0;
1257#ifdef USE_KQEMU
1258 kqemu_record_dump();
1259#endif
1260}
1261#else
1262static void do_info_profile(void)
1263{
1264 term_printf("Internal profiler not compiled\n");
1265}
1266#endif
1267
bellardec36b692006-07-16 18:57:03 +00001268/* Capture support */
1269static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1270
1271static void do_info_capture (void)
1272{
1273 int i;
1274 CaptureState *s;
1275
1276 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1277 term_printf ("[%d]: ", i);
1278 s->ops.info (s->opaque);
1279 }
1280}
1281
1282static void do_stop_capture (int n)
1283{
1284 int i;
1285 CaptureState *s;
1286
1287 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1288 if (i == n) {
1289 s->ops.destroy (s->opaque);
1290 LIST_REMOVE (s, entries);
1291 qemu_free (s);
1292 return;
1293 }
1294 }
1295}
1296
1297#ifdef HAS_AUDIO
1298int wav_start_capture (CaptureState *s, const char *path, int freq,
1299 int bits, int nchannels);
1300
1301static void do_wav_capture (const char *path,
1302 int has_freq, int freq,
1303 int has_bits, int bits,
1304 int has_channels, int nchannels)
1305{
1306 CaptureState *s;
1307
1308 s = qemu_mallocz (sizeof (*s));
1309 if (!s) {
1310 term_printf ("Not enough memory to add wave capture\n");
1311 return;
1312 }
1313
1314 freq = has_freq ? freq : 44100;
1315 bits = has_bits ? bits : 16;
1316 nchannels = has_channels ? nchannels : 2;
1317
1318 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1319 term_printf ("Faied to add wave capture\n");
1320 qemu_free (s);
1321 }
1322 LIST_INSERT_HEAD (&capture_head, s, entries);
1323}
1324#endif
1325
aurel32dc1c0b72008-04-27 23:52:12 +00001326#if defined(TARGET_I386)
1327static void do_inject_nmi(int cpu_index)
1328{
1329 CPUState *env;
1330
1331 for (env = first_cpu; env != NULL; env = env->next_cpu)
1332 if (env->cpu_index == cpu_index) {
1333 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1334 break;
1335 }
1336}
1337#endif
1338
bellard9dc39cb2004-03-14 21:38:27 +00001339static term_cmd_t term_cmds[] = {
ths5fafdf22007-09-16 21:08:06 +00001340 { "help|?", "s?", do_help,
bellard9dc39cb2004-03-14 21:38:27 +00001341 "[cmd]", "show the help" },
ths5fafdf22007-09-16 21:08:06 +00001342 { "commit", "s", do_commit,
bellard7954c732006-08-01 15:52:40 +00001343 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
bellard9307c4c2004-04-04 12:57:25 +00001344 { "info", "s?", do_info,
bellard9dc39cb2004-03-14 21:38:27 +00001345 "subcommand", "show various information about the system state" },
bellard9307c4c2004-04-04 12:57:25 +00001346 { "q|quit", "", do_quit,
bellard9dc39cb2004-03-14 21:38:27 +00001347 "", "quit the emulator" },
bellard81d09122004-07-14 17:21:37 +00001348 { "eject", "-fB", do_eject,
thse5987522007-03-30 18:58:01 +00001349 "[-f] device", "eject a removable medium (use -f to force it)" },
aurel322ecea9b2008-06-18 22:10:01 +00001350 { "change", "BFs?", do_change,
1351 "device filename [format]", "change a removable medium, optional format" },
ths5fafdf22007-09-16 21:08:06 +00001352 { "screendump", "F", do_screen_dump,
bellard59a983b2004-03-17 23:17:16 +00001353 "filename", "save screen into PPM image 'filename'" },
balrog788228c2008-05-24 23:15:46 +00001354 { "logfile", "F", do_logfile,
pbrooke735b912007-06-30 13:53:24 +00001355 "filename", "output logs to 'filename'" },
bellard9307c4c2004-04-04 12:57:25 +00001356 { "log", "s", do_log,
ths5fafdf22007-09-16 21:08:06 +00001357 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
bellardfaea38e2006-08-05 21:31:00 +00001358 { "savevm", "s?", do_savevm,
ths5fafdf22007-09-16 21:08:06 +00001359 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
bellardfaea38e2006-08-05 21:31:00 +00001360 { "loadvm", "s", do_loadvm,
ths5fafdf22007-09-16 21:08:06 +00001361 "tag|id", "restore a VM snapshot from its tag or id" },
bellardfaea38e2006-08-05 21:31:00 +00001362 { "delvm", "s", do_delvm,
ths5fafdf22007-09-16 21:08:06 +00001363 "tag|id", "delete a VM snapshot from its tag or id" },
1364 { "stop", "", do_stop,
bellard9307c4c2004-04-04 12:57:25 +00001365 "", "stop emulation", },
ths5fafdf22007-09-16 21:08:06 +00001366 { "c|cont", "", do_cont,
bellard9307c4c2004-04-04 12:57:25 +00001367 "", "resume emulation", },
bellard67b915a2004-03-31 23:37:16 +00001368#ifdef CONFIG_GDBSTUB
ths5fafdf22007-09-16 21:08:06 +00001369 { "gdbserver", "s?", do_gdbserver,
bellard9307c4c2004-04-04 12:57:25 +00001370 "[port]", "start gdbserver session (default port=1234)", },
bellard67b915a2004-03-31 23:37:16 +00001371#endif
ths5fafdf22007-09-16 21:08:06 +00001372 { "x", "/l", do_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001373 "/fmt addr", "virtual memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001374 { "xp", "/l", do_physical_memory_dump,
bellard9307c4c2004-04-04 12:57:25 +00001375 "/fmt addr", "physical memory dump starting at 'addr'", },
ths5fafdf22007-09-16 21:08:06 +00001376 { "p|print", "/l", do_print,
bellard9307c4c2004-04-04 12:57:25 +00001377 "/fmt expr", "print expression value (use $reg for CPU register access)", },
ths5fafdf22007-09-16 21:08:06 +00001378 { "i", "/ii.", do_ioport_read,
bellard34405572004-06-08 00:55:58 +00001379 "/fmt addr", "I/O port read" },
1380
balrogc8256f92008-06-08 22:45:01 +00001381 { "sendkey", "si?", do_sendkey,
1382 "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 +00001383 { "system_reset", "", do_system_reset,
bellarde4f90822004-06-20 12:35:44 +00001384 "", "reset the system" },
ths5fafdf22007-09-16 21:08:06 +00001385 { "system_powerdown", "", do_system_powerdown,
bellard34751872005-07-02 14:31:34 +00001386 "", "send system power down event" },
ths5fafdf22007-09-16 21:08:06 +00001387 { "sum", "ii", do_sum,
bellarde4cf1ad2005-06-04 20:15:57 +00001388 "addr size", "compute the checksum of a memory region" },
bellarda594cfb2005-11-06 16:13:29 +00001389 { "usb_add", "s", do_usb_add,
1390 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1391 { "usb_del", "s", do_usb_del,
1392 "device", "remove USB device 'bus.addr'" },
ths5fafdf22007-09-16 21:08:06 +00001393 { "cpu", "i", do_cpu_set,
bellard6a00d602005-11-21 23:25:50 +00001394 "index", "set the default CPU" },
ths5fafdf22007-09-16 21:08:06 +00001395 { "mouse_move", "sss?", do_mouse_move,
bellard13224a82006-07-14 22:03:35 +00001396 "dx dy [dz]", "send mouse move events" },
ths5fafdf22007-09-16 21:08:06 +00001397 { "mouse_button", "i", do_mouse_button,
bellard13224a82006-07-14 22:03:35 +00001398 "state", "change mouse button state (1=L, 2=M, 4=R)" },
ths455204e2007-01-05 16:42:13 +00001399 { "mouse_set", "i", do_mouse_set,
1400 "index", "set which mouse device receives events" },
bellardec36b692006-07-16 18:57:03 +00001401#ifdef HAS_AUDIO
1402 { "wavcapture", "si?i?i?", do_wav_capture,
1403 "path [frequency bits channels]",
1404 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1405#endif
1406 { "stopcapture", "i", do_stop_capture,
1407 "capture index", "stop capture" },
ths5fafdf22007-09-16 21:08:06 +00001408 { "memsave", "lis", do_memory_save,
bellardb371dc52007-01-03 15:20:39 +00001409 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
aurel32a8bdf7a2008-04-11 21:36:14 +00001410 { "pmemsave", "lis", do_physical_memory_save,
1411 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
aurel320ecdffb2008-05-04 20:11:34 +00001412 { "boot_set", "s", do_boot_set,
1413 "bootdevice", "define new values for the boot device list" },
aurel32dc1c0b72008-04-27 23:52:12 +00001414#if defined(TARGET_I386)
1415 { "nmi", "i", do_inject_nmi,
1416 "cpu", "inject an NMI on the given CPU", },
1417#endif
ths5fafdf22007-09-16 21:08:06 +00001418 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00001419};
1420
1421static term_cmd_t info_cmds[] = {
bellard9bc9d1c2004-10-10 15:15:51 +00001422 { "version", "", do_info_version,
1423 "", "show the version of qemu" },
bellard9307c4c2004-04-04 12:57:25 +00001424 { "network", "", do_info_network,
bellard9dc39cb2004-03-14 21:38:27 +00001425 "", "show the network state" },
bellard9307c4c2004-04-04 12:57:25 +00001426 { "block", "", do_info_block,
bellard9dc39cb2004-03-14 21:38:27 +00001427 "", "show the block devices" },
thsa36e69d2007-12-02 05:18:19 +00001428 { "blockstats", "", do_info_blockstats,
1429 "", "show block device statistics" },
bellard9307c4c2004-04-04 12:57:25 +00001430 { "registers", "", do_info_registers,
1431 "", "show the cpu registers" },
bellard6a00d602005-11-21 23:25:50 +00001432 { "cpus", "", do_info_cpus,
1433 "", "show infos for each CPU" },
bellardaa455482004-04-04 13:07:25 +00001434 { "history", "", do_info_history,
1435 "", "show the command line history", },
bellard4a0fb71e2004-05-21 11:39:07 +00001436 { "irq", "", irq_info,
1437 "", "show the interrupts statistics (if available)", },
bellard4c27ba22004-04-25 18:05:08 +00001438 { "pic", "", pic_info,
1439 "", "show i8259 (PIC) state", },
bellard86e0c042004-05-20 12:49:21 +00001440 { "pci", "", pci_info,
1441 "", "show PCI info", },
bellardb86bda52004-09-18 19:32:46 +00001442#if defined(TARGET_I386)
1443 { "tlb", "", tlb_info,
1444 "", "show virtual to physical memory mappings", },
1445 { "mem", "", mem_info,
1446 "", "show the active virtual memory mappings", },
1447#endif
bellarde3db7222005-01-26 22:00:47 +00001448 { "jit", "", do_info_jit,
1449 "", "show dynamic compiler info", },
bellard0f4c6412005-07-24 18:10:56 +00001450 { "kqemu", "", do_info_kqemu,
1451 "", "show kqemu information", },
bellarda594cfb2005-11-06 16:13:29 +00001452 { "usb", "", usb_info,
1453 "", "show guest USB devices", },
1454 { "usbhost", "", usb_host_info,
1455 "", "show host USB devices", },
bellard5f1ce942006-02-08 22:40:15 +00001456 { "profile", "", do_info_profile,
1457 "", "show profiling information", },
bellardec36b692006-07-16 18:57:03 +00001458 { "capture", "", do_info_capture,
bellard17100152006-09-25 21:33:49 +00001459 "", "show capture information" },
bellardfaea38e2006-08-05 21:31:00 +00001460 { "snapshots", "", do_info_snapshots,
bellard17100152006-09-25 21:33:49 +00001461 "", "show the currently saved VM snapshots" },
balrog201a51f2007-04-30 00:51:09 +00001462 { "pcmcia", "", pcmcia_info,
1463 "", "show guest PCMCIA status" },
ths455204e2007-01-05 16:42:13 +00001464 { "mice", "", do_info_mice,
1465 "", "show which guest mouse is receiving events" },
bellarda9ce8592007-02-05 20:20:30 +00001466 { "vnc", "", do_info_vnc,
1467 "", "show the vnc server status"},
thsc35734b2007-03-19 15:17:08 +00001468 { "name", "", do_info_name,
1469 "", "show the current VM name" },
j_mayer76a66252007-03-07 08:32:30 +00001470#if defined(TARGET_PPC)
1471 { "cpustats", "", do_info_cpu_stats,
1472 "", "show CPU statistics", },
1473#endif
blueswir131a60e22007-10-26 18:42:59 +00001474#if defined(CONFIG_SLIRP)
1475 { "slirp", "", do_info_slirp,
1476 "", "show SLIRP statistics", },
1477#endif
bellard9dc39cb2004-03-14 21:38:27 +00001478 { NULL, NULL, },
1479};
1480
bellard9307c4c2004-04-04 12:57:25 +00001481/*******************************************************************/
1482
1483static const char *pch;
1484static jmp_buf expr_env;
1485
bellard92a31b12005-02-10 22:00:52 +00001486#define MD_TLONG 0
1487#define MD_I32 1
1488
bellard9307c4c2004-04-04 12:57:25 +00001489typedef struct MonitorDef {
1490 const char *name;
1491 int offset;
bellard92a31b12005-02-10 22:00:52 +00001492 target_long (*get_value)(struct MonitorDef *md, int val);
1493 int type;
bellard9307c4c2004-04-04 12:57:25 +00001494} MonitorDef;
1495
bellard57206fd2004-04-25 18:54:52 +00001496#if defined(TARGET_I386)
bellard92a31b12005-02-10 22:00:52 +00001497static target_long monitor_get_pc (struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00001498{
bellard6a00d602005-11-21 23:25:50 +00001499 CPUState *env = mon_get_cpu();
1500 if (!env)
1501 return 0;
1502 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00001503}
1504#endif
1505
bellarda541f292004-04-12 20:39:29 +00001506#if defined(TARGET_PPC)
bellard92a31b12005-02-10 22:00:52 +00001507static target_long monitor_get_ccr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001508{
bellard6a00d602005-11-21 23:25:50 +00001509 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00001510 unsigned int u;
1511 int i;
1512
bellard6a00d602005-11-21 23:25:50 +00001513 if (!env)
1514 return 0;
1515
bellarda541f292004-04-12 20:39:29 +00001516 u = 0;
1517 for (i = 0; i < 8; i++)
bellard6a00d602005-11-21 23:25:50 +00001518 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00001519
1520 return u;
1521}
1522
bellard92a31b12005-02-10 22:00:52 +00001523static target_long monitor_get_msr (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001524{
bellard6a00d602005-11-21 23:25:50 +00001525 CPUState *env = mon_get_cpu();
1526 if (!env)
1527 return 0;
j_mayer0411a972007-10-25 21:35:50 +00001528 return env->msr;
bellarda541f292004-04-12 20:39:29 +00001529}
1530
bellard92a31b12005-02-10 22:00:52 +00001531static target_long monitor_get_xer (struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00001532{
bellard6a00d602005-11-21 23:25:50 +00001533 CPUState *env = mon_get_cpu();
1534 if (!env)
1535 return 0;
j_mayerff937db2007-09-19 05:49:13 +00001536 return ppc_load_xer(env);
bellarda541f292004-04-12 20:39:29 +00001537}
bellard9fddaa02004-05-21 12:59:32 +00001538
bellard92a31b12005-02-10 22:00:52 +00001539static target_long monitor_get_decr (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001540{
bellard6a00d602005-11-21 23:25:50 +00001541 CPUState *env = mon_get_cpu();
1542 if (!env)
1543 return 0;
1544 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00001545}
1546
bellard92a31b12005-02-10 22:00:52 +00001547static target_long monitor_get_tbu (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001548{
bellard6a00d602005-11-21 23:25:50 +00001549 CPUState *env = mon_get_cpu();
1550 if (!env)
1551 return 0;
1552 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00001553}
1554
bellard92a31b12005-02-10 22:00:52 +00001555static target_long monitor_get_tbl (struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00001556{
bellard6a00d602005-11-21 23:25:50 +00001557 CPUState *env = mon_get_cpu();
1558 if (!env)
1559 return 0;
1560 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00001561}
bellarda541f292004-04-12 20:39:29 +00001562#endif
1563
bellarde95c8d52004-09-30 22:22:08 +00001564#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00001565#ifndef TARGET_SPARC64
bellard92a31b12005-02-10 22:00:52 +00001566static target_long monitor_get_psr (struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001567{
bellard6a00d602005-11-21 23:25:50 +00001568 CPUState *env = mon_get_cpu();
1569 if (!env)
1570 return 0;
1571 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00001572}
bellard7b936c02005-10-30 17:05:13 +00001573#endif
bellarde95c8d52004-09-30 22:22:08 +00001574
bellard92a31b12005-02-10 22:00:52 +00001575static target_long monitor_get_reg(struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00001576{
bellard6a00d602005-11-21 23:25:50 +00001577 CPUState *env = mon_get_cpu();
1578 if (!env)
1579 return 0;
1580 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00001581}
1582#endif
1583
bellard9307c4c2004-04-04 12:57:25 +00001584static MonitorDef monitor_defs[] = {
1585#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00001586
1587#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00001588 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00001589 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00001590 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00001591
bellard9307c4c2004-04-04 12:57:25 +00001592 { "eax", offsetof(CPUState, regs[0]) },
1593 { "ecx", offsetof(CPUState, regs[1]) },
1594 { "edx", offsetof(CPUState, regs[2]) },
1595 { "ebx", offsetof(CPUState, regs[3]) },
1596 { "esp|sp", offsetof(CPUState, regs[4]) },
1597 { "ebp|fp", offsetof(CPUState, regs[5]) },
1598 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00001599 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00001600#ifdef TARGET_X86_64
1601 { "r8", offsetof(CPUState, regs[8]) },
1602 { "r9", offsetof(CPUState, regs[9]) },
1603 { "r10", offsetof(CPUState, regs[10]) },
1604 { "r11", offsetof(CPUState, regs[11]) },
1605 { "r12", offsetof(CPUState, regs[12]) },
1606 { "r13", offsetof(CPUState, regs[13]) },
1607 { "r14", offsetof(CPUState, regs[14]) },
1608 { "r15", offsetof(CPUState, regs[15]) },
1609#endif
bellard9307c4c2004-04-04 12:57:25 +00001610 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00001611 { "eip", offsetof(CPUState, eip) },
1612 SEG("cs", R_CS)
1613 SEG("ds", R_DS)
1614 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00001615 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00001616 SEG("fs", R_FS)
1617 SEG("gs", R_GS)
1618 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00001619#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00001620 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00001621 { "r0", offsetof(CPUState, gpr[0]) },
1622 { "r1", offsetof(CPUState, gpr[1]) },
1623 { "r2", offsetof(CPUState, gpr[2]) },
1624 { "r3", offsetof(CPUState, gpr[3]) },
1625 { "r4", offsetof(CPUState, gpr[4]) },
1626 { "r5", offsetof(CPUState, gpr[5]) },
1627 { "r6", offsetof(CPUState, gpr[6]) },
1628 { "r7", offsetof(CPUState, gpr[7]) },
1629 { "r8", offsetof(CPUState, gpr[8]) },
1630 { "r9", offsetof(CPUState, gpr[9]) },
1631 { "r10", offsetof(CPUState, gpr[10]) },
1632 { "r11", offsetof(CPUState, gpr[11]) },
1633 { "r12", offsetof(CPUState, gpr[12]) },
1634 { "r13", offsetof(CPUState, gpr[13]) },
1635 { "r14", offsetof(CPUState, gpr[14]) },
1636 { "r15", offsetof(CPUState, gpr[15]) },
1637 { "r16", offsetof(CPUState, gpr[16]) },
1638 { "r17", offsetof(CPUState, gpr[17]) },
1639 { "r18", offsetof(CPUState, gpr[18]) },
1640 { "r19", offsetof(CPUState, gpr[19]) },
1641 { "r20", offsetof(CPUState, gpr[20]) },
1642 { "r21", offsetof(CPUState, gpr[21]) },
1643 { "r22", offsetof(CPUState, gpr[22]) },
1644 { "r23", offsetof(CPUState, gpr[23]) },
1645 { "r24", offsetof(CPUState, gpr[24]) },
1646 { "r25", offsetof(CPUState, gpr[25]) },
1647 { "r26", offsetof(CPUState, gpr[26]) },
1648 { "r27", offsetof(CPUState, gpr[27]) },
1649 { "r28", offsetof(CPUState, gpr[28]) },
1650 { "r29", offsetof(CPUState, gpr[29]) },
1651 { "r30", offsetof(CPUState, gpr[30]) },
1652 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00001653 /* Floating point registers */
1654 { "f0", offsetof(CPUState, fpr[0]) },
1655 { "f1", offsetof(CPUState, fpr[1]) },
1656 { "f2", offsetof(CPUState, fpr[2]) },
1657 { "f3", offsetof(CPUState, fpr[3]) },
1658 { "f4", offsetof(CPUState, fpr[4]) },
1659 { "f5", offsetof(CPUState, fpr[5]) },
1660 { "f6", offsetof(CPUState, fpr[6]) },
1661 { "f7", offsetof(CPUState, fpr[7]) },
1662 { "f8", offsetof(CPUState, fpr[8]) },
1663 { "f9", offsetof(CPUState, fpr[9]) },
1664 { "f10", offsetof(CPUState, fpr[10]) },
1665 { "f11", offsetof(CPUState, fpr[11]) },
1666 { "f12", offsetof(CPUState, fpr[12]) },
1667 { "f13", offsetof(CPUState, fpr[13]) },
1668 { "f14", offsetof(CPUState, fpr[14]) },
1669 { "f15", offsetof(CPUState, fpr[15]) },
1670 { "f16", offsetof(CPUState, fpr[16]) },
1671 { "f17", offsetof(CPUState, fpr[17]) },
1672 { "f18", offsetof(CPUState, fpr[18]) },
1673 { "f19", offsetof(CPUState, fpr[19]) },
1674 { "f20", offsetof(CPUState, fpr[20]) },
1675 { "f21", offsetof(CPUState, fpr[21]) },
1676 { "f22", offsetof(CPUState, fpr[22]) },
1677 { "f23", offsetof(CPUState, fpr[23]) },
1678 { "f24", offsetof(CPUState, fpr[24]) },
1679 { "f25", offsetof(CPUState, fpr[25]) },
1680 { "f26", offsetof(CPUState, fpr[26]) },
1681 { "f27", offsetof(CPUState, fpr[27]) },
1682 { "f28", offsetof(CPUState, fpr[28]) },
1683 { "f29", offsetof(CPUState, fpr[29]) },
1684 { "f30", offsetof(CPUState, fpr[30]) },
1685 { "f31", offsetof(CPUState, fpr[31]) },
1686 { "fpscr", offsetof(CPUState, fpscr) },
1687 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00001688 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00001689 { "lr", offsetof(CPUState, lr) },
1690 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00001691 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00001692 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00001693 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00001694 { "msr", 0, &monitor_get_msr, },
1695 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00001696 { "tbu", 0, &monitor_get_tbu, },
1697 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00001698#if defined(TARGET_PPC64)
1699 /* Address space register */
1700 { "asr", offsetof(CPUState, asr) },
1701#endif
1702 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00001703 { "sdr1", offsetof(CPUState, sdr1) },
1704 { "sr0", offsetof(CPUState, sr[0]) },
1705 { "sr1", offsetof(CPUState, sr[1]) },
1706 { "sr2", offsetof(CPUState, sr[2]) },
1707 { "sr3", offsetof(CPUState, sr[3]) },
1708 { "sr4", offsetof(CPUState, sr[4]) },
1709 { "sr5", offsetof(CPUState, sr[5]) },
1710 { "sr6", offsetof(CPUState, sr[6]) },
1711 { "sr7", offsetof(CPUState, sr[7]) },
1712 { "sr8", offsetof(CPUState, sr[8]) },
1713 { "sr9", offsetof(CPUState, sr[9]) },
1714 { "sr10", offsetof(CPUState, sr[10]) },
1715 { "sr11", offsetof(CPUState, sr[11]) },
1716 { "sr12", offsetof(CPUState, sr[12]) },
1717 { "sr13", offsetof(CPUState, sr[13]) },
1718 { "sr14", offsetof(CPUState, sr[14]) },
1719 { "sr15", offsetof(CPUState, sr[15]) },
1720 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00001721#elif defined(TARGET_SPARC)
1722 { "g0", offsetof(CPUState, gregs[0]) },
1723 { "g1", offsetof(CPUState, gregs[1]) },
1724 { "g2", offsetof(CPUState, gregs[2]) },
1725 { "g3", offsetof(CPUState, gregs[3]) },
1726 { "g4", offsetof(CPUState, gregs[4]) },
1727 { "g5", offsetof(CPUState, gregs[5]) },
1728 { "g6", offsetof(CPUState, gregs[6]) },
1729 { "g7", offsetof(CPUState, gregs[7]) },
1730 { "o0", 0, monitor_get_reg },
1731 { "o1", 1, monitor_get_reg },
1732 { "o2", 2, monitor_get_reg },
1733 { "o3", 3, monitor_get_reg },
1734 { "o4", 4, monitor_get_reg },
1735 { "o5", 5, monitor_get_reg },
1736 { "o6", 6, monitor_get_reg },
1737 { "o7", 7, monitor_get_reg },
1738 { "l0", 8, monitor_get_reg },
1739 { "l1", 9, monitor_get_reg },
1740 { "l2", 10, monitor_get_reg },
1741 { "l3", 11, monitor_get_reg },
1742 { "l4", 12, monitor_get_reg },
1743 { "l5", 13, monitor_get_reg },
1744 { "l6", 14, monitor_get_reg },
1745 { "l7", 15, monitor_get_reg },
1746 { "i0", 16, monitor_get_reg },
1747 { "i1", 17, monitor_get_reg },
1748 { "i2", 18, monitor_get_reg },
1749 { "i3", 19, monitor_get_reg },
1750 { "i4", 20, monitor_get_reg },
1751 { "i5", 21, monitor_get_reg },
1752 { "i6", 22, monitor_get_reg },
1753 { "i7", 23, monitor_get_reg },
1754 { "pc", offsetof(CPUState, pc) },
1755 { "npc", offsetof(CPUState, npc) },
1756 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00001757#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00001758 { "psr", 0, &monitor_get_psr, },
1759 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00001760#endif
bellarde95c8d52004-09-30 22:22:08 +00001761 { "tbr", offsetof(CPUState, tbr) },
1762 { "fsr", offsetof(CPUState, fsr) },
1763 { "f0", offsetof(CPUState, fpr[0]) },
1764 { "f1", offsetof(CPUState, fpr[1]) },
1765 { "f2", offsetof(CPUState, fpr[2]) },
1766 { "f3", offsetof(CPUState, fpr[3]) },
1767 { "f4", offsetof(CPUState, fpr[4]) },
1768 { "f5", offsetof(CPUState, fpr[5]) },
1769 { "f6", offsetof(CPUState, fpr[6]) },
1770 { "f7", offsetof(CPUState, fpr[7]) },
1771 { "f8", offsetof(CPUState, fpr[8]) },
1772 { "f9", offsetof(CPUState, fpr[9]) },
1773 { "f10", offsetof(CPUState, fpr[10]) },
1774 { "f11", offsetof(CPUState, fpr[11]) },
1775 { "f12", offsetof(CPUState, fpr[12]) },
1776 { "f13", offsetof(CPUState, fpr[13]) },
1777 { "f14", offsetof(CPUState, fpr[14]) },
1778 { "f15", offsetof(CPUState, fpr[15]) },
1779 { "f16", offsetof(CPUState, fpr[16]) },
1780 { "f17", offsetof(CPUState, fpr[17]) },
1781 { "f18", offsetof(CPUState, fpr[18]) },
1782 { "f19", offsetof(CPUState, fpr[19]) },
1783 { "f20", offsetof(CPUState, fpr[20]) },
1784 { "f21", offsetof(CPUState, fpr[21]) },
1785 { "f22", offsetof(CPUState, fpr[22]) },
1786 { "f23", offsetof(CPUState, fpr[23]) },
1787 { "f24", offsetof(CPUState, fpr[24]) },
1788 { "f25", offsetof(CPUState, fpr[25]) },
1789 { "f26", offsetof(CPUState, fpr[26]) },
1790 { "f27", offsetof(CPUState, fpr[27]) },
1791 { "f28", offsetof(CPUState, fpr[28]) },
1792 { "f29", offsetof(CPUState, fpr[29]) },
1793 { "f30", offsetof(CPUState, fpr[30]) },
1794 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00001795#ifdef TARGET_SPARC64
1796 { "f32", offsetof(CPUState, fpr[32]) },
1797 { "f34", offsetof(CPUState, fpr[34]) },
1798 { "f36", offsetof(CPUState, fpr[36]) },
1799 { "f38", offsetof(CPUState, fpr[38]) },
1800 { "f40", offsetof(CPUState, fpr[40]) },
1801 { "f42", offsetof(CPUState, fpr[42]) },
1802 { "f44", offsetof(CPUState, fpr[44]) },
1803 { "f46", offsetof(CPUState, fpr[46]) },
1804 { "f48", offsetof(CPUState, fpr[48]) },
1805 { "f50", offsetof(CPUState, fpr[50]) },
1806 { "f52", offsetof(CPUState, fpr[52]) },
1807 { "f54", offsetof(CPUState, fpr[54]) },
1808 { "f56", offsetof(CPUState, fpr[56]) },
1809 { "f58", offsetof(CPUState, fpr[58]) },
1810 { "f60", offsetof(CPUState, fpr[60]) },
1811 { "f62", offsetof(CPUState, fpr[62]) },
1812 { "asi", offsetof(CPUState, asi) },
1813 { "pstate", offsetof(CPUState, pstate) },
1814 { "cansave", offsetof(CPUState, cansave) },
1815 { "canrestore", offsetof(CPUState, canrestore) },
1816 { "otherwin", offsetof(CPUState, otherwin) },
1817 { "wstate", offsetof(CPUState, wstate) },
1818 { "cleanwin", offsetof(CPUState, cleanwin) },
1819 { "fprs", offsetof(CPUState, fprs) },
1820#endif
bellard9307c4c2004-04-04 12:57:25 +00001821#endif
1822 { NULL },
1823};
1824
ths5fafdf22007-09-16 21:08:06 +00001825static void expr_error(const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001826{
bellard9307c4c2004-04-04 12:57:25 +00001827 term_printf(fmt);
1828 term_printf("\n");
1829 longjmp(expr_env, 1);
1830}
1831
bellard6a00d602005-11-21 23:25:50 +00001832/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00001833static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00001834{
1835 MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00001836 void *ptr;
1837
bellard9307c4c2004-04-04 12:57:25 +00001838 for(md = monitor_defs; md->name != NULL; md++) {
1839 if (compare_cmd(name, md->name)) {
1840 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00001841 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00001842 } else {
bellard6a00d602005-11-21 23:25:50 +00001843 CPUState *env = mon_get_cpu();
1844 if (!env)
1845 return -2;
1846 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00001847 switch(md->type) {
1848 case MD_I32:
1849 *pval = *(int32_t *)ptr;
1850 break;
1851 case MD_TLONG:
1852 *pval = *(target_long *)ptr;
1853 break;
1854 default:
1855 *pval = 0;
1856 break;
1857 }
bellard9307c4c2004-04-04 12:57:25 +00001858 }
1859 return 0;
1860 }
1861 }
1862 return -1;
1863}
1864
1865static void next(void)
1866{
1867 if (pch != '\0') {
1868 pch++;
1869 while (isspace(*pch))
1870 pch++;
1871 }
1872}
1873
blueswir1c2efc952007-09-25 17:28:42 +00001874static int64_t expr_sum(void);
bellard9307c4c2004-04-04 12:57:25 +00001875
blueswir1c2efc952007-09-25 17:28:42 +00001876static int64_t expr_unary(void)
bellard9307c4c2004-04-04 12:57:25 +00001877{
blueswir1c2efc952007-09-25 17:28:42 +00001878 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00001879 char *p;
bellard6a00d602005-11-21 23:25:50 +00001880 int ret;
bellard9307c4c2004-04-04 12:57:25 +00001881
1882 switch(*pch) {
1883 case '+':
1884 next();
1885 n = expr_unary();
1886 break;
1887 case '-':
1888 next();
1889 n = -expr_unary();
1890 break;
1891 case '~':
1892 next();
1893 n = ~expr_unary();
1894 break;
1895 case '(':
1896 next();
1897 n = expr_sum();
1898 if (*pch != ')') {
1899 expr_error("')' expected");
1900 }
1901 next();
1902 break;
bellard81d09122004-07-14 17:21:37 +00001903 case '\'':
1904 pch++;
1905 if (*pch == '\0')
1906 expr_error("character constant expected");
1907 n = *pch;
1908 pch++;
1909 if (*pch != '\'')
1910 expr_error("missing terminating \' character");
1911 next();
1912 break;
bellard9307c4c2004-04-04 12:57:25 +00001913 case '$':
1914 {
1915 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00001916 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00001917
bellard9307c4c2004-04-04 12:57:25 +00001918 pch++;
1919 q = buf;
1920 while ((*pch >= 'a' && *pch <= 'z') ||
1921 (*pch >= 'A' && *pch <= 'Z') ||
1922 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00001923 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00001924 if ((q - buf) < sizeof(buf) - 1)
1925 *q++ = *pch;
1926 pch++;
1927 }
1928 while (isspace(*pch))
1929 pch++;
1930 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00001931 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00001932 if (ret == -1)
bellard9307c4c2004-04-04 12:57:25 +00001933 expr_error("unknown register");
ths5fafdf22007-09-16 21:08:06 +00001934 else if (ret == -2)
bellard6a00d602005-11-21 23:25:50 +00001935 expr_error("no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00001936 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00001937 }
1938 break;
1939 case '\0':
1940 expr_error("unexpected end of expression");
1941 n = 0;
1942 break;
1943 default:
blueswir17743e582007-09-24 18:39:04 +00001944#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00001945 n = strtoull(pch, &p, 0);
1946#else
bellard9307c4c2004-04-04 12:57:25 +00001947 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00001948#endif
bellard9307c4c2004-04-04 12:57:25 +00001949 if (pch == p) {
1950 expr_error("invalid char in expression");
1951 }
1952 pch = p;
1953 while (isspace(*pch))
1954 pch++;
1955 break;
1956 }
1957 return n;
1958}
1959
1960
blueswir1c2efc952007-09-25 17:28:42 +00001961static int64_t expr_prod(void)
bellard9307c4c2004-04-04 12:57:25 +00001962{
blueswir1c2efc952007-09-25 17:28:42 +00001963 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001964 int op;
ths3b46e622007-09-17 08:09:54 +00001965
bellard9307c4c2004-04-04 12:57:25 +00001966 val = expr_unary();
1967 for(;;) {
1968 op = *pch;
1969 if (op != '*' && op != '/' && op != '%')
1970 break;
1971 next();
1972 val2 = expr_unary();
1973 switch(op) {
1974 default:
1975 case '*':
1976 val *= val2;
1977 break;
1978 case '/':
1979 case '%':
ths5fafdf22007-09-16 21:08:06 +00001980 if (val2 == 0)
bellard5b602122004-05-22 21:41:05 +00001981 expr_error("division by zero");
bellard9307c4c2004-04-04 12:57:25 +00001982 if (op == '/')
1983 val /= val2;
1984 else
1985 val %= val2;
1986 break;
1987 }
1988 }
1989 return val;
1990}
1991
blueswir1c2efc952007-09-25 17:28:42 +00001992static int64_t expr_logic(void)
bellard9307c4c2004-04-04 12:57:25 +00001993{
blueswir1c2efc952007-09-25 17:28:42 +00001994 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00001995 int op;
bellard9307c4c2004-04-04 12:57:25 +00001996
1997 val = expr_prod();
1998 for(;;) {
1999 op = *pch;
2000 if (op != '&' && op != '|' && op != '^')
2001 break;
2002 next();
2003 val2 = expr_prod();
2004 switch(op) {
2005 default:
2006 case '&':
2007 val &= val2;
2008 break;
2009 case '|':
2010 val |= val2;
2011 break;
2012 case '^':
2013 val ^= val2;
2014 break;
2015 }
2016 }
2017 return val;
2018}
2019
blueswir1c2efc952007-09-25 17:28:42 +00002020static int64_t expr_sum(void)
bellard9307c4c2004-04-04 12:57:25 +00002021{
blueswir1c2efc952007-09-25 17:28:42 +00002022 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002023 int op;
bellard9307c4c2004-04-04 12:57:25 +00002024
2025 val = expr_logic();
2026 for(;;) {
2027 op = *pch;
2028 if (op != '+' && op != '-')
2029 break;
2030 next();
2031 val2 = expr_logic();
2032 if (op == '+')
2033 val += val2;
2034 else
2035 val -= val2;
2036 }
2037 return val;
2038}
2039
blueswir1c2efc952007-09-25 17:28:42 +00002040static int get_expr(int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002041{
2042 pch = *pp;
2043 if (setjmp(expr_env)) {
2044 *pp = pch;
2045 return -1;
2046 }
2047 while (isspace(*pch))
2048 pch++;
2049 *pval = expr_sum();
2050 *pp = pch;
2051 return 0;
2052}
2053
2054static int get_str(char *buf, int buf_size, const char **pp)
2055{
2056 const char *p;
2057 char *q;
2058 int c;
2059
bellard81d09122004-07-14 17:21:37 +00002060 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002061 p = *pp;
2062 while (isspace(*p))
2063 p++;
2064 if (*p == '\0') {
2065 fail:
bellard81d09122004-07-14 17:21:37 +00002066 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002067 *pp = p;
2068 return -1;
2069 }
bellard9307c4c2004-04-04 12:57:25 +00002070 if (*p == '\"') {
2071 p++;
2072 while (*p != '\0' && *p != '\"') {
2073 if (*p == '\\') {
2074 p++;
2075 c = *p++;
2076 switch(c) {
2077 case 'n':
2078 c = '\n';
2079 break;
2080 case 'r':
2081 c = '\r';
2082 break;
2083 case '\\':
2084 case '\'':
2085 case '\"':
2086 break;
2087 default:
2088 qemu_printf("unsupported escape code: '\\%c'\n", c);
2089 goto fail;
2090 }
2091 if ((q - buf) < buf_size - 1) {
2092 *q++ = c;
2093 }
2094 } else {
2095 if ((q - buf) < buf_size - 1) {
2096 *q++ = *p;
2097 }
2098 p++;
2099 }
2100 }
2101 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00002102 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00002103 goto fail;
2104 }
2105 p++;
2106 } else {
2107 while (*p != '\0' && !isspace(*p)) {
2108 if ((q - buf) < buf_size - 1) {
2109 *q++ = *p;
2110 }
2111 p++;
2112 }
bellard9307c4c2004-04-04 12:57:25 +00002113 }
bellard81d09122004-07-14 17:21:37 +00002114 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002115 *pp = p;
2116 return 0;
2117}
2118
2119static int default_fmt_format = 'x';
2120static int default_fmt_size = 4;
2121
2122#define MAX_ARGS 16
2123
bellard7e2515e2004-08-01 21:52:19 +00002124static void monitor_handle_command(const char *cmdline)
bellard9307c4c2004-04-04 12:57:25 +00002125{
2126 const char *p, *pstart, *typestr;
2127 char *q;
2128 int c, nb_args, len, i, has_arg;
bellard9dc39cb2004-03-14 21:38:27 +00002129 term_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00002130 char cmdname[256];
2131 char buf[1024];
2132 void *str_allocated[MAX_ARGS];
2133 void *args[MAX_ARGS];
bellard9dc39cb2004-03-14 21:38:27 +00002134
2135#ifdef DEBUG
2136 term_printf("command='%s'\n", cmdline);
2137#endif
ths3b46e622007-09-17 08:09:54 +00002138
bellard9307c4c2004-04-04 12:57:25 +00002139 /* extract the command name */
bellard9dc39cb2004-03-14 21:38:27 +00002140 p = cmdline;
bellard9307c4c2004-04-04 12:57:25 +00002141 q = cmdname;
2142 while (isspace(*p))
2143 p++;
2144 if (*p == '\0')
bellard9dc39cb2004-03-14 21:38:27 +00002145 return;
bellard9307c4c2004-04-04 12:57:25 +00002146 pstart = p;
2147 while (*p != '\0' && *p != '/' && !isspace(*p))
2148 p++;
2149 len = p - pstart;
2150 if (len > sizeof(cmdname) - 1)
2151 len = sizeof(cmdname) - 1;
2152 memcpy(cmdname, pstart, len);
2153 cmdname[len] = '\0';
ths3b46e622007-09-17 08:09:54 +00002154
bellard9307c4c2004-04-04 12:57:25 +00002155 /* find the command */
bellard9dc39cb2004-03-14 21:38:27 +00002156 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +00002157 if (compare_cmd(cmdname, cmd->name))
bellard9dc39cb2004-03-14 21:38:27 +00002158 goto found;
2159 }
bellard9307c4c2004-04-04 12:57:25 +00002160 term_printf("unknown command: '%s'\n", cmdname);
bellard9dc39cb2004-03-14 21:38:27 +00002161 return;
2162 found:
bellard9307c4c2004-04-04 12:57:25 +00002163
2164 for(i = 0; i < MAX_ARGS; i++)
2165 str_allocated[i] = NULL;
ths3b46e622007-09-17 08:09:54 +00002166
bellard9307c4c2004-04-04 12:57:25 +00002167 /* parse the parameters */
2168 typestr = cmd->args_type;
2169 nb_args = 0;
2170 for(;;) {
2171 c = *typestr;
2172 if (c == '\0')
2173 break;
2174 typestr++;
2175 switch(c) {
2176 case 'F':
bellard81d09122004-07-14 17:21:37 +00002177 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00002178 case 's':
2179 {
2180 int ret;
2181 char *str;
ths3b46e622007-09-17 08:09:54 +00002182
ths5fafdf22007-09-16 21:08:06 +00002183 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002184 p++;
2185 if (*typestr == '?') {
2186 typestr++;
2187 if (*p == '\0') {
2188 /* no optional string: NULL argument */
2189 str = NULL;
2190 goto add_str;
2191 }
2192 }
2193 ret = get_str(buf, sizeof(buf), &p);
2194 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00002195 switch(c) {
2196 case 'F':
bellard9307c4c2004-04-04 12:57:25 +00002197 term_printf("%s: filename expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002198 break;
2199 case 'B':
2200 term_printf("%s: block device name expected\n", cmdname);
2201 break;
2202 default:
bellard9307c4c2004-04-04 12:57:25 +00002203 term_printf("%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00002204 break;
2205 }
bellard9307c4c2004-04-04 12:57:25 +00002206 goto fail;
2207 }
2208 str = qemu_malloc(strlen(buf) + 1);
2209 strcpy(str, buf);
2210 str_allocated[nb_args] = str;
2211 add_str:
2212 if (nb_args >= MAX_ARGS) {
2213 error_args:
2214 term_printf("%s: too many arguments\n", cmdname);
2215 goto fail;
2216 }
2217 args[nb_args++] = str;
2218 }
2219 break;
2220 case '/':
2221 {
2222 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00002223
bellard9307c4c2004-04-04 12:57:25 +00002224 while (isspace(*p))
2225 p++;
2226 if (*p == '/') {
2227 /* format found */
2228 p++;
2229 count = 1;
2230 if (isdigit(*p)) {
2231 count = 0;
2232 while (isdigit(*p)) {
2233 count = count * 10 + (*p - '0');
2234 p++;
2235 }
2236 }
2237 size = -1;
2238 format = -1;
2239 for(;;) {
2240 switch(*p) {
2241 case 'o':
2242 case 'd':
2243 case 'u':
2244 case 'x':
2245 case 'i':
2246 case 'c':
2247 format = *p++;
2248 break;
2249 case 'b':
2250 size = 1;
2251 p++;
2252 break;
2253 case 'h':
2254 size = 2;
2255 p++;
2256 break;
2257 case 'w':
2258 size = 4;
2259 p++;
2260 break;
2261 case 'g':
2262 case 'L':
2263 size = 8;
2264 p++;
2265 break;
2266 default:
2267 goto next;
2268 }
2269 }
2270 next:
2271 if (*p != '\0' && !isspace(*p)) {
2272 term_printf("invalid char in format: '%c'\n", *p);
2273 goto fail;
2274 }
bellard9307c4c2004-04-04 12:57:25 +00002275 if (format < 0)
2276 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002277 if (format != 'i') {
2278 /* for 'i', not specifying a size gives -1 as size */
2279 if (size < 0)
2280 size = default_fmt_size;
2281 }
bellard9307c4c2004-04-04 12:57:25 +00002282 default_fmt_size = size;
2283 default_fmt_format = format;
2284 } else {
2285 count = 1;
2286 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00002287 if (format != 'i') {
2288 size = default_fmt_size;
2289 } else {
2290 size = -1;
2291 }
bellard9307c4c2004-04-04 12:57:25 +00002292 }
2293 if (nb_args + 3 > MAX_ARGS)
2294 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002295 args[nb_args++] = (void*)(long)count;
2296 args[nb_args++] = (void*)(long)format;
2297 args[nb_args++] = (void*)(long)size;
bellard9307c4c2004-04-04 12:57:25 +00002298 }
2299 break;
2300 case 'i':
bellard92a31b12005-02-10 22:00:52 +00002301 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00002302 {
blueswir1c2efc952007-09-25 17:28:42 +00002303 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00002304
ths5fafdf22007-09-16 21:08:06 +00002305 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002306 p++;
bellard34405572004-06-08 00:55:58 +00002307 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00002308 if (*typestr == '?') {
2309 if (*p == '\0')
2310 has_arg = 0;
2311 else
2312 has_arg = 1;
2313 } else {
2314 if (*p == '.') {
2315 p++;
ths5fafdf22007-09-16 21:08:06 +00002316 while (isspace(*p))
bellard34405572004-06-08 00:55:58 +00002317 p++;
2318 has_arg = 1;
2319 } else {
2320 has_arg = 0;
2321 }
2322 }
bellard13224a82006-07-14 22:03:35 +00002323 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00002324 if (nb_args >= MAX_ARGS)
2325 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002326 args[nb_args++] = (void *)(long)has_arg;
bellard9307c4c2004-04-04 12:57:25 +00002327 if (!has_arg) {
2328 if (nb_args >= MAX_ARGS)
2329 goto error_args;
2330 val = -1;
2331 goto add_num;
2332 }
2333 }
2334 if (get_expr(&val, &p))
2335 goto fail;
2336 add_num:
bellard92a31b12005-02-10 22:00:52 +00002337 if (c == 'i') {
2338 if (nb_args >= MAX_ARGS)
2339 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002340 args[nb_args++] = (void *)(long)val;
bellard92a31b12005-02-10 22:00:52 +00002341 } else {
2342 if ((nb_args + 1) >= MAX_ARGS)
2343 goto error_args;
blueswir17743e582007-09-24 18:39:04 +00002344#if TARGET_PHYS_ADDR_BITS > 32
j_mayer1c5bf3b2007-04-14 12:17:59 +00002345 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002346#else
2347 args[nb_args++] = (void *)0;
2348#endif
j_mayer1c5bf3b2007-04-14 12:17:59 +00002349 args[nb_args++] = (void *)(long)(val & 0xffffffff);
bellard92a31b12005-02-10 22:00:52 +00002350 }
bellard9307c4c2004-04-04 12:57:25 +00002351 }
2352 break;
2353 case '-':
2354 {
2355 int has_option;
2356 /* option */
ths3b46e622007-09-17 08:09:54 +00002357
bellard9307c4c2004-04-04 12:57:25 +00002358 c = *typestr++;
2359 if (c == '\0')
2360 goto bad_type;
ths5fafdf22007-09-16 21:08:06 +00002361 while (isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002362 p++;
2363 has_option = 0;
2364 if (*p == '-') {
2365 p++;
2366 if (*p != c) {
ths5fafdf22007-09-16 21:08:06 +00002367 term_printf("%s: unsupported option -%c\n",
bellard9307c4c2004-04-04 12:57:25 +00002368 cmdname, *p);
2369 goto fail;
2370 }
2371 p++;
2372 has_option = 1;
2373 }
2374 if (nb_args >= MAX_ARGS)
2375 goto error_args;
j_mayer1c5bf3b2007-04-14 12:17:59 +00002376 args[nb_args++] = (void *)(long)has_option;
bellard9307c4c2004-04-04 12:57:25 +00002377 }
2378 break;
2379 default:
2380 bad_type:
2381 term_printf("%s: unknown type '%c'\n", cmdname, c);
2382 goto fail;
2383 }
2384 }
2385 /* check that all arguments were parsed */
2386 while (isspace(*p))
2387 p++;
2388 if (*p != '\0') {
ths5fafdf22007-09-16 21:08:06 +00002389 term_printf("%s: extraneous characters at the end of line\n",
bellard9307c4c2004-04-04 12:57:25 +00002390 cmdname);
2391 goto fail;
2392 }
2393
2394 switch(nb_args) {
2395 case 0:
2396 cmd->handler();
2397 break;
2398 case 1:
2399 cmd->handler(args[0]);
2400 break;
2401 case 2:
2402 cmd->handler(args[0], args[1]);
2403 break;
2404 case 3:
2405 cmd->handler(args[0], args[1], args[2]);
2406 break;
2407 case 4:
2408 cmd->handler(args[0], args[1], args[2], args[3]);
2409 break;
2410 case 5:
2411 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2412 break;
bellard34405572004-06-08 00:55:58 +00002413 case 6:
2414 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2415 break;
bellardec36b692006-07-16 18:57:03 +00002416 case 7:
2417 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2418 break;
bellard9307c4c2004-04-04 12:57:25 +00002419 default:
2420 term_printf("unsupported number of arguments: %d\n", nb_args);
2421 goto fail;
2422 }
2423 fail:
2424 for(i = 0; i < MAX_ARGS; i++)
2425 qemu_free(str_allocated[i]);
2426 return;
bellard9dc39cb2004-03-14 21:38:27 +00002427}
2428
bellard81d09122004-07-14 17:21:37 +00002429static void cmd_completion(const char *name, const char *list)
2430{
2431 const char *p, *pstart;
2432 char cmd[128];
2433 int len;
2434
2435 p = list;
2436 for(;;) {
2437 pstart = p;
2438 p = strchr(p, '|');
2439 if (!p)
2440 p = pstart + strlen(pstart);
2441 len = p - pstart;
2442 if (len > sizeof(cmd) - 2)
2443 len = sizeof(cmd) - 2;
2444 memcpy(cmd, pstart, len);
2445 cmd[len] = '\0';
2446 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2447 add_completion(cmd);
2448 }
2449 if (*p == '\0')
2450 break;
2451 p++;
2452 }
2453}
2454
2455static void file_completion(const char *input)
2456{
2457 DIR *ffs;
2458 struct dirent *d;
2459 char path[1024];
2460 char file[1024], file_prefix[1024];
2461 int input_path_len;
2462 const char *p;
2463
ths5fafdf22007-09-16 21:08:06 +00002464 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00002465 if (!p) {
2466 input_path_len = 0;
2467 pstrcpy(file_prefix, sizeof(file_prefix), input);
2468 strcpy(path, ".");
2469 } else {
2470 input_path_len = p - input + 1;
2471 memcpy(path, input, input_path_len);
2472 if (input_path_len > sizeof(path) - 1)
2473 input_path_len = sizeof(path) - 1;
2474 path[input_path_len] = '\0';
2475 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2476 }
2477#ifdef DEBUG_COMPLETION
2478 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2479#endif
2480 ffs = opendir(path);
2481 if (!ffs)
2482 return;
2483 for(;;) {
2484 struct stat sb;
2485 d = readdir(ffs);
2486 if (!d)
2487 break;
2488 if (strstart(d->d_name, file_prefix, NULL)) {
2489 memcpy(file, input, input_path_len);
2490 strcpy(file + input_path_len, d->d_name);
2491 /* stat the file to find out if it's a directory.
2492 * In that case add a slash to speed up typing long paths
2493 */
2494 stat(file, &sb);
2495 if(S_ISDIR(sb.st_mode))
2496 strcat(file, "/");
2497 add_completion(file);
2498 }
2499 }
2500 closedir(ffs);
2501}
2502
2503static void block_completion_it(void *opaque, const char *name)
2504{
2505 const char *input = opaque;
2506
2507 if (input[0] == '\0' ||
2508 !strncmp(name, (char *)input, strlen(input))) {
2509 add_completion(name);
2510 }
2511}
2512
2513/* NOTE: this parser is an approximate form of the real command parser */
2514static void parse_cmdline(const char *cmdline,
2515 int *pnb_args, char **args)
2516{
2517 const char *p;
2518 int nb_args, ret;
2519 char buf[1024];
2520
2521 p = cmdline;
2522 nb_args = 0;
2523 for(;;) {
2524 while (isspace(*p))
2525 p++;
2526 if (*p == '\0')
2527 break;
2528 if (nb_args >= MAX_ARGS)
2529 break;
2530 ret = get_str(buf, sizeof(buf), &p);
2531 args[nb_args] = qemu_strdup(buf);
2532 nb_args++;
2533 if (ret < 0)
2534 break;
2535 }
2536 *pnb_args = nb_args;
2537}
2538
bellard7e2515e2004-08-01 21:52:19 +00002539void readline_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00002540{
2541 const char *cmdname;
2542 char *args[MAX_ARGS];
2543 int nb_args, i, len;
2544 const char *ptype, *str;
2545 term_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00002546 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00002547
2548 parse_cmdline(cmdline, &nb_args, args);
2549#ifdef DEBUG_COMPLETION
2550 for(i = 0; i < nb_args; i++) {
2551 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2552 }
2553#endif
2554
2555 /* if the line ends with a space, it means we want to complete the
2556 next arg */
2557 len = strlen(cmdline);
2558 if (len > 0 && isspace(cmdline[len - 1])) {
2559 if (nb_args >= MAX_ARGS)
2560 return;
2561 args[nb_args++] = qemu_strdup("");
2562 }
2563 if (nb_args <= 1) {
2564 /* command completion */
2565 if (nb_args == 0)
2566 cmdname = "";
2567 else
2568 cmdname = args[0];
2569 completion_index = strlen(cmdname);
2570 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2571 cmd_completion(cmdname, cmd->name);
2572 }
2573 } else {
2574 /* find the command */
2575 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2576 if (compare_cmd(args[0], cmd->name))
2577 goto found;
2578 }
2579 return;
2580 found:
2581 ptype = cmd->args_type;
2582 for(i = 0; i < nb_args - 2; i++) {
2583 if (*ptype != '\0') {
2584 ptype++;
2585 while (*ptype == '?')
2586 ptype++;
2587 }
2588 }
2589 str = args[nb_args - 1];
2590 switch(*ptype) {
2591 case 'F':
2592 /* file completion */
2593 completion_index = strlen(str);
2594 file_completion(str);
2595 break;
2596 case 'B':
2597 /* block device name completion */
2598 completion_index = strlen(str);
2599 bdrv_iterate(block_completion_it, (void *)str);
2600 break;
bellard7fe48482004-10-09 18:08:01 +00002601 case 's':
2602 /* XXX: more generic ? */
2603 if (!strcmp(cmd->name, "info")) {
2604 completion_index = strlen(str);
2605 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2606 cmd_completion(str, cmd->name);
2607 }
bellard64866c32006-05-07 18:03:31 +00002608 } else if (!strcmp(cmd->name, "sendkey")) {
2609 completion_index = strlen(str);
2610 for(key = key_defs; key->name != NULL; key++) {
2611 cmd_completion(str, key->name);
2612 }
bellard7fe48482004-10-09 18:08:01 +00002613 }
2614 break;
bellard81d09122004-07-14 17:21:37 +00002615 default:
2616 break;
2617 }
2618 }
2619 for(i = 0; i < nb_args; i++)
2620 qemu_free(args[i]);
2621}
2622
bellard9dc39cb2004-03-14 21:38:27 +00002623static int term_can_read(void *opaque)
2624{
bellard81d09122004-07-14 17:21:37 +00002625 return 128;
bellard9dc39cb2004-03-14 21:38:27 +00002626}
2627
2628static void term_read(void *opaque, const uint8_t *buf, int size)
2629{
2630 int i;
2631 for(i = 0; i < size; i++)
bellard7e2515e2004-08-01 21:52:19 +00002632 readline_handle_byte(buf[i]);
2633}
2634
2635static void monitor_start_input(void);
2636
2637static void monitor_handle_command1(void *opaque, const char *cmdline)
2638{
2639 monitor_handle_command(cmdline);
2640 monitor_start_input();
2641}
2642
2643static void monitor_start_input(void)
2644{
2645 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
bellard9dc39cb2004-03-14 21:38:27 +00002646}
2647
ths86e94de2007-01-05 22:01:59 +00002648static void term_event(void *opaque, int event)
2649{
2650 if (event != CHR_EVENT_RESET)
2651 return;
2652
2653 if (!hide_banner)
2654 term_printf("QEMU %s monitor - type 'help' for more information\n",
2655 QEMU_VERSION);
2656 monitor_start_input();
2657}
2658
ths20d8a3e2007-02-18 17:04:49 +00002659static int is_first_init = 1;
2660
bellard81d09122004-07-14 17:21:37 +00002661void monitor_init(CharDriverState *hd, int show_banner)
bellard9dc39cb2004-03-14 21:38:27 +00002662{
ths20d8a3e2007-02-18 17:04:49 +00002663 int i;
2664
2665 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00002666 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2667 if (!key_timer)
2668 return;
ths20d8a3e2007-02-18 17:04:49 +00002669 for (i = 0; i < MAX_MON; i++) {
2670 monitor_hd[i] = NULL;
2671 }
2672 is_first_init = 0;
2673 }
2674 for (i = 0; i < MAX_MON; i++) {
2675 if (monitor_hd[i] == NULL) {
2676 monitor_hd[i] = hd;
2677 break;
2678 }
2679 }
2680
ths86e94de2007-01-05 22:01:59 +00002681 hide_banner = !show_banner;
2682
pbrooke5b0bc42007-01-27 23:46:43 +00002683 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
blueswir1ad8efe42007-11-30 16:45:21 +00002684
2685 readline_start("", 0, monitor_handle_command1, NULL);
bellard7e2515e2004-08-01 21:52:19 +00002686}
2687
2688/* XXX: use threads ? */
2689/* modal monitor readline */
2690static int monitor_readline_started;
2691static char *monitor_readline_buf;
2692static int monitor_readline_buf_size;
2693
2694static void monitor_readline_cb(void *opaque, const char *input)
2695{
2696 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2697 monitor_readline_started = 0;
2698}
2699
2700void monitor_readline(const char *prompt, int is_password,
2701 char *buf, int buf_size)
2702{
ths20d8a3e2007-02-18 17:04:49 +00002703 int i;
2704
bellard7e2515e2004-08-01 21:52:19 +00002705 if (is_password) {
ths20d8a3e2007-02-18 17:04:49 +00002706 for (i = 0; i < MAX_MON; i++)
2707 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
2708 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
bellard7e2515e2004-08-01 21:52:19 +00002709 }
2710 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2711 monitor_readline_buf = buf;
2712 monitor_readline_buf_size = buf_size;
2713 monitor_readline_started = 1;
2714 while (monitor_readline_started) {
2715 main_loop_wait(10);
2716 }
bellard9dc39cb2004-03-14 21:38:27 +00002717}