]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/qemu.h
bsd-user: style tweak: move extern to header file
[mirror_qemu.git] / bsd-user / qemu.h
CommitLineData
88dae46d
SB
1/*
2 * qemu bsd user mode definition
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
84778508
BS
17#ifndef QEMU_H
18#define QEMU_H
19
84778508
BS
20
21#include "cpu.h"
f08b6170 22#include "exec/cpu_ldst.h"
84778508
BS
23
24#undef DEBUG_REMAP
25#ifdef DEBUG_REMAP
84778508
BS
26#endif /* DEBUG_REMAP */
27
022c62cb 28#include "exec/user/abitypes.h"
84778508 29
4b599848
WL
30extern char **environ;
31
84778508
BS
32enum BSDType {
33 target_freebsd,
34 target_netbsd,
35 target_openbsd,
36};
78cfb07f 37extern enum BSDType bsd_type;
84778508
BS
38
39#include "syscall_defs.h"
0c6940d0 40#include "target_syscall.h"
84778508 41#include "target_signal.h"
022c62cb 42#include "exec/gdbstub.h"
84778508 43
2f7bb878 44#if defined(CONFIG_USE_NPTL)
84778508
BS
45#define THREAD __thread
46#else
47#define THREAD
48#endif
49
50/* This struct is used to hold certain information about the image.
51 * Basically, it replicates in user space what would be certain
52 * task_struct fields in the kernel
53 */
54struct image_info {
55 abi_ulong load_addr;
56 abi_ulong start_code;
57 abi_ulong end_code;
58 abi_ulong start_data;
59 abi_ulong end_data;
60 abi_ulong start_brk;
61 abi_ulong brk;
62 abi_ulong start_mmap;
63 abi_ulong mmap;
64 abi_ulong rss;
65 abi_ulong start_stack;
66 abi_ulong entry;
67 abi_ulong code_offset;
68 abi_ulong data_offset;
84778508
BS
69 int personality;
70};
71
72#define MAX_SIGQUEUE_SIZE 1024
73
74struct sigqueue {
75 struct sigqueue *next;
84778508
BS
76};
77
78struct emulated_sigtable {
79 int pending; /* true if signal is pending */
80 struct sigqueue *first;
81 struct sigqueue info; /* in order to always have memory for the
82 first signal, we put it here */
83};
84
85/* NOTE: we force a big alignment so that the stack stored after is
86 aligned too */
87typedef struct TaskState {
bd88c780
AB
88 pid_t ts_tid; /* tid (or pid) of this task */
89
84778508
BS
90 struct TaskState *next;
91 int used; /* non zero if used */
92 struct image_info *info;
93
94 struct emulated_sigtable sigtab[TARGET_NSIG];
95 struct sigqueue sigqueue_table[MAX_SIGQUEUE_SIZE]; /* siginfo queue */
96 struct sigqueue *first_free; /* first free siginfo queue entry */
97 int signal_pending; /* non zero if a signal may be pending */
98
f7795e40 99 uint8_t stack[];
84778508
BS
100} __attribute__((aligned(16))) TaskState;
101
102void init_task_state(TaskState *ts);
103extern const char *qemu_uname_release;
2fa5d9ba 104extern unsigned long mmap_min_addr;
84778508
BS
105
106/* ??? See if we can avoid exposing so much of the loader internals. */
107/*
108 * MAX_ARG_PAGES defines the number of pages allocated for arguments
109 * and envelope for the new program. 32 should suffice, this gives
110 * a maximum env+arg of 128kB w/4KB pages!
111 */
112#define MAX_ARG_PAGES 32
113
114/*
115 * This structure is used to hold the arguments that are
116 * used when loading binaries.
117 */
118struct linux_binprm {
119 char buf[128];
120 void *page[MAX_ARG_PAGES];
121 abi_ulong p;
122 int fd;
123 int e_uid, e_gid;
124 int argc, envc;
125 char **argv;
126 char **envp;
127 char * filename; /* Name of binary */
128};
129
130void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
131abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
132 abi_ulong stringp, int push_ptr);
133int loader_exec(const char * filename, char ** argv, char ** envp,
134 struct target_pt_regs * regs, struct image_info *infop);
135
136int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
137 struct image_info * info);
138int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
139 struct image_info * info);
140
141abi_long memcpy_to_target(abi_ulong dest, const void *src,
142 unsigned long len);
143void target_set_brk(abi_ulong new_brk);
144abi_long do_brk(abi_ulong new_brk);
145void syscall_init(void);
146abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
147 abi_long arg2, abi_long arg3, abi_long arg4,
78cfb07f
JL
148 abi_long arg5, abi_long arg6, abi_long arg7,
149 abi_long arg8);
84778508
BS
150abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1,
151 abi_long arg2, abi_long arg3, abi_long arg4,
152 abi_long arg5, abi_long arg6);
153abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
154 abi_long arg2, abi_long arg3, abi_long arg4,
155 abi_long arg5, abi_long arg6);
e5924d89 156void gemu_log(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
dca1173c 157extern THREAD CPUState *thread_cpu;
9349b4f9 158void cpu_loop(CPUArchState *env);
84778508
BS
159char *target_strerror(int err);
160int get_osversion(void);
161void fork_start(void);
162void fork_end(int child);
163
1de7afc9 164#include "qemu/log.h"
84778508
BS
165
166/* strace.c */
88dae46d
SB
167struct syscallname {
168 int nr;
169 const char *name;
170 const char *format;
171 void (*call)(const struct syscallname *,
172 abi_long, abi_long, abi_long,
173 abi_long, abi_long, abi_long);
174 void (*result)(const struct syscallname *, abi_long);
175};
176
84778508
BS
177void
178print_freebsd_syscall(int num,
179 abi_long arg1, abi_long arg2, abi_long arg3,
180 abi_long arg4, abi_long arg5, abi_long arg6);
181void print_freebsd_syscall_ret(int num, abi_long ret);
182void
183print_netbsd_syscall(int num,
184 abi_long arg1, abi_long arg2, abi_long arg3,
185 abi_long arg4, abi_long arg5, abi_long arg6);
186void print_netbsd_syscall_ret(int num, abi_long ret);
187void
188print_openbsd_syscall(int num,
189 abi_long arg1, abi_long arg2, abi_long arg3,
190 abi_long arg4, abi_long arg5, abi_long arg6);
191void print_openbsd_syscall_ret(int num, abi_long ret);
192extern int do_strace;
193
194/* signal.c */
9349b4f9 195void process_pending_signals(CPUArchState *cpu_env);
84778508 196void signal_init(void);
9349b4f9
AF
197long do_sigreturn(CPUArchState *env);
198long do_rt_sigreturn(CPUArchState *env);
84778508
BS
199abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
200
201/* mmap.c */
202int target_mprotect(abi_ulong start, abi_ulong len, int prot);
203abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
204 int flags, int fd, abi_ulong offset);
205int target_munmap(abi_ulong start, abi_ulong len);
206abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
207 abi_ulong new_size, unsigned long flags,
208 abi_ulong new_addr);
209int target_msync(abi_ulong start, abi_ulong len, int flags);
210extern unsigned long last_brk;
84778508
BS
211void mmap_fork_start(void);
212void mmap_fork_end(int child);
84778508 213
28e738dc
BS
214/* main.c */
215extern unsigned long x86_stack_size;
216
84778508
BS
217/* user access */
218
1720751f
RH
219#define VERIFY_READ PAGE_READ
220#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
84778508 221
1720751f 222static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
84778508 223{
1720751f 224 return page_check_range((target_ulong)addr, size, type) == 0;
84778508
BS
225}
226
227/* NOTE __get_user and __put_user use host pointers and don't check access. */
228/* These are usually used to access struct data members once the
229 * struct has been locked - usually with lock_user_struct().
230 */
231#define __put_user(x, hptr)\
232({\
233 int size = sizeof(*hptr);\
cefbade1 234 switch (size) {\
84778508
BS
235 case 1:\
236 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
237 break;\
238 case 2:\
239 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
240 break;\
241 case 4:\
242 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
243 break;\
244 case 8:\
245 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
246 break;\
247 default:\
248 abort();\
249 }\
250 0;\
251})
252
253#define __get_user(x, hptr) \
254({\
255 int size = sizeof(*hptr);\
cefbade1 256 switch (size) {\
84778508
BS
257 case 1:\
258 x = (typeof(*hptr))*(uint8_t *)(hptr);\
259 break;\
260 case 2:\
261 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
262 break;\
263 case 4:\
264 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
265 break;\
266 case 8:\
267 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
268 break;\
269 default:\
270 /* avoid warning */\
271 x = 0;\
272 abort();\
273 }\
274 0;\
275})
276
277/* put_user()/get_user() take a guest address and check access */
278/* These are usually used to access an atomic data type, such as an int,
279 * that has been passed by address. These internally perform locking
280 * and unlocking on the data type.
281 */
282#define put_user(x, gaddr, target_type) \
283({ \
284 abi_ulong __gaddr = (gaddr); \
285 target_type *__hptr; \
286 abi_long __ret; \
287 if ((__hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0))) { \
288 __ret = __put_user((x), __hptr); \
289 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
290 } else \
291 __ret = -TARGET_EFAULT; \
292 __ret; \
293})
294
295#define get_user(x, gaddr, target_type) \
296({ \
297 abi_ulong __gaddr = (gaddr); \
298 target_type *__hptr; \
299 abi_long __ret; \
300 if ((__hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1))) { \
301 __ret = __get_user((x), __hptr); \
302 unlock_user(__hptr, __gaddr, 0); \
303 } else { \
304 /* avoid warning */ \
305 (x) = 0; \
306 __ret = -TARGET_EFAULT; \
307 } \
308 __ret; \
309})
310
311#define put_user_ual(x, gaddr) put_user((x), (gaddr), abi_ulong)
312#define put_user_sal(x, gaddr) put_user((x), (gaddr), abi_long)
313#define put_user_u64(x, gaddr) put_user((x), (gaddr), uint64_t)
314#define put_user_s64(x, gaddr) put_user((x), (gaddr), int64_t)
315#define put_user_u32(x, gaddr) put_user((x), (gaddr), uint32_t)
316#define put_user_s32(x, gaddr) put_user((x), (gaddr), int32_t)
317#define put_user_u16(x, gaddr) put_user((x), (gaddr), uint16_t)
318#define put_user_s16(x, gaddr) put_user((x), (gaddr), int16_t)
319#define put_user_u8(x, gaddr) put_user((x), (gaddr), uint8_t)
320#define put_user_s8(x, gaddr) put_user((x), (gaddr), int8_t)
321
322#define get_user_ual(x, gaddr) get_user((x), (gaddr), abi_ulong)
323#define get_user_sal(x, gaddr) get_user((x), (gaddr), abi_long)
324#define get_user_u64(x, gaddr) get_user((x), (gaddr), uint64_t)
325#define get_user_s64(x, gaddr) get_user((x), (gaddr), int64_t)
326#define get_user_u32(x, gaddr) get_user((x), (gaddr), uint32_t)
327#define get_user_s32(x, gaddr) get_user((x), (gaddr), int32_t)
328#define get_user_u16(x, gaddr) get_user((x), (gaddr), uint16_t)
329#define get_user_s16(x, gaddr) get_user((x), (gaddr), int16_t)
330#define get_user_u8(x, gaddr) get_user((x), (gaddr), uint8_t)
331#define get_user_s8(x, gaddr) get_user((x), (gaddr), int8_t)
332
333/* copy_from_user() and copy_to_user() are usually used to copy data
334 * buffers between the target and host. These internally perform
335 * locking/unlocking of the memory.
336 */
337abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
338abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
339
340/* Functions for accessing guest memory. The tget and tput functions
6f20f55b 341 read/write single values, byteswapping as necessary. The lock_user function
84778508 342 gets a pointer to a contiguous area of guest memory, but does not perform
6f20f55b 343 any byteswapping. lock_user may return either a pointer to the guest
84778508
BS
344 memory, or a temporary buffer. */
345
346/* Lock an area of guest memory into the host. If copy is true then the
347 host area will have the same contents as the guest. */
348static inline void *lock_user(int type, abi_ulong guest_addr, long len, int copy)
349{
350 if (!access_ok(type, guest_addr, len))
351 return NULL;
352#ifdef DEBUG_REMAP
353 {
354 void *addr;
fd9a3048 355 addr = g_malloc(len);
84778508 356 if (copy)
3e8f1628 357 memcpy(addr, g2h_untagged(guest_addr), len);
84778508
BS
358 else
359 memset(addr, 0, len);
360 return addr;
361 }
362#else
3e8f1628 363 return g2h_untagged(guest_addr);
84778508
BS
364#endif
365}
366
367/* Unlock an area of guest memory. The first LEN bytes must be
368 flushed back to guest memory. host_ptr = NULL is explicitly
369 allowed and does nothing. */
370static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
371 long len)
372{
373
374#ifdef DEBUG_REMAP
375 if (!host_ptr)
376 return;
3e8f1628 377 if (host_ptr == g2h_untagged(guest_addr))
84778508
BS
378 return;
379 if (len > 0)
3e8f1628 380 memcpy(g2h_untagged(guest_addr), host_ptr, len);
fd9a3048 381 g_free(host_ptr);
84778508
BS
382#endif
383}
384
385/* Return the length of a string in target memory or -TARGET_EFAULT if
386 access error. */
387abi_long target_strlen(abi_ulong gaddr);
388
389/* Like lock_user but for null terminated strings. */
390static inline void *lock_user_string(abi_ulong guest_addr)
391{
392 abi_long len;
393 len = target_strlen(guest_addr);
394 if (len < 0)
395 return NULL;
396 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
397}
398
41d1af4d 399/* Helper macros for locking/unlocking a target struct. */
84778508
BS
400#define lock_user_struct(type, host_ptr, guest_addr, copy) \
401 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
402#define unlock_user_struct(host_ptr, guest_addr, copy) \
403 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
404
2f7bb878 405#if defined(CONFIG_USE_NPTL)
84778508
BS
406#include <pthread.h>
407#endif
408
409#endif /* QEMU_H */