Properly implement non-execute bit on PowerPC segments and PTEs.
[qemu] / linux-user / qemu.h
1 #ifndef QEMU_H
2 #define QEMU_H
3
4 #include "thunk.h"
5
6 #include <signal.h>
7 #include <string.h>
8 #include "syscall_defs.h"
9
10 #include "cpu.h"
11 #include "syscall.h"
12 #include "target_signal.h"
13 #include "gdbstub.h"
14
15 /* 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  */
19 struct image_info {
20         target_ulong    load_addr;
21         target_ulong    start_code;
22         target_ulong    end_code;
23         target_ulong    start_data;
24         target_ulong    end_data;
25         target_ulong    start_brk;
26         target_ulong    brk;
27         target_ulong    start_mmap;
28         target_ulong    mmap;
29         target_ulong    rss;
30         target_ulong    start_stack;
31         target_ulong    entry;
32         target_ulong    code_offset;
33         target_ulong    data_offset;
34         char            **host_argv;
35         int             personality;
36 };
37
38 #ifdef TARGET_I386
39 /* Information about the current linux thread */
40 struct 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 };
53 #endif
54
55 #ifdef TARGET_ARM
56 /* FPU emulator */
57 #include "nwfpe/fpa11.h"
58 #endif
59
60 /* NOTE: we force a big alignment so that the stack stored after is
61    aligned too */
62 typedef struct TaskState {
63     struct TaskState *next;
64 #ifdef TARGET_ARM
65     /* FPA state */
66     FPA11 fpa;
67     int swi_errno;
68 #endif
69 #if defined(TARGET_I386) && !defined(TARGET_X86_64)
70     target_ulong target_v86;
71     struct vm86_saved_state vm86_saved_regs;
72     struct target_vm86plus_struct vm86plus;
73     uint32_t v86flags;
74     uint32_t v86mask;
75 #endif
76 #ifdef TARGET_M68K
77     int sim_syscalls;
78 #endif
79 #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
85     int used; /* non zero if used */
86     struct image_info *info;
87     uint8_t stack[0];
88 } __attribute__((aligned(16))) TaskState;
89
90 extern TaskState *first_task_state;
91 extern const char *qemu_uname_release;
92
93 /* ??? 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 /*
102  * This structure is used to hold the arguments that are
103  * used when loading binaries.
104  */
105 struct linux_binprm {
106         char buf[128];
107         void *page[MAX_ARG_PAGES];
108         target_ulong 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
117 void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
118 target_ulong loader_build_argptr(int envc, int argc, target_ulong sp,
119                                  target_ulong stringp, int push_ptr);
120 int loader_exec(const char * filename, char ** argv, char ** envp,
121              struct target_pt_regs * regs, struct image_info *infop);
122
123 int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
124                     struct image_info * info);
125 int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
126                     struct image_info * info);
127 #ifdef TARGET_HAS_ELFLOAD32
128 int load_elf_binary_multi(struct linux_binprm *bprm,
129                           struct target_pt_regs *regs,
130                           struct image_info *info);
131 #endif
132
133 void memcpy_to_target(target_ulong dest, const void *src,
134                       unsigned long len);
135 void target_set_brk(target_ulong new_brk);
136 target_long do_brk(target_ulong new_brk);
137 void syscall_init(void);
138 target_long do_syscall(void *cpu_env, int num, target_long arg1,
139                        target_long arg2, target_long arg3, target_long arg4,
140                        target_long arg5, target_long arg6);
141 void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
142 extern CPUState *global_env;
143 void cpu_loop(CPUState *env);
144 void init_paths(const char *prefix);
145 const char *path(const char *pathname);
146
147 extern int loglevel;
148 extern FILE *logfile;
149
150 /* signal.c */
151 void process_pending_signals(void *cpu_env);
152 void signal_init(void);
153 int queue_signal(int sig, target_siginfo_t *info);
154 void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
155 void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
156 long do_sigreturn(CPUState *env);
157 long do_rt_sigreturn(CPUState *env);
158 int do_sigaltstack(const struct target_sigaltstack *uss,
159                    struct target_sigaltstack *uoss,
160                    target_ulong sp);
161
162 #ifdef TARGET_I386
163 /* vm86.c */
164 void save_v86_state(CPUX86State *env);
165 void handle_vm86_trap(CPUX86State *env, int trapno);
166 void handle_vm86_fault(CPUX86State *env);
167 int do_vm86(CPUX86State *env, long subfunction, target_ulong v86_addr);
168 #elif defined(TARGET_SPARC64)
169 void sparc64_set_context(CPUSPARCState *env);
170 void sparc64_get_context(CPUSPARCState *env);
171 #endif
172
173 /* mmap.c */
174 int target_mprotect(target_ulong start, target_ulong len, int prot);
175 target_long target_mmap(target_ulong start, target_ulong len, int prot,
176                  int flags, int fd, target_ulong offset);
177 int target_munmap(target_ulong start, target_ulong len);
178 target_long target_mremap(target_ulong old_addr, target_ulong old_size,
179                    target_ulong new_size, unsigned long flags,
180                    target_ulong new_addr);
181 int target_msync(target_ulong start, target_ulong len, int flags);
182
183 /* user access */
184
185 #define VERIFY_READ 0
186 #define VERIFY_WRITE 1
187
188 #define access_ok(type,addr,size) (1)
189
190 /* NOTE get_user and put_user use host addresses.  */
191 #define __put_user(x,ptr)\
192 ({\
193     int size = sizeof(*ptr);\
194     switch(size) {\
195     case 1:\
196         *(uint8_t *)(ptr) = (typeof(*ptr))(x);\
197         break;\
198     case 2:\
199         *(uint16_t *)(ptr) = tswap16((typeof(*ptr))(x));\
200         break;\
201     case 4:\
202         *(uint32_t *)(ptr) = tswap32((typeof(*ptr))(x));\
203         break;\
204     case 8:\
205         *(uint64_t *)(ptr) = tswap64((typeof(*ptr))(x));\
206         break;\
207     default:\
208         abort();\
209     }\
210     0;\
211 })
212
213 #define __get_user(x, ptr) \
214 ({\
215     int size = sizeof(*ptr);\
216     switch(size) {\
217     case 1:\
218         x = (typeof(*ptr))*(uint8_t *)(ptr);\
219         break;\
220     case 2:\
221         x = (typeof(*ptr))tswap16(*(uint16_t *)(ptr));\
222         break;\
223     case 4:\
224         x = (typeof(*ptr))tswap32(*(uint32_t *)(ptr));\
225         break;\
226     case 8:\
227         x = (typeof(*ptr))tswap64(*(uint64_t *)(ptr));\
228         break;\
229     default:\
230         abort();\
231     }\
232     0;\
233 })
234
235 #define put_user(x,ptr)\
236 ({\
237     int __ret;\
238     if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
239         __ret = __put_user(x, ptr);\
240     else\
241         __ret = -EFAULT;\
242     __ret;\
243 })
244
245 #define get_user(x,ptr)\
246 ({\
247     int __ret;\
248     if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
249         __ret = __get_user(x, ptr);\
250     else\
251         __ret = -EFAULT;\
252     __ret;\
253 })
254
255 /* Functions for accessing guest memory.  The tget and tput functions
256    read/write single values, byteswapping as neccessary.  The lock_user
257    gets a pointer to a contiguous area of guest memory, but does not perform
258    and byteswapping.  lock_user may return either a pointer to the guest
259    memory, or a temporary buffer.  */
260
261 /* Lock an area of guest memory into the host.  If copy is true then the
262    host area will have the same contents as the guest.  */
263 static inline void *lock_user(target_ulong guest_addr, long len, int copy)
264 {
265 #ifdef DEBUG_REMAP
266     void *addr;
267     addr = malloc(len);
268     if (copy)
269         memcpy(addr, g2h(guest_addr), len);
270     else
271         memset(addr, 0, len);
272     return addr;
273 #else
274     return g2h(guest_addr);
275 #endif
276 }
277
278 /* Unlock an area of guest memory.  The first LEN bytes must be flushed back
279    to guest memory.  */
280 static inline void unlock_user(void *host_addr, target_ulong guest_addr,
281                                 long len)
282 {
283 #ifdef DEBUG_REMAP
284     if (host_addr == g2h(guest_addr))
285         return;
286     if (len > 0)
287         memcpy(g2h(guest_addr), host_addr, len);
288     free(host_addr);
289 #endif
290 }
291
292 /* Return the length of a string in target memory.  */
293 static inline int target_strlen(target_ulong ptr)
294 {
295   return strlen(g2h(ptr));
296 }
297
298 /* Like lock_user but for null terminated strings.  */
299 static inline void *lock_user_string(target_ulong guest_addr)
300 {
301     long len;
302     len = target_strlen(guest_addr) + 1;
303     return lock_user(guest_addr, len, 1);
304 }
305
306 /* Helper macros for locking/ulocking a target struct.  */
307 #define lock_user_struct(host_ptr, guest_addr, copy) \
308     host_ptr = lock_user(guest_addr, sizeof(*host_ptr), copy)
309 #define unlock_user_struct(host_ptr, guest_addr, copy) \
310     unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
311
312 #define tget8(addr) ldub(addr)
313 #define tput8(addr, val) stb(addr, val)
314 #define tget16(addr) lduw(addr)
315 #define tput16(addr, val) stw(addr, val)
316 #define tget32(addr) ldl(addr)
317 #define tput32(addr, val) stl(addr, val)
318 #define tget64(addr) ldq(addr)
319 #define tput64(addr, val) stq(addr, val)
320 #if TARGET_LONG_BITS == 64
321 #define tgetl(addr) ldq(addr)
322 #define tputl(addr, val) stq(addr, val)
323 #else
324 #define tgetl(addr) ldl(addr)
325 #define tputl(addr, val) stl(addr, val)
326 #endif
327
328 #endif /* QEMU_H */