]>
Commit | Line | Data |
---|---|---|
9dc39cba FB |
1 | /* |
2 | * QEMU monitor | |
5fafdf24 | 3 | * |
9dc39cba | 4 | * Copyright (c) 2003-2004 Fabrice Bellard |
5fafdf24 | 5 | * |
9dc39cba FB |
6 | * 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 | */ | |
87ecb68b PB |
24 | #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" | |
9307c4c1 | 36 | #include "disas.h" |
81d0912d | 37 | #include <dirent.h> |
c8256f9d | 38 | #include "qemu-timer.h" |
6a5bd307 | 39 | |
9dc39cba | 40 | //#define DEBUG |
81d0912d | 41 | //#define DEBUG_COMPLETION |
9dc39cba | 42 | |
9307c4c1 FB |
43 | #ifndef offsetof |
44 | #define offsetof(type, field) ((size_t) &((type *)0)->field) | |
45 | #endif | |
46 | ||
9307c4c1 FB |
47 | /* |
48 | * Supported types: | |
5fafdf24 | 49 | * |
9307c4c1 | 50 | * 'F' filename |
81d0912d | 51 | * 'B' block device name |
9307c4c1 | 52 | * 's' string (accept optional quote) |
92a31b1f FB |
53 | * 'i' 32 bit integer |
54 | * 'l' target long (32 or 64 bit) | |
9307c4c1 FB |
55 | * '/' optional gdb-like print format (like "/10x") |
56 | * | |
57 | * '?' optional type (for 'F', 's' and 'i') | |
58 | * | |
59 | */ | |
60 | ||
9dc39cba FB |
61 | typedef struct term_cmd_t { |
62 | const char *name; | |
9307c4c1 FB |
63 | const char *args_type; |
64 | void (*handler)(); | |
9dc39cba FB |
65 | const char *params; |
66 | const char *help; | |
67 | } term_cmd_t; | |
68 | ||
20d8a3ed TS |
69 | #define MAX_MON 4 |
70 | static CharDriverState *monitor_hd[MAX_MON]; | |
86e94dea | 71 | static int hide_banner; |
7e2515e8 | 72 | |
9dc39cba FB |
73 | static term_cmd_t term_cmds[]; |
74 | static term_cmd_t info_cmds[]; | |
75 | ||
60fe76f3 | 76 | static uint8_t term_outbuf[1024]; |
7e2515e8 | 77 | static int term_outbuf_index; |
81d0912d | 78 | |
6a00d601 FB |
79 | CPUState *mon_cpu = NULL; |
80 | ||
7e2515e8 FB |
81 | void term_flush(void) |
82 | { | |
20d8a3ed | 83 | int i; |
7e2515e8 | 84 | if (term_outbuf_index > 0) { |
20d8a3ed TS |
85 | for (i = 0; i < MAX_MON; i++) |
86 | if (monitor_hd[i] && monitor_hd[i]->focus == 0) | |
87 | qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index); | |
7e2515e8 FB |
88 | term_outbuf_index = 0; |
89 | } | |
90 | } | |
91 | ||
92 | /* flush at every end of line or if the buffer is full */ | |
93 | void term_puts(const char *str) | |
94 | { | |
60fe76f3 | 95 | char c; |
7e2515e8 FB |
96 | for(;;) { |
97 | c = *str++; | |
98 | if (c == '\0') | |
99 | break; | |
7ba1260a FB |
100 | if (c == '\n') |
101 | term_outbuf[term_outbuf_index++] = '\r'; | |
7e2515e8 | 102 | term_outbuf[term_outbuf_index++] = c; |
7ba1260a | 103 | if (term_outbuf_index >= (sizeof(term_outbuf) - 1) || |
7e2515e8 FB |
104 | c == '\n') |
105 | term_flush(); | |
106 | } | |
107 | } | |
108 | ||
109 | void term_vprintf(const char *fmt, va_list ap) | |
9dc39cba | 110 | { |
81d0912d | 111 | char buf[4096]; |
81d0912d | 112 | vsnprintf(buf, sizeof(buf), fmt, ap); |
7e2515e8 | 113 | term_puts(buf); |
9dc39cba FB |
114 | } |
115 | ||
7e2515e8 | 116 | void term_printf(const char *fmt, ...) |
9dc39cba | 117 | { |
7e2515e8 FB |
118 | va_list ap; |
119 | va_start(ap, fmt); | |
120 | term_vprintf(fmt, ap); | |
121 | va_end(ap); | |
9dc39cba FB |
122 | } |
123 | ||
fef30743 TS |
124 | void term_print_filename(const char *filename) |
125 | { | |
126 | int i; | |
127 | ||
128 | for (i = 0; filename[i]; i++) { | |
129 | switch (filename[i]) { | |
130 | case ' ': | |
131 | case '"': | |
132 | case '\\': | |
133 | term_printf("\\%c", filename[i]); | |
134 | break; | |
135 | case '\t': | |
136 | term_printf("\\t"); | |
137 | break; | |
138 | case '\r': | |
139 | term_printf("\\r"); | |
140 | break; | |
141 | case '\n': | |
142 | term_printf("\\n"); | |
143 | break; | |
144 | default: | |
145 | term_printf("%c", filename[i]); | |
146 | break; | |
147 | } | |
148 | } | |
149 | } | |
150 | ||
7fe48483 FB |
151 | static int monitor_fprintf(FILE *stream, const char *fmt, ...) |
152 | { | |
153 | va_list ap; | |
154 | va_start(ap, fmt); | |
155 | term_vprintf(fmt, ap); | |
156 | va_end(ap); | |
157 | return 0; | |
158 | } | |
159 | ||
9dc39cba FB |
160 | static int compare_cmd(const char *name, const char *list) |
161 | { | |
162 | const char *p, *pstart; | |
163 | int len; | |
164 | len = strlen(name); | |
165 | p = list; | |
166 | for(;;) { | |
167 | pstart = p; | |
168 | p = strchr(p, '|'); | |
169 | if (!p) | |
170 | p = pstart + strlen(pstart); | |
171 | if ((p - pstart) == len && !memcmp(pstart, name, len)) | |
172 | return 1; | |
173 | if (*p == '\0') | |
174 | break; | |
175 | p++; | |
176 | } | |
177 | return 0; | |
178 | } | |
179 | ||
180 | static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name) | |
181 | { | |
182 | term_cmd_t *cmd; | |
183 | ||
184 | for(cmd = cmds; cmd->name != NULL; cmd++) { | |
185 | if (!name || !strcmp(name, cmd->name)) | |
186 | term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help); | |
187 | } | |
188 | } | |
189 | ||
190 | static void help_cmd(const char *name) | |
191 | { | |
192 | if (name && !strcmp(name, "info")) { | |
193 | help_cmd1(info_cmds, "info ", NULL); | |
194 | } else { | |
195 | help_cmd1(term_cmds, "", name); | |
f193c797 FB |
196 | if (name && !strcmp(name, "log")) { |
197 | CPULogItem *item; | |
198 | term_printf("Log items (comma separated):\n"); | |
199 | term_printf("%-10s %s\n", "none", "remove all logs"); | |
200 | for(item = cpu_log_items; item->mask != 0; item++) { | |
201 | term_printf("%-10s %s\n", item->name, item->help); | |
202 | } | |
203 | } | |
9dc39cba FB |
204 | } |
205 | } | |
206 | ||
9307c4c1 | 207 | static void do_help(const char *name) |
9dc39cba | 208 | { |
9307c4c1 | 209 | help_cmd(name); |
9dc39cba FB |
210 | } |
211 | ||
7954c734 | 212 | static void do_commit(const char *device) |
9dc39cba | 213 | { |
7954c734 | 214 | int i, all_devices; |
2dc7b602 | 215 | |
7954c734 | 216 | all_devices = !strcmp(device, "all"); |
e4bcb14c | 217 | for (i = 0; i < nb_drives; i++) { |
5fafdf24 | 218 | if (all_devices || |
e4bcb14c TS |
219 | !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device)) |
220 | bdrv_commit(drives_table[i].bdrv); | |
9dc39cba FB |
221 | } |
222 | } | |
223 | ||
9307c4c1 | 224 | static void do_info(const char *item) |
9dc39cba FB |
225 | { |
226 | term_cmd_t *cmd; | |
9dc39cba | 227 | |
9307c4c1 | 228 | if (!item) |
9dc39cba | 229 | goto help; |
9dc39cba | 230 | for(cmd = info_cmds; cmd->name != NULL; cmd++) { |
5fafdf24 | 231 | if (compare_cmd(item, cmd->name)) |
9dc39cba FB |
232 | goto found; |
233 | } | |
234 | help: | |
9307c4c1 | 235 | help_cmd("info"); |
9dc39cba FB |
236 | return; |
237 | found: | |
9307c4c1 | 238 | cmd->handler(); |
9dc39cba FB |
239 | } |
240 | ||
9bc9d1c7 FB |
241 | static void do_info_version(void) |
242 | { | |
243 | term_printf("%s\n", QEMU_VERSION); | |
244 | } | |
245 | ||
c35734b2 TS |
246 | static void do_info_name(void) |
247 | { | |
248 | if (qemu_name) | |
249 | term_printf("%s\n", qemu_name); | |
250 | } | |
251 | ||
9307c4c1 | 252 | static void do_info_block(void) |
9dc39cba FB |
253 | { |
254 | bdrv_info(); | |
255 | } | |
256 | ||
a36e69dd TS |
257 | static void do_info_blockstats(void) |
258 | { | |
259 | bdrv_info_stats(); | |
260 | } | |
261 | ||
6a00d601 | 262 | /* get the current CPU defined by the user */ |
9596ebb7 | 263 | static int mon_set_cpu(int cpu_index) |
6a00d601 FB |
264 | { |
265 | CPUState *env; | |
266 | ||
267 | for(env = first_cpu; env != NULL; env = env->next_cpu) { | |
268 | if (env->cpu_index == cpu_index) { | |
269 | mon_cpu = env; | |
270 | return 0; | |
271 | } | |
272 | } | |
273 | return -1; | |
274 | } | |
275 | ||
9596ebb7 | 276 | static CPUState *mon_get_cpu(void) |
6a00d601 FB |
277 | { |
278 | if (!mon_cpu) { | |
279 | mon_set_cpu(0); | |
280 | } | |
281 | return mon_cpu; | |
282 | } | |
283 | ||
9307c4c1 FB |
284 | static void do_info_registers(void) |
285 | { | |
6a00d601 FB |
286 | CPUState *env; |
287 | env = mon_get_cpu(); | |
288 | if (!env) | |
289 | return; | |
9307c4c1 | 290 | #ifdef TARGET_I386 |
6a00d601 | 291 | cpu_dump_state(env, NULL, monitor_fprintf, |
d24b15a8 | 292 | X86_DUMP_FPU); |
9307c4c1 | 293 | #else |
5fafdf24 | 294 | cpu_dump_state(env, NULL, monitor_fprintf, |
7fe48483 | 295 | 0); |
9307c4c1 FB |
296 | #endif |
297 | } | |
298 | ||
6a00d601 FB |
299 | static void do_info_cpus(void) |
300 | { | |
301 | CPUState *env; | |
302 | ||
303 | /* just to set the default cpu if not already done */ | |
304 | mon_get_cpu(); | |
305 | ||
306 | for(env = first_cpu; env != NULL; env = env->next_cpu) { | |
5fafdf24 | 307 | term_printf("%c CPU #%d:", |
6a00d601 FB |
308 | (env == mon_cpu) ? '*' : ' ', |
309 | env->cpu_index); | |
310 | #if defined(TARGET_I386) | |
311 | term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base); | |
e80e1cc4 FB |
312 | #elif defined(TARGET_PPC) |
313 | term_printf(" nip=0x" TARGET_FMT_lx, env->nip); | |
ba3c64fb FB |
314 | #elif defined(TARGET_SPARC) |
315 | term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc); | |
ead9360e | 316 | #elif defined(TARGET_MIPS) |
b5dc7732 | 317 | term_printf(" PC=0x" TARGET_FMT_lx, env->active_tc.PC); |
ce5232c5 | 318 | #endif |
ead9360e TS |
319 | if (env->halted) |
320 | term_printf(" (halted)"); | |
6a00d601 FB |
321 | term_printf("\n"); |
322 | } | |
323 | } | |
324 | ||
325 | static void do_cpu_set(int index) | |
326 | { | |
327 | if (mon_set_cpu(index) < 0) | |
328 | term_printf("Invalid CPU index\n"); | |
329 | } | |
330 | ||
e3db7226 FB |
331 | static void do_info_jit(void) |
332 | { | |
333 | dump_exec_info(NULL, monitor_fprintf); | |
334 | } | |
335 | ||
aa455485 FB |
336 | static void do_info_history (void) |
337 | { | |
338 | int i; | |
7e2515e8 | 339 | const char *str; |
3b46e624 | 340 | |
7e2515e8 FB |
341 | i = 0; |
342 | for(;;) { | |
343 | str = readline_get_history(i); | |
344 | if (!str) | |
345 | break; | |
346 | term_printf("%d: '%s'\n", i, str); | |
8e3a9fd2 | 347 | i++; |
aa455485 FB |
348 | } |
349 | } | |
350 | ||
76a66253 JM |
351 | #if defined(TARGET_PPC) |
352 | /* XXX: not implemented in other targets */ | |
353 | static void do_info_cpu_stats (void) | |
354 | { | |
355 | CPUState *env; | |
356 | ||
357 | env = mon_get_cpu(); | |
358 | cpu_dump_statistics(env, NULL, &monitor_fprintf, 0); | |
359 | } | |
360 | #endif | |
361 | ||
9307c4c1 | 362 | static void do_quit(void) |
9dc39cba FB |
363 | { |
364 | exit(0); | |
365 | } | |
366 | ||
367 | static int eject_device(BlockDriverState *bs, int force) | |
368 | { | |
369 | if (bdrv_is_inserted(bs)) { | |
370 | if (!force) { | |
371 | if (!bdrv_is_removable(bs)) { | |
372 | term_printf("device is not removable\n"); | |
373 | return -1; | |
374 | } | |
375 | if (bdrv_is_locked(bs)) { | |
376 | term_printf("device is locked\n"); | |
377 | return -1; | |
378 | } | |
379 | } | |
380 | bdrv_close(bs); | |
381 | } | |
382 | return 0; | |
383 | } | |
384 | ||
9307c4c1 | 385 | static void do_eject(int force, const char *filename) |
9dc39cba FB |
386 | { |
387 | BlockDriverState *bs; | |
9dc39cba | 388 | |
9307c4c1 | 389 | bs = bdrv_find(filename); |
9dc39cba FB |
390 | if (!bs) { |
391 | term_printf("device not found\n"); | |
392 | return; | |
393 | } | |
394 | eject_device(bs, force); | |
395 | } | |
396 | ||
2ecea9b8 | 397 | static void do_change_block(const char *device, const char *filename, const char *fmt) |
9dc39cba FB |
398 | { |
399 | BlockDriverState *bs; | |
2ecea9b8 | 400 | BlockDriver *drv = NULL; |
9dc39cba | 401 | |
9307c4c1 | 402 | bs = bdrv_find(device); |
9dc39cba FB |
403 | if (!bs) { |
404 | term_printf("device not found\n"); | |
405 | return; | |
406 | } | |
2ecea9b8 AJ |
407 | if (fmt) { |
408 | drv = bdrv_find_format(fmt); | |
409 | if (!drv) { | |
410 | term_printf("invalid format %s\n", fmt); | |
411 | return; | |
412 | } | |
413 | } | |
9dc39cba FB |
414 | if (eject_device(bs, 0) < 0) |
415 | return; | |
2ecea9b8 | 416 | bdrv_open2(bs, filename, 0, drv); |
2bac6019 | 417 | qemu_key_check(bs, filename); |
9dc39cba FB |
418 | } |
419 | ||
e25a5822 TS |
420 | static void do_change_vnc(const char *target) |
421 | { | |
70848515 TS |
422 | if (strcmp(target, "passwd") == 0 || |
423 | strcmp(target, "password") == 0) { | |
424 | char password[9]; | |
425 | monitor_readline("Password: ", 1, password, sizeof(password)-1); | |
426 | password[sizeof(password)-1] = '\0'; | |
427 | if (vnc_display_password(NULL, password) < 0) | |
428 | term_printf("could not set VNC server password\n"); | |
429 | } else { | |
430 | if (vnc_display_open(NULL, target) < 0) | |
431 | term_printf("could not start VNC server on %s\n", target); | |
432 | } | |
e25a5822 TS |
433 | } |
434 | ||
2ecea9b8 | 435 | static void do_change(const char *device, const char *target, const char *fmt) |
e25a5822 TS |
436 | { |
437 | if (strcmp(device, "vnc") == 0) { | |
438 | do_change_vnc(target); | |
439 | } else { | |
2ecea9b8 | 440 | do_change_block(device, target, fmt); |
e25a5822 TS |
441 | } |
442 | } | |
443 | ||
9307c4c1 | 444 | static void do_screen_dump(const char *filename) |
59a983b9 | 445 | { |
95219897 | 446 | vga_hw_screen_dump(filename); |
59a983b9 FB |
447 | } |
448 | ||
e735b91c PB |
449 | static void do_logfile(const char *filename) |
450 | { | |
451 | cpu_set_log_filename(filename); | |
452 | } | |
453 | ||
9307c4c1 | 454 | static void do_log(const char *items) |
f193c797 FB |
455 | { |
456 | int mask; | |
3b46e624 | 457 | |
9307c4c1 | 458 | if (!strcmp(items, "none")) { |
f193c797 FB |
459 | mask = 0; |
460 | } else { | |
9307c4c1 | 461 | mask = cpu_str_to_log_mask(items); |
f193c797 | 462 | if (!mask) { |
9307c4c1 | 463 | help_cmd("log"); |
f193c797 FB |
464 | return; |
465 | } | |
466 | } | |
467 | cpu_set_log(mask); | |
468 | } | |
469 | ||
9307c4c1 | 470 | static void do_stop(void) |
8a7ddc38 FB |
471 | { |
472 | vm_stop(EXCP_INTERRUPT); | |
473 | } | |
474 | ||
9307c4c1 | 475 | static void do_cont(void) |
8a7ddc38 FB |
476 | { |
477 | vm_start(); | |
478 | } | |
479 | ||
67b915a5 | 480 | #ifdef CONFIG_GDBSTUB |
cfc3475a | 481 | static void do_gdbserver(const char *port) |
8a7ddc38 | 482 | { |
cfc3475a | 483 | if (!port) |
9307c4c1 | 484 | port = DEFAULT_GDBSTUB_PORT; |
cfc3475a PB |
485 | if (gdbserver_start(port) < 0) { |
486 | qemu_printf("Could not open gdbserver socket on port '%s'\n", port); | |
8a7ddc38 | 487 | } else { |
cfc3475a | 488 | qemu_printf("Waiting gdb connection on port '%s'\n", port); |
8a7ddc38 FB |
489 | } |
490 | } | |
67b915a5 | 491 | #endif |
8a7ddc38 | 492 | |
9307c4c1 FB |
493 | static void term_printc(int c) |
494 | { | |
495 | term_printf("'"); | |
496 | switch(c) { | |
497 | case '\'': | |
498 | term_printf("\\'"); | |
499 | break; | |
500 | case '\\': | |
501 | term_printf("\\\\"); | |
502 | break; | |
503 | case '\n': | |
504 | term_printf("\\n"); | |
505 | break; | |
506 | case '\r': | |
507 | term_printf("\\r"); | |
508 | break; | |
509 | default: | |
510 | if (c >= 32 && c <= 126) { | |
511 | term_printf("%c", c); | |
512 | } else { | |
513 | term_printf("\\x%02x", c); | |
514 | } | |
515 | break; | |
516 | } | |
517 | term_printf("'"); | |
518 | } | |
519 | ||
5fafdf24 | 520 | static void memory_dump(int count, int format, int wsize, |
7743e588 | 521 | target_phys_addr_t addr, int is_physical) |
9307c4c1 | 522 | { |
6a00d601 | 523 | CPUState *env; |
9307c4c1 FB |
524 | int nb_per_line, l, line_size, i, max_digits, len; |
525 | uint8_t buf[16]; | |
526 | uint64_t v; | |
527 | ||
528 | if (format == 'i') { | |
529 | int flags; | |
530 | flags = 0; | |
6a00d601 FB |
531 | env = mon_get_cpu(); |
532 | if (!env && !is_physical) | |
533 | return; | |
9307c4c1 | 534 | #ifdef TARGET_I386 |
4c27ba27 | 535 | if (wsize == 2) { |
9307c4c1 | 536 | flags = 1; |
4c27ba27 FB |
537 | } else if (wsize == 4) { |
538 | flags = 0; | |
539 | } else { | |
6a15fd12 | 540 | /* as default we use the current CS size */ |
4c27ba27 | 541 | flags = 0; |
6a15fd12 FB |
542 | if (env) { |
543 | #ifdef TARGET_X86_64 | |
5fafdf24 | 544 | if ((env->efer & MSR_EFER_LMA) && |
6a15fd12 FB |
545 | (env->segs[R_CS].flags & DESC_L_MASK)) |
546 | flags = 2; | |
547 | else | |
548 | #endif | |
549 | if (!(env->segs[R_CS].flags & DESC_B_MASK)) | |
550 | flags = 1; | |
551 | } | |
4c27ba27 FB |
552 | } |
553 | #endif | |
6a00d601 | 554 | monitor_disas(env, addr, count, is_physical, flags); |
9307c4c1 FB |
555 | return; |
556 | } | |
557 | ||
558 | len = wsize * count; | |
559 | if (wsize == 1) | |
560 | line_size = 8; | |
561 | else | |
562 | line_size = 16; | |
563 | nb_per_line = line_size / wsize; | |
564 | max_digits = 0; | |
565 | ||
566 | switch(format) { | |
567 | case 'o': | |
568 | max_digits = (wsize * 8 + 2) / 3; | |
569 | break; | |
570 | default: | |
571 | case 'x': | |
572 | max_digits = (wsize * 8) / 4; | |
573 | break; | |
574 | case 'u': | |
575 | case 'd': | |
576 | max_digits = (wsize * 8 * 10 + 32) / 33; | |
577 | break; | |
578 | case 'c': | |
579 | wsize = 1; | |
580 | break; | |
581 | } | |
582 | ||
583 | while (len > 0) { | |
7743e588 BS |
584 | if (is_physical) |
585 | term_printf(TARGET_FMT_plx ":", addr); | |
586 | else | |
587 | term_printf(TARGET_FMT_lx ":", (target_ulong)addr); | |
9307c4c1 FB |
588 | l = len; |
589 | if (l > line_size) | |
590 | l = line_size; | |
591 | if (is_physical) { | |
592 | cpu_physical_memory_rw(addr, buf, l, 0); | |
593 | } else { | |
6a00d601 FB |
594 | env = mon_get_cpu(); |
595 | if (!env) | |
596 | break; | |
597 | cpu_memory_rw_debug(env, addr, buf, l, 0); | |
9307c4c1 | 598 | } |
5fafdf24 | 599 | i = 0; |
9307c4c1 FB |
600 | while (i < l) { |
601 | switch(wsize) { | |
602 | default: | |
603 | case 1: | |
604 | v = ldub_raw(buf + i); | |
605 | break; | |
606 | case 2: | |
607 | v = lduw_raw(buf + i); | |
608 | break; | |
609 | case 4: | |
92a31b1f | 610 | v = (uint32_t)ldl_raw(buf + i); |
9307c4c1 FB |
611 | break; |
612 | case 8: | |
613 | v = ldq_raw(buf + i); | |
614 | break; | |
615 | } | |
616 | term_printf(" "); | |
617 | switch(format) { | |
618 | case 'o': | |
26a76461 | 619 | term_printf("%#*" PRIo64, max_digits, v); |
9307c4c1 FB |
620 | break; |
621 | case 'x': | |
26a76461 | 622 | term_printf("0x%0*" PRIx64, max_digits, v); |
9307c4c1 FB |
623 | break; |
624 | case 'u': | |
26a76461 | 625 | term_printf("%*" PRIu64, max_digits, v); |
9307c4c1 FB |
626 | break; |
627 | case 'd': | |
26a76461 | 628 | term_printf("%*" PRId64, max_digits, v); |
9307c4c1 FB |
629 | break; |
630 | case 'c': | |
631 | term_printc(v); | |
632 | break; | |
633 | } | |
634 | i += wsize; | |
635 | } | |
636 | term_printf("\n"); | |
637 | addr += l; | |
638 | len -= l; | |
639 | } | |
640 | } | |
641 | ||
92a31b1f FB |
642 | #if TARGET_LONG_BITS == 64 |
643 | #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l)) | |
644 | #else | |
645 | #define GET_TLONG(h, l) (l) | |
646 | #endif | |
647 | ||
5fafdf24 | 648 | static void do_memory_dump(int count, int format, int size, |
92a31b1f | 649 | uint32_t addrh, uint32_t addrl) |
9307c4c1 | 650 | { |
92a31b1f | 651 | target_long addr = GET_TLONG(addrh, addrl); |
9307c4c1 FB |
652 | memory_dump(count, format, size, addr, 0); |
653 | } | |
654 | ||
7743e588 BS |
655 | #if TARGET_PHYS_ADDR_BITS > 32 |
656 | #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l)) | |
657 | #else | |
658 | #define GET_TPHYSADDR(h, l) (l) | |
659 | #endif | |
660 | ||
92a31b1f FB |
661 | static void do_physical_memory_dump(int count, int format, int size, |
662 | uint32_t addrh, uint32_t addrl) | |
663 | ||
9307c4c1 | 664 | { |
7743e588 | 665 | target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl); |
9307c4c1 FB |
666 | memory_dump(count, format, size, addr, 1); |
667 | } | |
668 | ||
92a31b1f | 669 | static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall) |
9307c4c1 | 670 | { |
7743e588 BS |
671 | target_phys_addr_t val = GET_TPHYSADDR(valh, vall); |
672 | #if TARGET_PHYS_ADDR_BITS == 32 | |
9307c4c1 FB |
673 | switch(format) { |
674 | case 'o': | |
675 | term_printf("%#o", val); | |
676 | break; | |
677 | case 'x': | |
678 | term_printf("%#x", val); | |
679 | break; | |
680 | case 'u': | |
681 | term_printf("%u", val); | |
682 | break; | |
683 | default: | |
684 | case 'd': | |
685 | term_printf("%d", val); | |
686 | break; | |
687 | case 'c': | |
688 | term_printc(val); | |
689 | break; | |
690 | } | |
92a31b1f FB |
691 | #else |
692 | switch(format) { | |
693 | case 'o': | |
26a76461 | 694 | term_printf("%#" PRIo64, val); |
92a31b1f FB |
695 | break; |
696 | case 'x': | |
26a76461 | 697 | term_printf("%#" PRIx64, val); |
92a31b1f FB |
698 | break; |
699 | case 'u': | |
26a76461 | 700 | term_printf("%" PRIu64, val); |
92a31b1f FB |
701 | break; |
702 | default: | |
703 | case 'd': | |
26a76461 | 704 | term_printf("%" PRId64, val); |
92a31b1f FB |
705 | break; |
706 | case 'c': | |
707 | term_printc(val); | |
708 | break; | |
709 | } | |
710 | #endif | |
9307c4c1 FB |
711 | term_printf("\n"); |
712 | } | |
713 | ||
5fafdf24 | 714 | static void do_memory_save(unsigned int valh, unsigned int vall, |
b371dc59 FB |
715 | uint32_t size, const char *filename) |
716 | { | |
717 | FILE *f; | |
718 | target_long addr = GET_TLONG(valh, vall); | |
719 | uint32_t l; | |
720 | CPUState *env; | |
721 | uint8_t buf[1024]; | |
722 | ||
723 | env = mon_get_cpu(); | |
724 | if (!env) | |
725 | return; | |
726 | ||
727 | f = fopen(filename, "wb"); | |
728 | if (!f) { | |
729 | term_printf("could not open '%s'\n", filename); | |
730 | return; | |
731 | } | |
732 | while (size != 0) { | |
733 | l = sizeof(buf); | |
734 | if (l > size) | |
735 | l = size; | |
736 | cpu_memory_rw_debug(env, addr, buf, l, 0); | |
737 | fwrite(buf, 1, l, f); | |
738 | addr += l; | |
739 | size -= l; | |
740 | } | |
741 | fclose(f); | |
742 | } | |
743 | ||
a8bdf7a6 AJ |
744 | static void do_physical_memory_save(unsigned int valh, unsigned int vall, |
745 | uint32_t size, const char *filename) | |
746 | { | |
747 | FILE *f; | |
748 | uint32_t l; | |
749 | uint8_t buf[1024]; | |
339dea27 | 750 | target_phys_addr_t addr = GET_TPHYSADDR(valh, vall); |
a8bdf7a6 AJ |
751 | |
752 | f = fopen(filename, "wb"); | |
753 | if (!f) { | |
754 | term_printf("could not open '%s'\n", filename); | |
755 | return; | |
756 | } | |
757 | while (size != 0) { | |
758 | l = sizeof(buf); | |
759 | if (l > size) | |
760 | l = size; | |
761 | cpu_physical_memory_rw(addr, buf, l, 0); | |
762 | fwrite(buf, 1, l, f); | |
763 | fflush(f); | |
764 | addr += l; | |
765 | size -= l; | |
766 | } | |
767 | fclose(f); | |
768 | } | |
769 | ||
e4cf1adc FB |
770 | static void do_sum(uint32_t start, uint32_t size) |
771 | { | |
772 | uint32_t addr; | |
773 | uint8_t buf[1]; | |
774 | uint16_t sum; | |
775 | ||
776 | sum = 0; | |
777 | for(addr = start; addr < (start + size); addr++) { | |
778 | cpu_physical_memory_rw(addr, buf, 1, 0); | |
779 | /* BSD sum algorithm ('sum' Unix command) */ | |
780 | sum = (sum >> 1) | (sum << 15); | |
781 | sum += buf[0]; | |
782 | } | |
783 | term_printf("%05d\n", sum); | |
784 | } | |
785 | ||
a3a91a35 FB |
786 | typedef struct { |
787 | int keycode; | |
788 | const char *name; | |
789 | } KeyDef; | |
790 | ||
791 | static const KeyDef key_defs[] = { | |
792 | { 0x2a, "shift" }, | |
793 | { 0x36, "shift_r" }, | |
3b46e624 | 794 | |
a3a91a35 FB |
795 | { 0x38, "alt" }, |
796 | { 0xb8, "alt_r" }, | |
2ba27c7f TS |
797 | { 0x64, "altgr" }, |
798 | { 0xe4, "altgr_r" }, | |
a3a91a35 FB |
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" }, | |
64866c3d FB |
816 | { 0x0c, "minus" }, |
817 | { 0x0d, "equal" }, | |
a3a91a35 FB |
818 | { 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" }, | |
3b46e624 | 851 | |
4d3b6f6e AZ |
852 | { 0x37, "asterisk" }, |
853 | ||
a3a91a35 | 854 | { 0x39, "spc" }, |
00ffa62a | 855 | { 0x3a, "caps_lock" }, |
a3a91a35 FB |
856 | { 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" }, | |
00ffa62a | 866 | { 0x45, "num_lock" }, |
a3a91a35 FB |
867 | { 0x46, "scroll_lock" }, |
868 | ||
64866c3d FB |
869 | { 0xb5, "kp_divide" }, |
870 | { 0x37, "kp_multiply" }, | |
0cfec834 | 871 | { 0x4a, "kp_subtract" }, |
64866c3d FB |
872 | { 0x4e, "kp_add" }, |
873 | { 0x9c, "kp_enter" }, | |
874 | { 0x53, "kp_decimal" }, | |
f2289cb6 | 875 | { 0x54, "sysrq" }, |
64866c3d FB |
876 | |
877 | { 0x52, "kp_0" }, | |
878 | { 0x4f, "kp_1" }, | |
879 | { 0x50, "kp_2" }, | |
880 | { 0x51, "kp_3" }, | |
881 | { 0x4b, "kp_4" }, | |
882 | { 0x4c, "kp_5" }, | |
883 | { 0x4d, "kp_6" }, | |
884 | { 0x47, "kp_7" }, | |
885 | { 0x48, "kp_8" }, | |
886 | { 0x49, "kp_9" }, | |
3b46e624 | 887 | |
a3a91a35 FB |
888 | { 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" }, | |
c0b5b109 BS |
907 | #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64) |
908 | { 0xf0, "stop" }, | |
909 | { 0xf1, "again" }, | |
910 | { 0xf2, "props" }, | |
911 | { 0xf3, "undo" }, | |
912 | { 0xf4, "front" }, | |
913 | { 0xf5, "copy" }, | |
914 | { 0xf6, "open" }, | |
915 | { 0xf7, "paste" }, | |
916 | { 0xf8, "find" }, | |
917 | { 0xf9, "cut" }, | |
918 | { 0xfa, "lf" }, | |
919 | { 0xfb, "help" }, | |
920 | { 0xfc, "meta_l" }, | |
921 | { 0xfd, "meta_r" }, | |
922 | { 0xfe, "compose" }, | |
923 | #endif | |
a3a91a35 FB |
924 | { 0, NULL }, |
925 | }; | |
926 | ||
927 | static int get_keycode(const char *key) | |
928 | { | |
929 | const KeyDef *p; | |
64866c3d FB |
930 | char *endp; |
931 | int ret; | |
a3a91a35 FB |
932 | |
933 | for(p = key_defs; p->name != NULL; p++) { | |
934 | if (!strcmp(key, p->name)) | |
935 | return p->keycode; | |
936 | } | |
64866c3d FB |
937 | if (strstart(key, "0x", NULL)) { |
938 | ret = strtoul(key, &endp, 0); | |
939 | if (*endp == '\0' && ret >= 0x01 && ret <= 0xff) | |
940 | return ret; | |
941 | } | |
a3a91a35 FB |
942 | return -1; |
943 | } | |
944 | ||
c8256f9d AZ |
945 | #define MAX_KEYCODES 16 |
946 | static uint8_t keycodes[MAX_KEYCODES]; | |
947 | static int nb_pending_keycodes; | |
948 | static QEMUTimer *key_timer; | |
949 | ||
950 | static void release_keys(void *opaque) | |
951 | { | |
952 | int keycode; | |
953 | ||
954 | while (nb_pending_keycodes > 0) { | |
955 | nb_pending_keycodes--; | |
956 | keycode = keycodes[nb_pending_keycodes]; | |
957 | if (keycode & 0x80) | |
958 | kbd_put_keycode(0xe0); | |
959 | kbd_put_keycode(keycode | 0x80); | |
960 | } | |
961 | } | |
962 | ||
963 | static void do_sendkey(const char *string, int has_hold_time, int hold_time) | |
a3a91a35 | 964 | { |
3401c0d9 AZ |
965 | char keyname_buf[16]; |
966 | char *separator; | |
967 | int keyname_len, keycode, i; | |
968 | ||
c8256f9d AZ |
969 | if (nb_pending_keycodes > 0) { |
970 | qemu_del_timer(key_timer); | |
971 | release_keys(NULL); | |
972 | } | |
973 | if (!has_hold_time) | |
974 | hold_time = 100; | |
975 | i = 0; | |
3401c0d9 AZ |
976 | while (1) { |
977 | separator = strchr(string, '-'); | |
978 | keyname_len = separator ? separator - string : strlen(string); | |
979 | if (keyname_len > 0) { | |
980 | pstrcpy(keyname_buf, sizeof(keyname_buf), string); | |
981 | if (keyname_len > sizeof(keyname_buf) - 1) { | |
982 | term_printf("invalid key: '%s...'\n", keyname_buf); | |
983 | return; | |
a3a91a35 | 984 | } |
c8256f9d | 985 | if (i == MAX_KEYCODES) { |
3401c0d9 AZ |
986 | term_printf("too many keys\n"); |
987 | return; | |
988 | } | |
989 | keyname_buf[keyname_len] = 0; | |
990 | keycode = get_keycode(keyname_buf); | |
991 | if (keycode < 0) { | |
992 | term_printf("unknown key: '%s'\n", keyname_buf); | |
993 | return; | |
994 | } | |
c8256f9d | 995 | keycodes[i++] = keycode; |
a3a91a35 | 996 | } |
3401c0d9 | 997 | if (!separator) |
a3a91a35 | 998 | break; |
3401c0d9 | 999 | string = separator + 1; |
a3a91a35 | 1000 | } |
c8256f9d | 1001 | nb_pending_keycodes = i; |
a3a91a35 | 1002 | /* key down events */ |
c8256f9d | 1003 | for (i = 0; i < nb_pending_keycodes; i++) { |
a3a91a35 FB |
1004 | keycode = keycodes[i]; |
1005 | if (keycode & 0x80) | |
1006 | kbd_put_keycode(0xe0); | |
1007 | kbd_put_keycode(keycode & 0x7f); | |
1008 | } | |
c8256f9d | 1009 | /* delayed key up events */ |
f227f17d AZ |
1010 | qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) + |
1011 | muldiv64(ticks_per_sec, hold_time, 1000)); | |
a3a91a35 FB |
1012 | } |
1013 | ||
13224a87 FB |
1014 | static int mouse_button_state; |
1015 | ||
5fafdf24 | 1016 | static void do_mouse_move(const char *dx_str, const char *dy_str, |
13224a87 FB |
1017 | const char *dz_str) |
1018 | { | |
1019 | int dx, dy, dz; | |
1020 | dx = strtol(dx_str, NULL, 0); | |
1021 | dy = strtol(dy_str, NULL, 0); | |
1022 | dz = 0; | |
5fafdf24 | 1023 | if (dz_str) |
13224a87 FB |
1024 | dz = strtol(dz_str, NULL, 0); |
1025 | kbd_mouse_event(dx, dy, dz, mouse_button_state); | |
1026 | } | |
1027 | ||
1028 | static void do_mouse_button(int button_state) | |
1029 | { | |
1030 | mouse_button_state = button_state; | |
1031 | kbd_mouse_event(0, 0, 0, mouse_button_state); | |
1032 | } | |
1033 | ||
3440557b FB |
1034 | static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index) |
1035 | { | |
1036 | uint32_t val; | |
1037 | int suffix; | |
1038 | ||
1039 | if (has_index) { | |
1040 | cpu_outb(NULL, addr & 0xffff, index & 0xff); | |
1041 | addr++; | |
1042 | } | |
1043 | addr &= 0xffff; | |
1044 | ||
1045 | switch(size) { | |
1046 | default: | |
1047 | case 1: | |
1048 | val = cpu_inb(NULL, addr); | |
1049 | suffix = 'b'; | |
1050 | break; | |
1051 | case 2: | |
1052 | val = cpu_inw(NULL, addr); | |
1053 | suffix = 'w'; | |
1054 | break; | |
1055 | case 4: | |
1056 | val = cpu_inl(NULL, addr); | |
1057 | suffix = 'l'; | |
1058 | break; | |
1059 | } | |
1060 | term_printf("port%c[0x%04x] = %#0*x\n", | |
1061 | suffix, addr, size * 2, val); | |
1062 | } | |
a3a91a35 | 1063 | |
3b4366de BS |
1064 | /* boot_set handler */ |
1065 | static QEMUBootSetHandler *qemu_boot_set_handler = NULL; | |
1066 | static void *boot_opaque; | |
1067 | ||
1068 | void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque) | |
1069 | { | |
1070 | qemu_boot_set_handler = func; | |
1071 | boot_opaque = opaque; | |
1072 | } | |
1073 | ||
0ecdffbb AJ |
1074 | static void do_boot_set(const char *bootdevice) |
1075 | { | |
1076 | int res; | |
1077 | ||
1078 | if (qemu_boot_set_handler) { | |
3b4366de | 1079 | res = qemu_boot_set_handler(boot_opaque, bootdevice); |
0ecdffbb AJ |
1080 | if (res == 0) |
1081 | term_printf("boot device list now set to %s\n", bootdevice); | |
1082 | else | |
1083 | term_printf("setting boot device list failed with error %i\n", res); | |
1084 | } else { | |
1085 | term_printf("no function defined to set boot device list for this architecture\n"); | |
1086 | } | |
1087 | } | |
1088 | ||
e4f9082b FB |
1089 | static void do_system_reset(void) |
1090 | { | |
1091 | qemu_system_reset_request(); | |
1092 | } | |
1093 | ||
3475187d FB |
1094 | static void do_system_powerdown(void) |
1095 | { | |
1096 | qemu_system_powerdown_request(); | |
1097 | } | |
1098 | ||
b86bda5b FB |
1099 | #if defined(TARGET_I386) |
1100 | static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask) | |
1101 | { | |
5fafdf24 | 1102 | term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n", |
b86bda5b FB |
1103 | addr, |
1104 | pte & mask, | |
1105 | pte & PG_GLOBAL_MASK ? 'G' : '-', | |
1106 | pte & PG_PSE_MASK ? 'P' : '-', | |
1107 | pte & PG_DIRTY_MASK ? 'D' : '-', | |
1108 | pte & PG_ACCESSED_MASK ? 'A' : '-', | |
1109 | pte & PG_PCD_MASK ? 'C' : '-', | |
1110 | pte & PG_PWT_MASK ? 'T' : '-', | |
1111 | pte & PG_USER_MASK ? 'U' : '-', | |
1112 | pte & PG_RW_MASK ? 'W' : '-'); | |
1113 | } | |
1114 | ||
1115 | static void tlb_info(void) | |
1116 | { | |
6a00d601 | 1117 | CPUState *env; |
b86bda5b FB |
1118 | int l1, l2; |
1119 | uint32_t pgd, pde, pte; | |
1120 | ||
6a00d601 FB |
1121 | env = mon_get_cpu(); |
1122 | if (!env) | |
1123 | return; | |
1124 | ||
b86bda5b FB |
1125 | if (!(env->cr[0] & CR0_PG_MASK)) { |
1126 | term_printf("PG disabled\n"); | |
1127 | return; | |
1128 | } | |
1129 | pgd = env->cr[3] & ~0xfff; | |
1130 | for(l1 = 0; l1 < 1024; l1++) { | |
1131 | cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4); | |
1132 | pde = le32_to_cpu(pde); | |
1133 | if (pde & PG_PRESENT_MASK) { | |
1134 | if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) { | |
1135 | print_pte((l1 << 22), pde, ~((1 << 20) - 1)); | |
1136 | } else { | |
1137 | for(l2 = 0; l2 < 1024; l2++) { | |
5fafdf24 | 1138 | cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, |
b86bda5b FB |
1139 | (uint8_t *)&pte, 4); |
1140 | pte = le32_to_cpu(pte); | |
1141 | if (pte & PG_PRESENT_MASK) { | |
5fafdf24 TS |
1142 | print_pte((l1 << 22) + (l2 << 12), |
1143 | pte & ~PG_PSE_MASK, | |
b86bda5b FB |
1144 | ~0xfff); |
1145 | } | |
1146 | } | |
1147 | } | |
1148 | } | |
1149 | } | |
1150 | } | |
1151 | ||
5fafdf24 | 1152 | static void mem_print(uint32_t *pstart, int *plast_prot, |
b86bda5b FB |
1153 | uint32_t end, int prot) |
1154 | { | |
9746b15b FB |
1155 | int prot1; |
1156 | prot1 = *plast_prot; | |
1157 | if (prot != prot1) { | |
b86bda5b FB |
1158 | if (*pstart != -1) { |
1159 | term_printf("%08x-%08x %08x %c%c%c\n", | |
5fafdf24 | 1160 | *pstart, end, end - *pstart, |
9746b15b | 1161 | prot1 & PG_USER_MASK ? 'u' : '-', |
b86bda5b | 1162 | 'r', |
9746b15b | 1163 | prot1 & PG_RW_MASK ? 'w' : '-'); |
b86bda5b FB |
1164 | } |
1165 | if (prot != 0) | |
1166 | *pstart = end; | |
1167 | else | |
1168 | *pstart = -1; | |
1169 | *plast_prot = prot; | |
1170 | } | |
1171 | } | |
1172 | ||
1173 | static void mem_info(void) | |
1174 | { | |
6a00d601 | 1175 | CPUState *env; |
b86bda5b FB |
1176 | int l1, l2, prot, last_prot; |
1177 | uint32_t pgd, pde, pte, start, end; | |
1178 | ||
6a00d601 FB |
1179 | env = mon_get_cpu(); |
1180 | if (!env) | |
1181 | return; | |
1182 | ||
b86bda5b FB |
1183 | if (!(env->cr[0] & CR0_PG_MASK)) { |
1184 | term_printf("PG disabled\n"); | |
1185 | return; | |
1186 | } | |
1187 | pgd = env->cr[3] & ~0xfff; | |
1188 | last_prot = 0; | |
1189 | start = -1; | |
1190 | for(l1 = 0; l1 < 1024; l1++) { | |
1191 | cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4); | |
1192 | pde = le32_to_cpu(pde); | |
1193 | end = l1 << 22; | |
1194 | if (pde & PG_PRESENT_MASK) { | |
1195 | if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) { | |
1196 | prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK); | |
1197 | mem_print(&start, &last_prot, end, prot); | |
1198 | } else { | |
1199 | for(l2 = 0; l2 < 1024; l2++) { | |
5fafdf24 | 1200 | cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, |
b86bda5b FB |
1201 | (uint8_t *)&pte, 4); |
1202 | pte = le32_to_cpu(pte); | |
1203 | end = (l1 << 22) + (l2 << 12); | |
1204 | if (pte & PG_PRESENT_MASK) { | |
1205 | prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK); | |
1206 | } else { | |
1207 | prot = 0; | |
1208 | } | |
1209 | mem_print(&start, &last_prot, end, prot); | |
1210 | } | |
1211 | } | |
1212 | } else { | |
1213 | prot = 0; | |
1214 | mem_print(&start, &last_prot, end, prot); | |
1215 | } | |
1216 | } | |
1217 | } | |
1218 | #endif | |
1219 | ||
0f4c6415 FB |
1220 | static void do_info_kqemu(void) |
1221 | { | |
1222 | #ifdef USE_KQEMU | |
6a00d601 | 1223 | CPUState *env; |
0f4c6415 FB |
1224 | int val; |
1225 | val = 0; | |
6a00d601 FB |
1226 | env = mon_get_cpu(); |
1227 | if (!env) { | |
1228 | term_printf("No cpu initialized yet"); | |
1229 | return; | |
1230 | } | |
1231 | val = env->kqemu_enabled; | |
5f1ce948 FB |
1232 | term_printf("kqemu support: "); |
1233 | switch(val) { | |
1234 | default: | |
1235 | case 0: | |
1236 | term_printf("disabled\n"); | |
1237 | break; | |
1238 | case 1: | |
1239 | term_printf("enabled for user code\n"); | |
1240 | break; | |
1241 | case 2: | |
1242 | term_printf("enabled for user and kernel code\n"); | |
1243 | break; | |
1244 | } | |
0f4c6415 | 1245 | #else |
5f1ce948 | 1246 | term_printf("kqemu support: not compiled\n"); |
0f4c6415 | 1247 | #endif |
5fafdf24 | 1248 | } |
0f4c6415 | 1249 | |
5f1ce948 FB |
1250 | #ifdef CONFIG_PROFILER |
1251 | ||
1252 | int64_t kqemu_time; | |
1253 | int64_t qemu_time; | |
1254 | int64_t kqemu_exec_count; | |
1255 | int64_t dev_time; | |
1256 | int64_t kqemu_ret_int_count; | |
1257 | int64_t kqemu_ret_excp_count; | |
1258 | int64_t kqemu_ret_intr_count; | |
1259 | ||
1260 | static void do_info_profile(void) | |
1261 | { | |
1262 | int64_t total; | |
1263 | total = qemu_time; | |
1264 | if (total == 0) | |
1265 | total = 1; | |
26a76461 | 1266 | term_printf("async time %" PRId64 " (%0.3f)\n", |
5f1ce948 | 1267 | dev_time, dev_time / (double)ticks_per_sec); |
26a76461 | 1268 | term_printf("qemu time %" PRId64 " (%0.3f)\n", |
5f1ce948 | 1269 | qemu_time, qemu_time / (double)ticks_per_sec); |
26a76461 | 1270 | term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n", |
5f1ce948 FB |
1271 | kqemu_time, kqemu_time / (double)ticks_per_sec, |
1272 | kqemu_time / (double)total * 100.0, | |
1273 | kqemu_exec_count, | |
1274 | kqemu_ret_int_count, | |
1275 | kqemu_ret_excp_count, | |
1276 | kqemu_ret_intr_count); | |
1277 | qemu_time = 0; | |
1278 | kqemu_time = 0; | |
1279 | kqemu_exec_count = 0; | |
1280 | dev_time = 0; | |
1281 | kqemu_ret_int_count = 0; | |
1282 | kqemu_ret_excp_count = 0; | |
1283 | kqemu_ret_intr_count = 0; | |
1284 | #ifdef USE_KQEMU | |
1285 | kqemu_record_dump(); | |
1286 | #endif | |
1287 | } | |
1288 | #else | |
1289 | static void do_info_profile(void) | |
1290 | { | |
1291 | term_printf("Internal profiler not compiled\n"); | |
1292 | } | |
1293 | #endif | |
1294 | ||
ec36b695 FB |
1295 | /* Capture support */ |
1296 | static LIST_HEAD (capture_list_head, CaptureState) capture_head; | |
1297 | ||
1298 | static void do_info_capture (void) | |
1299 | { | |
1300 | int i; | |
1301 | CaptureState *s; | |
1302 | ||
1303 | for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { | |
1304 | term_printf ("[%d]: ", i); | |
1305 | s->ops.info (s->opaque); | |
1306 | } | |
1307 | } | |
1308 | ||
1309 | static void do_stop_capture (int n) | |
1310 | { | |
1311 | int i; | |
1312 | CaptureState *s; | |
1313 | ||
1314 | for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { | |
1315 | if (i == n) { | |
1316 | s->ops.destroy (s->opaque); | |
1317 | LIST_REMOVE (s, entries); | |
1318 | qemu_free (s); | |
1319 | return; | |
1320 | } | |
1321 | } | |
1322 | } | |
1323 | ||
1324 | #ifdef HAS_AUDIO | |
1325 | int wav_start_capture (CaptureState *s, const char *path, int freq, | |
1326 | int bits, int nchannels); | |
1327 | ||
1328 | static void do_wav_capture (const char *path, | |
1329 | int has_freq, int freq, | |
1330 | int has_bits, int bits, | |
1331 | int has_channels, int nchannels) | |
1332 | { | |
1333 | CaptureState *s; | |
1334 | ||
1335 | s = qemu_mallocz (sizeof (*s)); | |
1336 | if (!s) { | |
1337 | term_printf ("Not enough memory to add wave capture\n"); | |
1338 | return; | |
1339 | } | |
1340 | ||
1341 | freq = has_freq ? freq : 44100; | |
1342 | bits = has_bits ? bits : 16; | |
1343 | nchannels = has_channels ? nchannels : 2; | |
1344 | ||
1345 | if (wav_start_capture (s, path, freq, bits, nchannels)) { | |
1346 | term_printf ("Faied to add wave capture\n"); | |
1347 | qemu_free (s); | |
1348 | } | |
1349 | LIST_INSERT_HEAD (&capture_head, s, entries); | |
1350 | } | |
1351 | #endif | |
1352 | ||
dc1c0b74 AJ |
1353 | #if defined(TARGET_I386) |
1354 | static void do_inject_nmi(int cpu_index) | |
1355 | { | |
1356 | CPUState *env; | |
1357 | ||
1358 | for (env = first_cpu; env != NULL; env = env->next_cpu) | |
1359 | if (env->cpu_index == cpu_index) { | |
1360 | cpu_interrupt(env, CPU_INTERRUPT_NMI); | |
1361 | break; | |
1362 | } | |
1363 | } | |
1364 | #endif | |
1365 | ||
9dc39cba | 1366 | static term_cmd_t term_cmds[] = { |
5fafdf24 | 1367 | { "help|?", "s?", do_help, |
9dc39cba | 1368 | "[cmd]", "show the help" }, |
5fafdf24 | 1369 | { "commit", "s", do_commit, |
7954c734 | 1370 | "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" }, |
9307c4c1 | 1371 | { "info", "s?", do_info, |
9dc39cba | 1372 | "subcommand", "show various information about the system state" }, |
9307c4c1 | 1373 | { "q|quit", "", do_quit, |
9dc39cba | 1374 | "", "quit the emulator" }, |
81d0912d | 1375 | { "eject", "-fB", do_eject, |
e598752a | 1376 | "[-f] device", "eject a removable medium (use -f to force it)" }, |
2ecea9b8 AJ |
1377 | { "change", "BFs?", do_change, |
1378 | "device filename [format]", "change a removable medium, optional format" }, | |
5fafdf24 | 1379 | { "screendump", "F", do_screen_dump, |
59a983b9 | 1380 | "filename", "save screen into PPM image 'filename'" }, |
788228c0 | 1381 | { "logfile", "F", do_logfile, |
e735b91c | 1382 | "filename", "output logs to 'filename'" }, |
9307c4c1 | 1383 | { "log", "s", do_log, |
5fafdf24 | 1384 | "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" }, |
faea38e7 | 1385 | { "savevm", "s?", do_savevm, |
5fafdf24 | 1386 | "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" }, |
faea38e7 | 1387 | { "loadvm", "s", do_loadvm, |
5fafdf24 | 1388 | "tag|id", "restore a VM snapshot from its tag or id" }, |
faea38e7 | 1389 | { "delvm", "s", do_delvm, |
5fafdf24 TS |
1390 | "tag|id", "delete a VM snapshot from its tag or id" }, |
1391 | { "stop", "", do_stop, | |
9307c4c1 | 1392 | "", "stop emulation", }, |
5fafdf24 | 1393 | { "c|cont", "", do_cont, |
9307c4c1 | 1394 | "", "resume emulation", }, |
67b915a5 | 1395 | #ifdef CONFIG_GDBSTUB |
5fafdf24 | 1396 | { "gdbserver", "s?", do_gdbserver, |
9307c4c1 | 1397 | "[port]", "start gdbserver session (default port=1234)", }, |
67b915a5 | 1398 | #endif |
5fafdf24 | 1399 | { "x", "/l", do_memory_dump, |
9307c4c1 | 1400 | "/fmt addr", "virtual memory dump starting at 'addr'", }, |
5fafdf24 | 1401 | { "xp", "/l", do_physical_memory_dump, |
9307c4c1 | 1402 | "/fmt addr", "physical memory dump starting at 'addr'", }, |
5fafdf24 | 1403 | { "p|print", "/l", do_print, |
9307c4c1 | 1404 | "/fmt expr", "print expression value (use $reg for CPU register access)", }, |
5fafdf24 | 1405 | { "i", "/ii.", do_ioport_read, |
3440557b FB |
1406 | "/fmt addr", "I/O port read" }, |
1407 | ||
c8256f9d AZ |
1408 | { "sendkey", "si?", do_sendkey, |
1409 | "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" }, | |
5fafdf24 | 1410 | { "system_reset", "", do_system_reset, |
e4f9082b | 1411 | "", "reset the system" }, |
5fafdf24 | 1412 | { "system_powerdown", "", do_system_powerdown, |
3475187d | 1413 | "", "send system power down event" }, |
5fafdf24 | 1414 | { "sum", "ii", do_sum, |
e4cf1adc | 1415 | "addr size", "compute the checksum of a memory region" }, |
a594cfbf FB |
1416 | { "usb_add", "s", do_usb_add, |
1417 | "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" }, | |
1418 | { "usb_del", "s", do_usb_del, | |
1419 | "device", "remove USB device 'bus.addr'" }, | |
5fafdf24 | 1420 | { "cpu", "i", do_cpu_set, |
6a00d601 | 1421 | "index", "set the default CPU" }, |
5fafdf24 | 1422 | { "mouse_move", "sss?", do_mouse_move, |
13224a87 | 1423 | "dx dy [dz]", "send mouse move events" }, |
5fafdf24 | 1424 | { "mouse_button", "i", do_mouse_button, |
13224a87 | 1425 | "state", "change mouse button state (1=L, 2=M, 4=R)" }, |
455204eb TS |
1426 | { "mouse_set", "i", do_mouse_set, |
1427 | "index", "set which mouse device receives events" }, | |
ec36b695 FB |
1428 | #ifdef HAS_AUDIO |
1429 | { "wavcapture", "si?i?i?", do_wav_capture, | |
1430 | "path [frequency bits channels]", | |
1431 | "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" }, | |
1432 | #endif | |
1433 | { "stopcapture", "i", do_stop_capture, | |
1434 | "capture index", "stop capture" }, | |
5fafdf24 | 1435 | { "memsave", "lis", do_memory_save, |
b371dc59 | 1436 | "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", }, |
a8bdf7a6 AJ |
1437 | { "pmemsave", "lis", do_physical_memory_save, |
1438 | "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", }, | |
0ecdffbb AJ |
1439 | { "boot_set", "s", do_boot_set, |
1440 | "bootdevice", "define new values for the boot device list" }, | |
dc1c0b74 AJ |
1441 | #if defined(TARGET_I386) |
1442 | { "nmi", "i", do_inject_nmi, | |
1443 | "cpu", "inject an NMI on the given CPU", }, | |
1444 | #endif | |
5fafdf24 | 1445 | { NULL, NULL, }, |
9dc39cba FB |
1446 | }; |
1447 | ||
1448 | static term_cmd_t info_cmds[] = { | |
9bc9d1c7 FB |
1449 | { "version", "", do_info_version, |
1450 | "", "show the version of qemu" }, | |
9307c4c1 | 1451 | { "network", "", do_info_network, |
9dc39cba | 1452 | "", "show the network state" }, |
9307c4c1 | 1453 | { "block", "", do_info_block, |
9dc39cba | 1454 | "", "show the block devices" }, |
a36e69dd TS |
1455 | { "blockstats", "", do_info_blockstats, |
1456 | "", "show block device statistics" }, | |
9307c4c1 FB |
1457 | { "registers", "", do_info_registers, |
1458 | "", "show the cpu registers" }, | |
6a00d601 FB |
1459 | { "cpus", "", do_info_cpus, |
1460 | "", "show infos for each CPU" }, | |
aa455485 FB |
1461 | { "history", "", do_info_history, |
1462 | "", "show the command line history", }, | |
4a0fb71e FB |
1463 | { "irq", "", irq_info, |
1464 | "", "show the interrupts statistics (if available)", }, | |
4c27ba27 FB |
1465 | { "pic", "", pic_info, |
1466 | "", "show i8259 (PIC) state", }, | |
86e0c048 FB |
1467 | { "pci", "", pci_info, |
1468 | "", "show PCI info", }, | |
b86bda5b FB |
1469 | #if defined(TARGET_I386) |
1470 | { "tlb", "", tlb_info, | |
1471 | "", "show virtual to physical memory mappings", }, | |
1472 | { "mem", "", mem_info, | |
1473 | "", "show the active virtual memory mappings", }, | |
1474 | #endif | |
e3db7226 FB |
1475 | { "jit", "", do_info_jit, |
1476 | "", "show dynamic compiler info", }, | |
0f4c6415 FB |
1477 | { "kqemu", "", do_info_kqemu, |
1478 | "", "show kqemu information", }, | |
a594cfbf FB |
1479 | { "usb", "", usb_info, |
1480 | "", "show guest USB devices", }, | |
1481 | { "usbhost", "", usb_host_info, | |
1482 | "", "show host USB devices", }, | |
5f1ce948 FB |
1483 | { "profile", "", do_info_profile, |
1484 | "", "show profiling information", }, | |
ec36b695 | 1485 | { "capture", "", do_info_capture, |
17100159 | 1486 | "", "show capture information" }, |
faea38e7 | 1487 | { "snapshots", "", do_info_snapshots, |
17100159 | 1488 | "", "show the currently saved VM snapshots" }, |
201a51fc AZ |
1489 | { "pcmcia", "", pcmcia_info, |
1490 | "", "show guest PCMCIA status" }, | |
455204eb TS |
1491 | { "mice", "", do_info_mice, |
1492 | "", "show which guest mouse is receiving events" }, | |
a9ce8590 FB |
1493 | { "vnc", "", do_info_vnc, |
1494 | "", "show the vnc server status"}, | |
c35734b2 TS |
1495 | { "name", "", do_info_name, |
1496 | "", "show the current VM name" }, | |
76a66253 JM |
1497 | #if defined(TARGET_PPC) |
1498 | { "cpustats", "", do_info_cpu_stats, | |
1499 | "", "show CPU statistics", }, | |
1500 | #endif | |
31a60e22 BS |
1501 | #if defined(CONFIG_SLIRP) |
1502 | { "slirp", "", do_info_slirp, | |
1503 | "", "show SLIRP statistics", }, | |
1504 | #endif | |
9dc39cba FB |
1505 | { NULL, NULL, }, |
1506 | }; | |
1507 | ||
9307c4c1 FB |
1508 | /*******************************************************************/ |
1509 | ||
1510 | static const char *pch; | |
1511 | static jmp_buf expr_env; | |
1512 | ||
92a31b1f FB |
1513 | #define MD_TLONG 0 |
1514 | #define MD_I32 1 | |
1515 | ||
9307c4c1 FB |
1516 | typedef struct MonitorDef { |
1517 | const char *name; | |
1518 | int offset; | |
92a31b1f FB |
1519 | target_long (*get_value)(struct MonitorDef *md, int val); |
1520 | int type; | |
9307c4c1 FB |
1521 | } MonitorDef; |
1522 | ||
57206fd4 | 1523 | #if defined(TARGET_I386) |
92a31b1f | 1524 | static target_long monitor_get_pc (struct MonitorDef *md, int val) |
57206fd4 | 1525 | { |
6a00d601 FB |
1526 | CPUState *env = mon_get_cpu(); |
1527 | if (!env) | |
1528 | return 0; | |
1529 | return env->eip + env->segs[R_CS].base; | |
57206fd4 FB |
1530 | } |
1531 | #endif | |
1532 | ||
a541f297 | 1533 | #if defined(TARGET_PPC) |
92a31b1f | 1534 | static target_long monitor_get_ccr (struct MonitorDef *md, int val) |
a541f297 | 1535 | { |
6a00d601 | 1536 | CPUState *env = mon_get_cpu(); |
a541f297 FB |
1537 | unsigned int u; |
1538 | int i; | |
1539 | ||
6a00d601 FB |
1540 | if (!env) |
1541 | return 0; | |
1542 | ||
a541f297 FB |
1543 | u = 0; |
1544 | for (i = 0; i < 8; i++) | |
6a00d601 | 1545 | u |= env->crf[i] << (32 - (4 * i)); |
a541f297 FB |
1546 | |
1547 | return u; | |
1548 | } | |
1549 | ||
92a31b1f | 1550 | static target_long monitor_get_msr (struct MonitorDef *md, int val) |
a541f297 | 1551 | { |
6a00d601 FB |
1552 | CPUState *env = mon_get_cpu(); |
1553 | if (!env) | |
1554 | return 0; | |
0411a972 | 1555 | return env->msr; |
a541f297 FB |
1556 | } |
1557 | ||
92a31b1f | 1558 | static target_long monitor_get_xer (struct MonitorDef *md, int val) |
a541f297 | 1559 | { |
6a00d601 FB |
1560 | CPUState *env = mon_get_cpu(); |
1561 | if (!env) | |
1562 | return 0; | |
ff937dba | 1563 | return ppc_load_xer(env); |
a541f297 | 1564 | } |
9fddaa0c | 1565 | |
92a31b1f | 1566 | static target_long monitor_get_decr (struct MonitorDef *md, int val) |
9fddaa0c | 1567 | { |
6a00d601 FB |
1568 | CPUState *env = mon_get_cpu(); |
1569 | if (!env) | |
1570 | return 0; | |
1571 | return cpu_ppc_load_decr(env); | |
9fddaa0c FB |
1572 | } |
1573 | ||
92a31b1f | 1574 | static target_long monitor_get_tbu (struct MonitorDef *md, int val) |
9fddaa0c | 1575 | { |
6a00d601 FB |
1576 | CPUState *env = mon_get_cpu(); |
1577 | if (!env) | |
1578 | return 0; | |
1579 | return cpu_ppc_load_tbu(env); | |
9fddaa0c FB |
1580 | } |
1581 | ||
92a31b1f | 1582 | static target_long monitor_get_tbl (struct MonitorDef *md, int val) |
9fddaa0c | 1583 | { |
6a00d601 FB |
1584 | CPUState *env = mon_get_cpu(); |
1585 | if (!env) | |
1586 | return 0; | |
1587 | return cpu_ppc_load_tbl(env); | |
9fddaa0c | 1588 | } |
a541f297 FB |
1589 | #endif |
1590 | ||
e95c8d51 | 1591 | #if defined(TARGET_SPARC) |
7b936c0c | 1592 | #ifndef TARGET_SPARC64 |
92a31b1f | 1593 | static target_long monitor_get_psr (struct MonitorDef *md, int val) |
e95c8d51 | 1594 | { |
6a00d601 FB |
1595 | CPUState *env = mon_get_cpu(); |
1596 | if (!env) | |
1597 | return 0; | |
1598 | return GET_PSR(env); | |
e95c8d51 | 1599 | } |
7b936c0c | 1600 | #endif |
e95c8d51 | 1601 | |
92a31b1f | 1602 | static target_long monitor_get_reg(struct MonitorDef *md, int val) |
e95c8d51 | 1603 | { |
6a00d601 FB |
1604 | CPUState *env = mon_get_cpu(); |
1605 | if (!env) | |
1606 | return 0; | |
1607 | return env->regwptr[val]; | |
e95c8d51 FB |
1608 | } |
1609 | #endif | |
1610 | ||
9307c4c1 FB |
1611 | static MonitorDef monitor_defs[] = { |
1612 | #ifdef TARGET_I386 | |
57206fd4 FB |
1613 | |
1614 | #define SEG(name, seg) \ | |
92a31b1f | 1615 | { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\ |
57206fd4 | 1616 | { name ".base", offsetof(CPUState, segs[seg].base) },\ |
92a31b1f | 1617 | { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 }, |
57206fd4 | 1618 | |
9307c4c1 FB |
1619 | { "eax", offsetof(CPUState, regs[0]) }, |
1620 | { "ecx", offsetof(CPUState, regs[1]) }, | |
1621 | { "edx", offsetof(CPUState, regs[2]) }, | |
1622 | { "ebx", offsetof(CPUState, regs[3]) }, | |
1623 | { "esp|sp", offsetof(CPUState, regs[4]) }, | |
1624 | { "ebp|fp", offsetof(CPUState, regs[5]) }, | |
1625 | { "esi", offsetof(CPUState, regs[6]) }, | |
01038d2a | 1626 | { "edi", offsetof(CPUState, regs[7]) }, |
92a31b1f FB |
1627 | #ifdef TARGET_X86_64 |
1628 | { "r8", offsetof(CPUState, regs[8]) }, | |
1629 | { "r9", offsetof(CPUState, regs[9]) }, | |
1630 | { "r10", offsetof(CPUState, regs[10]) }, | |
1631 | { "r11", offsetof(CPUState, regs[11]) }, | |
1632 | { "r12", offsetof(CPUState, regs[12]) }, | |
1633 | { "r13", offsetof(CPUState, regs[13]) }, | |
1634 | { "r14", offsetof(CPUState, regs[14]) }, | |
1635 | { "r15", offsetof(CPUState, regs[15]) }, | |
1636 | #endif | |
9307c4c1 | 1637 | { "eflags", offsetof(CPUState, eflags) }, |
57206fd4 FB |
1638 | { "eip", offsetof(CPUState, eip) }, |
1639 | SEG("cs", R_CS) | |
1640 | SEG("ds", R_DS) | |
1641 | SEG("es", R_ES) | |
01038d2a | 1642 | SEG("ss", R_SS) |
57206fd4 FB |
1643 | SEG("fs", R_FS) |
1644 | SEG("gs", R_GS) | |
1645 | { "pc", 0, monitor_get_pc, }, | |
a541f297 | 1646 | #elif defined(TARGET_PPC) |
ff937dba | 1647 | /* General purpose registers */ |
a541f297 FB |
1648 | { "r0", offsetof(CPUState, gpr[0]) }, |
1649 | { "r1", offsetof(CPUState, gpr[1]) }, | |
1650 | { "r2", offsetof(CPUState, gpr[2]) }, | |
1651 | { "r3", offsetof(CPUState, gpr[3]) }, | |
1652 | { "r4", offsetof(CPUState, gpr[4]) }, | |
1653 | { "r5", offsetof(CPUState, gpr[5]) }, | |
1654 | { "r6", offsetof(CPUState, gpr[6]) }, | |
1655 | { "r7", offsetof(CPUState, gpr[7]) }, | |
1656 | { "r8", offsetof(CPUState, gpr[8]) }, | |
1657 | { "r9", offsetof(CPUState, gpr[9]) }, | |
1658 | { "r10", offsetof(CPUState, gpr[10]) }, | |
1659 | { "r11", offsetof(CPUState, gpr[11]) }, | |
1660 | { "r12", offsetof(CPUState, gpr[12]) }, | |
1661 | { "r13", offsetof(CPUState, gpr[13]) }, | |
1662 | { "r14", offsetof(CPUState, gpr[14]) }, | |
1663 | { "r15", offsetof(CPUState, gpr[15]) }, | |
1664 | { "r16", offsetof(CPUState, gpr[16]) }, | |
1665 | { "r17", offsetof(CPUState, gpr[17]) }, | |
1666 | { "r18", offsetof(CPUState, gpr[18]) }, | |
1667 | { "r19", offsetof(CPUState, gpr[19]) }, | |
1668 | { "r20", offsetof(CPUState, gpr[20]) }, | |
1669 | { "r21", offsetof(CPUState, gpr[21]) }, | |
1670 | { "r22", offsetof(CPUState, gpr[22]) }, | |
1671 | { "r23", offsetof(CPUState, gpr[23]) }, | |
1672 | { "r24", offsetof(CPUState, gpr[24]) }, | |
1673 | { "r25", offsetof(CPUState, gpr[25]) }, | |
1674 | { "r26", offsetof(CPUState, gpr[26]) }, | |
1675 | { "r27", offsetof(CPUState, gpr[27]) }, | |
1676 | { "r28", offsetof(CPUState, gpr[28]) }, | |
1677 | { "r29", offsetof(CPUState, gpr[29]) }, | |
1678 | { "r30", offsetof(CPUState, gpr[30]) }, | |
1679 | { "r31", offsetof(CPUState, gpr[31]) }, | |
ff937dba JM |
1680 | /* Floating point registers */ |
1681 | { "f0", offsetof(CPUState, fpr[0]) }, | |
1682 | { "f1", offsetof(CPUState, fpr[1]) }, | |
1683 | { "f2", offsetof(CPUState, fpr[2]) }, | |
1684 | { "f3", offsetof(CPUState, fpr[3]) }, | |
1685 | { "f4", offsetof(CPUState, fpr[4]) }, | |
1686 | { "f5", offsetof(CPUState, fpr[5]) }, | |
1687 | { "f6", offsetof(CPUState, fpr[6]) }, | |
1688 | { "f7", offsetof(CPUState, fpr[7]) }, | |
1689 | { "f8", offsetof(CPUState, fpr[8]) }, | |
1690 | { "f9", offsetof(CPUState, fpr[9]) }, | |
1691 | { "f10", offsetof(CPUState, fpr[10]) }, | |
1692 | { "f11", offsetof(CPUState, fpr[11]) }, | |
1693 | { "f12", offsetof(CPUState, fpr[12]) }, | |
1694 | { "f13", offsetof(CPUState, fpr[13]) }, | |
1695 | { "f14", offsetof(CPUState, fpr[14]) }, | |
1696 | { "f15", offsetof(CPUState, fpr[15]) }, | |
1697 | { "f16", offsetof(CPUState, fpr[16]) }, | |
1698 | { "f17", offsetof(CPUState, fpr[17]) }, | |
1699 | { "f18", offsetof(CPUState, fpr[18]) }, | |
1700 | { "f19", offsetof(CPUState, fpr[19]) }, | |
1701 | { "f20", offsetof(CPUState, fpr[20]) }, | |
1702 | { "f21", offsetof(CPUState, fpr[21]) }, | |
1703 | { "f22", offsetof(CPUState, fpr[22]) }, | |
1704 | { "f23", offsetof(CPUState, fpr[23]) }, | |
1705 | { "f24", offsetof(CPUState, fpr[24]) }, | |
1706 | { "f25", offsetof(CPUState, fpr[25]) }, | |
1707 | { "f26", offsetof(CPUState, fpr[26]) }, | |
1708 | { "f27", offsetof(CPUState, fpr[27]) }, | |
1709 | { "f28", offsetof(CPUState, fpr[28]) }, | |
1710 | { "f29", offsetof(CPUState, fpr[29]) }, | |
1711 | { "f30", offsetof(CPUState, fpr[30]) }, | |
1712 | { "f31", offsetof(CPUState, fpr[31]) }, | |
1713 | { "fpscr", offsetof(CPUState, fpscr) }, | |
1714 | /* Next instruction pointer */ | |
57206fd4 | 1715 | { "nip|pc", offsetof(CPUState, nip) }, |
a541f297 FB |
1716 | { "lr", offsetof(CPUState, lr) }, |
1717 | { "ctr", offsetof(CPUState, ctr) }, | |
9fddaa0c | 1718 | { "decr", 0, &monitor_get_decr, }, |
a541f297 | 1719 | { "ccr", 0, &monitor_get_ccr, }, |
ff937dba | 1720 | /* Machine state register */ |
a541f297 FB |
1721 | { "msr", 0, &monitor_get_msr, }, |
1722 | { "xer", 0, &monitor_get_xer, }, | |
9fddaa0c FB |
1723 | { "tbu", 0, &monitor_get_tbu, }, |
1724 | { "tbl", 0, &monitor_get_tbl, }, | |
ff937dba JM |
1725 | #if defined(TARGET_PPC64) |
1726 | /* Address space register */ | |
1727 | { "asr", offsetof(CPUState, asr) }, | |
1728 | #endif | |
1729 | /* Segment registers */ | |
a541f297 FB |
1730 | { "sdr1", offsetof(CPUState, sdr1) }, |
1731 | { "sr0", offsetof(CPUState, sr[0]) }, | |
1732 | { "sr1", offsetof(CPUState, sr[1]) }, | |
1733 | { "sr2", offsetof(CPUState, sr[2]) }, | |
1734 | { "sr3", offsetof(CPUState, sr[3]) }, | |
1735 | { "sr4", offsetof(CPUState, sr[4]) }, | |
1736 | { "sr5", offsetof(CPUState, sr[5]) }, | |
1737 | { "sr6", offsetof(CPUState, sr[6]) }, | |
1738 | { "sr7", offsetof(CPUState, sr[7]) }, | |
1739 | { "sr8", offsetof(CPUState, sr[8]) }, | |
1740 | { "sr9", offsetof(CPUState, sr[9]) }, | |
1741 | { "sr10", offsetof(CPUState, sr[10]) }, | |
1742 | { "sr11", offsetof(CPUState, sr[11]) }, | |
1743 | { "sr12", offsetof(CPUState, sr[12]) }, | |
1744 | { "sr13", offsetof(CPUState, sr[13]) }, | |
1745 | { "sr14", offsetof(CPUState, sr[14]) }, | |
1746 | { "sr15", offsetof(CPUState, sr[15]) }, | |
1747 | /* Too lazy to put BATs and SPRs ... */ | |
e95c8d51 FB |
1748 | #elif defined(TARGET_SPARC) |
1749 | { "g0", offsetof(CPUState, gregs[0]) }, | |
1750 | { "g1", offsetof(CPUState, gregs[1]) }, | |
1751 | { "g2", offsetof(CPUState, gregs[2]) }, | |
1752 | { "g3", offsetof(CPUState, gregs[3]) }, | |
1753 | { "g4", offsetof(CPUState, gregs[4]) }, | |
1754 | { "g5", offsetof(CPUState, gregs[5]) }, | |
1755 | { "g6", offsetof(CPUState, gregs[6]) }, | |
1756 | { "g7", offsetof(CPUState, gregs[7]) }, | |
1757 | { "o0", 0, monitor_get_reg }, | |
1758 | { "o1", 1, monitor_get_reg }, | |
1759 | { "o2", 2, monitor_get_reg }, | |
1760 | { "o3", 3, monitor_get_reg }, | |
1761 | { "o4", 4, monitor_get_reg }, | |
1762 | { "o5", 5, monitor_get_reg }, | |
1763 | { "o6", 6, monitor_get_reg }, | |
1764 | { "o7", 7, monitor_get_reg }, | |
1765 | { "l0", 8, monitor_get_reg }, | |
1766 | { "l1", 9, monitor_get_reg }, | |
1767 | { "l2", 10, monitor_get_reg }, | |
1768 | { "l3", 11, monitor_get_reg }, | |
1769 | { "l4", 12, monitor_get_reg }, | |
1770 | { "l5", 13, monitor_get_reg }, | |
1771 | { "l6", 14, monitor_get_reg }, | |
1772 | { "l7", 15, monitor_get_reg }, | |
1773 | { "i0", 16, monitor_get_reg }, | |
1774 | { "i1", 17, monitor_get_reg }, | |
1775 | { "i2", 18, monitor_get_reg }, | |
1776 | { "i3", 19, monitor_get_reg }, | |
1777 | { "i4", 20, monitor_get_reg }, | |
1778 | { "i5", 21, monitor_get_reg }, | |
1779 | { "i6", 22, monitor_get_reg }, | |
1780 | { "i7", 23, monitor_get_reg }, | |
1781 | { "pc", offsetof(CPUState, pc) }, | |
1782 | { "npc", offsetof(CPUState, npc) }, | |
1783 | { "y", offsetof(CPUState, y) }, | |
7b936c0c | 1784 | #ifndef TARGET_SPARC64 |
e95c8d51 FB |
1785 | { "psr", 0, &monitor_get_psr, }, |
1786 | { "wim", offsetof(CPUState, wim) }, | |
7b936c0c | 1787 | #endif |
e95c8d51 FB |
1788 | { "tbr", offsetof(CPUState, tbr) }, |
1789 | { "fsr", offsetof(CPUState, fsr) }, | |
1790 | { "f0", offsetof(CPUState, fpr[0]) }, | |
1791 | { "f1", offsetof(CPUState, fpr[1]) }, | |
1792 | { "f2", offsetof(CPUState, fpr[2]) }, | |
1793 | { "f3", offsetof(CPUState, fpr[3]) }, | |
1794 | { "f4", offsetof(CPUState, fpr[4]) }, | |
1795 | { "f5", offsetof(CPUState, fpr[5]) }, | |
1796 | { "f6", offsetof(CPUState, fpr[6]) }, | |
1797 | { "f7", offsetof(CPUState, fpr[7]) }, | |
1798 | { "f8", offsetof(CPUState, fpr[8]) }, | |
1799 | { "f9", offsetof(CPUState, fpr[9]) }, | |
1800 | { "f10", offsetof(CPUState, fpr[10]) }, | |
1801 | { "f11", offsetof(CPUState, fpr[11]) }, | |
1802 | { "f12", offsetof(CPUState, fpr[12]) }, | |
1803 | { "f13", offsetof(CPUState, fpr[13]) }, | |
1804 | { "f14", offsetof(CPUState, fpr[14]) }, | |
1805 | { "f15", offsetof(CPUState, fpr[15]) }, | |
1806 | { "f16", offsetof(CPUState, fpr[16]) }, | |
1807 | { "f17", offsetof(CPUState, fpr[17]) }, | |
1808 | { "f18", offsetof(CPUState, fpr[18]) }, | |
1809 | { "f19", offsetof(CPUState, fpr[19]) }, | |
1810 | { "f20", offsetof(CPUState, fpr[20]) }, | |
1811 | { "f21", offsetof(CPUState, fpr[21]) }, | |
1812 | { "f22", offsetof(CPUState, fpr[22]) }, | |
1813 | { "f23", offsetof(CPUState, fpr[23]) }, | |
1814 | { "f24", offsetof(CPUState, fpr[24]) }, | |
1815 | { "f25", offsetof(CPUState, fpr[25]) }, | |
1816 | { "f26", offsetof(CPUState, fpr[26]) }, | |
1817 | { "f27", offsetof(CPUState, fpr[27]) }, | |
1818 | { "f28", offsetof(CPUState, fpr[28]) }, | |
1819 | { "f29", offsetof(CPUState, fpr[29]) }, | |
1820 | { "f30", offsetof(CPUState, fpr[30]) }, | |
1821 | { "f31", offsetof(CPUState, fpr[31]) }, | |
7b936c0c FB |
1822 | #ifdef TARGET_SPARC64 |
1823 | { "f32", offsetof(CPUState, fpr[32]) }, | |
1824 | { "f34", offsetof(CPUState, fpr[34]) }, | |
1825 | { "f36", offsetof(CPUState, fpr[36]) }, | |
1826 | { "f38", offsetof(CPUState, fpr[38]) }, | |
1827 | { "f40", offsetof(CPUState, fpr[40]) }, | |
1828 | { "f42", offsetof(CPUState, fpr[42]) }, | |
1829 | { "f44", offsetof(CPUState, fpr[44]) }, | |
1830 | { "f46", offsetof(CPUState, fpr[46]) }, | |
1831 | { "f48", offsetof(CPUState, fpr[48]) }, | |
1832 | { "f50", offsetof(CPUState, fpr[50]) }, | |
1833 | { "f52", offsetof(CPUState, fpr[52]) }, | |
1834 | { "f54", offsetof(CPUState, fpr[54]) }, | |
1835 | { "f56", offsetof(CPUState, fpr[56]) }, | |
1836 | { "f58", offsetof(CPUState, fpr[58]) }, | |
1837 | { "f60", offsetof(CPUState, fpr[60]) }, | |
1838 | { "f62", offsetof(CPUState, fpr[62]) }, | |
1839 | { "asi", offsetof(CPUState, asi) }, | |
1840 | { "pstate", offsetof(CPUState, pstate) }, | |
1841 | { "cansave", offsetof(CPUState, cansave) }, | |
1842 | { "canrestore", offsetof(CPUState, canrestore) }, | |
1843 | { "otherwin", offsetof(CPUState, otherwin) }, | |
1844 | { "wstate", offsetof(CPUState, wstate) }, | |
1845 | { "cleanwin", offsetof(CPUState, cleanwin) }, | |
1846 | { "fprs", offsetof(CPUState, fprs) }, | |
1847 | #endif | |
9307c4c1 FB |
1848 | #endif |
1849 | { NULL }, | |
1850 | }; | |
1851 | ||
5fafdf24 | 1852 | static void expr_error(const char *fmt) |
9dc39cba | 1853 | { |
9307c4c1 FB |
1854 | term_printf(fmt); |
1855 | term_printf("\n"); | |
1856 | longjmp(expr_env, 1); | |
1857 | } | |
1858 | ||
6a00d601 | 1859 | /* return 0 if OK, -1 if not found, -2 if no CPU defined */ |
92a31b1f | 1860 | static int get_monitor_def(target_long *pval, const char *name) |
9307c4c1 FB |
1861 | { |
1862 | MonitorDef *md; | |
92a31b1f FB |
1863 | void *ptr; |
1864 | ||
9307c4c1 FB |
1865 | for(md = monitor_defs; md->name != NULL; md++) { |
1866 | if (compare_cmd(name, md->name)) { | |
1867 | if (md->get_value) { | |
e95c8d51 | 1868 | *pval = md->get_value(md, md->offset); |
9307c4c1 | 1869 | } else { |
6a00d601 FB |
1870 | CPUState *env = mon_get_cpu(); |
1871 | if (!env) | |
1872 | return -2; | |
1873 | ptr = (uint8_t *)env + md->offset; | |
92a31b1f FB |
1874 | switch(md->type) { |
1875 | case MD_I32: | |
1876 | *pval = *(int32_t *)ptr; | |
1877 | break; | |
1878 | case MD_TLONG: | |
1879 | *pval = *(target_long *)ptr; | |
1880 | break; | |
1881 | default: | |
1882 | *pval = 0; | |
1883 | break; | |
1884 | } | |
9307c4c1 FB |
1885 | } |
1886 | return 0; | |
1887 | } | |
1888 | } | |
1889 | return -1; | |
1890 | } | |
1891 | ||
1892 | static void next(void) | |
1893 | { | |
1894 | if (pch != '\0') { | |
1895 | pch++; | |
1896 | while (isspace(*pch)) | |
1897 | pch++; | |
1898 | } | |
1899 | } | |
1900 | ||
c2efc95d | 1901 | static int64_t expr_sum(void); |
9307c4c1 | 1902 | |
c2efc95d | 1903 | static int64_t expr_unary(void) |
9307c4c1 | 1904 | { |
c2efc95d | 1905 | int64_t n; |
9307c4c1 | 1906 | char *p; |
6a00d601 | 1907 | int ret; |
9307c4c1 FB |
1908 | |
1909 | switch(*pch) { | |
1910 | case '+': | |
1911 | next(); | |
1912 | n = expr_unary(); | |
1913 | break; | |
1914 | case '-': | |
1915 | next(); | |
1916 | n = -expr_unary(); | |
1917 | break; | |
1918 | case '~': | |
1919 | next(); | |
1920 | n = ~expr_unary(); | |
1921 | break; | |
1922 | case '(': | |
1923 | next(); | |
1924 | n = expr_sum(); | |
1925 | if (*pch != ')') { | |
1926 | expr_error("')' expected"); | |
1927 | } | |
1928 | next(); | |
1929 | break; | |
81d0912d FB |
1930 | case '\'': |
1931 | pch++; | |
1932 | if (*pch == '\0') | |
1933 | expr_error("character constant expected"); | |
1934 | n = *pch; | |
1935 | pch++; | |
1936 | if (*pch != '\'') | |
1937 | expr_error("missing terminating \' character"); | |
1938 | next(); | |
1939 | break; | |
9307c4c1 FB |
1940 | case '$': |
1941 | { | |
1942 | char buf[128], *q; | |
69b34976 | 1943 | target_long reg=0; |
3b46e624 | 1944 | |
9307c4c1 FB |
1945 | pch++; |
1946 | q = buf; | |
1947 | while ((*pch >= 'a' && *pch <= 'z') || | |
1948 | (*pch >= 'A' && *pch <= 'Z') || | |
1949 | (*pch >= '0' && *pch <= '9') || | |
57206fd4 | 1950 | *pch == '_' || *pch == '.') { |
9307c4c1 FB |
1951 | if ((q - buf) < sizeof(buf) - 1) |
1952 | *q++ = *pch; | |
1953 | pch++; | |
1954 | } | |
1955 | while (isspace(*pch)) | |
1956 | pch++; | |
1957 | *q = 0; | |
7743e588 | 1958 | ret = get_monitor_def(®, buf); |
6a00d601 | 1959 | if (ret == -1) |
9307c4c1 | 1960 | expr_error("unknown register"); |
5fafdf24 | 1961 | else if (ret == -2) |
6a00d601 | 1962 | expr_error("no cpu defined"); |
7743e588 | 1963 | n = reg; |
9307c4c1 FB |
1964 | } |
1965 | break; | |
1966 | case '\0': | |
1967 | expr_error("unexpected end of expression"); | |
1968 | n = 0; | |
1969 | break; | |
1970 | default: | |
7743e588 | 1971 | #if TARGET_PHYS_ADDR_BITS > 32 |
4f4fbf77 FB |
1972 | n = strtoull(pch, &p, 0); |
1973 | #else | |
9307c4c1 | 1974 | n = strtoul(pch, &p, 0); |
4f4fbf77 | 1975 | #endif |
9307c4c1 FB |
1976 | if (pch == p) { |
1977 | expr_error("invalid char in expression"); | |
1978 | } | |
1979 | pch = p; | |
1980 | while (isspace(*pch)) | |
1981 | pch++; | |
1982 | break; | |
1983 | } | |
1984 | return n; | |
1985 | } | |
1986 | ||
1987 | ||
c2efc95d | 1988 | static int64_t expr_prod(void) |
9307c4c1 | 1989 | { |
c2efc95d | 1990 | int64_t val, val2; |
92a31b1f | 1991 | int op; |
3b46e624 | 1992 | |
9307c4c1 FB |
1993 | val = expr_unary(); |
1994 | for(;;) { | |
1995 | op = *pch; | |
1996 | if (op != '*' && op != '/' && op != '%') | |
1997 | break; | |
1998 | next(); | |
1999 | val2 = expr_unary(); | |
2000 | switch(op) { | |
2001 | default: | |
2002 | case '*': | |
2003 | val *= val2; | |
2004 | break; | |
2005 | case '/': | |
2006 | case '%': | |
5fafdf24 | 2007 | if (val2 == 0) |
5b60212f | 2008 | expr_error("division by zero"); |
9307c4c1 FB |
2009 | if (op == '/') |
2010 | val /= val2; | |
2011 | else | |
2012 | val %= val2; | |
2013 | break; | |
2014 | } | |
2015 | } | |
2016 | return val; | |
2017 | } | |
2018 | ||
c2efc95d | 2019 | static int64_t expr_logic(void) |
9307c4c1 | 2020 | { |
c2efc95d | 2021 | int64_t val, val2; |
92a31b1f | 2022 | int op; |
9307c4c1 FB |
2023 | |
2024 | val = expr_prod(); | |
2025 | for(;;) { | |
2026 | op = *pch; | |
2027 | if (op != '&' && op != '|' && op != '^') | |
2028 | break; | |
2029 | next(); | |
2030 | val2 = expr_prod(); | |
2031 | switch(op) { | |
2032 | default: | |
2033 | case '&': | |
2034 | val &= val2; | |
2035 | break; | |
2036 | case '|': | |
2037 | val |= val2; | |
2038 | break; | |
2039 | case '^': | |
2040 | val ^= val2; | |
2041 | break; | |
2042 | } | |
2043 | } | |
2044 | return val; | |
2045 | } | |
2046 | ||
c2efc95d | 2047 | static int64_t expr_sum(void) |
9307c4c1 | 2048 | { |
c2efc95d | 2049 | int64_t val, val2; |
92a31b1f | 2050 | int op; |
9307c4c1 FB |
2051 | |
2052 | val = expr_logic(); | |
2053 | for(;;) { | |
2054 | op = *pch; | |
2055 | if (op != '+' && op != '-') | |
2056 | break; | |
2057 | next(); | |
2058 | val2 = expr_logic(); | |
2059 | if (op == '+') | |
2060 | val += val2; | |
2061 | else | |
2062 | val -= val2; | |
2063 | } | |
2064 | return val; | |
2065 | } | |
2066 | ||
c2efc95d | 2067 | static int get_expr(int64_t *pval, const char **pp) |
9307c4c1 FB |
2068 | { |
2069 | pch = *pp; | |
2070 | if (setjmp(expr_env)) { | |
2071 | *pp = pch; | |
2072 | return -1; | |
2073 | } | |
2074 | while (isspace(*pch)) | |
2075 | pch++; | |
2076 | *pval = expr_sum(); | |
2077 | *pp = pch; | |
2078 | return 0; | |
2079 | } | |
2080 | ||
2081 | static int get_str(char *buf, int buf_size, const char **pp) | |
2082 | { | |
2083 | const char *p; | |
2084 | char *q; | |
2085 | int c; | |
2086 | ||
81d0912d | 2087 | q = buf; |
9307c4c1 FB |
2088 | p = *pp; |
2089 | while (isspace(*p)) | |
2090 | p++; | |
2091 | if (*p == '\0') { | |
2092 | fail: | |
81d0912d | 2093 | *q = '\0'; |
9307c4c1 FB |
2094 | *pp = p; |
2095 | return -1; | |
2096 | } | |
9307c4c1 FB |
2097 | if (*p == '\"') { |
2098 | p++; | |
2099 | while (*p != '\0' && *p != '\"') { | |
2100 | if (*p == '\\') { | |
2101 | p++; | |
2102 | c = *p++; | |
2103 | switch(c) { | |
2104 | case 'n': | |
2105 | c = '\n'; | |
2106 | break; | |
2107 | case 'r': | |
2108 | c = '\r'; | |
2109 | break; | |
2110 | case '\\': | |
2111 | case '\'': | |
2112 | case '\"': | |
2113 | break; | |
2114 | default: | |
2115 | qemu_printf("unsupported escape code: '\\%c'\n", c); | |
2116 | goto fail; | |
2117 | } | |
2118 | if ((q - buf) < buf_size - 1) { | |
2119 | *q++ = c; | |
2120 | } | |
2121 | } else { | |
2122 | if ((q - buf) < buf_size - 1) { | |
2123 | *q++ = *p; | |
2124 | } | |
2125 | p++; | |
2126 | } | |
2127 | } | |
2128 | if (*p != '\"') { | |
5b60212f | 2129 | qemu_printf("unterminated string\n"); |
9307c4c1 FB |
2130 | goto fail; |
2131 | } | |
2132 | p++; | |
2133 | } else { | |
2134 | while (*p != '\0' && !isspace(*p)) { | |
2135 | if ((q - buf) < buf_size - 1) { | |
2136 | *q++ = *p; | |
2137 | } | |
2138 | p++; | |
2139 | } | |
9307c4c1 | 2140 | } |
81d0912d | 2141 | *q = '\0'; |
9307c4c1 FB |
2142 | *pp = p; |
2143 | return 0; | |
2144 | } | |
2145 | ||
2146 | static int default_fmt_format = 'x'; | |
2147 | static int default_fmt_size = 4; | |
2148 | ||
2149 | #define MAX_ARGS 16 | |
2150 | ||
7e2515e8 | 2151 | static void monitor_handle_command(const char *cmdline) |
9307c4c1 FB |
2152 | { |
2153 | const char *p, *pstart, *typestr; | |
2154 | char *q; | |
2155 | int c, nb_args, len, i, has_arg; | |
9dc39cba | 2156 | term_cmd_t *cmd; |
9307c4c1 FB |
2157 | char cmdname[256]; |
2158 | char buf[1024]; | |
2159 | void *str_allocated[MAX_ARGS]; | |
2160 | void *args[MAX_ARGS]; | |
9dc39cba FB |
2161 | |
2162 | #ifdef DEBUG | |
2163 | term_printf("command='%s'\n", cmdline); | |
2164 | #endif | |
3b46e624 | 2165 | |
9307c4c1 | 2166 | /* extract the command name */ |
9dc39cba | 2167 | p = cmdline; |
9307c4c1 FB |
2168 | q = cmdname; |
2169 | while (isspace(*p)) | |
2170 | p++; | |
2171 | if (*p == '\0') | |
2172 | return; | |
2173 | pstart = p; | |
2174 | while (*p != '\0' && *p != '/' && !isspace(*p)) | |
2175 | p++; | |
2176 | len = p - pstart; | |
2177 | if (len > sizeof(cmdname) - 1) | |
2178 | len = sizeof(cmdname) - 1; | |
2179 | memcpy(cmdname, pstart, len); | |
2180 | cmdname[len] = '\0'; | |
3b46e624 | 2181 | |
9307c4c1 FB |
2182 | /* find the command */ |
2183 | for(cmd = term_cmds; cmd->name != NULL; cmd++) { | |
5fafdf24 | 2184 | if (compare_cmd(cmdname, cmd->name)) |
9307c4c1 FB |
2185 | goto found; |
2186 | } | |
2187 | term_printf("unknown command: '%s'\n", cmdname); | |
2188 | return; | |
2189 | found: | |
2190 | ||
2191 | for(i = 0; i < MAX_ARGS; i++) | |
2192 | str_allocated[i] = NULL; | |
3b46e624 | 2193 | |
9307c4c1 FB |
2194 | /* parse the parameters */ |
2195 | typestr = cmd->args_type; | |
2196 | nb_args = 0; | |
9dc39cba | 2197 | for(;;) { |
9307c4c1 FB |
2198 | c = *typestr; |
2199 | if (c == '\0') | |
9dc39cba | 2200 | break; |
9307c4c1 FB |
2201 | typestr++; |
2202 | switch(c) { | |
2203 | case 'F': | |
81d0912d | 2204 | case 'B': |
9307c4c1 FB |
2205 | case 's': |
2206 | { | |
2207 | int ret; | |
2208 | char *str; | |
3b46e624 | 2209 | |
5fafdf24 | 2210 | while (isspace(*p)) |
9307c4c1 FB |
2211 | p++; |
2212 | if (*typestr == '?') { | |
2213 | typestr++; | |
2214 | if (*p == '\0') { | |
2215 | /* no optional string: NULL argument */ | |
2216 | str = NULL; | |
2217 | goto add_str; | |
2218 | } | |
2219 | } | |
2220 | ret = get_str(buf, sizeof(buf), &p); | |
2221 | if (ret < 0) { | |
81d0912d FB |
2222 | switch(c) { |
2223 | case 'F': | |
9307c4c1 | 2224 | term_printf("%s: filename expected\n", cmdname); |
81d0912d FB |
2225 | break; |
2226 | case 'B': | |
2227 | term_printf("%s: block device name expected\n", cmdname); | |
2228 | break; | |
2229 | default: | |
9307c4c1 | 2230 | term_printf("%s: string expected\n", cmdname); |
81d0912d FB |
2231 | break; |
2232 | } | |
9307c4c1 FB |
2233 | goto fail; |
2234 | } | |
2235 | str = qemu_malloc(strlen(buf) + 1); | |
2236 | strcpy(str, buf); | |
2237 | str_allocated[nb_args] = str; | |
2238 | add_str: | |
2239 | if (nb_args >= MAX_ARGS) { | |
2240 | error_args: | |
2241 | term_printf("%s: too many arguments\n", cmdname); | |
2242 | goto fail; | |
2243 | } | |
2244 | args[nb_args++] = str; | |
2245 | } | |
9dc39cba | 2246 | break; |
9307c4c1 FB |
2247 | case '/': |
2248 | { | |
2249 | int count, format, size; | |
3b46e624 | 2250 | |
9307c4c1 FB |
2251 | while (isspace(*p)) |
2252 | p++; | |
2253 | if (*p == '/') { | |
2254 | /* format found */ | |
2255 | p++; | |
2256 | count = 1; | |
2257 | if (isdigit(*p)) { | |
2258 | count = 0; | |
2259 | while (isdigit(*p)) { | |
2260 | count = count * 10 + (*p - '0'); | |
2261 | p++; | |
2262 | } | |
2263 | } | |
2264 | size = -1; | |
2265 | format = -1; | |
2266 | for(;;) { | |
2267 | switch(*p) { | |
2268 | case 'o': | |
2269 | case 'd': | |
2270 | case 'u': | |
2271 | case 'x': | |
2272 | case 'i': | |
2273 | case 'c': | |
2274 | format = *p++; | |
2275 | break; | |
2276 | case 'b': | |
2277 | size = 1; | |
2278 | p++; | |
2279 | break; | |
2280 | case 'h': | |
2281 | size = 2; | |
2282 | p++; | |
2283 | break; | |
2284 | case 'w': | |
2285 | size = 4; | |
2286 | p++; | |
2287 | break; | |
2288 | case 'g': | |
2289 | case 'L': | |
2290 | size = 8; | |
2291 | p++; | |
2292 | break; | |
2293 | default: | |
2294 | goto next; | |
2295 | } | |
2296 | } | |
2297 | next: | |
2298 | if (*p != '\0' && !isspace(*p)) { | |
2299 | term_printf("invalid char in format: '%c'\n", *p); | |
2300 | goto fail; | |
2301 | } | |
9307c4c1 FB |
2302 | if (format < 0) |
2303 | format = default_fmt_format; | |
4c27ba27 FB |
2304 | if (format != 'i') { |
2305 | /* for 'i', not specifying a size gives -1 as size */ | |
2306 | if (size < 0) | |
2307 | size = default_fmt_size; | |
2308 | } | |
9307c4c1 FB |
2309 | default_fmt_size = size; |
2310 | default_fmt_format = format; | |
2311 | } else { | |
2312 | count = 1; | |
2313 | format = default_fmt_format; | |
4c27ba27 FB |
2314 | if (format != 'i') { |
2315 | size = default_fmt_size; | |
2316 | } else { | |
2317 | size = -1; | |
2318 | } | |
9307c4c1 FB |
2319 | } |
2320 | if (nb_args + 3 > MAX_ARGS) | |
2321 | goto error_args; | |
1c5bf3bf JM |
2322 | args[nb_args++] = (void*)(long)count; |
2323 | args[nb_args++] = (void*)(long)format; | |
2324 | args[nb_args++] = (void*)(long)size; | |
9307c4c1 | 2325 | } |
9dc39cba | 2326 | break; |
9307c4c1 | 2327 | case 'i': |
92a31b1f | 2328 | case 'l': |
9307c4c1 | 2329 | { |
c2efc95d | 2330 | int64_t val; |
7743e588 | 2331 | |
5fafdf24 | 2332 | while (isspace(*p)) |
9307c4c1 | 2333 | p++; |
3440557b | 2334 | if (*typestr == '?' || *typestr == '.') { |
3440557b FB |
2335 | if (*typestr == '?') { |
2336 | if (*p == '\0') | |
2337 | has_arg = 0; | |
2338 | else | |
2339 | has_arg = 1; | |
2340 | } else { | |
2341 | if (*p == '.') { | |
2342 | p++; | |
5fafdf24 | 2343 | while (isspace(*p)) |
3440557b FB |
2344 | p++; |
2345 | has_arg = 1; | |
2346 | } else { | |
2347 | has_arg = 0; | |
2348 | } | |
2349 | } | |
13224a87 | 2350 | typestr++; |
9307c4c1 FB |
2351 | if (nb_args >= MAX_ARGS) |
2352 | goto error_args; | |
1c5bf3bf | 2353 | args[nb_args++] = (void *)(long)has_arg; |
9307c4c1 FB |
2354 | if (!has_arg) { |
2355 | if (nb_args >= MAX_ARGS) | |
2356 | goto error_args; | |
2357 | val = -1; | |
2358 | goto add_num; | |
2359 | } | |
2360 | } | |
2361 | if (get_expr(&val, &p)) | |
2362 | goto fail; | |
2363 | add_num: | |
92a31b1f FB |
2364 | if (c == 'i') { |
2365 | if (nb_args >= MAX_ARGS) | |
2366 | goto error_args; | |
1c5bf3bf | 2367 | args[nb_args++] = (void *)(long)val; |
92a31b1f FB |
2368 | } else { |
2369 | if ((nb_args + 1) >= MAX_ARGS) | |
2370 | goto error_args; | |
7743e588 | 2371 | #if TARGET_PHYS_ADDR_BITS > 32 |
1c5bf3bf | 2372 | args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff); |
92a31b1f FB |
2373 | #else |
2374 | args[nb_args++] = (void *)0; | |
2375 | #endif | |
1c5bf3bf | 2376 | args[nb_args++] = (void *)(long)(val & 0xffffffff); |
92a31b1f | 2377 | } |
9307c4c1 FB |
2378 | } |
2379 | break; | |
2380 | case '-': | |
2381 | { | |
2382 | int has_option; | |
2383 | /* option */ | |
3b46e624 | 2384 | |
9307c4c1 FB |
2385 | c = *typestr++; |
2386 | if (c == '\0') | |
2387 | goto bad_type; | |
5fafdf24 | 2388 | while (isspace(*p)) |
9307c4c1 FB |
2389 | p++; |
2390 | has_option = 0; | |
2391 | if (*p == '-') { | |
2392 | p++; | |
2393 | if (*p != c) { | |
5fafdf24 | 2394 | term_printf("%s: unsupported option -%c\n", |
9307c4c1 FB |
2395 | cmdname, *p); |
2396 | goto fail; | |
2397 | } | |
2398 | p++; | |
2399 | has_option = 1; | |
2400 | } | |
2401 | if (nb_args >= MAX_ARGS) | |
2402 | goto error_args; | |
1c5bf3bf | 2403 | args[nb_args++] = (void *)(long)has_option; |
9307c4c1 FB |
2404 | } |
2405 | break; | |
2406 | default: | |
2407 | bad_type: | |
2408 | term_printf("%s: unknown type '%c'\n", cmdname, c); | |
2409 | goto fail; | |
2410 | } | |
9dc39cba | 2411 | } |
9307c4c1 FB |
2412 | /* check that all arguments were parsed */ |
2413 | while (isspace(*p)) | |
2414 | p++; | |
2415 | if (*p != '\0') { | |
5fafdf24 | 2416 | term_printf("%s: extraneous characters at the end of line\n", |
9307c4c1 FB |
2417 | cmdname); |
2418 | goto fail; | |
9dc39cba | 2419 | } |
9307c4c1 FB |
2420 | |
2421 | switch(nb_args) { | |
2422 | case 0: | |
2423 | cmd->handler(); | |
2424 | break; | |
2425 | case 1: | |
2426 | cmd->handler(args[0]); | |
2427 | break; | |
2428 | case 2: | |
2429 | cmd->handler(args[0], args[1]); | |
2430 | break; | |
2431 | case 3: | |
2432 | cmd->handler(args[0], args[1], args[2]); | |
2433 | break; | |
2434 | case 4: | |
2435 | cmd->handler(args[0], args[1], args[2], args[3]); | |
2436 | break; | |
2437 | case 5: | |
2438 | cmd->handler(args[0], args[1], args[2], args[3], args[4]); | |
2439 | break; | |
3440557b FB |
2440 | case 6: |
2441 | cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]); | |
2442 | break; | |
ec36b695 FB |
2443 | case 7: |
2444 | cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); | |
2445 | break; | |
9307c4c1 FB |
2446 | default: |
2447 | term_printf("unsupported number of arguments: %d\n", nb_args); | |
2448 | goto fail; | |
9dc39cba | 2449 | } |
9307c4c1 FB |
2450 | fail: |
2451 | for(i = 0; i < MAX_ARGS; i++) | |
2452 | qemu_free(str_allocated[i]); | |
9dc39cba | 2453 | return; |
9dc39cba FB |
2454 | } |
2455 | ||
81d0912d FB |
2456 | static void cmd_completion(const char *name, const char *list) |
2457 | { | |
2458 | const char *p, *pstart; | |
2459 | char cmd[128]; | |
2460 | int len; | |
2461 | ||
2462 | p = list; | |
2463 | for(;;) { | |
2464 | pstart = p; | |
2465 | p = strchr(p, '|'); | |
2466 | if (!p) | |
2467 | p = pstart + strlen(pstart); | |
2468 | len = p - pstart; | |
2469 | if (len > sizeof(cmd) - 2) | |
2470 | len = sizeof(cmd) - 2; | |
2471 | memcpy(cmd, pstart, len); | |
2472 | cmd[len] = '\0'; | |
2473 | if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) { | |
2474 | add_completion(cmd); | |
2475 | } | |
2476 | if (*p == '\0') | |
2477 | break; | |
2478 | p++; | |
2479 | } | |
2480 | } | |
2481 | ||
2482 | static void file_completion(const char *input) | |
2483 | { | |
2484 | DIR *ffs; | |
2485 | struct dirent *d; | |
2486 | char path[1024]; | |
2487 | char file[1024], file_prefix[1024]; | |
2488 | int input_path_len; | |
2489 | const char *p; | |
2490 | ||
5fafdf24 | 2491 | p = strrchr(input, '/'); |
81d0912d FB |
2492 | if (!p) { |
2493 | input_path_len = 0; | |
2494 | pstrcpy(file_prefix, sizeof(file_prefix), input); | |
2495 | strcpy(path, "."); | |
2496 | } else { | |
2497 | input_path_len = p - input + 1; | |
2498 | memcpy(path, input, input_path_len); | |
2499 | if (input_path_len > sizeof(path) - 1) | |
2500 | input_path_len = sizeof(path) - 1; | |
2501 | path[input_path_len] = '\0'; | |
2502 | pstrcpy(file_prefix, sizeof(file_prefix), p + 1); | |
2503 | } | |
2504 | #ifdef DEBUG_COMPLETION | |
2505 | term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix); | |
2506 | #endif | |
2507 | ffs = opendir(path); | |
2508 | if (!ffs) | |
2509 | return; | |
2510 | for(;;) { | |
2511 | struct stat sb; | |
2512 | d = readdir(ffs); | |
2513 | if (!d) | |
2514 | break; | |
2515 | if (strstart(d->d_name, file_prefix, NULL)) { | |
2516 | memcpy(file, input, input_path_len); | |
2517 | strcpy(file + input_path_len, d->d_name); | |
2518 | /* stat the file to find out if it's a directory. | |
2519 | * In that case add a slash to speed up typing long paths | |
2520 | */ | |
2521 | stat(file, &sb); | |
2522 | if(S_ISDIR(sb.st_mode)) | |
2523 | strcat(file, "/"); | |
2524 | add_completion(file); | |
2525 | } | |
2526 | } | |
2527 | closedir(ffs); | |
2528 | } | |
2529 | ||
2530 | static void block_completion_it(void *opaque, const char *name) | |
2531 | { | |
2532 | const char *input = opaque; | |
2533 | ||
2534 | if (input[0] == '\0' || | |
2535 | !strncmp(name, (char *)input, strlen(input))) { | |
2536 | add_completion(name); | |
2537 | } | |
2538 | } | |
2539 | ||
2540 | /* NOTE: this parser is an approximate form of the real command parser */ | |
2541 | static void parse_cmdline(const char *cmdline, | |
2542 | int *pnb_args, char **args) | |
2543 | { | |
2544 | const char *p; | |
2545 | int nb_args, ret; | |
2546 | char buf[1024]; | |
2547 | ||
2548 | p = cmdline; | |
2549 | nb_args = 0; | |
2550 | for(;;) { | |
2551 | while (isspace(*p)) | |
2552 | p++; | |
2553 | if (*p == '\0') | |
2554 | break; | |
2555 | if (nb_args >= MAX_ARGS) | |
2556 | break; | |
2557 | ret = get_str(buf, sizeof(buf), &p); | |
2558 | args[nb_args] = qemu_strdup(buf); | |
2559 | nb_args++; | |
2560 | if (ret < 0) | |
2561 | break; | |
2562 | } | |
2563 | *pnb_args = nb_args; | |
2564 | } | |
2565 | ||
7e2515e8 | 2566 | void readline_find_completion(const char *cmdline) |
81d0912d FB |
2567 | { |
2568 | const char *cmdname; | |
2569 | char *args[MAX_ARGS]; | |
2570 | int nb_args, i, len; | |
2571 | const char *ptype, *str; | |
2572 | term_cmd_t *cmd; | |
64866c3d | 2573 | const KeyDef *key; |
81d0912d FB |
2574 | |
2575 | parse_cmdline(cmdline, &nb_args, args); | |
2576 | #ifdef DEBUG_COMPLETION | |
2577 | for(i = 0; i < nb_args; i++) { | |
2578 | term_printf("arg%d = '%s'\n", i, (char *)args[i]); | |
2579 | } | |
2580 | #endif | |
2581 | ||
2582 | /* if the line ends with a space, it means we want to complete the | |
2583 | next arg */ | |
2584 | len = strlen(cmdline); | |
2585 | if (len > 0 && isspace(cmdline[len - 1])) { | |
2586 | if (nb_args >= MAX_ARGS) | |
2587 | return; | |
2588 | args[nb_args++] = qemu_strdup(""); | |
2589 | } | |
2590 | if (nb_args <= 1) { | |
2591 | /* command completion */ | |
2592 | if (nb_args == 0) | |
2593 | cmdname = ""; | |
2594 | else | |
2595 | cmdname = args[0]; | |
2596 | completion_index = strlen(cmdname); | |
2597 | for(cmd = term_cmds; cmd->name != NULL; cmd++) { | |
2598 | cmd_completion(cmdname, cmd->name); | |
2599 | } | |
2600 | } else { | |
2601 | /* find the command */ | |
2602 | for(cmd = term_cmds; cmd->name != NULL; cmd++) { | |
2603 | if (compare_cmd(args[0], cmd->name)) | |
2604 | goto found; | |
2605 | } | |
2606 | return; | |
2607 | found: | |
2608 | ptype = cmd->args_type; | |
2609 | for(i = 0; i < nb_args - 2; i++) { | |
2610 | if (*ptype != '\0') { | |
2611 | ptype++; | |
2612 | while (*ptype == '?') | |
2613 | ptype++; | |
2614 | } | |
2615 | } | |
2616 | str = args[nb_args - 1]; | |
2617 | switch(*ptype) { | |
2618 | case 'F': | |
2619 | /* file completion */ | |
2620 | completion_index = strlen(str); | |
2621 | file_completion(str); | |
2622 | break; | |
2623 | case 'B': | |
2624 | /* block device name completion */ | |
2625 | completion_index = strlen(str); | |
2626 | bdrv_iterate(block_completion_it, (void *)str); | |
2627 | break; | |
7fe48483 FB |
2628 | case 's': |
2629 | /* XXX: more generic ? */ | |
2630 | if (!strcmp(cmd->name, "info")) { | |
2631 | completion_index = strlen(str); | |
2632 | for(cmd = info_cmds; cmd->name != NULL; cmd++) { | |
2633 | cmd_completion(str, cmd->name); | |
2634 | } | |
64866c3d FB |
2635 | } else if (!strcmp(cmd->name, "sendkey")) { |
2636 | completion_index = strlen(str); | |
2637 | for(key = key_defs; key->name != NULL; key++) { | |
2638 | cmd_completion(str, key->name); | |
2639 | } | |
7fe48483 FB |
2640 | } |
2641 | break; | |
81d0912d FB |
2642 | default: |
2643 | break; | |
2644 | } | |
2645 | } | |
2646 | for(i = 0; i < nb_args; i++) | |
2647 | qemu_free(args[i]); | |
2648 | } | |
2649 | ||
7e2515e8 | 2650 | static int term_can_read(void *opaque) |
9dc39cba | 2651 | { |
7e2515e8 | 2652 | return 128; |
9dc39cba FB |
2653 | } |
2654 | ||
7e2515e8 | 2655 | static void term_read(void *opaque, const uint8_t *buf, int size) |
9dc39cba | 2656 | { |
7e2515e8 FB |
2657 | int i; |
2658 | for(i = 0; i < size; i++) | |
2659 | readline_handle_byte(buf[i]); | |
9dc39cba FB |
2660 | } |
2661 | ||
7e2515e8 | 2662 | static void monitor_handle_command1(void *opaque, const char *cmdline) |
aa455485 | 2663 | { |
7e2515e8 FB |
2664 | monitor_handle_command(cmdline); |
2665 | monitor_start_input(); | |
aa455485 FB |
2666 | } |
2667 | ||
396f9297 | 2668 | void monitor_start_input(void) |
aa455485 | 2669 | { |
7e2515e8 | 2670 | readline_start("(qemu) ", 0, monitor_handle_command1, NULL); |
aa455485 FB |
2671 | } |
2672 | ||
86e94dea TS |
2673 | static void term_event(void *opaque, int event) |
2674 | { | |
2675 | if (event != CHR_EVENT_RESET) | |
2676 | return; | |
2677 | ||
2678 | if (!hide_banner) | |
2679 | term_printf("QEMU %s monitor - type 'help' for more information\n", | |
2680 | QEMU_VERSION); | |
2681 | monitor_start_input(); | |
2682 | } | |
2683 | ||
20d8a3ed TS |
2684 | static int is_first_init = 1; |
2685 | ||
7e2515e8 | 2686 | void monitor_init(CharDriverState *hd, int show_banner) |
aa455485 | 2687 | { |
20d8a3ed TS |
2688 | int i; |
2689 | ||
2690 | if (is_first_init) { | |
c8256f9d AZ |
2691 | key_timer = qemu_new_timer(vm_clock, release_keys, NULL); |
2692 | if (!key_timer) | |
2693 | return; | |
20d8a3ed TS |
2694 | for (i = 0; i < MAX_MON; i++) { |
2695 | monitor_hd[i] = NULL; | |
2696 | } | |
2697 | is_first_init = 0; | |
2698 | } | |
2699 | for (i = 0; i < MAX_MON; i++) { | |
2700 | if (monitor_hd[i] == NULL) { | |
2701 | monitor_hd[i] = hd; | |
2702 | break; | |
2703 | } | |
2704 | } | |
2705 | ||
86e94dea TS |
2706 | hide_banner = !show_banner; |
2707 | ||
e5b0bc44 | 2708 | qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL); |
aa455485 FB |
2709 | } |
2710 | ||
7e2515e8 FB |
2711 | /* XXX: use threads ? */ |
2712 | /* modal monitor readline */ | |
2713 | static int monitor_readline_started; | |
2714 | static char *monitor_readline_buf; | |
2715 | static int monitor_readline_buf_size; | |
81d0912d | 2716 | |
7e2515e8 | 2717 | static void monitor_readline_cb(void *opaque, const char *input) |
81d0912d | 2718 | { |
7e2515e8 FB |
2719 | pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input); |
2720 | monitor_readline_started = 0; | |
81d0912d FB |
2721 | } |
2722 | ||
7e2515e8 FB |
2723 | void monitor_readline(const char *prompt, int is_password, |
2724 | char *buf, int buf_size) | |
9dc39cba | 2725 | { |
20d8a3ed | 2726 | int i; |
bc0129d9 | 2727 | int old_focus[MAX_MON]; |
20d8a3ed | 2728 | |
7e2515e8 | 2729 | if (is_password) { |
bc0129d9 AL |
2730 | for (i = 0; i < MAX_MON; i++) { |
2731 | old_focus[i] = 0; | |
2732 | if (monitor_hd[i]) { | |
2733 | old_focus[i] = monitor_hd[i]->focus; | |
2734 | monitor_hd[i]->focus = 0; | |
20d8a3ed | 2735 | qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS); |
bc0129d9 AL |
2736 | } |
2737 | } | |
9dc39cba | 2738 | } |
bc0129d9 | 2739 | |
7e2515e8 FB |
2740 | readline_start(prompt, is_password, monitor_readline_cb, NULL); |
2741 | monitor_readline_buf = buf; | |
2742 | monitor_readline_buf_size = buf_size; | |
2743 | monitor_readline_started = 1; | |
2744 | while (monitor_readline_started) { | |
2745 | main_loop_wait(10); | |
9dc39cba | 2746 | } |
bc0129d9 AL |
2747 | /* restore original focus */ |
2748 | if (is_password) { | |
2749 | for (i = 0; i < MAX_MON; i++) | |
2750 | if (old_focus[i]) | |
2751 | monitor_hd[i]->focus = old_focus[i]; | |
2752 | } | |
9dc39cba | 2753 | } |