blob: e07ac7b4dcd26e1dea37b33ae888b60a882a305c [file] [log] [blame]
bellarde88de092005-02-07 12:35:39 +00001#ifndef QEMU_H
2#define QEMU_H
bellard31e31b82003-02-18 22:55:36 +00003
4#include "thunk.h"
5
bellard9de5e442003-03-23 16:49:39 +00006#include <signal.h>
bellardedf779f2004-02-22 13:40:13 +00007#include <string.h>
bellard9de5e442003-03-23 16:49:39 +00008#include "syscall_defs.h"
9
bellard6180a182003-09-30 21:04:53 +000010#include "cpu.h"
11#include "syscall.h"
thsa04e1342007-09-27 13:57:58 +000012#include "target_signal.h"
bellard1fddef42005-04-17 19:16:13 +000013#include "gdbstub.h"
bellard66fb9762003-03-23 01:06:05 +000014
bellard31e31b82003-02-18 22:55:36 +000015/* This struct is used to hold certain information about the image.
16 * Basically, it replicates in user space what would be certain
17 * task_struct fields in the kernel
18 */
19struct image_info {
j_mayer92a343d2007-09-27 01:14:15 +000020 target_ulong load_addr;
bellard31e31b82003-02-18 22:55:36 +000021 unsigned long start_code;
22 unsigned long end_code;
pbrooke5fe0c52006-06-11 13:32:59 +000023 unsigned long start_data;
bellard31e31b82003-02-18 22:55:36 +000024 unsigned long end_data;
25 unsigned long start_brk;
26 unsigned long brk;
27 unsigned long start_mmap;
28 unsigned long mmap;
29 unsigned long rss;
30 unsigned long start_stack;
bellard31e31b82003-02-18 22:55:36 +000031 unsigned long entry;
pbrook978efd62006-06-17 18:30:42 +000032 target_ulong code_offset;
33 target_ulong data_offset;
pbrook38d06622006-11-19 20:29:35 +000034 char **host_argv;
bellard31e31b82003-02-18 22:55:36 +000035 int personality;
36};
37
bellardb346ff42003-06-15 20:05:50 +000038#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000039/* Information about the current linux thread */
40struct vm86_saved_state {
41 uint32_t eax; /* return code */
42 uint32_t ebx;
43 uint32_t ecx;
44 uint32_t edx;
45 uint32_t esi;
46 uint32_t edi;
47 uint32_t ebp;
48 uint32_t esp;
49 uint32_t eflags;
50 uint32_t eip;
51 uint16_t cs, ss, ds, es, fs, gs;
52};
bellardb346ff42003-06-15 20:05:50 +000053#endif
bellard851e67a2003-03-29 16:53:14 +000054
bellard28c4f362004-02-16 21:47:43 +000055#ifdef TARGET_ARM
56/* FPU emulator */
57#include "nwfpe/fpa11.h"
bellard28c4f362004-02-16 21:47:43 +000058#endif
59
bellard851e67a2003-03-29 16:53:14 +000060/* NOTE: we force a big alignment so that the stack stored after is
61 aligned too */
62typedef struct TaskState {
63 struct TaskState *next;
bellard28c4f362004-02-16 21:47:43 +000064#ifdef TARGET_ARM
65 /* FPA state */
66 FPA11 fpa;
bellarda4f81972005-04-23 18:25:41 +000067 int swi_errno;
bellard28c4f362004-02-16 21:47:43 +000068#endif
j_mayer84409dd2007-04-06 08:56:50 +000069#if defined(TARGET_I386) && !defined(TARGET_X86_64)
pbrook53a59602006-03-25 19:31:22 +000070 target_ulong target_v86;
bellard851e67a2003-03-29 16:53:14 +000071 struct vm86_saved_state vm86_saved_regs;
bellardb333af02003-05-14 21:48:51 +000072 struct target_vm86plus_struct vm86plus;
bellard631271d2003-05-10 13:14:52 +000073 uint32_t v86flags;
74 uint32_t v86mask;
bellardb346ff42003-06-15 20:05:50 +000075#endif
pbrooke6e59062006-10-22 00:18:54 +000076#ifdef TARGET_M68K
77 int sim_syscalls;
78#endif
pbrooka87295e2007-05-26 15:09:38 +000079#if defined(TARGET_ARM) || defined(TARGET_M68K)
80 /* Extra fields for semihosted binaries. */
81 uint32_t stack_base;
82 uint32_t heap_base;
83 uint32_t heap_limit;
84#endif
bellard851e67a2003-03-29 16:53:14 +000085 int used; /* non zero if used */
pbrook978efd62006-06-17 18:30:42 +000086 struct image_info *info;
bellard851e67a2003-03-29 16:53:14 +000087 uint8_t stack[0];
88} __attribute__((aligned(16))) TaskState;
89
90extern TaskState *first_task_state;
pbrookc5937222006-05-14 11:30:38 +000091extern const char *qemu_uname_release;
bellard851e67a2003-03-29 16:53:14 +000092
pbrooke5fe0c52006-06-11 13:32:59 +000093/* ??? See if we can avoid exposing so much of the loader internals. */
94/*
95 * MAX_ARG_PAGES defines the number of pages allocated for arguments
96 * and envelope for the new program. 32 should suffice, this gives
97 * a maximum env+arg of 128kB w/4KB pages!
98 */
99#define MAX_ARG_PAGES 32
100
101/*
ths5fafdf22007-09-16 21:08:06 +0000102 * This structure is used to hold the arguments that are
pbrooke5fe0c52006-06-11 13:32:59 +0000103 * used when loading binaries.
104 */
105struct linux_binprm {
106 char buf[128];
107 void *page[MAX_ARG_PAGES];
108 unsigned long p;
109 int fd;
110 int e_uid, e_gid;
111 int argc, envc;
112 char **argv;
113 char **envp;
114 char * filename; /* Name of binary */
115};
116
117void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
118target_ulong loader_build_argptr(int envc, int argc, target_ulong sp,
119 target_ulong stringp, int push_ptr);
ths5fafdf22007-09-16 21:08:06 +0000120int loader_exec(const char * filename, char ** argv, char ** envp,
bellard01ffc752003-02-18 23:00:51 +0000121 struct target_pt_regs * regs, struct image_info *infop);
bellard31e31b82003-02-18 22:55:36 +0000122
pbrooke5fe0c52006-06-11 13:32:59 +0000123int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
124 struct image_info * info);
125int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
126 struct image_info * info);
127
128void memcpy_to_target(target_ulong dest, const void *src,
129 unsigned long len);
pbrook53a59602006-03-25 19:31:22 +0000130void target_set_brk(target_ulong new_brk);
j_mayer32407102007-09-26 23:01:49 +0000131target_long do_brk(target_ulong new_brk);
bellard31e31b82003-02-18 22:55:36 +0000132void syscall_init(void);
j_mayer32407102007-09-26 23:01:49 +0000133target_long do_syscall(void *cpu_env, int num, target_long arg1,
134 target_long arg2, target_long arg3, target_long arg4,
135 target_long arg5, target_long arg6);
bellard31e31b82003-02-18 22:55:36 +0000136void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
bellardb346ff42003-06-15 20:05:50 +0000137extern CPUState *global_env;
138void cpu_loop(CPUState *env);
bellard32ce6332003-04-11 00:16:16 +0000139void init_paths(const char *prefix);
140const char *path(const char *pathname);
bellard6977fbf2003-04-29 20:39:23 +0000141
142extern int loglevel;
bellard631271d2003-05-10 13:14:52 +0000143extern FILE *logfile;
144
bellardb346ff42003-06-15 20:05:50 +0000145/* signal.c */
146void process_pending_signals(void *cpu_env);
147void signal_init(void);
148int queue_signal(int sig, target_siginfo_t *info);
149void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
150void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
151long do_sigreturn(CPUState *env);
152long do_rt_sigreturn(CPUState *env);
thsa04e1342007-09-27 13:57:58 +0000153int do_sigaltstack(const struct target_sigaltstack *uss,
154 struct target_sigaltstack *uoss,
155 target_ulong sp);
bellardb346ff42003-06-15 20:05:50 +0000156
157#ifdef TARGET_I386
bellard631271d2003-05-10 13:14:52 +0000158/* vm86.c */
159void save_v86_state(CPUX86State *env);
bellard447db212003-05-10 15:10:36 +0000160void handle_vm86_trap(CPUX86State *env, int trapno);
bellard631271d2003-05-10 13:14:52 +0000161void handle_vm86_fault(CPUX86State *env);
pbrook53a59602006-03-25 19:31:22 +0000162int do_vm86(CPUX86State *env, long subfunction, target_ulong v86_addr);
bellardb346ff42003-06-15 20:05:50 +0000163#endif
bellard631271d2003-05-10 13:14:52 +0000164
bellard54936002003-05-13 00:25:15 +0000165/* mmap.c */
pbrook53a59602006-03-25 19:31:22 +0000166int target_mprotect(target_ulong start, target_ulong len, int prot);
thsa5b85f72007-09-30 14:32:45 +0000167target_long target_mmap(target_ulong start, target_ulong len, int prot,
pbrook53a59602006-03-25 19:31:22 +0000168 int flags, int fd, target_ulong offset);
169int target_munmap(target_ulong start, target_ulong len);
thsa5b85f72007-09-30 14:32:45 +0000170target_long target_mremap(target_ulong old_addr, target_ulong old_size,
pbrook53a59602006-03-25 19:31:22 +0000171 target_ulong new_size, unsigned long flags,
172 target_ulong new_addr);
173int target_msync(target_ulong start, target_ulong len, int flags);
bellard54936002003-05-13 00:25:15 +0000174
bellardedf779f2004-02-22 13:40:13 +0000175/* user access */
176
177#define VERIFY_READ 0
178#define VERIFY_WRITE 1
179
180#define access_ok(type,addr,size) (1)
181
pbrook53a59602006-03-25 19:31:22 +0000182/* NOTE get_user and put_user use host addresses. */
bellardedf779f2004-02-22 13:40:13 +0000183#define __put_user(x,ptr)\
184({\
185 int size = sizeof(*ptr);\
186 switch(size) {\
187 case 1:\
pbrook53a59602006-03-25 19:31:22 +0000188 *(uint8_t *)(ptr) = (typeof(*ptr))(x);\
bellardedf779f2004-02-22 13:40:13 +0000189 break;\
190 case 2:\
pbrook53a59602006-03-25 19:31:22 +0000191 *(uint16_t *)(ptr) = tswap16((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000192 break;\
193 case 4:\
pbrook53a59602006-03-25 19:31:22 +0000194 *(uint32_t *)(ptr) = tswap32((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000195 break;\
196 case 8:\
pbrook53a59602006-03-25 19:31:22 +0000197 *(uint64_t *)(ptr) = tswap64((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000198 break;\
199 default:\
200 abort();\
201 }\
202 0;\
203})
204
205#define __get_user(x, ptr) \
206({\
207 int size = sizeof(*ptr);\
208 switch(size) {\
209 case 1:\
pbrook53a59602006-03-25 19:31:22 +0000210 x = (typeof(*ptr))*(uint8_t *)(ptr);\
bellardedf779f2004-02-22 13:40:13 +0000211 break;\
212 case 2:\
pbrook53a59602006-03-25 19:31:22 +0000213 x = (typeof(*ptr))tswap16(*(uint16_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000214 break;\
215 case 4:\
pbrook53a59602006-03-25 19:31:22 +0000216 x = (typeof(*ptr))tswap32(*(uint32_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000217 break;\
218 case 8:\
pbrook53a59602006-03-25 19:31:22 +0000219 x = (typeof(*ptr))tswap64(*(uint64_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000220 break;\
221 default:\
222 abort();\
223 }\
224 0;\
225})
226
bellardedf779f2004-02-22 13:40:13 +0000227#define put_user(x,ptr)\
228({\
229 int __ret;\
230 if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
231 __ret = __put_user(x, ptr);\
232 else\
233 __ret = -EFAULT;\
234 __ret;\
235})
236
237#define get_user(x,ptr)\
238({\
239 int __ret;\
240 if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
241 __ret = __get_user(x, ptr);\
242 else\
243 __ret = -EFAULT;\
244 __ret;\
245})
246
pbrook53a59602006-03-25 19:31:22 +0000247/* Functions for accessing guest memory. The tget and tput functions
248 read/write single values, byteswapping as neccessary. The lock_user
249 gets a pointer to a contiguous area of guest memory, but does not perform
250 and byteswapping. lock_user may return either a pointer to the guest
251 memory, or a temporary buffer. */
252
253/* Lock an area of guest memory into the host. If copy is true then the
254 host area will have the same contents as the guest. */
255static inline void *lock_user(target_ulong guest_addr, long len, int copy)
bellardedf779f2004-02-22 13:40:13 +0000256{
pbrook53a59602006-03-25 19:31:22 +0000257#ifdef DEBUG_REMAP
258 void *addr;
259 addr = malloc(len);
260 if (copy)
261 memcpy(addr, g2h(guest_addr), len);
bellardedf779f2004-02-22 13:40:13 +0000262 else
pbrook53a59602006-03-25 19:31:22 +0000263 memset(addr, 0, len);
264 return addr;
265#else
266 return g2h(guest_addr);
267#endif
bellardedf779f2004-02-22 13:40:13 +0000268}
269
pbrook53a59602006-03-25 19:31:22 +0000270/* Unlock an area of guest memory. The first LEN bytes must be flushed back
271 to guest memory. */
272static inline void unlock_user(void *host_addr, target_ulong guest_addr,
273 long len)
bellardedf779f2004-02-22 13:40:13 +0000274{
pbrook53a59602006-03-25 19:31:22 +0000275#ifdef DEBUG_REMAP
276 if (host_addr == g2h(guest_addr))
277 return;
278 if (len > 0)
279 memcpy(g2h(guest_addr), host_addr, len);
280 free(host_addr);
281#endif
bellardedf779f2004-02-22 13:40:13 +0000282}
283
pbrook53a59602006-03-25 19:31:22 +0000284/* Return the length of a string in target memory. */
285static inline int target_strlen(target_ulong ptr)
bellardedf779f2004-02-22 13:40:13 +0000286{
pbrook53a59602006-03-25 19:31:22 +0000287 return strlen(g2h(ptr));
bellardedf779f2004-02-22 13:40:13 +0000288}
289
pbrook53a59602006-03-25 19:31:22 +0000290/* Like lock_user but for null terminated strings. */
291static inline void *lock_user_string(target_ulong guest_addr)
292{
293 long len;
294 len = target_strlen(guest_addr) + 1;
295 return lock_user(guest_addr, len, 1);
296}
297
298/* Helper macros for locking/ulocking a target struct. */
299#define lock_user_struct(host_ptr, guest_addr, copy) \
300 host_ptr = lock_user(guest_addr, sizeof(*host_ptr), copy)
301#define unlock_user_struct(host_ptr, guest_addr, copy) \
302 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
303
304#define tget8(addr) ldub(addr)
305#define tput8(addr, val) stb(addr, val)
306#define tget16(addr) lduw(addr)
307#define tput16(addr, val) stw(addr, val)
308#define tget32(addr) ldl(addr)
309#define tput32(addr, val) stl(addr, val)
310#define tget64(addr) ldq(addr)
311#define tput64(addr, val) stq(addr, val)
312#if TARGET_LONG_BITS == 64
313#define tgetl(addr) ldq(addr)
314#define tputl(addr, val) stq(addr, val)
315#else
316#define tgetl(addr) ldl(addr)
317#define tputl(addr, val) stl(addr, val)
318#endif
319
bellarde88de092005-02-07 12:35:39 +0000320#endif /* QEMU_H */