2005-02-07 13:35:39 +01:00
|
|
|
#ifndef QEMU_H
|
|
|
|
#define QEMU_H
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-23 17:49:39 +01:00
|
|
|
#include <signal.h>
|
2004-02-22 14:40:13 +01:00
|
|
|
#include <string.h>
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-09-30 23:04:53 +02:00
|
|
|
#include "cpu.h"
|
2007-10-14 18:27:31 +02:00
|
|
|
|
|
|
|
#ifdef TARGET_ABI32
|
|
|
|
typedef uint32_t abi_ulong;
|
|
|
|
typedef int32_t abi_long;
|
2007-11-03 16:12:16 +01:00
|
|
|
#define TARGET_ABI_FMT_lx "%08x"
|
|
|
|
#define TARGET_ABI_FMT_ld "%d"
|
|
|
|
#define TARGET_ABI_FMT_lu "%u"
|
2007-10-14 18:27:31 +02:00
|
|
|
#define TARGET_ABI_BITS 32
|
|
|
|
#else
|
|
|
|
typedef target_ulong abi_ulong;
|
|
|
|
typedef target_long abi_long;
|
2007-11-03 16:12:16 +01:00
|
|
|
#define TARGET_ABI_FMT_lx TARGET_FMT_lx
|
|
|
|
#define TARGET_ABI_FMT_ld TARGET_FMT_ld
|
|
|
|
#define TARGET_ABI_FMT_lu TARGET_FMT_lu
|
2007-10-14 18:27:31 +02:00
|
|
|
#define TARGET_ABI_BITS TARGET_LONG_BITS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "thunk.h"
|
|
|
|
#include "syscall_defs.h"
|
2003-09-30 23:04:53 +02:00
|
|
|
#include "syscall.h"
|
2007-09-27 15:57:58 +02:00
|
|
|
#include "target_signal.h"
|
2005-04-17 21:16:13 +02:00
|
|
|
#include "gdbstub.h"
|
2003-03-23 02:06:05 +01:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
/* This struct is used to hold certain information about the image.
|
|
|
|
* Basically, it replicates in user space what would be certain
|
|
|
|
* task_struct fields in the kernel
|
|
|
|
*/
|
|
|
|
struct image_info {
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong load_addr;
|
|
|
|
abi_ulong start_code;
|
|
|
|
abi_ulong end_code;
|
|
|
|
abi_ulong start_data;
|
|
|
|
abi_ulong end_data;
|
|
|
|
abi_ulong start_brk;
|
|
|
|
abi_ulong brk;
|
|
|
|
abi_ulong start_mmap;
|
|
|
|
abi_ulong mmap;
|
|
|
|
abi_ulong rss;
|
|
|
|
abi_ulong start_stack;
|
|
|
|
abi_ulong entry;
|
|
|
|
abi_ulong code_offset;
|
|
|
|
abi_ulong data_offset;
|
2006-11-19 21:29:35 +01:00
|
|
|
char **host_argv;
|
2003-02-18 23:55:36 +01:00
|
|
|
int personality;
|
|
|
|
};
|
|
|
|
|
2003-06-15 22:05:50 +02:00
|
|
|
#ifdef TARGET_I386
|
2003-03-29 17:53:14 +01:00
|
|
|
/* Information about the current linux thread */
|
|
|
|
struct vm86_saved_state {
|
|
|
|
uint32_t eax; /* return code */
|
|
|
|
uint32_t ebx;
|
|
|
|
uint32_t ecx;
|
|
|
|
uint32_t edx;
|
|
|
|
uint32_t esi;
|
|
|
|
uint32_t edi;
|
|
|
|
uint32_t ebp;
|
|
|
|
uint32_t esp;
|
|
|
|
uint32_t eflags;
|
|
|
|
uint32_t eip;
|
|
|
|
uint16_t cs, ss, ds, es, fs, gs;
|
|
|
|
};
|
2003-06-15 22:05:50 +02:00
|
|
|
#endif
|
2003-03-29 17:53:14 +01:00
|
|
|
|
2004-02-16 22:47:43 +01:00
|
|
|
#ifdef TARGET_ARM
|
|
|
|
/* FPU emulator */
|
|
|
|
#include "nwfpe/fpa11.h"
|
|
|
|
#endif
|
|
|
|
|
2003-03-29 17:53:14 +01:00
|
|
|
/* NOTE: we force a big alignment so that the stack stored after is
|
|
|
|
aligned too */
|
|
|
|
typedef struct TaskState {
|
|
|
|
struct TaskState *next;
|
2004-02-16 22:47:43 +01:00
|
|
|
#ifdef TARGET_ARM
|
|
|
|
/* FPA state */
|
|
|
|
FPA11 fpa;
|
2005-04-23 20:25:41 +02:00
|
|
|
int swi_errno;
|
2004-02-16 22:47:43 +01:00
|
|
|
#endif
|
2007-04-06 10:56:50 +02:00
|
|
|
#if defined(TARGET_I386) && !defined(TARGET_X86_64)
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong target_v86;
|
2003-03-29 17:53:14 +01:00
|
|
|
struct vm86_saved_state vm86_saved_regs;
|
2003-05-14 23:48:51 +02:00
|
|
|
struct target_vm86plus_struct vm86plus;
|
2003-05-10 15:14:52 +02:00
|
|
|
uint32_t v86flags;
|
|
|
|
uint32_t v86mask;
|
2006-10-22 02:18:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef TARGET_M68K
|
|
|
|
int sim_syscalls;
|
2007-05-26 17:09:38 +02:00
|
|
|
#endif
|
|
|
|
#if defined(TARGET_ARM) || defined(TARGET_M68K)
|
|
|
|
/* Extra fields for semihosted binaries. */
|
|
|
|
uint32_t stack_base;
|
|
|
|
uint32_t heap_base;
|
|
|
|
uint32_t heap_limit;
|
2003-06-15 22:05:50 +02:00
|
|
|
#endif
|
2003-03-29 17:53:14 +01:00
|
|
|
int used; /* non zero if used */
|
2006-06-17 20:30:42 +02:00
|
|
|
struct image_info *info;
|
2003-03-29 17:53:14 +01:00
|
|
|
uint8_t stack[0];
|
|
|
|
} __attribute__((aligned(16))) TaskState;
|
|
|
|
|
|
|
|
extern TaskState *first_task_state;
|
2006-05-14 13:30:38 +02:00
|
|
|
extern const char *qemu_uname_release;
|
2003-03-29 17:53:14 +01:00
|
|
|
|
2006-06-11 15:32:59 +02:00
|
|
|
/* ??? See if we can avoid exposing so much of the loader internals. */
|
|
|
|
/*
|
|
|
|
* MAX_ARG_PAGES defines the number of pages allocated for arguments
|
|
|
|
* and envelope for the new program. 32 should suffice, this gives
|
|
|
|
* a maximum env+arg of 128kB w/4KB pages!
|
|
|
|
*/
|
|
|
|
#define MAX_ARG_PAGES 32
|
|
|
|
|
|
|
|
/*
|
2007-09-16 23:08:06 +02:00
|
|
|
* This structure is used to hold the arguments that are
|
2006-06-11 15:32:59 +02:00
|
|
|
* used when loading binaries.
|
|
|
|
*/
|
|
|
|
struct linux_binprm {
|
|
|
|
char buf[128];
|
|
|
|
void *page[MAX_ARG_PAGES];
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong p;
|
2006-06-11 15:32:59 +02:00
|
|
|
int fd;
|
|
|
|
int e_uid, e_gid;
|
|
|
|
int argc, envc;
|
|
|
|
char **argv;
|
|
|
|
char **envp;
|
|
|
|
char * filename; /* Name of binary */
|
|
|
|
};
|
|
|
|
|
|
|
|
void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
|
|
|
|
abi_ulong stringp, int push_ptr);
|
2007-09-16 23:08:06 +02:00
|
|
|
int loader_exec(const char * filename, char ** argv, char ** envp,
|
2003-02-19 00:00:51 +01:00
|
|
|
struct target_pt_regs * regs, struct image_info *infop);
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2006-06-11 15:32:59 +02:00
|
|
|
int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
|
|
|
|
struct image_info * info);
|
|
|
|
int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
|
|
|
|
struct image_info * info);
|
2007-10-09 18:34:29 +02:00
|
|
|
#ifdef TARGET_HAS_ELFLOAD32
|
|
|
|
int load_elf_binary_multi(struct linux_binprm *bprm,
|
|
|
|
struct target_pt_regs *regs,
|
|
|
|
struct image_info *info);
|
|
|
|
#endif
|
2006-06-11 15:32:59 +02:00
|
|
|
|
2007-10-14 18:27:31 +02:00
|
|
|
void memcpy_to_target(abi_ulong dest, const void *src,
|
2006-06-11 15:32:59 +02:00
|
|
|
unsigned long len);
|
2007-10-14 18:27:31 +02:00
|
|
|
void target_set_brk(abi_ulong new_brk);
|
|
|
|
abi_long do_brk(abi_ulong new_brk);
|
2003-02-18 23:55:36 +01:00
|
|
|
void syscall_init(void);
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
|
|
|
abi_long arg2, abi_long arg3, abi_long arg4,
|
|
|
|
abi_long arg5, abi_long arg6);
|
2003-02-18 23:55:36 +01:00
|
|
|
void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
|
2003-06-15 22:05:50 +02:00
|
|
|
extern CPUState *global_env;
|
|
|
|
void cpu_loop(CPUState *env);
|
2003-04-11 02:16:16 +02:00
|
|
|
void init_paths(const char *prefix);
|
|
|
|
const char *path(const char *pathname);
|
2007-11-01 01:07:38 +01:00
|
|
|
char *target_strerror(int err);
|
2003-04-29 22:39:23 +02:00
|
|
|
|
|
|
|
extern int loglevel;
|
2003-05-10 15:14:52 +02:00
|
|
|
extern FILE *logfile;
|
|
|
|
|
2007-11-01 01:07:38 +01:00
|
|
|
/* strace.c */
|
|
|
|
void print_syscall(int num,
|
|
|
|
target_long arg1, target_long arg2, target_long arg3,
|
|
|
|
target_long arg4, target_long arg5, target_long arg6);
|
|
|
|
void print_syscall_ret(int num, target_long arg1);
|
|
|
|
extern int do_strace;
|
|
|
|
|
2003-06-15 22:05:50 +02:00
|
|
|
/* signal.c */
|
|
|
|
void process_pending_signals(void *cpu_env);
|
|
|
|
void signal_init(void);
|
|
|
|
int queue_signal(int sig, target_siginfo_t *info);
|
|
|
|
void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
|
|
|
|
void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
|
|
|
|
long do_sigreturn(CPUState *env);
|
|
|
|
long do_rt_sigreturn(CPUState *env);
|
2007-09-27 15:57:58 +02:00
|
|
|
int do_sigaltstack(const struct target_sigaltstack *uss,
|
|
|
|
struct target_sigaltstack *uoss,
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong sp);
|
2003-06-15 22:05:50 +02:00
|
|
|
|
|
|
|
#ifdef TARGET_I386
|
2003-05-10 15:14:52 +02:00
|
|
|
/* vm86.c */
|
|
|
|
void save_v86_state(CPUX86State *env);
|
2003-05-10 17:10:36 +02:00
|
|
|
void handle_vm86_trap(CPUX86State *env, int trapno);
|
2003-05-10 15:14:52 +02:00
|
|
|
void handle_vm86_fault(CPUX86State *env);
|
2007-10-14 18:27:31 +02:00
|
|
|
int do_vm86(CPUX86State *env, long subfunction, abi_ulong v86_addr);
|
2007-10-05 19:01:51 +02:00
|
|
|
#elif defined(TARGET_SPARC64)
|
|
|
|
void sparc64_set_context(CPUSPARCState *env);
|
|
|
|
void sparc64_get_context(CPUSPARCState *env);
|
2003-06-15 22:05:50 +02:00
|
|
|
#endif
|
2003-05-10 15:14:52 +02:00
|
|
|
|
2003-05-13 02:25:15 +02:00
|
|
|
/* mmap.c */
|
2007-10-14 18:27:31 +02:00
|
|
|
int target_mprotect(abi_ulong start, abi_ulong len, int prot);
|
|
|
|
abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
|
|
|
|
int flags, int fd, abi_ulong offset);
|
|
|
|
int target_munmap(abi_ulong start, abi_ulong len);
|
|
|
|
abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
|
|
|
|
abi_ulong new_size, unsigned long flags,
|
|
|
|
abi_ulong new_addr);
|
|
|
|
int target_msync(abi_ulong start, abi_ulong len, int flags);
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2004-02-22 14:40:13 +01:00
|
|
|
/* user access */
|
|
|
|
|
|
|
|
#define VERIFY_READ 0
|
|
|
|
#define VERIFY_WRITE 1
|
|
|
|
|
2007-11-02 20:02:07 +01:00
|
|
|
#define access_ok(type,addr,size) \
|
|
|
|
(page_check_range((target_ulong)addr,size,(type==VERIFY_READ)?PAGE_READ:PAGE_WRITE)==0)
|
2004-02-22 14:40:13 +01:00
|
|
|
|
2007-11-02 21:24:22 +01:00
|
|
|
/* NOTE __get_user and __put_user use host pointers and don't check access. */
|
|
|
|
#define __put_user(x, hptr)\
|
2004-02-22 14:40:13 +01:00
|
|
|
({\
|
2007-11-02 21:24:22 +01:00
|
|
|
int size = sizeof(*hptr);\
|
2004-02-22 14:40:13 +01:00
|
|
|
switch(size) {\
|
|
|
|
case 1:\
|
2007-11-02 21:24:22 +01:00
|
|
|
*(uint8_t *)(hptr) = (typeof(*hptr))(x);\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 2:\
|
2007-11-02 21:24:22 +01:00
|
|
|
*(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 4:\
|
2007-11-02 21:24:22 +01:00
|
|
|
*(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 8:\
|
2007-11-02 21:24:22 +01:00
|
|
|
*(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
default:\
|
|
|
|
abort();\
|
|
|
|
}\
|
|
|
|
0;\
|
|
|
|
})
|
|
|
|
|
2007-11-02 21:24:22 +01:00
|
|
|
#define __get_user(x, hptr) \
|
2004-02-22 14:40:13 +01:00
|
|
|
({\
|
2007-11-02 21:24:22 +01:00
|
|
|
int size = sizeof(*hptr);\
|
2004-02-22 14:40:13 +01:00
|
|
|
switch(size) {\
|
|
|
|
case 1:\
|
2007-11-02 21:24:22 +01:00
|
|
|
x = (typeof(*hptr))*(uint8_t *)(hptr);\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 2:\
|
2007-11-02 21:24:22 +01:00
|
|
|
x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 4:\
|
2007-11-02 21:24:22 +01:00
|
|
|
x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
case 8:\
|
2007-11-02 21:24:22 +01:00
|
|
|
x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
|
2004-02-22 14:40:13 +01:00
|
|
|
break;\
|
|
|
|
default:\
|
|
|
|
abort();\
|
|
|
|
}\
|
|
|
|
0;\
|
|
|
|
})
|
|
|
|
|
|
|
|
#define put_user(x,ptr)\
|
|
|
|
({\
|
|
|
|
int __ret;\
|
|
|
|
if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
|
|
|
|
__ret = __put_user(x, ptr);\
|
|
|
|
else\
|
|
|
|
__ret = -EFAULT;\
|
|
|
|
__ret;\
|
|
|
|
})
|
|
|
|
|
|
|
|
#define get_user(x,ptr)\
|
|
|
|
({\
|
|
|
|
int __ret;\
|
|
|
|
if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
|
|
|
|
__ret = __get_user(x, ptr);\
|
|
|
|
else\
|
|
|
|
__ret = -EFAULT;\
|
|
|
|
__ret;\
|
|
|
|
})
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
/* Functions for accessing guest memory. The tget and tput functions
|
|
|
|
read/write single values, byteswapping as neccessary. The lock_user
|
|
|
|
gets a pointer to a contiguous area of guest memory, but does not perform
|
|
|
|
and byteswapping. lock_user may return either a pointer to the guest
|
|
|
|
memory, or a temporary buffer. */
|
|
|
|
|
|
|
|
/* Lock an area of guest memory into the host. If copy is true then the
|
|
|
|
host area will have the same contents as the guest. */
|
2007-10-14 18:27:31 +02:00
|
|
|
static inline void *lock_user(abi_ulong guest_addr, long len, int copy)
|
2004-02-22 14:40:13 +01:00
|
|
|
{
|
2006-03-25 20:31:22 +01:00
|
|
|
#ifdef DEBUG_REMAP
|
|
|
|
void *addr;
|
|
|
|
addr = malloc(len);
|
|
|
|
if (copy)
|
|
|
|
memcpy(addr, g2h(guest_addr), len);
|
2004-02-22 14:40:13 +01:00
|
|
|
else
|
2006-03-25 20:31:22 +01:00
|
|
|
memset(addr, 0, len);
|
|
|
|
return addr;
|
|
|
|
#else
|
|
|
|
return g2h(guest_addr);
|
|
|
|
#endif
|
2004-02-22 14:40:13 +01:00
|
|
|
}
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
/* Unlock an area of guest memory. The first LEN bytes must be flushed back
|
|
|
|
to guest memory. */
|
2007-10-14 18:27:31 +02:00
|
|
|
static inline void unlock_user(void *host_addr, abi_ulong guest_addr,
|
|
|
|
long len)
|
2004-02-22 14:40:13 +01:00
|
|
|
{
|
2006-03-25 20:31:22 +01:00
|
|
|
#ifdef DEBUG_REMAP
|
|
|
|
if (host_addr == g2h(guest_addr))
|
|
|
|
return;
|
|
|
|
if (len > 0)
|
|
|
|
memcpy(g2h(guest_addr), host_addr, len);
|
|
|
|
free(host_addr);
|
|
|
|
#endif
|
2004-02-22 14:40:13 +01:00
|
|
|
}
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
/* Return the length of a string in target memory. */
|
2007-10-14 18:27:31 +02:00
|
|
|
static inline int target_strlen(abi_ulong ptr)
|
2004-02-22 14:40:13 +01:00
|
|
|
{
|
2006-03-25 20:31:22 +01:00
|
|
|
return strlen(g2h(ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Like lock_user but for null terminated strings. */
|
2007-10-14 18:27:31 +02:00
|
|
|
static inline void *lock_user_string(abi_ulong guest_addr)
|
2006-03-25 20:31:22 +01:00
|
|
|
{
|
|
|
|
long len;
|
|
|
|
len = target_strlen(guest_addr) + 1;
|
|
|
|
return lock_user(guest_addr, len, 1);
|
2004-02-22 14:40:13 +01:00
|
|
|
}
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
/* Helper macros for locking/ulocking a target struct. */
|
|
|
|
#define lock_user_struct(host_ptr, guest_addr, copy) \
|
|
|
|
host_ptr = lock_user(guest_addr, sizeof(*host_ptr), copy)
|
|
|
|
#define unlock_user_struct(host_ptr, guest_addr, copy) \
|
|
|
|
unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
|
|
|
|
|
|
|
|
#define tget8(addr) ldub(addr)
|
|
|
|
#define tput8(addr, val) stb(addr, val)
|
|
|
|
#define tget16(addr) lduw(addr)
|
|
|
|
#define tput16(addr, val) stw(addr, val)
|
|
|
|
#define tget32(addr) ldl(addr)
|
|
|
|
#define tput32(addr, val) stl(addr, val)
|
|
|
|
#define tget64(addr) ldq(addr)
|
|
|
|
#define tput64(addr, val) stq(addr, val)
|
2007-10-14 18:27:31 +02:00
|
|
|
#if TARGET_ABI_BITS == 64
|
2006-03-25 20:31:22 +01:00
|
|
|
#define tgetl(addr) ldq(addr)
|
|
|
|
#define tputl(addr, val) stq(addr, val)
|
|
|
|
#else
|
|
|
|
#define tgetl(addr) ldl(addr)
|
|
|
|
#define tputl(addr, val) stl(addr, val)
|
|
|
|
#endif
|
|
|
|
|
2005-02-07 13:35:39 +01:00
|
|
|
#endif /* QEMU_H */
|