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