main.c 10.5 KB
Newer Older
1
/*
B
bellard 已提交
2
 *  qemu main
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 
 *  Copyright (c) 2003 Fabrice Bellard
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
B
bellard 已提交
23
#include <string.h>
24
#include <errno.h>
B
bellard 已提交
25
#include <unistd.h>
26

B
bellard 已提交
27
#include "qemu.h"
28

B
bellard 已提交
29
#include "cpu-i386.h"
30

B
bellard 已提交
31
#define DEBUG_LOGFILE "/tmp/qemu.log"
B
bellard 已提交
32 33 34

FILE *logfile = NULL;
int loglevel;
B
bellard 已提交
35
static const char *interp_prefix = CONFIG_QEMU_PREFIX;
B
bellard 已提交
36

B
bellard 已提交
37 38 39 40
#ifdef __i386__
/* Force usage of an ELF interpreter even if it is an ELF shared
   object ! */
const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2";
B
bellard 已提交
41 42 43 44 45 46 47 48 49 50

/* for recent libc, we add these dummies symbol which are not declared
   when generating a linked object (bug in ld ?) */
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)
long __init_array_start[0];
long __init_array_end[0];
long __fini_array_start[0];
long __fini_array_end[0];
#endif

B
bellard 已提交
51 52
#endif

B
bellard 已提交
53 54 55 56
/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
   we allocate a bigger stack. Need a better solution, for example
   by remapping the process stack directly at the right place */
unsigned long x86_stack_size = 512 * 1024;
57 58 59 60 61 62 63 64 65 66 67

void gemu_log(const char *fmt, ...)
{
    va_list ap;

    va_start(ap, fmt);
    vfprintf(stderr, fmt, ap);
    va_end(ap);
}

/***********************************************************/
B
bellard 已提交
68
/* CPUX86 core interface */
B
bellard 已提交
69

B
bellard 已提交
70
void cpu_x86_outb(CPUX86State *env, int addr, int val)
B
bellard 已提交
71 72 73 74
{
    fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
}

B
bellard 已提交
75
void cpu_x86_outw(CPUX86State *env, int addr, int val)
B
bellard 已提交
76 77 78 79
{
    fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
}

B
bellard 已提交
80
void cpu_x86_outl(CPUX86State *env, int addr, int val)
B
bellard 已提交
81 82 83 84
{
    fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
}

B
bellard 已提交
85
int cpu_x86_inb(CPUX86State *env, int addr)
B
bellard 已提交
86 87 88 89 90
{
    fprintf(stderr, "inb: port=0x%04x\n", addr);
    return 0;
}

B
bellard 已提交
91
int cpu_x86_inw(CPUX86State *env, int addr)
B
bellard 已提交
92 93 94 95 96
{
    fprintf(stderr, "inw: port=0x%04x\n", addr);
    return 0;
}

B
bellard 已提交
97
int cpu_x86_inl(CPUX86State *env, int addr)
B
bellard 已提交
98 99 100 101 102
{
    fprintf(stderr, "inl: port=0x%04x\n", addr);
    return 0;
}

B
bellard 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
void write_dt(void *ptr, unsigned long addr, unsigned long limit, 
              int seg32_bit)
{
    unsigned int e1, e2, limit_in_pages;
    limit_in_pages = 0;
    if (limit > 0xffff) {
        limit = limit >> 12;
        limit_in_pages = 1;
    }
    e1 = (addr << 16) | (limit & 0xffff);
    e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
    e2 |= limit_in_pages << 23; /* byte granularity */
    e2 |= seg32_bit << 22; /* 32 bit segment */
    stl((uint8_t *)ptr, e1);
    stl((uint8_t *)ptr + 4, e2);
}

uint64_t gdt_table[6];
121

B
bellard 已提交
122
void cpu_loop(CPUX86State *env)
B
bellard 已提交
123
{
B
bellard 已提交
124
    int trapnr;
B
bellard 已提交
125 126
    uint8_t *pc;
    target_siginfo_t info;
B
bellard 已提交
127

B
bellard 已提交
128
    for(;;) {
B
bellard 已提交
129 130
        trapnr = cpu_x86_exec(env);
        switch(trapnr) {
B
bellard 已提交
131
        case EXCP0D_GPF:
B
bellard 已提交
132
            if (env->eflags & VM_MASK) {
B
bellard 已提交
133
                handle_vm86_fault(env);
B
bellard 已提交
134
            } else {
B
bellard 已提交
135
                pc = env->seg_cache[R_CS].base + env->eip;
B
bellard 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
                if (pc[0] == 0xcd && pc[1] == 0x80) {
                    /* syscall */
                    env->eip += 2;
                    env->regs[R_EAX] = do_syscall(env, 
                                                  env->regs[R_EAX], 
                                                  env->regs[R_EBX],
                                                  env->regs[R_ECX],
                                                  env->regs[R_EDX],
                                                  env->regs[R_ESI],
                                                  env->regs[R_EDI],
                                                  env->regs[R_EBP]);
                } else {
                    /* XXX: more precise info */
                    info.si_signo = SIGSEGV;
                    info.si_errno = 0;
B
bellard 已提交
151
                    info.si_code = TARGET_SI_KERNEL;
B
bellard 已提交
152 153 154
                    info._sifields._sigfault._addr = 0;
                    queue_signal(info.si_signo, &info);
                }
B
bellard 已提交
155 156
            }
            break;
B
bellard 已提交
157 158 159 160 161 162 163 164 165 166
        case EXCP0E_PAGE:
            info.si_signo = SIGSEGV;
            info.si_errno = 0;
            if (!(env->error_code & 1))
                info.si_code = TARGET_SEGV_MAPERR;
            else
                info.si_code = TARGET_SEGV_ACCERR;
            info._sifields._sigfault._addr = env->cr2;
            queue_signal(info.si_signo, &info);
            break;
B
bellard 已提交
167
        case EXCP00_DIVZ:
B
bellard 已提交
168 169 170 171 172 173 174 175 176 177
            if (env->eflags & VM_MASK) {
                do_int(env, trapnr);
            } else {
                /* division by zero */
                info.si_signo = SIGFPE;
                info.si_errno = 0;
                info.si_code = TARGET_FPE_INTDIV;
                info._sifields._sigfault._addr = env->eip;
                queue_signal(info.si_signo, &info);
            }
B
bellard 已提交
178 179 180
            break;
        case EXCP04_INTO:
        case EXCP05_BOUND:
B
bellard 已提交
181 182 183 184 185
            if (env->eflags & VM_MASK) {
                do_int(env, trapnr);
            } else {
                info.si_signo = SIGSEGV;
                info.si_errno = 0;
B
bellard 已提交
186
                info.si_code = TARGET_SI_KERNEL;
B
bellard 已提交
187 188 189
                info._sifields._sigfault._addr = 0;
                queue_signal(info.si_signo, &info);
            }
B
bellard 已提交
190 191 192 193 194 195 196 197 198 199 200
            break;
        case EXCP06_ILLOP:
            info.si_signo = SIGILL;
            info.si_errno = 0;
            info.si_code = TARGET_ILL_ILLOPN;
            info._sifields._sigfault._addr = env->eip;
            queue_signal(info.si_signo, &info);
            break;
        case EXCP_INTERRUPT:
            /* just indicate that signals should be handled asap */
            break;
B
bellard 已提交
201
        default:
B
bellard 已提交
202
            pc = env->seg_cache[R_CS].base + env->eip;
B
bellard 已提交
203 204
            fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n", 
                    (long)pc, trapnr);
B
bellard 已提交
205 206
            abort();
        }
B
bellard 已提交
207
        process_pending_signals(env);
B
bellard 已提交
208 209 210
    }
}

211 212
void usage(void)
{
B
bellard 已提交
213
    printf("qemu version " QEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n"
214
           "usage: qemu [-h] [-d] [-L path] [-s size] program [arguments...]\n"
215
           "Linux x86 emulator\n"
216 217 218 219 220 221 222 223
           "\n"
           "-h        print this help\n"
           "-d        activate log (logfile=%s)\n"
           "-L path   set the x86 elf interpreter prefix (default=%s)\n"
           "-s size   set the x86 stack size in bytes (default=%ld)\n",
           DEBUG_LOGFILE,
           interp_prefix, 
           x86_stack_size);
B
bellard 已提交
224
    _exit(1);
225 226
}

B
bellard 已提交
227 228
/* XXX: currently only used for async signals (see signal.c) */
CPUX86State *global_env;
B
bellard 已提交
229 230
/* used to free thread contexts */
TaskState *first_task_state;
B
bellard 已提交
231

232 233 234
int main(int argc, char **argv)
{
    const char *filename;
B
bellard 已提交
235
    struct target_pt_regs regs1, *regs = &regs1;
236
    struct image_info info1, *info = &info1;
B
bellard 已提交
237
    TaskState ts1, *ts = &ts1;
B
bellard 已提交
238
    CPUX86State *env;
B
bellard 已提交
239
    int optind;
240 241
    const char *r;
    
242 243
    if (argc <= 1)
        usage();
B
bellard 已提交
244

B
bellard 已提交
245 246
    loglevel = 0;
    optind = 1;
247 248 249 250 251 252
    for(;;) {
        if (optind >= argc)
            break;
        r = argv[optind];
        if (r[0] != '-')
            break;
B
bellard 已提交
253
        optind++;
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
        r++;
        if (!strcmp(r, "-")) {
            break;
        } else if (!strcmp(r, "d")) {
            loglevel = 1;
        } else if (!strcmp(r, "s")) {
            r = argv[optind++];
            x86_stack_size = strtol(r, (char **)&r, 0);
            if (x86_stack_size <= 0)
                usage();
            if (*r == 'M')
                x86_stack_size *= 1024 * 1024;
            else if (*r == 'k' || *r == 'K')
                x86_stack_size *= 1024;
        } else if (!strcmp(r, "L")) {
            interp_prefix = argv[optind++];
        } else {
            usage();
        }
B
bellard 已提交
273
    }
274 275
    if (optind >= argc)
        usage();
B
bellard 已提交
276 277 278 279 280 281 282
    filename = argv[optind];

    /* init debug */
    if (loglevel) {
        logfile = fopen(DEBUG_LOGFILE, "w");
        if (!logfile) {
            perror(DEBUG_LOGFILE);
B
bellard 已提交
283
            _exit(1);
B
bellard 已提交
284 285 286
        }
        setvbuf(logfile, NULL, _IOLBF, 0);
    }
287 288

    /* Zero out regs */
B
bellard 已提交
289
    memset(regs, 0, sizeof(struct target_pt_regs));
290 291 292 293

    /* Zero out image_info */
    memset(info, 0, sizeof(struct image_info));

B
bellard 已提交
294 295 296 297
    /* Scan interp_prefix dir for replacement files. */
    init_paths(interp_prefix);

    if (elf_exec(filename, argv+optind, environ, regs, info) != 0) {
298
	printf("Error loading %s\n", filename);
B
bellard 已提交
299
	_exit(1);
300 301
    }
    
B
bellard 已提交
302 303 304 305 306 307 308 309 310 311
    if (loglevel) {
        fprintf(logfile, "start_brk   0x%08lx\n" , info->start_brk);
        fprintf(logfile, "end_code    0x%08lx\n" , info->end_code);
        fprintf(logfile, "start_code  0x%08lx\n" , info->start_code);
        fprintf(logfile, "end_data    0x%08lx\n" , info->end_data);
        fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
        fprintf(logfile, "brk         0x%08lx\n" , info->brk);
        fprintf(logfile, "esp         0x%08lx\n" , regs->esp);
        fprintf(logfile, "eip         0x%08lx\n" , regs->eip);
    }
312 313 314

    target_set_brk((char *)info->brk);
    syscall_init();
B
bellard 已提交
315
    signal_init();
316

B
bellard 已提交
317
    env = cpu_x86_init();
B
bellard 已提交
318
    global_env = env;
B
bellard 已提交
319

B
bellard 已提交
320 321 322 323 324
    /* build Task State */
    memset(ts, 0, sizeof(TaskState));
    env->opaque = ts;
    ts->used = 1;
    
B
bellard 已提交
325
    /* linux register setup */
B
bellard 已提交
326 327 328 329 330 331 332 333
    env->regs[R_EAX] = regs->eax;
    env->regs[R_EBX] = regs->ebx;
    env->regs[R_ECX] = regs->ecx;
    env->regs[R_EDX] = regs->edx;
    env->regs[R_ESI] = regs->esi;
    env->regs[R_EDI] = regs->edi;
    env->regs[R_EBP] = regs->ebp;
    env->regs[R_ESP] = regs->esp;
B
bellard 已提交
334
    env->eip = regs->eip;
335

B
bellard 已提交
336 337 338 339 340 341 342 343 344 345 346
    /* linux segment setup */
    env->gdt.base = (void *)gdt_table;
    env->gdt.limit = sizeof(gdt_table) - 1;
    write_dt(&gdt_table[__USER_CS >> 3], 0, 0xffffffff, 1);
    write_dt(&gdt_table[__USER_DS >> 3], 0, 0xffffffff, 1);
    cpu_x86_load_seg(env, R_CS, __USER_CS);
    cpu_x86_load_seg(env, R_DS, __USER_DS);
    cpu_x86_load_seg(env, R_ES, __USER_DS);
    cpu_x86_load_seg(env, R_SS, __USER_DS);
    cpu_x86_load_seg(env, R_FS, __USER_DS);
    cpu_x86_load_seg(env, R_GS, __USER_DS);
347

B
bellard 已提交
348 349
    cpu_loop(env);
    /* never exits */
350 351
    return 0;
}