]> git.proxmox.com Git - qemu.git/blame - linux-user/qemu.h
Win32 build fix.
[qemu.git] / linux-user / qemu.h
CommitLineData
e88de099
FB
1#ifndef QEMU_H
2#define QEMU_H
31e31b8a
FB
3
4#include "thunk.h"
5
9de5e440 6#include <signal.h>
edf779ff 7#include <string.h>
9de5e440 8#include "syscall_defs.h"
31e31b8a 9
6180a181
FB
10#include "cpu.h"
11#include "syscall.h"
1fddef4b 12#include "gdbstub.h"
66fb9763 13
31e31b8a
FB
14/* 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
b346ff46 36#ifdef TARGET_I386
851e67a1
FB
37/* 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};
b346ff46 51#endif
851e67a1 52
28c4f361
FB
53#ifdef TARGET_ARM
54/* FPU emulator */
55#include "nwfpe/fpa11.h"
28c4f361
FB
56#endif
57
851e67a1
FB
58/* NOTE: we force a big alignment so that the stack stored after is
59 aligned too */
60typedef struct TaskState {
61 struct TaskState *next;
28c4f361
FB
62#ifdef TARGET_ARM
63 /* FPA state */
64 FPA11 fpa;
a4f81979
FB
65 /* Extra fields for semihosted binaries. */
66 uint32_t stack_base;
67 uint32_t heap_base;
68 uint32_t heap_limit;
69 int swi_errno;
28c4f361 70#endif
b346ff46 71#ifdef TARGET_I386
53a5960a 72 target_ulong target_v86;
851e67a1 73 struct vm86_saved_state vm86_saved_regs;
b333af06 74 struct target_vm86plus_struct vm86plus;
631271d7
FB
75 uint32_t v86flags;
76 uint32_t v86mask;
b346ff46 77#endif
851e67a1
FB
78 int used; /* non zero if used */
79 uint8_t stack[0];
80} __attribute__((aligned(16))) TaskState;
81
82extern TaskState *first_task_state;
c5937220 83extern const char *qemu_uname_release;
851e67a1 84
32ce6337 85int elf_exec(const char * filename, char ** argv, char ** envp,
01ffc75b 86 struct target_pt_regs * regs, struct image_info *infop);
31e31b8a 87
53a5960a
PB
88void target_set_brk(target_ulong new_brk);
89long do_brk(target_ulong new_brk);
31e31b8a 90void syscall_init(void);
6dbad63e 91long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
31e31b8a
FB
92 long arg4, long arg5, long arg6);
93void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
b346ff46
FB
94extern CPUState *global_env;
95void cpu_loop(CPUState *env);
32ce6337
FB
96void init_paths(const char *prefix);
97const char *path(const char *pathname);
6977fbfd
FB
98
99extern int loglevel;
631271d7
FB
100extern FILE *logfile;
101
b346ff46
FB
102/* signal.c */
103void process_pending_signals(void *cpu_env);
104void signal_init(void);
105int queue_signal(int sig, target_siginfo_t *info);
106void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
107void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
108long do_sigreturn(CPUState *env);
109long do_rt_sigreturn(CPUState *env);
110
111#ifdef TARGET_I386
631271d7
FB
112/* vm86.c */
113void save_v86_state(CPUX86State *env);
447db213 114void handle_vm86_trap(CPUX86State *env, int trapno);
631271d7 115void handle_vm86_fault(CPUX86State *env);
53a5960a 116int do_vm86(CPUX86State *env, long subfunction, target_ulong v86_addr);
b346ff46 117#endif
631271d7 118
54936004 119/* mmap.c */
53a5960a
PB
120int target_mprotect(target_ulong start, target_ulong len, int prot);
121long target_mmap(target_ulong start, target_ulong len, int prot,
122 int flags, int fd, target_ulong offset);
123int target_munmap(target_ulong start, target_ulong len);
124long target_mremap(target_ulong old_addr, target_ulong old_size,
125 target_ulong new_size, unsigned long flags,
126 target_ulong new_addr);
127int target_msync(target_ulong start, target_ulong len, int flags);
54936004 128
edf779ff
FB
129/* user access */
130
131#define VERIFY_READ 0
132#define VERIFY_WRITE 1
133
134#define access_ok(type,addr,size) (1)
135
53a5960a 136/* NOTE get_user and put_user use host addresses. */
edf779ff
FB
137#define __put_user(x,ptr)\
138({\
139 int size = sizeof(*ptr);\
140 switch(size) {\
141 case 1:\
53a5960a 142 *(uint8_t *)(ptr) = (typeof(*ptr))(x);\
edf779ff
FB
143 break;\
144 case 2:\
53a5960a 145 *(uint16_t *)(ptr) = tswap16((typeof(*ptr))(x));\
edf779ff
FB
146 break;\
147 case 4:\
53a5960a 148 *(uint32_t *)(ptr) = tswap32((typeof(*ptr))(x));\
edf779ff
FB
149 break;\
150 case 8:\
53a5960a 151 *(uint64_t *)(ptr) = tswap64((typeof(*ptr))(x));\
edf779ff
FB
152 break;\
153 default:\
154 abort();\
155 }\
156 0;\
157})
158
159#define __get_user(x, ptr) \
160({\
161 int size = sizeof(*ptr);\
162 switch(size) {\
163 case 1:\
53a5960a 164 x = (typeof(*ptr))*(uint8_t *)(ptr);\
edf779ff
FB
165 break;\
166 case 2:\
53a5960a 167 x = (typeof(*ptr))tswap16(*(uint16_t *)(ptr));\
edf779ff
FB
168 break;\
169 case 4:\
53a5960a 170 x = (typeof(*ptr))tswap32(*(uint32_t *)(ptr));\
edf779ff
FB
171 break;\
172 case 8:\
53a5960a 173 x = (typeof(*ptr))tswap64(*(uint64_t *)(ptr));\
edf779ff
FB
174 break;\
175 default:\
176 abort();\
177 }\
178 0;\
179})
180
edf779ff
FB
181#define put_user(x,ptr)\
182({\
183 int __ret;\
184 if (access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)))\
185 __ret = __put_user(x, ptr);\
186 else\
187 __ret = -EFAULT;\
188 __ret;\
189})
190
191#define get_user(x,ptr)\
192({\
193 int __ret;\
194 if (access_ok(VERIFY_READ, ptr, sizeof(*ptr)))\
195 __ret = __get_user(x, ptr);\
196 else\
197 __ret = -EFAULT;\
198 __ret;\
199})
200
53a5960a
PB
201/* Functions for accessing guest memory. The tget and tput functions
202 read/write single values, byteswapping as neccessary. The lock_user
203 gets a pointer to a contiguous area of guest memory, but does not perform
204 and byteswapping. lock_user may return either a pointer to the guest
205 memory, or a temporary buffer. */
206
207/* Lock an area of guest memory into the host. If copy is true then the
208 host area will have the same contents as the guest. */
209static inline void *lock_user(target_ulong guest_addr, long len, int copy)
edf779ff 210{
53a5960a
PB
211#ifdef DEBUG_REMAP
212 void *addr;
213 addr = malloc(len);
214 if (copy)
215 memcpy(addr, g2h(guest_addr), len);
edf779ff 216 else
53a5960a
PB
217 memset(addr, 0, len);
218 return addr;
219#else
220 return g2h(guest_addr);
221#endif
edf779ff
FB
222}
223
53a5960a
PB
224/* Unlock an area of guest memory. The first LEN bytes must be flushed back
225 to guest memory. */
226static inline void unlock_user(void *host_addr, target_ulong guest_addr,
227 long len)
edf779ff 228{
53a5960a
PB
229#ifdef DEBUG_REMAP
230 if (host_addr == g2h(guest_addr))
231 return;
232 if (len > 0)
233 memcpy(g2h(guest_addr), host_addr, len);
234 free(host_addr);
235#endif
edf779ff
FB
236}
237
53a5960a
PB
238/* Return the length of a string in target memory. */
239static inline int target_strlen(target_ulong ptr)
edf779ff 240{
53a5960a
PB
241 return strlen(g2h(ptr));
242}
243
244/* Like lock_user but for null terminated strings. */
245static inline void *lock_user_string(target_ulong guest_addr)
246{
247 long len;
248 len = target_strlen(guest_addr) + 1;
249 return lock_user(guest_addr, len, 1);
edf779ff
FB
250}
251
53a5960a
PB
252/* Helper macros for locking/ulocking a target struct. */
253#define lock_user_struct(host_ptr, guest_addr, copy) \
254 host_ptr = lock_user(guest_addr, sizeof(*host_ptr), copy)
255#define unlock_user_struct(host_ptr, guest_addr, copy) \
256 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
257
258#define tget8(addr) ldub(addr)
259#define tput8(addr, val) stb(addr, val)
260#define tget16(addr) lduw(addr)
261#define tput16(addr, val) stw(addr, val)
262#define tget32(addr) ldl(addr)
263#define tput32(addr, val) stl(addr, val)
264#define tget64(addr) ldq(addr)
265#define tput64(addr, val) stq(addr, val)
266#if TARGET_LONG_BITS == 64
267#define tgetl(addr) ldq(addr)
268#define tputl(addr, val) stq(addr, val)
269#else
270#define tgetl(addr) ldl(addr)
271#define tputl(addr, val) stl(addr, val)
272#endif
273
e88de099 274#endif /* QEMU_H */