blob: c176a58aa46fe52ade5ad6523062446da1db7d86 [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"
bellard66fb9762003-03-23 01:06:05 +000012
bellard31e31b82003-02-18 22:55:36 +000013/* This struct is used to hold certain information about the image.
14 * Basically, it replicates in user space what would be certain
15 * task_struct fields in the kernel
16 */
17struct image_info {
18 unsigned long start_code;
19 unsigned long end_code;
20 unsigned long end_data;
21 unsigned long start_brk;
22 unsigned long brk;
23 unsigned long start_mmap;
24 unsigned long mmap;
25 unsigned long rss;
26 unsigned long start_stack;
27 unsigned long arg_start;
28 unsigned long arg_end;
29 unsigned long env_start;
30 unsigned long env_end;
31 unsigned long entry;
32 int personality;
33};
34
bellardb346ff42003-06-15 20:05:50 +000035#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000036/* Information about the current linux thread */
37struct vm86_saved_state {
38 uint32_t eax; /* return code */
39 uint32_t ebx;
40 uint32_t ecx;
41 uint32_t edx;
42 uint32_t esi;
43 uint32_t edi;
44 uint32_t ebp;
45 uint32_t esp;
46 uint32_t eflags;
47 uint32_t eip;
48 uint16_t cs, ss, ds, es, fs, gs;
49};
bellardb346ff42003-06-15 20:05:50 +000050#endif
bellard851e67a2003-03-29 16:53:14 +000051
bellard28c4f362004-02-16 21:47:43 +000052#ifdef TARGET_ARM
53/* FPU emulator */
54#include "nwfpe/fpa11.h"
bellard28c4f362004-02-16 21:47:43 +000055#endif
56
bellard851e67a2003-03-29 16:53:14 +000057/* NOTE: we force a big alignment so that the stack stored after is
58 aligned too */
59typedef struct TaskState {
60 struct TaskState *next;
bellard28c4f362004-02-16 21:47:43 +000061#ifdef TARGET_ARM
62 /* FPA state */
63 FPA11 fpa;
64#endif
bellardb346ff42003-06-15 20:05:50 +000065#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000066 struct target_vm86plus_struct *target_v86;
67 struct vm86_saved_state vm86_saved_regs;
bellardb333af02003-05-14 21:48:51 +000068 struct target_vm86plus_struct vm86plus;
bellard631271d2003-05-10 13:14:52 +000069 uint32_t v86flags;
70 uint32_t v86mask;
bellardb346ff42003-06-15 20:05:50 +000071#endif
bellard851e67a2003-03-29 16:53:14 +000072 int used; /* non zero if used */
73 uint8_t stack[0];
74} __attribute__((aligned(16))) TaskState;
75
76extern TaskState *first_task_state;
77
bellard32ce6332003-04-11 00:16:16 +000078int elf_exec(const char * filename, char ** argv, char ** envp,
bellard01ffc752003-02-18 23:00:51 +000079 struct target_pt_regs * regs, struct image_info *infop);
bellard31e31b82003-02-18 22:55:36 +000080
81void target_set_brk(char *new_brk);
82void syscall_init(void);
bellard6dbad632003-03-16 18:05:05 +000083long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
bellard31e31b82003-02-18 22:55:36 +000084 long arg4, long arg5, long arg6);
85void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
bellardb346ff42003-06-15 20:05:50 +000086extern CPUState *global_env;
87void cpu_loop(CPUState *env);
bellard32ce6332003-04-11 00:16:16 +000088void init_paths(const char *prefix);
89const char *path(const char *pathname);
bellard6977fbf2003-04-29 20:39:23 +000090
91extern int loglevel;
bellard631271d2003-05-10 13:14:52 +000092extern FILE *logfile;
93
bellardb346ff42003-06-15 20:05:50 +000094/* signal.c */
95void process_pending_signals(void *cpu_env);
96void signal_init(void);
97int queue_signal(int sig, target_siginfo_t *info);
98void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
99void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
100long do_sigreturn(CPUState *env);
101long do_rt_sigreturn(CPUState *env);
102
103#ifdef TARGET_I386
bellard631271d2003-05-10 13:14:52 +0000104/* vm86.c */
105void save_v86_state(CPUX86State *env);
bellard447db212003-05-10 15:10:36 +0000106void handle_vm86_trap(CPUX86State *env, int trapno);
bellard631271d2003-05-10 13:14:52 +0000107void handle_vm86_fault(CPUX86State *env);
108int do_vm86(CPUX86State *env, long subfunction,
109 struct target_vm86plus_struct * target_v86);
bellardb346ff42003-06-15 20:05:50 +0000110#endif
bellard631271d2003-05-10 13:14:52 +0000111
bellard54936002003-05-13 00:25:15 +0000112/* mmap.c */
113int target_mprotect(unsigned long start, unsigned long len, int prot);
114long target_mmap(unsigned long start, unsigned long len, int prot,
115 int flags, int fd, unsigned long offset);
116int target_munmap(unsigned long start, unsigned long len);
117long target_mremap(unsigned long old_addr, unsigned long old_size,
118 unsigned long new_size, unsigned long flags,
119 unsigned long new_addr);
120int target_msync(unsigned long start, unsigned long len, int flags);
121
bellardedf779f2004-02-22 13:40:13 +0000122/* user access */
123
124#define VERIFY_READ 0
125#define VERIFY_WRITE 1
126
127#define access_ok(type,addr,size) (1)
128
129#define __put_user(x,ptr)\
130({\
131 int size = sizeof(*ptr);\
132 switch(size) {\
133 case 1:\
134 stb(ptr, (typeof(*ptr))(x));\
135 break;\
136 case 2:\
137 stw(ptr, (typeof(*ptr))(x));\
138 break;\
139 case 4:\
140 stl(ptr, (typeof(*ptr))(x));\
141 break;\
142 case 8:\
143 stq(ptr, (typeof(*ptr))(x));\
144 break;\
145 default:\
146 abort();\
147 }\
148 0;\
149})
150
151#define __get_user(x, ptr) \
152({\
153 int size = sizeof(*ptr);\
154 switch(size) {\
155 case 1:\
bellardd69d1fa2004-06-19 16:57:17 +0000156 x = (typeof(*ptr))ldub((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000157 break;\
158 case 2:\
bellardd69d1fa2004-06-19 16:57:17 +0000159 x = (typeof(*ptr))lduw((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000160 break;\
161 case 4:\
bellardd69d1fa2004-06-19 16:57:17 +0000162 x = (typeof(*ptr))ldl((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000163 break;\
164 case 8:\
bellardd69d1fa2004-06-19 16:57:17 +0000165 x = (typeof(*ptr))ldq((void *)ptr);\
bellardedf779f2004-02-22 13:40:13 +0000166 break;\
167 default:\
168 abort();\
169 }\
170 0;\
171})
172
173static inline unsigned long __copy_to_user(void *dst, const void *src,
174 unsigned long size)
175{
176 memcpy(dst, src, size);
177 return 0;
178}
179
180static inline unsigned long __copy_from_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 __clear_user(void *dst, unsigned long size)
188{
189 memset(dst, 0, size);
190 return 0;
191}
192
193#define put_user(x,ptr)\
194({\
195 int __ret;\
196 if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
197 __ret = __put_user(x, ptr);\
198 else\
199 __ret = -EFAULT;\
200 __ret;\
201})
202
203#define get_user(x,ptr)\
204({\
205 int __ret;\
206 if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
207 __ret = __get_user(x, ptr);\
208 else\
209 __ret = -EFAULT;\
210 __ret;\
211})
212
213static inline unsigned long copy_to_user(void *dst, const void *src,
214 unsigned long size)
215{
216 if (access_ok(VERIFY_WRITE, dst, size))
217 return __copy_to_user(dst, src, size);
218 else
219 return size;
220}
221
222static inline unsigned long copy_from_user(void *dst, const void *src,
223 unsigned long size)
224{
225 if (access_ok(VERIFY_READ, src, size))
226 return __copy_from_user(dst, src, size);
227 else
228 return size;
229}
230
231static inline unsigned long clear_user(void *dst, unsigned long size)
232{
233 if (access_ok(VERIFY_WRITE, dst, size))
234 return __clear_user(dst, size);
235 else
236 return size;
237}
238
bellarde88de092005-02-07 12:35:39 +0000239#endif /* QEMU_H */