]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/qemu.h
bsd-user: Remove vestiges of signal queueing code
[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
ab77bd84 20#include "qemu/osdep.h"
84778508 21#include "cpu.h"
e5e44263 22#include "qemu/units.h"
f08b6170 23#include "exec/cpu_ldst.h"
ab77bd84 24#include "exec/exec-all.h"
84778508
BS
25
26#undef DEBUG_REMAP
84778508 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 38
ab77bd84
WL
39#include "exec/user/thunk.h"
40#include "target_arch.h"
84778508 41#include "syscall_defs.h"
0c6940d0 42#include "target_syscall.h"
82792244 43#include "target_os_vmparam.h"
790baacc 44#include "target_os_signal.h"
022c62cb 45#include "exec/gdbstub.h"
84778508 46
c2bdd9a1
WL
47/*
48 * This struct is used to hold certain information about the image. Basically,
49 * it replicates in user space what would be certain task_struct fields in the
50 * kernel
84778508
BS
51 */
52struct image_info {
0475f8fa 53 abi_ulong load_bias;
84778508
BS
54 abi_ulong load_addr;
55 abi_ulong start_code;
56 abi_ulong end_code;
57 abi_ulong start_data;
58 abi_ulong end_data;
59 abi_ulong start_brk;
60 abi_ulong brk;
61 abi_ulong start_mmap;
62 abi_ulong mmap;
63 abi_ulong rss;
64 abi_ulong start_stack;
65 abi_ulong entry;
66 abi_ulong code_offset;
67 abi_ulong data_offset;
0475f8fa
WL
68 abi_ulong arg_start;
69 abi_ulong arg_end;
70 uint32_t elf_flags;
84778508
BS
71};
72
84778508
BS
73struct emulated_sigtable {
74 int pending; /* true if signal is pending */
b46d4ad7 75 target_siginfo_t info;
84778508
BS
76};
77
c2bdd9a1
WL
78/*
79 * NOTE: we force a big alignment so that the stack stored after is aligned too
80 */
84778508 81typedef struct TaskState {
bd88c780
AB
82 pid_t ts_tid; /* tid (or pid) of this task */
83
84778508 84 struct TaskState *next;
031fe7af 85 struct bsd_binprm *bprm;
84778508
BS
86 struct image_info *info;
87
88 struct emulated_sigtable sigtab[TARGET_NSIG];
84778508
BS
89 int signal_pending; /* non zero if a signal may be pending */
90
f7795e40 91 uint8_t stack[];
84778508
BS
92} __attribute__((aligned(16))) TaskState;
93
653ccec2 94void stop_all_tasks(void);
84778508
BS
95extern const char *qemu_uname_release;
96
84778508 97/*
e5e44263
WL
98 * TARGET_ARG_MAX defines the number of bytes allocated for arguments
99 * and envelope for the new program. 256k should suffice for a reasonable
100 * maxiumum env+arg in 32-bit environments, bump it up to 512k for !ILP32
101 * platforms.
84778508 102 */
e5e44263
WL
103#if TARGET_ABI_BITS > 32
104#define TARGET_ARG_MAX (512 * KiB)
105#else
106#define TARGET_ARG_MAX (256 * KiB)
107#endif
108#define MAX_ARG_PAGES (TARGET_ARG_MAX / TARGET_PAGE_SIZE)
84778508
BS
109
110/*
111 * This structure is used to hold the arguments that are
112 * used when loading binaries.
113 */
afcbcff8 114struct bsd_binprm {
84778508
BS
115 char buf[128];
116 void *page[MAX_ARG_PAGES];
117 abi_ulong p;
98b34d35 118 abi_ulong stringp;
84778508
BS
119 int fd;
120 int e_uid, e_gid;
121 int argc, envc;
122 char **argv;
123 char **envp;
1b50ff64
WL
124 char *filename; /* (Given) Name of binary */
125 char *fullpath; /* Full path of binary */
0475f8fa 126 int (*core_dump)(int, CPUArchState *);
84778508
BS
127};
128
129void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
130abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
ffa03665 131 abi_ulong stringp);
036a013f 132int loader_exec(const char *filename, char **argv, char **envp,
d37853f9
WL
133 struct target_pt_regs *regs, struct image_info *infop,
134 struct bsd_binprm *bprm);
84778508 135
afcbcff8 136int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
036a013f 137 struct image_info *info);
afcbcff8 138int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
036a013f 139 struct image_info *info);
0475f8fa 140int is_target_elf_binary(int fd);
84778508
BS
141
142abi_long memcpy_to_target(abi_ulong dest, const void *src,
143 unsigned long len);
144void target_set_brk(abi_ulong new_brk);
145abi_long do_brk(abi_ulong new_brk);
146void syscall_init(void);
147abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
148 abi_long arg2, abi_long arg3, abi_long arg4,
78cfb07f
JL
149 abi_long arg5, abi_long arg6, abi_long arg7,
150 abi_long arg8);
84778508
BS
151abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1,
152 abi_long arg2, abi_long arg3, abi_long arg4,
153 abi_long arg5, abi_long arg6);
154abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
155 abi_long arg2, abi_long arg3, abi_long arg4,
156 abi_long arg5, abi_long arg6);
e5924d89 157void gemu_log(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
d42df502 158extern __thread CPUState *thread_cpu;
9349b4f9 159void cpu_loop(CPUArchState *env);
84778508
BS
160char *target_strerror(int err);
161int get_osversion(void);
162void fork_start(void);
163void fork_end(int child);
164
1de7afc9 165#include "qemu/log.h"
84778508
BS
166
167/* strace.c */
88dae46d
SB
168struct syscallname {
169 int nr;
170 const char *name;
171 const char *format;
172 void (*call)(const struct syscallname *,
173 abi_long, abi_long, abi_long,
174 abi_long, abi_long, abi_long);
175 void (*result)(const struct syscallname *, abi_long);
176};
177
84778508
BS
178void
179print_freebsd_syscall(int num,
180 abi_long arg1, abi_long arg2, abi_long arg3,
181 abi_long arg4, abi_long arg5, abi_long arg6);
182void print_freebsd_syscall_ret(int num, abi_long ret);
183void
184print_netbsd_syscall(int num,
185 abi_long arg1, abi_long arg2, abi_long arg3,
186 abi_long arg4, abi_long arg5, abi_long arg6);
187void print_netbsd_syscall_ret(int num, abi_long ret);
188void
189print_openbsd_syscall(int num,
190 abi_long arg1, abi_long arg2, abi_long arg3,
191 abi_long arg4, abi_long arg5, abi_long arg6);
192void print_openbsd_syscall_ret(int num, abi_long ret);
193extern int do_strace;
194
195/* signal.c */
9349b4f9 196void process_pending_signals(CPUArchState *cpu_env);
84778508 197void signal_init(void);
9349b4f9
AF
198long do_sigreturn(CPUArchState *env);
199long do_rt_sigreturn(CPUArchState *env);
5abfac27 200void queue_signal(CPUArchState *env, int sig, target_siginfo_t *info);
84778508
BS
201abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
202
203/* mmap.c */
204int target_mprotect(abi_ulong start, abi_ulong len, int prot);
205abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
be04f210 206 int flags, int fd, off_t offset);
84778508
BS
207int target_munmap(abi_ulong start, abi_ulong len);
208abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
209 abi_ulong new_size, unsigned long flags,
210 abi_ulong new_addr);
211int target_msync(abi_ulong start, abi_ulong len, int flags);
212extern unsigned long last_brk;
be04f210
WL
213extern abi_ulong mmap_next_start;
214abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size);
84778508
BS
215void mmap_fork_start(void);
216void mmap_fork_end(int child);
84778508 217
28e738dc 218/* main.c */
01a298a5 219extern char qemu_proc_pathname[];
312a0b1c
WL
220extern unsigned long target_maxtsiz;
221extern unsigned long target_dfldsiz;
222extern unsigned long target_maxdsiz;
223extern unsigned long target_dflssiz;
224extern unsigned long target_maxssiz;
225extern unsigned long target_sgrowsiz;
28e738dc 226
e5f674f0
WL
227/* syscall.c */
228abi_long get_errno(abi_long ret);
229bool is_error(abi_long ret);
230
da07e694
WL
231/* os-sys.c */
232abi_long do_freebsd_sysarch(void *cpu_env, abi_long arg1, abi_long arg2);
233
84778508
BS
234/* user access */
235
1720751f
RH
236#define VERIFY_READ PAGE_READ
237#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
84778508 238
1720751f 239static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
84778508 240{
1720751f 241 return page_check_range((target_ulong)addr, size, type) == 0;
84778508
BS
242}
243
c2bdd9a1
WL
244/*
245 * NOTE __get_user and __put_user use host pointers and don't check access.
246 *
247 * These are usually used to access struct data members once the struct has been
248 * locked - usually with lock_user_struct().
84778508
BS
249 */
250#define __put_user(x, hptr)\
251({\
252 int size = sizeof(*hptr);\
cefbade1 253 switch (size) {\
84778508
BS
254 case 1:\
255 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
256 break;\
257 case 2:\
258 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
259 break;\
260 case 4:\
261 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
262 break;\
263 case 8:\
264 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
265 break;\
266 default:\
267 abort();\
036a013f 268 } \
84778508
BS
269 0;\
270})
271
272#define __get_user(x, hptr) \
273({\
274 int size = sizeof(*hptr);\
cefbade1 275 switch (size) {\
84778508
BS
276 case 1:\
277 x = (typeof(*hptr))*(uint8_t *)(hptr);\
278 break;\
279 case 2:\
280 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
281 break;\
282 case 4:\
283 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
284 break;\
285 case 8:\
286 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
287 break;\
288 default:\
84778508
BS
289 x = 0;\
290 abort();\
036a013f 291 } \
84778508
BS
292 0;\
293})
294
c2bdd9a1
WL
295/*
296 * put_user()/get_user() take a guest address and check access
297 *
298 * These are usually used to access an atomic data type, such as an int, that
299 * has been passed by address. These internally perform locking and unlocking
300 * on the data type.
84778508
BS
301 */
302#define put_user(x, gaddr, target_type) \
303({ \
304 abi_ulong __gaddr = (gaddr); \
305 target_type *__hptr; \
306 abi_long __ret; \
33066934
WL
307 __hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0); \
308 if (__hptr) { \
84778508
BS
309 __ret = __put_user((x), __hptr); \
310 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
311 } else \
312 __ret = -TARGET_EFAULT; \
313 __ret; \
314})
315
316#define get_user(x, gaddr, target_type) \
317({ \
318 abi_ulong __gaddr = (gaddr); \
319 target_type *__hptr; \
320 abi_long __ret; \
33066934
WL
321 __hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1); \
322 if (__hptr) { \
84778508
BS
323 __ret = __get_user((x), __hptr); \
324 unlock_user(__hptr, __gaddr, 0); \
325 } else { \
84778508
BS
326 (x) = 0; \
327 __ret = -TARGET_EFAULT; \
328 } \
329 __ret; \
330})
331
332#define put_user_ual(x, gaddr) put_user((x), (gaddr), abi_ulong)
333#define put_user_sal(x, gaddr) put_user((x), (gaddr), abi_long)
334#define put_user_u64(x, gaddr) put_user((x), (gaddr), uint64_t)
335#define put_user_s64(x, gaddr) put_user((x), (gaddr), int64_t)
336#define put_user_u32(x, gaddr) put_user((x), (gaddr), uint32_t)
337#define put_user_s32(x, gaddr) put_user((x), (gaddr), int32_t)
338#define put_user_u16(x, gaddr) put_user((x), (gaddr), uint16_t)
339#define put_user_s16(x, gaddr) put_user((x), (gaddr), int16_t)
340#define put_user_u8(x, gaddr) put_user((x), (gaddr), uint8_t)
341#define put_user_s8(x, gaddr) put_user((x), (gaddr), int8_t)
342
343#define get_user_ual(x, gaddr) get_user((x), (gaddr), abi_ulong)
344#define get_user_sal(x, gaddr) get_user((x), (gaddr), abi_long)
345#define get_user_u64(x, gaddr) get_user((x), (gaddr), uint64_t)
346#define get_user_s64(x, gaddr) get_user((x), (gaddr), int64_t)
347#define get_user_u32(x, gaddr) get_user((x), (gaddr), uint32_t)
348#define get_user_s32(x, gaddr) get_user((x), (gaddr), int32_t)
349#define get_user_u16(x, gaddr) get_user((x), (gaddr), uint16_t)
350#define get_user_s16(x, gaddr) get_user((x), (gaddr), int16_t)
351#define get_user_u8(x, gaddr) get_user((x), (gaddr), uint8_t)
352#define get_user_s8(x, gaddr) get_user((x), (gaddr), int8_t)
353
c2bdd9a1
WL
354/*
355 * copy_from_user() and copy_to_user() are usually used to copy data
84778508
BS
356 * buffers between the target and host. These internally perform
357 * locking/unlocking of the memory.
358 */
359abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
360abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
361
c2bdd9a1
WL
362/*
363 * Functions for accessing guest memory. The tget and tput functions
364 * read/write single values, byteswapping as necessary. The lock_user function
365 * gets a pointer to a contiguous area of guest memory, but does not perform
366 * any byteswapping. lock_user may return either a pointer to the guest
367 * memory, or a temporary buffer.
368 */
84778508 369
c2bdd9a1
WL
370/*
371 * Lock an area of guest memory into the host. If copy is true then the
372 * host area will have the same contents as the guest.
373 */
374static inline void *lock_user(int type, abi_ulong guest_addr, long len,
375 int copy)
84778508 376{
cb0ea019 377 if (!access_ok(type, guest_addr, len)) {
84778508 378 return NULL;
cb0ea019 379 }
84778508
BS
380#ifdef DEBUG_REMAP
381 {
382 void *addr;
fd9a3048 383 addr = g_malloc(len);
cb0ea019 384 if (copy) {
3e8f1628 385 memcpy(addr, g2h_untagged(guest_addr), len);
cb0ea019 386 } else {
84778508 387 memset(addr, 0, len);
cb0ea019 388 }
84778508
BS
389 return addr;
390 }
391#else
3e8f1628 392 return g2h_untagged(guest_addr);
84778508
BS
393#endif
394}
395
c2bdd9a1
WL
396/*
397 * Unlock an area of guest memory. The first LEN bytes must be flushed back to
398 * guest memory. host_ptr = NULL is explicitly allowed and does nothing.
399 */
84778508
BS
400static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
401 long len)
402{
403
404#ifdef DEBUG_REMAP
cb0ea019 405 if (!host_ptr) {
84778508 406 return;
cb0ea019
WL
407 }
408 if (host_ptr == g2h_untagged(guest_addr)) {
84778508 409 return;
cb0ea019
WL
410 }
411 if (len > 0) {
3e8f1628 412 memcpy(g2h_untagged(guest_addr), host_ptr, len);
cb0ea019 413 }
fd9a3048 414 g_free(host_ptr);
84778508
BS
415#endif
416}
417
c2bdd9a1
WL
418/*
419 * Return the length of a string in target memory or -TARGET_EFAULT if access
420 * error.
421 */
84778508
BS
422abi_long target_strlen(abi_ulong gaddr);
423
424/* Like lock_user but for null terminated strings. */
425static inline void *lock_user_string(abi_ulong guest_addr)
426{
427 abi_long len;
428 len = target_strlen(guest_addr);
cb0ea019 429 if (len < 0) {
84778508 430 return NULL;
cb0ea019 431 }
84778508
BS
432 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
433}
434
41d1af4d 435/* Helper macros for locking/unlocking a target struct. */
84778508
BS
436#define lock_user_struct(type, host_ptr, guest_addr, copy) \
437 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
438#define unlock_user_struct(host_ptr, guest_addr, copy) \
439 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
440
84778508 441#include <pthread.h>
84778508
BS
442
443#endif /* QEMU_H */