blob: f385a1c92b9a26bf13ef578120bd169f45aef6f4 [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;
21 unsigned long end_data;
22 unsigned long start_brk;
23 unsigned long brk;
24 unsigned long start_mmap;
25 unsigned long mmap;
26 unsigned long rss;
27 unsigned long start_stack;
28 unsigned long arg_start;
29 unsigned long arg_end;
30 unsigned long env_start;
31 unsigned long env_end;
32 unsigned long entry;
33 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 /* Extra fields for semihosted binaries. */
66 uint32_t stack_base;
67 uint32_t heap_base;
68 uint32_t heap_limit;
69 int swi_errno;
bellard28c4f362004-02-16 21:47:43 +000070#endif
bellardb346ff42003-06-15 20:05:50 +000071#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000072 struct target_vm86plus_struct *target_v86;
73 struct vm86_saved_state vm86_saved_regs;
bellardb333af02003-05-14 21:48:51 +000074 struct target_vm86plus_struct vm86plus;
bellard631271d2003-05-10 13:14:52 +000075 uint32_t v86flags;
76 uint32_t v86mask;
bellardb346ff42003-06-15 20:05:50 +000077#endif
bellard851e67a2003-03-29 16:53:14 +000078 int used; /* non zero if used */
79 uint8_t stack[0];
80} __attribute__((aligned(16))) TaskState;
81
82extern TaskState *first_task_state;
83
bellard32ce6332003-04-11 00:16:16 +000084int elf_exec(const char * filename, char ** argv, char ** envp,
bellard01ffc752003-02-18 23:00:51 +000085 struct target_pt_regs * regs, struct image_info *infop);
bellard31e31b82003-02-18 22:55:36 +000086
87void target_set_brk(char *new_brk);
bellarda4f81972005-04-23 18:25:41 +000088long do_brk(char *new_brk);
bellard31e31b82003-02-18 22:55:36 +000089void syscall_init(void);
bellard6dbad632003-03-16 18:05:05 +000090long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
bellard31e31b82003-02-18 22:55:36 +000091 long arg4, long arg5, long arg6);
92void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
bellardb346ff42003-06-15 20:05:50 +000093extern CPUState *global_env;
94void cpu_loop(CPUState *env);
bellard32ce6332003-04-11 00:16:16 +000095void init_paths(const char *prefix);
96const char *path(const char *pathname);
bellard6977fbf2003-04-29 20:39:23 +000097
98extern int loglevel;
bellard631271d2003-05-10 13:14:52 +000099extern FILE *logfile;
100
bellardb346ff42003-06-15 20:05:50 +0000101/* signal.c */
102void process_pending_signals(void *cpu_env);
103void signal_init(void);
104int queue_signal(int sig, target_siginfo_t *info);
105void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
106void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
107long do_sigreturn(CPUState *env);
108long do_rt_sigreturn(CPUState *env);
109
110#ifdef TARGET_I386
bellard631271d2003-05-10 13:14:52 +0000111/* vm86.c */
112void save_v86_state(CPUX86State *env);
bellard447db212003-05-10 15:10:36 +0000113void handle_vm86_trap(CPUX86State *env, int trapno);
bellard631271d2003-05-10 13:14:52 +0000114void handle_vm86_fault(CPUX86State *env);
115int do_vm86(CPUX86State *env, long subfunction,
116 struct target_vm86plus_struct * target_v86);
bellardb346ff42003-06-15 20:05:50 +0000117#endif
bellard631271d2003-05-10 13:14:52 +0000118
bellard54936002003-05-13 00:25:15 +0000119/* mmap.c */
120int target_mprotect(unsigned long start, unsigned long len, int prot);
121long target_mmap(unsigned long start, unsigned long len, int prot,
122 int flags, int fd, unsigned long offset);
123int target_munmap(unsigned long start, unsigned long len);
124long target_mremap(unsigned long old_addr, unsigned long old_size,
125 unsigned long new_size, unsigned long flags,
126 unsigned long new_addr);
127int target_msync(unsigned long start, unsigned long len, int flags);
128
bellardedf779f2004-02-22 13:40:13 +0000129/* user access */
130
131#define VERIFY_READ 0
132#define VERIFY_WRITE 1
133
134#define access_ok(type,addr,size) (1)
135
136#define __put_user(x,ptr)\
137({\
138 int size = sizeof(*ptr);\
139 switch(size) {\
140 case 1:\
141 stb(ptr, (typeof(*ptr))(x));\
142 break;\
143 case 2:\
144 stw(ptr, (typeof(*ptr))(x));\
145 break;\
146 case 4:\
147 stl(ptr, (typeof(*ptr))(x));\
148 break;\
149 case 8:\
150 stq(ptr, (typeof(*ptr))(x));\
151 break;\
152 default:\
153 abort();\
154 }\
155 0;\
156})
157
158#define __get_user(x, ptr) \
159({\
160 int size = sizeof(*ptr);\
161 switch(size) {\
162 case 1:\
bellardd69d1fa2004-06-19 16:57:17 +0000163 x = (typeof(*ptr))ldub((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000164 break;\
165 case 2:\
bellardd69d1fa2004-06-19 16:57:17 +0000166 x = (typeof(*ptr))lduw((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000167 break;\
168 case 4:\
bellardd69d1fa2004-06-19 16:57:17 +0000169 x = (typeof(*ptr))ldl((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000170 break;\
171 case 8:\
bellardd69d1fa2004-06-19 16:57:17 +0000172 x = (typeof(*ptr))ldq((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000173 break;\
174 default:\
175 abort();\
176 }\
177 0;\
178})
179
180static inline unsigned long __copy_to_user(void *dst, const void *src,
181 unsigned long size)
182{
183 memcpy(dst, src, size);
184 return 0;
185}
186
187static inline unsigned long __copy_from_user(void *dst, const void *src,
188 unsigned long size)
189{
190 memcpy(dst, src, size);
191 return 0;
192}
193
194static inline unsigned long __clear_user(void *dst, unsigned long size)
195{
196 memset(dst, 0, size);
197 return 0;
198}
199
200#define put_user(x,ptr)\
201({\
202 int __ret;\
203 if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
204 __ret = __put_user(x, ptr);\
205 else\
206 __ret = -EFAULT;\
207 __ret;\
208})
209
210#define get_user(x,ptr)\
211({\
212 int __ret;\
213 if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
214 __ret = __get_user(x, ptr);\
215 else\
216 __ret = -EFAULT;\
217 __ret;\
218})
219
220static inline unsigned long copy_to_user(void *dst, const void *src,
221 unsigned long size)
222{
223 if (access_ok(VERIFY_WRITE, dst, size))
224 return __copy_to_user(dst, src, size);
225 else
226 return size;
227}
228
229static inline unsigned long copy_from_user(void *dst, const void *src,
230 unsigned long size)
231{
232 if (access_ok(VERIFY_READ, src, size))
233 return __copy_from_user(dst, src, size);
234 else
235 return size;
236}
237
238static inline unsigned long clear_user(void *dst, unsigned long size)
239{
240 if (access_ok(VERIFY_WRITE, dst, size))
241 return __clear_user(dst, size);
242 else
243 return size;
244}
245
bellarde88de092005-02-07 12:35:39 +0000246#endif /* QEMU_H */