]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/qemu.h
bsd-user/signal.c: Implement dump_core_and_abort
[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];
48047225
WL
89 /*
90 * Nonzero if process_pending_signals() needs to do something (either
91 * handle a pending signal or unblock signals).
92 * This flag is written from a signal handler so should be accessed via
93 * the qatomic_read() and qatomic_set() functions. (It is not accessed
94 * from multiple threads.)
95 */
96 int signal_pending;
149076ad
WL
97 /*
98 * This thread's signal mask, as requested by the guest program.
99 * The actual signal mask of this thread may differ:
100 * + we don't let SIGSEGV and SIGBUS be blocked while running guest code
101 * + sometimes we block all signals to avoid races
102 */
103 sigset_t signal_mask;
84778508 104
f7795e40 105 uint8_t stack[];
84778508
BS
106} __attribute__((aligned(16))) TaskState;
107
653ccec2 108void stop_all_tasks(void);
84778508
BS
109extern const char *qemu_uname_release;
110
84778508 111/*
e5e44263
WL
112 * TARGET_ARG_MAX defines the number of bytes allocated for arguments
113 * and envelope for the new program. 256k should suffice for a reasonable
114 * maxiumum env+arg in 32-bit environments, bump it up to 512k for !ILP32
115 * platforms.
84778508 116 */
e5e44263
WL
117#if TARGET_ABI_BITS > 32
118#define TARGET_ARG_MAX (512 * KiB)
119#else
120#define TARGET_ARG_MAX (256 * KiB)
121#endif
122#define MAX_ARG_PAGES (TARGET_ARG_MAX / TARGET_PAGE_SIZE)
84778508
BS
123
124/*
125 * This structure is used to hold the arguments that are
126 * used when loading binaries.
127 */
afcbcff8 128struct bsd_binprm {
84778508
BS
129 char buf[128];
130 void *page[MAX_ARG_PAGES];
131 abi_ulong p;
98b34d35 132 abi_ulong stringp;
84778508
BS
133 int fd;
134 int e_uid, e_gid;
135 int argc, envc;
136 char **argv;
137 char **envp;
1b50ff64
WL
138 char *filename; /* (Given) Name of binary */
139 char *fullpath; /* Full path of binary */
0475f8fa 140 int (*core_dump)(int, CPUArchState *);
84778508
BS
141};
142
143void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
144abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
ffa03665 145 abi_ulong stringp);
036a013f 146int loader_exec(const char *filename, char **argv, char **envp,
d37853f9
WL
147 struct target_pt_regs *regs, struct image_info *infop,
148 struct bsd_binprm *bprm);
84778508 149
afcbcff8 150int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
036a013f 151 struct image_info *info);
afcbcff8 152int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
036a013f 153 struct image_info *info);
0475f8fa 154int is_target_elf_binary(int fd);
84778508
BS
155
156abi_long memcpy_to_target(abi_ulong dest, const void *src,
157 unsigned long len);
158void target_set_brk(abi_ulong new_brk);
159abi_long do_brk(abi_ulong new_brk);
160void syscall_init(void);
161abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
162 abi_long arg2, abi_long arg3, abi_long arg4,
78cfb07f
JL
163 abi_long arg5, abi_long arg6, abi_long arg7,
164 abi_long arg8);
84778508
BS
165abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1,
166 abi_long arg2, abi_long arg3, abi_long arg4,
167 abi_long arg5, abi_long arg6);
168abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
169 abi_long arg2, abi_long arg3, abi_long arg4,
170 abi_long arg5, abi_long arg6);
e5924d89 171void gemu_log(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
d42df502 172extern __thread CPUState *thread_cpu;
9349b4f9 173void cpu_loop(CPUArchState *env);
84778508
BS
174char *target_strerror(int err);
175int get_osversion(void);
176void fork_start(void);
177void fork_end(int child);
178
1de7afc9 179#include "qemu/log.h"
84778508
BS
180
181/* strace.c */
88dae46d
SB
182struct syscallname {
183 int nr;
184 const char *name;
185 const char *format;
186 void (*call)(const struct syscallname *,
187 abi_long, abi_long, abi_long,
188 abi_long, abi_long, abi_long);
189 void (*result)(const struct syscallname *, abi_long);
190};
191
84778508
BS
192void
193print_freebsd_syscall(int num,
194 abi_long arg1, abi_long arg2, abi_long arg3,
195 abi_long arg4, abi_long arg5, abi_long arg6);
196void print_freebsd_syscall_ret(int num, abi_long ret);
197void
198print_netbsd_syscall(int num,
199 abi_long arg1, abi_long arg2, abi_long arg3,
200 abi_long arg4, abi_long arg5, abi_long arg6);
201void print_netbsd_syscall_ret(int num, abi_long ret);
202void
203print_openbsd_syscall(int num,
204 abi_long arg1, abi_long arg2, abi_long arg3,
205 abi_long arg4, abi_long arg5, abi_long arg6);
206void print_openbsd_syscall_ret(int num, abi_long ret);
fd5bec9a
WL
207/**
208 * print_taken_signal:
209 * @target_signum: target signal being taken
210 * @tinfo: target_siginfo_t which will be passed to the guest for the signal
211 *
212 * Print strace output indicating that this signal is being taken by the guest,
213 * in a format similar to:
214 * --- SIGSEGV {si_signo=SIGSEGV, si_code=SI_KERNEL, si_addr=0} ---
215 */
216void print_taken_signal(int target_signum, const target_siginfo_t *tinfo);
84778508
BS
217extern int do_strace;
218
84778508
BS
219/* mmap.c */
220int target_mprotect(abi_ulong start, abi_ulong len, int prot);
221abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
be04f210 222 int flags, int fd, off_t offset);
84778508
BS
223int target_munmap(abi_ulong start, abi_ulong len);
224abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
225 abi_ulong new_size, unsigned long flags,
226 abi_ulong new_addr);
227int target_msync(abi_ulong start, abi_ulong len, int flags);
228extern unsigned long last_brk;
be04f210
WL
229extern abi_ulong mmap_next_start;
230abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size);
84778508
BS
231void mmap_fork_start(void);
232void mmap_fork_end(int child);
84778508 233
28e738dc 234/* main.c */
01a298a5 235extern char qemu_proc_pathname[];
312a0b1c
WL
236extern unsigned long target_maxtsiz;
237extern unsigned long target_dfldsiz;
238extern unsigned long target_maxdsiz;
239extern unsigned long target_dflssiz;
240extern unsigned long target_maxssiz;
241extern unsigned long target_sgrowsiz;
28e738dc 242
e5f674f0
WL
243/* syscall.c */
244abi_long get_errno(abi_long ret);
245bool is_error(abi_long ret);
246
da07e694
WL
247/* os-sys.c */
248abi_long do_freebsd_sysarch(void *cpu_env, abi_long arg1, abi_long arg2);
249
84778508
BS
250/* user access */
251
1720751f
RH
252#define VERIFY_READ PAGE_READ
253#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
84778508 254
1720751f 255static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
84778508 256{
1720751f 257 return page_check_range((target_ulong)addr, size, type) == 0;
84778508
BS
258}
259
c2bdd9a1
WL
260/*
261 * NOTE __get_user and __put_user use host pointers and don't check access.
262 *
263 * These are usually used to access struct data members once the struct has been
264 * locked - usually with lock_user_struct().
84778508
BS
265 */
266#define __put_user(x, hptr)\
267({\
268 int size = sizeof(*hptr);\
cefbade1 269 switch (size) {\
84778508
BS
270 case 1:\
271 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
272 break;\
273 case 2:\
274 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
275 break;\
276 case 4:\
277 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
278 break;\
279 case 8:\
280 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
281 break;\
282 default:\
283 abort();\
036a013f 284 } \
84778508
BS
285 0;\
286})
287
288#define __get_user(x, hptr) \
289({\
290 int size = sizeof(*hptr);\
cefbade1 291 switch (size) {\
84778508
BS
292 case 1:\
293 x = (typeof(*hptr))*(uint8_t *)(hptr);\
294 break;\
295 case 2:\
296 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
297 break;\
298 case 4:\
299 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
300 break;\
301 case 8:\
302 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
303 break;\
304 default:\
84778508
BS
305 x = 0;\
306 abort();\
036a013f 307 } \
84778508
BS
308 0;\
309})
310
c2bdd9a1
WL
311/*
312 * put_user()/get_user() take a guest address and check access
313 *
314 * These are usually used to access an atomic data type, such as an int, that
315 * has been passed by address. These internally perform locking and unlocking
316 * on the data type.
84778508
BS
317 */
318#define put_user(x, gaddr, target_type) \
319({ \
320 abi_ulong __gaddr = (gaddr); \
321 target_type *__hptr; \
322 abi_long __ret; \
33066934
WL
323 __hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0); \
324 if (__hptr) { \
84778508
BS
325 __ret = __put_user((x), __hptr); \
326 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
327 } else \
328 __ret = -TARGET_EFAULT; \
329 __ret; \
330})
331
332#define get_user(x, gaddr, target_type) \
333({ \
334 abi_ulong __gaddr = (gaddr); \
335 target_type *__hptr; \
336 abi_long __ret; \
33066934
WL
337 __hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1); \
338 if (__hptr) { \
84778508
BS
339 __ret = __get_user((x), __hptr); \
340 unlock_user(__hptr, __gaddr, 0); \
341 } else { \
84778508
BS
342 (x) = 0; \
343 __ret = -TARGET_EFAULT; \
344 } \
345 __ret; \
346})
347
348#define put_user_ual(x, gaddr) put_user((x), (gaddr), abi_ulong)
349#define put_user_sal(x, gaddr) put_user((x), (gaddr), abi_long)
350#define put_user_u64(x, gaddr) put_user((x), (gaddr), uint64_t)
351#define put_user_s64(x, gaddr) put_user((x), (gaddr), int64_t)
352#define put_user_u32(x, gaddr) put_user((x), (gaddr), uint32_t)
353#define put_user_s32(x, gaddr) put_user((x), (gaddr), int32_t)
354#define put_user_u16(x, gaddr) put_user((x), (gaddr), uint16_t)
355#define put_user_s16(x, gaddr) put_user((x), (gaddr), int16_t)
356#define put_user_u8(x, gaddr) put_user((x), (gaddr), uint8_t)
357#define put_user_s8(x, gaddr) put_user((x), (gaddr), int8_t)
358
359#define get_user_ual(x, gaddr) get_user((x), (gaddr), abi_ulong)
360#define get_user_sal(x, gaddr) get_user((x), (gaddr), abi_long)
361#define get_user_u64(x, gaddr) get_user((x), (gaddr), uint64_t)
362#define get_user_s64(x, gaddr) get_user((x), (gaddr), int64_t)
363#define get_user_u32(x, gaddr) get_user((x), (gaddr), uint32_t)
364#define get_user_s32(x, gaddr) get_user((x), (gaddr), int32_t)
365#define get_user_u16(x, gaddr) get_user((x), (gaddr), uint16_t)
366#define get_user_s16(x, gaddr) get_user((x), (gaddr), int16_t)
367#define get_user_u8(x, gaddr) get_user((x), (gaddr), uint8_t)
368#define get_user_s8(x, gaddr) get_user((x), (gaddr), int8_t)
369
c2bdd9a1
WL
370/*
371 * copy_from_user() and copy_to_user() are usually used to copy data
84778508
BS
372 * buffers between the target and host. These internally perform
373 * locking/unlocking of the memory.
374 */
375abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
376abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
377
c2bdd9a1
WL
378/*
379 * Functions for accessing guest memory. The tget and tput functions
380 * read/write single values, byteswapping as necessary. The lock_user function
381 * gets a pointer to a contiguous area of guest memory, but does not perform
382 * any byteswapping. lock_user may return either a pointer to the guest
383 * memory, or a temporary buffer.
384 */
84778508 385
c2bdd9a1
WL
386/*
387 * Lock an area of guest memory into the host. If copy is true then the
388 * host area will have the same contents as the guest.
389 */
390static inline void *lock_user(int type, abi_ulong guest_addr, long len,
391 int copy)
84778508 392{
cb0ea019 393 if (!access_ok(type, guest_addr, len)) {
84778508 394 return NULL;
cb0ea019 395 }
84778508
BS
396#ifdef DEBUG_REMAP
397 {
398 void *addr;
fd9a3048 399 addr = g_malloc(len);
cb0ea019 400 if (copy) {
3e8f1628 401 memcpy(addr, g2h_untagged(guest_addr), len);
cb0ea019 402 } else {
84778508 403 memset(addr, 0, len);
cb0ea019 404 }
84778508
BS
405 return addr;
406 }
407#else
3e8f1628 408 return g2h_untagged(guest_addr);
84778508
BS
409#endif
410}
411
c2bdd9a1
WL
412/*
413 * Unlock an area of guest memory. The first LEN bytes must be flushed back to
414 * guest memory. host_ptr = NULL is explicitly allowed and does nothing.
415 */
84778508
BS
416static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
417 long len)
418{
419
420#ifdef DEBUG_REMAP
cb0ea019 421 if (!host_ptr) {
84778508 422 return;
cb0ea019
WL
423 }
424 if (host_ptr == g2h_untagged(guest_addr)) {
84778508 425 return;
cb0ea019
WL
426 }
427 if (len > 0) {
3e8f1628 428 memcpy(g2h_untagged(guest_addr), host_ptr, len);
cb0ea019 429 }
fd9a3048 430 g_free(host_ptr);
84778508
BS
431#endif
432}
433
c2bdd9a1
WL
434/*
435 * Return the length of a string in target memory or -TARGET_EFAULT if access
436 * error.
437 */
84778508
BS
438abi_long target_strlen(abi_ulong gaddr);
439
440/* Like lock_user but for null terminated strings. */
441static inline void *lock_user_string(abi_ulong guest_addr)
442{
443 abi_long len;
444 len = target_strlen(guest_addr);
cb0ea019 445 if (len < 0) {
84778508 446 return NULL;
cb0ea019 447 }
84778508
BS
448 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
449}
450
41d1af4d 451/* Helper macros for locking/unlocking a target struct. */
84778508
BS
452#define lock_user_struct(type, host_ptr, guest_addr, copy) \
453 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
454#define unlock_user_struct(host_ptr, guest_addr, copy) \
455 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
456
84778508 457#include <pthread.h>
84778508 458
aae57ac3
WL
459#include "user/safe-syscall.h"
460
84778508 461#endif /* QEMU_H */