Statistics
| Branch: | Revision:

root / monitor.c @ 1eec614b

History | View | Annotate | Download (75.6 kB)

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