]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/main.c
translate-all: Change tb_flush() env argument to cpu
[mirror_qemu.git] / bsd-user / main.c
CommitLineData
84778508
BS
1/*
2 * qemu user main
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
8167ee88 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
84778508
BS
18 */
19#include <stdlib.h>
20#include <stdio.h>
21#include <stdarg.h>
22#include <string.h>
23#include <errno.h>
24#include <unistd.h>
25#include <machine/trap.h>
31fc12df
BS
26#include <sys/types.h>
27#include <sys/mman.h>
84778508
BS
28
29#include "qemu.h"
30#include "qemu-common.h"
31/* For tb_lock */
2b41f10e 32#include "cpu.h"
9002ec79 33#include "tcg.h"
1de7afc9
PB
34#include "qemu/timer.h"
35#include "qemu/envlist.h"
fc0d96b4 36
1b530a6d 37int singlestep;
2fa5d9ba
BS
38#if defined(CONFIG_USE_GUEST_BASE)
39unsigned long mmap_min_addr;
40unsigned long guest_base;
41int have_guest_base;
d6ef40bf 42unsigned long reserved_va;
2fa5d9ba 43#endif
1b530a6d 44
7ee2822c 45static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
fccae322 46const char *qemu_uname_release;
84778508 47extern char **environ;
78cfb07f 48enum BSDType bsd_type;
84778508
BS
49
50/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
51 we allocate a bigger stack. Need a better solution, for example
52 by remapping the process stack directly at the right place */
53unsigned long x86_stack_size = 512 * 1024;
54
55void gemu_log(const char *fmt, ...)
56{
57 va_list ap;
58
59 va_start(ap, fmt);
60 vfprintf(stderr, fmt, ap);
61 va_end(ap);
62}
9399f095 63
31fc12df 64#if defined(TARGET_I386)
b98e9ca8 65int cpu_get_pic_interrupt(CPUX86State *env)
31fc12df
BS
66{
67 return -1;
68}
69#endif
70
9399f095 71/* These are no-ops because we are not threadsafe. */
9349b4f9 72static inline void cpu_exec_start(CPUArchState *env)
9399f095
BS
73{
74}
75
9349b4f9 76static inline void cpu_exec_end(CPUArchState *env)
9399f095
BS
77{
78}
79
80static inline void start_exclusive(void)
81{
82}
83
84static inline void end_exclusive(void)
85{
86}
87
88void fork_start(void)
89{
90}
91
92void fork_end(int child)
93{
94 if (child) {
dca1173c 95 gdbserver_fork((CPUArchState *)thread_cpu->env_ptr);
9399f095
BS
96 }
97}
98
99void cpu_list_lock(void)
100{
101}
102
103void cpu_list_unlock(void)
104{
105}
106
31fc12df
BS
107#ifdef TARGET_I386
108/***********************************************************/
109/* CPUX86 core interface */
110
31fc12df
BS
111uint64_t cpu_get_tsc(CPUX86State *env)
112{
113 return cpu_get_real_ticks();
114}
115
116static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
117 int flags)
118{
119 unsigned int e1, e2;
120 uint32_t *p;
121 e1 = (addr << 16) | (limit & 0xffff);
122 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
123 e2 |= flags;
124 p = ptr;
125 p[0] = tswap32(e1);
126 p[1] = tswap32(e2);
127}
128
129static uint64_t *idt_table;
130#ifdef TARGET_X86_64
131static void set_gate64(void *ptr, unsigned int type, unsigned int dpl,
132 uint64_t addr, unsigned int sel)
133{
134 uint32_t *p, e1, e2;
135 e1 = (addr & 0xffff) | (sel << 16);
136 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
137 p = ptr;
138 p[0] = tswap32(e1);
139 p[1] = tswap32(e2);
140 p[2] = tswap32(addr >> 32);
141 p[3] = 0;
142}
143/* only dpl matters as we do only user space emulation */
144static void set_idt(int n, unsigned int dpl)
145{
146 set_gate64(idt_table + n * 2, 0, dpl, 0, 0);
147}
148#else
149static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
150 uint32_t addr, unsigned int sel)
151{
152 uint32_t *p, e1, e2;
153 e1 = (addr & 0xffff) | (sel << 16);
154 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
155 p = ptr;
156 p[0] = tswap32(e1);
157 p[1] = tswap32(e2);
158}
159
160/* only dpl matters as we do only user space emulation */
161static void set_idt(int n, unsigned int dpl)
162{
163 set_gate(idt_table + n, 0, dpl, 0, 0);
164}
165#endif
166
78cfb07f 167void cpu_loop(CPUX86State *env)
31fc12df
BS
168{
169 int trapnr;
170 abi_ulong pc;
171 //target_siginfo_t info;
172
173 for(;;) {
174 trapnr = cpu_x86_exec(env);
175 switch(trapnr) {
176 case 0x80:
177 /* syscall from int $0x80 */
78cfb07f
JL
178 if (bsd_type == target_freebsd) {
179 abi_ulong params = (abi_ulong) env->regs[R_ESP] +
180 sizeof(int32_t);
181 int32_t syscall_nr = env->regs[R_EAX];
182 int32_t arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8;
183
184 if (syscall_nr == TARGET_FREEBSD_NR_syscall) {
185 get_user_s32(syscall_nr, params);
186 params += sizeof(int32_t);
187 } else if (syscall_nr == TARGET_FREEBSD_NR___syscall) {
188 get_user_s32(syscall_nr, params);
189 params += sizeof(int64_t);
190 }
191 get_user_s32(arg1, params);
192 params += sizeof(int32_t);
193 get_user_s32(arg2, params);
194 params += sizeof(int32_t);
195 get_user_s32(arg3, params);
196 params += sizeof(int32_t);
197 get_user_s32(arg4, params);
198 params += sizeof(int32_t);
199 get_user_s32(arg5, params);
200 params += sizeof(int32_t);
201 get_user_s32(arg6, params);
202 params += sizeof(int32_t);
203 get_user_s32(arg7, params);
204 params += sizeof(int32_t);
205 get_user_s32(arg8, params);
206 env->regs[R_EAX] = do_freebsd_syscall(env,
207 syscall_nr,
208 arg1,
209 arg2,
210 arg3,
211 arg4,
212 arg5,
213 arg6,
214 arg7,
215 arg8);
216 } else { //if (bsd_type == target_openbsd)
217 env->regs[R_EAX] = do_openbsd_syscall(env,
218 env->regs[R_EAX],
219 env->regs[R_EBX],
220 env->regs[R_ECX],
221 env->regs[R_EDX],
222 env->regs[R_ESI],
223 env->regs[R_EDI],
224 env->regs[R_EBP]);
225 }
226 if (((abi_ulong)env->regs[R_EAX]) >= (abi_ulong)(-515)) {
227 env->regs[R_EAX] = -env->regs[R_EAX];
228 env->eflags |= CC_C;
229 } else {
230 env->eflags &= ~CC_C;
231 }
31fc12df
BS
232 break;
233#ifndef TARGET_ABI32
234 case EXCP_SYSCALL:
5ba18547 235 /* syscall from syscall instruction */
78cfb07f
JL
236 if (bsd_type == target_freebsd)
237 env->regs[R_EAX] = do_freebsd_syscall(env,
238 env->regs[R_EAX],
239 env->regs[R_EDI],
240 env->regs[R_ESI],
241 env->regs[R_EDX],
242 env->regs[R_ECX],
243 env->regs[8],
244 env->regs[9], 0, 0);
245 else { //if (bsd_type == target_openbsd)
246 env->regs[R_EAX] = do_openbsd_syscall(env,
247 env->regs[R_EAX],
248 env->regs[R_EDI],
249 env->regs[R_ESI],
250 env->regs[R_EDX],
251 env->regs[10],
252 env->regs[8],
253 env->regs[9]);
254 }
31fc12df 255 env->eip = env->exception_next_eip;
78cfb07f
JL
256 if (((abi_ulong)env->regs[R_EAX]) >= (abi_ulong)(-515)) {
257 env->regs[R_EAX] = -env->regs[R_EAX];
258 env->eflags |= CC_C;
259 } else {
260 env->eflags &= ~CC_C;
261 }
31fc12df
BS
262 break;
263#endif
264#if 0
265 case EXCP0B_NOSEG:
266 case EXCP0C_STACK:
267 info.si_signo = SIGBUS;
268 info.si_errno = 0;
269 info.si_code = TARGET_SI_KERNEL;
270 info._sifields._sigfault._addr = 0;
271 queue_signal(env, info.si_signo, &info);
272 break;
273 case EXCP0D_GPF:
274 /* XXX: potential problem if ABI32 */
275#ifndef TARGET_X86_64
276 if (env->eflags & VM_MASK) {
277 handle_vm86_fault(env);
278 } else
279#endif
280 {
281 info.si_signo = SIGSEGV;
282 info.si_errno = 0;
283 info.si_code = TARGET_SI_KERNEL;
284 info._sifields._sigfault._addr = 0;
285 queue_signal(env, info.si_signo, &info);
286 }
287 break;
288 case EXCP0E_PAGE:
289 info.si_signo = SIGSEGV;
290 info.si_errno = 0;
291 if (!(env->error_code & 1))
292 info.si_code = TARGET_SEGV_MAPERR;
293 else
294 info.si_code = TARGET_SEGV_ACCERR;
295 info._sifields._sigfault._addr = env->cr[2];
296 queue_signal(env, info.si_signo, &info);
297 break;
298 case EXCP00_DIVZ:
299#ifndef TARGET_X86_64
300 if (env->eflags & VM_MASK) {
301 handle_vm86_trap(env, trapnr);
302 } else
303#endif
304 {
305 /* division by zero */
306 info.si_signo = SIGFPE;
307 info.si_errno = 0;
308 info.si_code = TARGET_FPE_INTDIV;
309 info._sifields._sigfault._addr = env->eip;
310 queue_signal(env, info.si_signo, &info);
311 }
312 break;
313 case EXCP01_DB:
314 case EXCP03_INT3:
315#ifndef TARGET_X86_64
316 if (env->eflags & VM_MASK) {
317 handle_vm86_trap(env, trapnr);
318 } else
319#endif
320 {
321 info.si_signo = SIGTRAP;
322 info.si_errno = 0;
323 if (trapnr == EXCP01_DB) {
324 info.si_code = TARGET_TRAP_BRKPT;
325 info._sifields._sigfault._addr = env->eip;
326 } else {
327 info.si_code = TARGET_SI_KERNEL;
328 info._sifields._sigfault._addr = 0;
329 }
330 queue_signal(env, info.si_signo, &info);
331 }
332 break;
333 case EXCP04_INTO:
334 case EXCP05_BOUND:
335#ifndef TARGET_X86_64
336 if (env->eflags & VM_MASK) {
337 handle_vm86_trap(env, trapnr);
338 } else
339#endif
340 {
341 info.si_signo = SIGSEGV;
342 info.si_errno = 0;
343 info.si_code = TARGET_SI_KERNEL;
344 info._sifields._sigfault._addr = 0;
345 queue_signal(env, info.si_signo, &info);
346 }
347 break;
348 case EXCP06_ILLOP:
349 info.si_signo = SIGILL;
350 info.si_errno = 0;
351 info.si_code = TARGET_ILL_ILLOPN;
352 info._sifields._sigfault._addr = env->eip;
353 queue_signal(env, info.si_signo, &info);
354 break;
355#endif
356 case EXCP_INTERRUPT:
357 /* just indicate that signals should be handled asap */
358 break;
359#if 0
360 case EXCP_DEBUG:
361 {
362 int sig;
363
364 sig = gdb_handlesig (env, TARGET_SIGTRAP);
365 if (sig)
366 {
367 info.si_signo = sig;
368 info.si_errno = 0;
369 info.si_code = TARGET_TRAP_BRKPT;
370 queue_signal(env, info.si_signo, &info);
371 }
372 }
373 break;
374#endif
375 default:
376 pc = env->segs[R_CS].base + env->eip;
377 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
378 (long)pc, trapnr);
379 abort();
380 }
381 process_pending_signals(env);
382 }
383}
384#endif
385
84778508
BS
386#ifdef TARGET_SPARC
387#define SPARC64_STACK_BIAS 2047
388
389//#define DEBUG_WIN
390/* WARNING: dealing with register windows _is_ complicated. More info
391 can be found at http://www.sics.se/~psm/sparcstack.html */
392static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
393{
394 index = (index + cwp * 16) % (16 * env->nwindows);
395 /* wrap handling : if cwp is on the last window, then we use the
396 registers 'after' the end */
397 if (index < 8 && env->cwp == env->nwindows - 1)
398 index += 16 * env->nwindows;
399 return index;
400}
401
402/* save the register window 'cwp1' */
403static inline void save_window_offset(CPUSPARCState *env, int cwp1)
404{
405 unsigned int i;
406 abi_ulong sp_ptr;
407
408 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
409#ifdef TARGET_SPARC64
410 if (sp_ptr & 3)
411 sp_ptr += SPARC64_STACK_BIAS;
412#endif
413#if defined(DEBUG_WIN)
414 printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n",
415 sp_ptr, cwp1);
416#endif
417 for(i = 0; i < 16; i++) {
418 /* FIXME - what to do if put_user() fails? */
419 put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
420 sp_ptr += sizeof(abi_ulong);
421 }
422}
423
424static void save_window(CPUSPARCState *env)
425{
426#ifndef TARGET_SPARC64
427 unsigned int new_wim;
428 new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) &
429 ((1LL << env->nwindows) - 1);
430 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
431 env->wim = new_wim;
432#else
433 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
434 env->cansave++;
435 env->canrestore--;
436#endif
437}
438
439static void restore_window(CPUSPARCState *env)
440{
441#ifndef TARGET_SPARC64
442 unsigned int new_wim;
443#endif
444 unsigned int i, cwp1;
445 abi_ulong sp_ptr;
446
447#ifndef TARGET_SPARC64
448 new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) &
449 ((1LL << env->nwindows) - 1);
450#endif
451
452 /* restore the invalid window */
453 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
454 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
455#ifdef TARGET_SPARC64
456 if (sp_ptr & 3)
457 sp_ptr += SPARC64_STACK_BIAS;
458#endif
459#if defined(DEBUG_WIN)
460 printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n",
461 sp_ptr, cwp1);
462#endif
463 for(i = 0; i < 16; i++) {
464 /* FIXME - what to do if get_user() fails? */
465 get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
466 sp_ptr += sizeof(abi_ulong);
467 }
468#ifdef TARGET_SPARC64
469 env->canrestore++;
470 if (env->cleanwin < env->nwindows - 1)
471 env->cleanwin++;
472 env->cansave--;
473#else
474 env->wim = new_wim;
475#endif
476}
477
478static void flush_windows(CPUSPARCState *env)
479{
480 int offset, cwp1;
481
482 offset = 1;
483 for(;;) {
484 /* if restore would invoke restore_window(), then we can stop */
485 cwp1 = cpu_cwp_inc(env, env->cwp + offset);
486#ifndef TARGET_SPARC64
487 if (env->wim & (1 << cwp1))
488 break;
489#else
490 if (env->canrestore == 0)
491 break;
492 env->cansave++;
493 env->canrestore--;
494#endif
495 save_window_offset(env, cwp1);
496 offset++;
497 }
498 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
499#ifndef TARGET_SPARC64
500 /* set wim so that restore will reload the registers */
501 env->wim = 1 << cwp1;
502#endif
503#if defined(DEBUG_WIN)
504 printf("flush_windows: nb=%d\n", offset - 1);
505#endif
506}
507
78cfb07f 508void cpu_loop(CPUSPARCState *env)
84778508 509{
878096ee 510 CPUState *cs = CPU(sparc_env_get_cpu(env));
84778508
BS
511 int trapnr, ret, syscall_nr;
512 //target_siginfo_t info;
513
514 while (1) {
515 trapnr = cpu_sparc_exec (env);
516
517 switch (trapnr) {
77b9435f
BS
518#ifndef TARGET_SPARC64
519 case 0x80:
520#else
78cfb07f
JL
521 /* FreeBSD uses 0x141 for syscalls too */
522 case 0x141:
523 if (bsd_type != target_freebsd)
524 goto badtrap;
84778508 525 case 0x100:
77b9435f 526#endif
84778508 527 syscall_nr = env->gregs[1];
84778508
BS
528 if (bsd_type == target_freebsd)
529 ret = do_freebsd_syscall(env, syscall_nr,
530 env->regwptr[0], env->regwptr[1],
531 env->regwptr[2], env->regwptr[3],
78cfb07f 532 env->regwptr[4], env->regwptr[5], 0, 0);
84778508
BS
533 else if (bsd_type == target_netbsd)
534 ret = do_netbsd_syscall(env, syscall_nr,
535 env->regwptr[0], env->regwptr[1],
536 env->regwptr[2], env->regwptr[3],
537 env->regwptr[4], env->regwptr[5]);
cdba95bd
BS
538 else { //if (bsd_type == target_openbsd)
539#if defined(TARGET_SPARC64)
540 syscall_nr &= ~(TARGET_OPENBSD_SYSCALL_G7RFLAG |
541 TARGET_OPENBSD_SYSCALL_G2RFLAG);
542#endif
84778508
BS
543 ret = do_openbsd_syscall(env, syscall_nr,
544 env->regwptr[0], env->regwptr[1],
545 env->regwptr[2], env->regwptr[3],
546 env->regwptr[4], env->regwptr[5]);
cdba95bd 547 }
84778508 548 if ((unsigned int)ret >= (unsigned int)(-515)) {
78cfb07f 549 ret = -ret;
84778508
BS
550#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
551 env->xcc |= PSR_CARRY;
552#else
553 env->psr |= PSR_CARRY;
554#endif
555 } else {
556#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
557 env->xcc &= ~PSR_CARRY;
558#else
559 env->psr &= ~PSR_CARRY;
560#endif
561 }
562 env->regwptr[0] = ret;
563 /* next instruction */
cdba95bd
BS
564#if defined(TARGET_SPARC64)
565 if (bsd_type == target_openbsd &&
566 env->gregs[1] & TARGET_OPENBSD_SYSCALL_G2RFLAG) {
84778508
BS
567 env->pc = env->gregs[2];
568 env->npc = env->pc + 4;
cdba95bd
BS
569 } else if (bsd_type == target_openbsd &&
570 env->gregs[1] & TARGET_OPENBSD_SYSCALL_G7RFLAG) {
84778508
BS
571 env->pc = env->gregs[7];
572 env->npc = env->pc + 4;
573 } else {
574 env->pc = env->npc;
575 env->npc = env->npc + 4;
576 }
577#else
578 env->pc = env->npc;
579 env->npc = env->npc + 4;
580#endif
581 break;
582 case 0x83: /* flush windows */
583#ifdef TARGET_ABI32
584 case 0x103:
585#endif
586 flush_windows(env);
587 /* next instruction */
588 env->pc = env->npc;
589 env->npc = env->npc + 4;
590 break;
591#ifndef TARGET_SPARC64
592 case TT_WIN_OVF: /* window overflow */
593 save_window(env);
594 break;
595 case TT_WIN_UNF: /* window underflow */
596 restore_window(env);
597 break;
598 case TT_TFAULT:
599 case TT_DFAULT:
600#if 0
601 {
602 info.si_signo = SIGSEGV;
603 info.si_errno = 0;
604 /* XXX: check env->error_code */
605 info.si_code = TARGET_SEGV_MAPERR;
606 info._sifields._sigfault._addr = env->mmuregs[4];
607 queue_signal(env, info.si_signo, &info);
608 }
609#endif
610 break;
611#else
612 case TT_SPILL: /* window overflow */
613 save_window(env);
614 break;
615 case TT_FILL: /* window underflow */
616 restore_window(env);
617 break;
618 case TT_TFAULT:
619 case TT_DFAULT:
620#if 0
621 {
622 info.si_signo = SIGSEGV;
623 info.si_errno = 0;
624 /* XXX: check env->error_code */
625 info.si_code = TARGET_SEGV_MAPERR;
626 if (trapnr == TT_DFAULT)
627 info._sifields._sigfault._addr = env->dmmuregs[4];
628 else
629 info._sifields._sigfault._addr = env->tsptr->tpc;
630 //queue_signal(env, info.si_signo, &info);
631 }
632#endif
633 break;
634#endif
635 case EXCP_INTERRUPT:
636 /* just indicate that signals should be handled asap */
637 break;
638 case EXCP_DEBUG:
639 {
640 int sig;
641
db6b81d4 642 sig = gdb_handlesig(cs, TARGET_SIGTRAP);
84778508
BS
643#if 0
644 if (sig)
645 {
646 info.si_signo = sig;
647 info.si_errno = 0;
648 info.si_code = TARGET_TRAP_BRKPT;
649 //queue_signal(env, info.si_signo, &info);
650 }
651#endif
652 }
653 break;
654 default:
78cfb07f
JL
655#ifdef TARGET_SPARC64
656 badtrap:
657#endif
84778508 658 printf ("Unhandled trap: 0x%x\n", trapnr);
878096ee 659 cpu_dump_state(cs, stderr, fprintf, 0);
84778508
BS
660 exit (1);
661 }
662 process_pending_signals (env);
663 }
664}
665
666#endif
667
668static void usage(void)
669{
2e59915d
PB
670 printf("qemu-" TARGET_NAME " version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"
671 "usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
84778508
BS
672 "BSD CPU emulator (compiled for %s emulation)\n"
673 "\n"
674 "Standard options:\n"
675 "-h print this help\n"
676 "-g port wait gdb connection to port\n"
677 "-L path set the elf interpreter prefix (default=%s)\n"
678 "-s size set the stack size in bytes (default=%ld)\n"
c8057f95 679 "-cpu model select CPU (-cpu help for list)\n"
84778508 680 "-drop-ld-preload drop LD_PRELOAD for target process\n"
fc0d96b4
BS
681 "-E var=value sets/modifies targets environment variable(s)\n"
682 "-U var unsets targets environment variable(s)\n"
2fa5d9ba
BS
683#if defined(CONFIG_USE_GUEST_BASE)
684 "-B address set guest_base address to address\n"
685#endif
84778508
BS
686 "-bsd type select emulated BSD type FreeBSD/NetBSD/OpenBSD (default)\n"
687 "\n"
688 "Debug options:\n"
989b697d
PM
689 "-d item1[,...] enable logging of specified items\n"
690 " (use '-d help' for a list of log items)\n"
691 "-D logfile write logs to 'logfile' (default stderr)\n"
692 "-p pagesize set the host page size to 'pagesize'\n"
693 "-singlestep always run in singlestep mode\n"
694 "-strace log system calls\n"
84778508
BS
695 "\n"
696 "Environment variables:\n"
697 "QEMU_STRACE Print system calls and arguments similar to the\n"
698 " 'strace' program. Enable by setting to any value.\n"
fc0d96b4
BS
699 "You can use -E and -U options to set/unset environment variables\n"
700 "for target process. It is possible to provide several variables\n"
701 "by repeating the option. For example:\n"
702 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
703 "Note that if you provide several changes to single variable\n"
704 "last change will stay in effect.\n"
84778508 705 ,
2e59915d 706 TARGET_NAME,
84778508 707 interp_prefix,
989b697d 708 x86_stack_size);
2d18e637 709 exit(1);
84778508
BS
710}
711
dca1173c 712THREAD CPUState *thread_cpu;
84778508
BS
713
714/* Assumes contents are already zeroed. */
715void init_task_state(TaskState *ts)
716{
717 int i;
718
719 ts->used = 1;
720 ts->first_free = ts->sigqueue_table;
721 for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
722 ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
723 }
724 ts->sigqueue_table[i].next = NULL;
725}
726
727int main(int argc, char **argv)
728{
729 const char *filename;
730 const char *cpu_model;
989b697d 731 const char *log_file = NULL;
c235d738 732 const char *log_mask = NULL;
84778508
BS
733 struct target_pt_regs regs1, *regs = &regs1;
734 struct image_info info1, *info = &info1;
735 TaskState ts1, *ts = &ts1;
9349b4f9 736 CPUArchState *env;
db6b81d4 737 CPUState *cpu;
84778508
BS
738 int optind;
739 const char *r;
740 int gdbstub_port = 0;
fc0d96b4
BS
741 char **target_environ, **wrk;
742 envlist_t *envlist = NULL;
78cfb07f 743 bsd_type = target_openbsd;
84778508
BS
744
745 if (argc <= 1)
746 usage();
747
ce008c1f
AF
748 module_call_init(MODULE_INIT_QOM);
749
fc0d96b4
BS
750 if ((envlist = envlist_create()) == NULL) {
751 (void) fprintf(stderr, "Unable to allocate envlist\n");
752 exit(1);
753 }
754
755 /* add current environment into the list */
756 for (wrk = environ; *wrk != NULL; wrk++) {
757 (void) envlist_setenv(envlist, *wrk);
758 }
759
84778508 760 cpu_model = NULL;
0c62de2f
JL
761#if defined(cpudef_setup)
762 cpudef_setup(); /* parse cpu definitions in target config file (TBD) */
763#endif
764
84778508
BS
765 optind = 1;
766 for(;;) {
767 if (optind >= argc)
768 break;
769 r = argv[optind];
770 if (r[0] != '-')
771 break;
772 optind++;
773 r++;
774 if (!strcmp(r, "-")) {
775 break;
776 } else if (!strcmp(r, "d")) {
c235d738 777 if (optind >= argc) {
84778508 778 break;
84778508 779 }
c235d738
MF
780 log_mask = argv[optind++];
781 } else if (!strcmp(r, "D")) {
782 if (optind >= argc) {
783 break;
784 }
785 log_file = argv[optind++];
fc0d96b4
BS
786 } else if (!strcmp(r, "E")) {
787 r = argv[optind++];
788 if (envlist_setenv(envlist, r) != 0)
789 usage();
f66724c9
SW
790 } else if (!strcmp(r, "ignore-environment")) {
791 envlist_free(envlist);
792 if ((envlist = envlist_create()) == NULL) {
793 (void) fprintf(stderr, "Unable to allocate envlist\n");
794 exit(1);
795 }
fc0d96b4
BS
796 } else if (!strcmp(r, "U")) {
797 r = argv[optind++];
798 if (envlist_unsetenv(envlist, r) != 0)
799 usage();
84778508
BS
800 } else if (!strcmp(r, "s")) {
801 r = argv[optind++];
802 x86_stack_size = strtol(r, (char **)&r, 0);
803 if (x86_stack_size <= 0)
804 usage();
805 if (*r == 'M')
806 x86_stack_size *= 1024 * 1024;
807 else if (*r == 'k' || *r == 'K')
808 x86_stack_size *= 1024;
809 } else if (!strcmp(r, "L")) {
810 interp_prefix = argv[optind++];
811 } else if (!strcmp(r, "p")) {
812 qemu_host_page_size = atoi(argv[optind++]);
813 if (qemu_host_page_size == 0 ||
814 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
815 fprintf(stderr, "page size must be a power of two\n");
816 exit(1);
817 }
818 } else if (!strcmp(r, "g")) {
819 gdbstub_port = atoi(argv[optind++]);
820 } else if (!strcmp(r, "r")) {
821 qemu_uname_release = argv[optind++];
822 } else if (!strcmp(r, "cpu")) {
823 cpu_model = argv[optind++];
c8057f95 824 if (is_help_option(cpu_model)) {
84778508
BS
825/* XXX: implement xxx_cpu_list for targets that still miss it */
826#if defined(cpu_list)
827 cpu_list(stdout, &fprintf);
828#endif
2d18e637 829 exit(1);
84778508 830 }
2fa5d9ba
BS
831#if defined(CONFIG_USE_GUEST_BASE)
832 } else if (!strcmp(r, "B")) {
833 guest_base = strtol(argv[optind++], NULL, 0);
834 have_guest_base = 1;
835#endif
84778508 836 } else if (!strcmp(r, "drop-ld-preload")) {
fc0d96b4 837 (void) envlist_unsetenv(envlist, "LD_PRELOAD");
84778508
BS
838 } else if (!strcmp(r, "bsd")) {
839 if (!strcasecmp(argv[optind], "freebsd")) {
840 bsd_type = target_freebsd;
841 } else if (!strcasecmp(argv[optind], "netbsd")) {
842 bsd_type = target_netbsd;
843 } else if (!strcasecmp(argv[optind], "openbsd")) {
844 bsd_type = target_openbsd;
845 } else {
846 usage();
847 }
848 optind++;
1b530a6d
AJ
849 } else if (!strcmp(r, "singlestep")) {
850 singlestep = 1;
84778508
BS
851 } else if (!strcmp(r, "strace")) {
852 do_strace = 1;
853 } else
854 {
855 usage();
856 }
857 }
84778508 858
c235d738 859 /* init debug */
9a7e5424 860 qemu_set_log_filename(log_file);
c235d738
MF
861 if (log_mask) {
862 int mask;
c235d738 863
4fde1eba 864 mask = qemu_str_to_log_mask(log_mask);
c235d738 865 if (!mask) {
59a6fa6e 866 qemu_print_log_usage(stdout);
c235d738
MF
867 exit(1);
868 }
24537a01 869 qemu_set_log(mask);
c235d738
MF
870 }
871
4b5dfd82
PM
872 if (optind >= argc) {
873 usage();
874 }
875 filename = argv[optind];
876
84778508
BS
877 /* Zero out regs */
878 memset(regs, 0, sizeof(struct target_pt_regs));
879
880 /* Zero out image_info */
881 memset(info, 0, sizeof(struct image_info));
882
883 /* Scan interp_prefix dir for replacement files. */
884 init_paths(interp_prefix);
885
886 if (cpu_model == NULL) {
31fc12df
BS
887#if defined(TARGET_I386)
888#ifdef TARGET_X86_64
889 cpu_model = "qemu64";
890#else
891 cpu_model = "qemu32";
892#endif
893#elif defined(TARGET_SPARC)
84778508
BS
894#ifdef TARGET_SPARC64
895 cpu_model = "TI UltraSparc II";
896#else
897 cpu_model = "Fujitsu MB86904";
898#endif
899#else
900 cpu_model = "any";
901#endif
902 }
d5ab9713 903 tcg_exec_init(0);
84778508
BS
904 /* NOTE: we need to init the CPU at this stage to get
905 qemu_host_page_size */
2994fd96
EH
906 cpu = cpu_init(cpu_model);
907 if (!cpu) {
84778508
BS
908 fprintf(stderr, "Unable to find CPU definition\n");
909 exit(1);
910 }
2994fd96 911 env = cpu->env_ptr;
77868120 912#if defined(TARGET_SPARC) || defined(TARGET_PPC)
db6b81d4 913 cpu_reset(cpu);
b55a37c9 914#endif
db6b81d4 915 thread_cpu = cpu;
84778508
BS
916
917 if (getenv("QEMU_STRACE")) {
918 do_strace = 1;
919 }
920
fc0d96b4
BS
921 target_environ = envlist_to_environ(envlist, NULL);
922 envlist_free(envlist);
923
2fa5d9ba
BS
924#if defined(CONFIG_USE_GUEST_BASE)
925 /*
926 * Now that page sizes are configured in cpu_init() we can do
927 * proper page alignment for guest_base.
928 */
929 guest_base = HOST_PAGE_ALIGN(guest_base);
930
931 /*
932 * Read in mmap_min_addr kernel parameter. This value is used
933 * When loading the ELF image to determine whether guest_base
934 * is needed.
935 *
936 * When user has explicitly set the quest base, we skip this
937 * test.
938 */
939 if (!have_guest_base) {
940 FILE *fp;
941
942 if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) {
943 unsigned long tmp;
944 if (fscanf(fp, "%lu", &tmp) == 1) {
945 mmap_min_addr = tmp;
946 qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr);
947 }
948 fclose(fp);
949 }
950 }
951#endif /* CONFIG_USE_GUEST_BASE */
84778508
BS
952
953 if (loader_exec(filename, argv+optind, target_environ, regs, info) != 0) {
954 printf("Error loading %s\n", filename);
955 _exit(1);
956 }
957
958 for (wrk = target_environ; *wrk; wrk++) {
959 free(*wrk);
960 }
961
962 free(target_environ);
963
2e77eac6 964 if (qemu_log_enabled()) {
2fa5d9ba
BS
965#if defined(CONFIG_USE_GUEST_BASE)
966 qemu_log("guest_base 0x%lx\n", guest_base);
967#endif
2e77eac6
BS
968 log_page_dump();
969
970 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
971 qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
972 qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n",
973 info->start_code);
974 qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n",
975 info->start_data);
976 qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
977 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
978 info->start_stack);
979 qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
980 qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
981 }
84778508
BS
982
983 target_set_brk(info->brk);
984 syscall_init();
985 signal_init();
986
9002ec79
RH
987#if defined(CONFIG_USE_GUEST_BASE)
988 /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay
989 generating the prologue until now so that the prologue can take
990 the real value of GUEST_BASE into account. */
991 tcg_prologue_init(&tcg_ctx);
992#endif
993
84778508
BS
994 /* build Task State */
995 memset(ts, 0, sizeof(TaskState));
996 init_task_state(ts);
997 ts->info = info;
0429a971 998 cpu->opaque = ts;
84778508 999
31fc12df 1000#if defined(TARGET_I386)
31fc12df 1001 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
b98dbc90 1002 env->hflags |= HF_PE_MASK | HF_CPL_MASK;
0514ef2f 1003 if (env->features[FEAT_1_EDX] & CPUID_SSE) {
31fc12df
BS
1004 env->cr[4] |= CR4_OSFXSR_MASK;
1005 env->hflags |= HF_OSFXSR_MASK;
1006 }
1007#ifndef TARGET_ABI32
1008 /* enable 64 bit mode if possible */
0514ef2f 1009 if (!(env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM)) {
31fc12df
BS
1010 fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
1011 exit(1);
1012 }
1013 env->cr[4] |= CR4_PAE_MASK;
1014 env->efer |= MSR_EFER_LMA | MSR_EFER_LME;
1015 env->hflags |= HF_LMA_MASK;
1016#endif
1017
1018 /* flags setup : we activate the IRQs by default as in user mode */
1019 env->eflags |= IF_MASK;
1020
1021 /* linux register setup */
1022#ifndef TARGET_ABI32
1023 env->regs[R_EAX] = regs->rax;
1024 env->regs[R_EBX] = regs->rbx;
1025 env->regs[R_ECX] = regs->rcx;
1026 env->regs[R_EDX] = regs->rdx;
1027 env->regs[R_ESI] = regs->rsi;
1028 env->regs[R_EDI] = regs->rdi;
1029 env->regs[R_EBP] = regs->rbp;
1030 env->regs[R_ESP] = regs->rsp;
1031 env->eip = regs->rip;
1032#else
1033 env->regs[R_EAX] = regs->eax;
1034 env->regs[R_EBX] = regs->ebx;
1035 env->regs[R_ECX] = regs->ecx;
1036 env->regs[R_EDX] = regs->edx;
1037 env->regs[R_ESI] = regs->esi;
1038 env->regs[R_EDI] = regs->edi;
1039 env->regs[R_EBP] = regs->ebp;
1040 env->regs[R_ESP] = regs->esp;
1041 env->eip = regs->eip;
1042#endif
1043
1044 /* linux interrupt setup */
1045#ifndef TARGET_ABI32
1046 env->idt.limit = 511;
1047#else
1048 env->idt.limit = 255;
1049#endif
1050 env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1),
1051 PROT_READ|PROT_WRITE,
1052 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
1053 idt_table = g2h(env->idt.base);
1054 set_idt(0, 0);
1055 set_idt(1, 0);
1056 set_idt(2, 0);
1057 set_idt(3, 3);
1058 set_idt(4, 3);
1059 set_idt(5, 0);
1060 set_idt(6, 0);
1061 set_idt(7, 0);
1062 set_idt(8, 0);
1063 set_idt(9, 0);
1064 set_idt(10, 0);
1065 set_idt(11, 0);
1066 set_idt(12, 0);
1067 set_idt(13, 0);
1068 set_idt(14, 0);
1069 set_idt(15, 0);
1070 set_idt(16, 0);
1071 set_idt(17, 0);
1072 set_idt(18, 0);
1073 set_idt(19, 0);
1074 set_idt(0x80, 3);
1075
1076 /* linux segment setup */
1077 {
1078 uint64_t *gdt_table;
1079 env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
1080 PROT_READ|PROT_WRITE,
1081 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
1082 env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
1083 gdt_table = g2h(env->gdt.base);
1084#ifdef TARGET_ABI32
1085 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
1086 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1087 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
1088#else
1089 /* 64 bit code segment */
1090 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
1091 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1092 DESC_L_MASK |
1093 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
1094#endif
1095 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
1096 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1097 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
1098 }
1099
1100 cpu_x86_load_seg(env, R_CS, __USER_CS);
1101 cpu_x86_load_seg(env, R_SS, __USER_DS);
1102#ifdef TARGET_ABI32
1103 cpu_x86_load_seg(env, R_DS, __USER_DS);
1104 cpu_x86_load_seg(env, R_ES, __USER_DS);
1105 cpu_x86_load_seg(env, R_FS, __USER_DS);
1106 cpu_x86_load_seg(env, R_GS, __USER_DS);
1107 /* This hack makes Wine work... */
1108 env->segs[R_FS].selector = 0;
1109#else
1110 cpu_x86_load_seg(env, R_DS, 0);
1111 cpu_x86_load_seg(env, R_ES, 0);
1112 cpu_x86_load_seg(env, R_FS, 0);
1113 cpu_x86_load_seg(env, R_GS, 0);
1114#endif
1115#elif defined(TARGET_SPARC)
84778508
BS
1116 {
1117 int i;
1118 env->pc = regs->pc;
1119 env->npc = regs->npc;
1120 env->y = regs->y;
1121 for(i = 0; i < 8; i++)
1122 env->gregs[i] = regs->u_regs[i];
1123 for(i = 0; i < 8; i++)
1124 env->regwptr[i] = regs->u_regs[i + 8];
1125 }
1126#else
1127#error unsupported target CPU
1128#endif
1129
1130 if (gdbstub_port) {
1131 gdbserver_start (gdbstub_port);
db6b81d4 1132 gdb_handlesig(cpu, 0);
84778508 1133 }
78cfb07f 1134 cpu_loop(env);
84778508
BS
1135 /* never exits */
1136 return 0;
1137}