blob: 8c03ad19021ff6cc54adb76acbb636442b12c7f4 [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"
bellard1fddef42005-04-17 19:16:13 +000012#include "gdbstub.h"
bellard66fb9762003-03-23 01:06:05 +000013
bellard31e31b82003-02-18 22:55:36 +000014/* This struct is used to hold certain information about the image.
15 * Basically, it replicates in user space what would be certain
16 * task_struct fields in the kernel
17 */
18struct image_info {
19 unsigned long start_code;
20 unsigned long end_code;
pbrooke5fe0c52006-06-11 13:32:59 +000021 unsigned long start_data;
bellard31e31b82003-02-18 22:55:36 +000022 unsigned long end_data;
23 unsigned long start_brk;
24 unsigned long brk;
25 unsigned long start_mmap;
26 unsigned long mmap;
27 unsigned long rss;
28 unsigned long start_stack;
bellard31e31b82003-02-18 22:55:36 +000029 unsigned long entry;
pbrook978efd62006-06-17 18:30:42 +000030 target_ulong code_offset;
31 target_ulong data_offset;
pbrook38d06622006-11-19 20:29:35 +000032 char **host_argv;
bellard31e31b82003-02-18 22:55:36 +000033 int personality;
34};
35
bellardb346ff42003-06-15 20:05:50 +000036#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000037/* Information about the current linux thread */
38struct vm86_saved_state {
39 uint32_t eax; /* return code */
40 uint32_t ebx;
41 uint32_t ecx;
42 uint32_t edx;
43 uint32_t esi;
44 uint32_t edi;
45 uint32_t ebp;
46 uint32_t esp;
47 uint32_t eflags;
48 uint32_t eip;
49 uint16_t cs, ss, ds, es, fs, gs;
50};
bellardb346ff42003-06-15 20:05:50 +000051#endif
bellard851e67a2003-03-29 16:53:14 +000052
bellard28c4f362004-02-16 21:47:43 +000053#ifdef TARGET_ARM
54/* FPU emulator */
55#include "nwfpe/fpa11.h"
bellard28c4f362004-02-16 21:47:43 +000056#endif
57
bellard851e67a2003-03-29 16:53:14 +000058/* NOTE: we force a big alignment so that the stack stored after is
59 aligned too */
60typedef struct TaskState {
61 struct TaskState *next;
bellard28c4f362004-02-16 21:47:43 +000062#ifdef TARGET_ARM
63 /* FPA state */
64 FPA11 fpa;
bellarda4f81972005-04-23 18:25:41 +000065 int swi_errno;
bellard28c4f362004-02-16 21:47:43 +000066#endif
j_mayer84409dd2007-04-06 08:56:50 +000067#if defined(TARGET_I386) && !defined(TARGET_X86_64)
pbrook53a59602006-03-25 19:31:22 +000068 target_ulong target_v86;
bellard851e67a2003-03-29 16:53:14 +000069 struct vm86_saved_state vm86_saved_regs;
bellardb333af02003-05-14 21:48:51 +000070 struct target_vm86plus_struct vm86plus;
bellard631271d2003-05-10 13:14:52 +000071 uint32_t v86flags;
72 uint32_t v86mask;
bellardb346ff42003-06-15 20:05:50 +000073#endif
pbrooke6e59062006-10-22 00:18:54 +000074#ifdef TARGET_M68K
75 int sim_syscalls;
76#endif
pbrooka87295e2007-05-26 15:09:38 +000077#if defined(TARGET_ARM) || defined(TARGET_M68K)
78 /* Extra fields for semihosted binaries. */
79 uint32_t stack_base;
80 uint32_t heap_base;
81 uint32_t heap_limit;
82#endif
bellard851e67a2003-03-29 16:53:14 +000083 int used; /* non zero if used */
pbrook978efd62006-06-17 18:30:42 +000084 struct image_info *info;
bellard851e67a2003-03-29 16:53:14 +000085 uint8_t stack[0];
86} __attribute__((aligned(16))) TaskState;
87
88extern TaskState *first_task_state;
pbrookc5937222006-05-14 11:30:38 +000089extern const char *qemu_uname_release;
bellard851e67a2003-03-29 16:53:14 +000090
pbrooke5fe0c52006-06-11 13:32:59 +000091/* ??? See if we can avoid exposing so much of the loader internals. */
92/*
93 * MAX_ARG_PAGES defines the number of pages allocated for arguments
94 * and envelope for the new program. 32 should suffice, this gives
95 * a maximum env+arg of 128kB w/4KB pages!
96 */
97#define MAX_ARG_PAGES 32
98
99/*
ths5fafdf22007-09-16 21:08:06 +0000100 * This structure is used to hold the arguments that are
pbrooke5fe0c52006-06-11 13:32:59 +0000101 * used when loading binaries.
102 */
103struct linux_binprm {
104 char buf[128];
105 void *page[MAX_ARG_PAGES];
106 unsigned long p;
107 int fd;
108 int e_uid, e_gid;
109 int argc, envc;
110 char **argv;
111 char **envp;
112 char * filename; /* Name of binary */
113};
114
115void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
116target_ulong loader_build_argptr(int envc, int argc, target_ulong sp,
117 target_ulong stringp, int push_ptr);
ths5fafdf22007-09-16 21:08:06 +0000118int loader_exec(const char * filename, char ** argv, char ** envp,
bellard01ffc752003-02-18 23:00:51 +0000119 struct target_pt_regs * regs, struct image_info *infop);
bellard31e31b82003-02-18 22:55:36 +0000120
pbrooke5fe0c52006-06-11 13:32:59 +0000121int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
122 struct image_info * info);
123int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
124 struct image_info * info);
125
126void memcpy_to_target(target_ulong dest, const void *src,
127 unsigned long len);
pbrook53a59602006-03-25 19:31:22 +0000128void target_set_brk(target_ulong new_brk);
j_mayer32407102007-09-26 23:01:49 +0000129target_long do_brk(target_ulong new_brk);
bellard31e31b82003-02-18 22:55:36 +0000130void syscall_init(void);
j_mayer32407102007-09-26 23:01:49 +0000131target_long do_syscall(void *cpu_env, int num, target_long arg1,
132 target_long arg2, target_long arg3, target_long arg4,
133 target_long arg5, target_long arg6);
bellard31e31b82003-02-18 22:55:36 +0000134void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
bellardb346ff42003-06-15 20:05:50 +0000135extern CPUState *global_env;
136void cpu_loop(CPUState *env);
bellard32ce6332003-04-11 00:16:16 +0000137void init_paths(const char *prefix);
138const char *path(const char *pathname);
bellard6977fbf2003-04-29 20:39:23 +0000139
140extern int loglevel;
bellard631271d2003-05-10 13:14:52 +0000141extern FILE *logfile;
142
bellardb346ff42003-06-15 20:05:50 +0000143/* signal.c */
144void process_pending_signals(void *cpu_env);
145void signal_init(void);
146int queue_signal(int sig, target_siginfo_t *info);
147void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
148void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
149long do_sigreturn(CPUState *env);
150long do_rt_sigreturn(CPUState *env);
151
152#ifdef TARGET_I386
bellard631271d2003-05-10 13:14:52 +0000153/* vm86.c */
154void save_v86_state(CPUX86State *env);
bellard447db212003-05-10 15:10:36 +0000155void handle_vm86_trap(CPUX86State *env, int trapno);
bellard631271d2003-05-10 13:14:52 +0000156void handle_vm86_fault(CPUX86State *env);
pbrook53a59602006-03-25 19:31:22 +0000157int do_vm86(CPUX86State *env, long subfunction, target_ulong v86_addr);
bellardb346ff42003-06-15 20:05:50 +0000158#endif
bellard631271d2003-05-10 13:14:52 +0000159
bellard54936002003-05-13 00:25:15 +0000160/* mmap.c */
pbrook53a59602006-03-25 19:31:22 +0000161int target_mprotect(target_ulong start, target_ulong len, int prot);
ths5fafdf22007-09-16 21:08:06 +0000162long target_mmap(target_ulong start, target_ulong len, int prot,
pbrook53a59602006-03-25 19:31:22 +0000163 int flags, int fd, target_ulong offset);
164int target_munmap(target_ulong start, target_ulong len);
ths5fafdf22007-09-16 21:08:06 +0000165long target_mremap(target_ulong old_addr, target_ulong old_size,
pbrook53a59602006-03-25 19:31:22 +0000166 target_ulong new_size, unsigned long flags,
167 target_ulong new_addr);
168int target_msync(target_ulong start, target_ulong len, int flags);
bellard54936002003-05-13 00:25:15 +0000169
bellardedf779f2004-02-22 13:40:13 +0000170/* user access */
171
172#define VERIFY_READ 0
173#define VERIFY_WRITE 1
174
175#define access_ok(type,addr,size) (1)
176
pbrook53a59602006-03-25 19:31:22 +0000177/* NOTE get_user and put_user use host addresses. */
bellardedf779f2004-02-22 13:40:13 +0000178#define __put_user(x,ptr)\
179({\
180 int size = sizeof(*ptr);\
181 switch(size) {\
182 case 1:\
pbrook53a59602006-03-25 19:31:22 +0000183 *(uint8_t *)(ptr) = (typeof(*ptr))(x);\
bellardedf779f2004-02-22 13:40:13 +0000184 break;\
185 case 2:\
pbrook53a59602006-03-25 19:31:22 +0000186 *(uint16_t *)(ptr) = tswap16((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000187 break;\
188 case 4:\
pbrook53a59602006-03-25 19:31:22 +0000189 *(uint32_t *)(ptr) = tswap32((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000190 break;\
191 case 8:\
pbrook53a59602006-03-25 19:31:22 +0000192 *(uint64_t *)(ptr) = tswap64((typeof(*ptr))(x));\
bellardedf779f2004-02-22 13:40:13 +0000193 break;\
194 default:\
195 abort();\
196 }\
197 0;\
198})
199
200#define __get_user(x, ptr) \
201({\
202 int size = sizeof(*ptr);\
203 switch(size) {\
204 case 1:\
pbrook53a59602006-03-25 19:31:22 +0000205 x = (typeof(*ptr))*(uint8_t *)(ptr);\
bellardedf779f2004-02-22 13:40:13 +0000206 break;\
207 case 2:\
pbrook53a59602006-03-25 19:31:22 +0000208 x = (typeof(*ptr))tswap16(*(uint16_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000209 break;\
210 case 4:\
pbrook53a59602006-03-25 19:31:22 +0000211 x = (typeof(*ptr))tswap32(*(uint32_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000212 break;\
213 case 8:\
pbrook53a59602006-03-25 19:31:22 +0000214 x = (typeof(*ptr))tswap64(*(uint64_t *)(ptr));\
bellardedf779f2004-02-22 13:40:13 +0000215 break;\
216 default:\
217 abort();\
218 }\
219 0;\
220})
221
bellardedf779f2004-02-22 13:40:13 +0000222#define put_user(x,ptr)\
223({\
224 int __ret;\
225 if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
226 __ret = __put_user(x, ptr);\
227 else\
228 __ret = -EFAULT;\
229 __ret;\
230})
231
232#define get_user(x,ptr)\
233({\
234 int __ret;\
235 if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
236 __ret = __get_user(x, ptr);\
237 else\
238 __ret = -EFAULT;\
239 __ret;\
240})
241
pbrook53a59602006-03-25 19:31:22 +0000242/* Functions for accessing guest memory. The tget and tput functions
243 read/write single values, byteswapping as neccessary. The lock_user
244 gets a pointer to a contiguous area of guest memory, but does not perform
245 and byteswapping. lock_user may return either a pointer to the guest
246 memory, or a temporary buffer. */
247
248/* Lock an area of guest memory into the host. If copy is true then the
249 host area will have the same contents as the guest. */
250static inline void *lock_user(target_ulong guest_addr, long len, int copy)
bellardedf779f2004-02-22 13:40:13 +0000251{
pbrook53a59602006-03-25 19:31:22 +0000252#ifdef DEBUG_REMAP
253 void *addr;
254 addr = malloc(len);
255 if (copy)
256 memcpy(addr, g2h(guest_addr), len);
bellardedf779f2004-02-22 13:40:13 +0000257 else
pbrook53a59602006-03-25 19:31:22 +0000258 memset(addr, 0, len);
259 return addr;
260#else
261 return g2h(guest_addr);
262#endif
bellardedf779f2004-02-22 13:40:13 +0000263}
264
pbrook53a59602006-03-25 19:31:22 +0000265/* Unlock an area of guest memory. The first LEN bytes must be flushed back
266 to guest memory. */
267static inline void unlock_user(void *host_addr, target_ulong guest_addr,
268 long len)
bellardedf779f2004-02-22 13:40:13 +0000269{
pbrook53a59602006-03-25 19:31:22 +0000270#ifdef DEBUG_REMAP
271 if (host_addr == g2h(guest_addr))
272 return;
273 if (len > 0)
274 memcpy(g2h(guest_addr), host_addr, len);
275 free(host_addr);
276#endif
bellardedf779f2004-02-22 13:40:13 +0000277}
278
pbrook53a59602006-03-25 19:31:22 +0000279/* Return the length of a string in target memory. */
280static inline int target_strlen(target_ulong ptr)
bellardedf779f2004-02-22 13:40:13 +0000281{
pbrook53a59602006-03-25 19:31:22 +0000282 return strlen(g2h(ptr));
bellardedf779f2004-02-22 13:40:13 +0000283}
284
pbrook53a59602006-03-25 19:31:22 +0000285/* Like lock_user but for null terminated strings. */
286static inline void *lock_user_string(target_ulong guest_addr)
287{
288 long len;
289 len = target_strlen(guest_addr) + 1;
290 return lock_user(guest_addr, len, 1);
291}
292
293/* Helper macros for locking/ulocking a target struct. */
294#define lock_user_struct(host_ptr, guest_addr, copy) \
295 host_ptr = lock_user(guest_addr, sizeof(*host_ptr), copy)
296#define unlock_user_struct(host_ptr, guest_addr, copy) \
297 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
298
299#define tget8(addr) ldub(addr)
300#define tput8(addr, val) stb(addr, val)
301#define tget16(addr) lduw(addr)
302#define tput16(addr, val) stw(addr, val)
303#define tget32(addr) ldl(addr)
304#define tput32(addr, val) stl(addr, val)
305#define tget64(addr) ldq(addr)
306#define tput64(addr, val) stq(addr, val)
307#if TARGET_LONG_BITS == 64
308#define tgetl(addr) ldq(addr)
309#define tputl(addr, val) stq(addr, val)
310#else
311#define tgetl(addr) ldl(addr)
312#define tputl(addr, val) stl(addr, val)
313#endif
314
bellarde88de092005-02-07 12:35:39 +0000315#endif /* QEMU_H */