blob: 6c4ec61d76982efb406daf3577a1dbb0b71ad410 [file] [log] [blame]
Sean Bruno88dae462014-06-08 09:57:23 -07001/*
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 */
blueswir184778502008-10-26 20:33:16 +000017#ifndef QEMU_H
18#define QEMU_H
19
blueswir184778502008-10-26 20:33:16 +000020
21#include "cpu.h"
Paolo Bonzinif08b6172014-03-28 19:42:10 +010022#include "exec/cpu_ldst.h"
blueswir184778502008-10-26 20:33:16 +000023
24#undef DEBUG_REMAP
25#ifdef DEBUG_REMAP
blueswir184778502008-10-26 20:33:16 +000026#endif /* DEBUG_REMAP */
27
Paolo Bonzini022c62c2012-12-17 18:19:49 +010028#include "exec/user/abitypes.h"
blueswir184778502008-10-26 20:33:16 +000029
Warner Losh4b599842021-04-23 10:41:11 -060030extern char **environ;
31
blueswir184778502008-10-26 20:33:16 +000032enum BSDType {
33 target_freebsd,
34 target_netbsd,
35 target_openbsd,
36};
Juergen Lock78cfb072009-10-17 00:34:26 +020037extern enum BSDType bsd_type;
blueswir184778502008-10-26 20:33:16 +000038
39#include "syscall_defs.h"
Lluís Vilanova0c6940d2016-02-01 19:38:47 +010040#include "target_syscall.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010041#include "exec/gdbstub.h"
blueswir184778502008-10-26 20:33:16 +000042
Warner Loshc2bdd9a2021-04-23 19:50:53 -060043/*
44 * This struct is used to hold certain information about the image. Basically,
45 * it replicates in user space what would be certain task_struct fields in the
46 * kernel
blueswir184778502008-10-26 20:33:16 +000047 */
48struct image_info {
49 abi_ulong load_addr;
50 abi_ulong start_code;
51 abi_ulong end_code;
52 abi_ulong start_data;
53 abi_ulong end_data;
54 abi_ulong start_brk;
55 abi_ulong brk;
56 abi_ulong start_mmap;
57 abi_ulong mmap;
58 abi_ulong rss;
59 abi_ulong start_stack;
60 abi_ulong entry;
61 abi_ulong code_offset;
62 abi_ulong data_offset;
blueswir184778502008-10-26 20:33:16 +000063};
64
65#define MAX_SIGQUEUE_SIZE 1024
66
67struct sigqueue {
68 struct sigqueue *next;
blueswir184778502008-10-26 20:33:16 +000069};
70
71struct emulated_sigtable {
72 int pending; /* true if signal is pending */
73 struct sigqueue *first;
Warner Loshc2bdd9a2021-04-23 19:50:53 -060074 /* in order to always have memory for the first signal, we put it here */
75 struct sigqueue info;
blueswir184778502008-10-26 20:33:16 +000076};
77
Warner Loshc2bdd9a2021-04-23 19:50:53 -060078/*
79 * NOTE: we force a big alignment so that the stack stored after is aligned too
80 */
blueswir184778502008-10-26 20:33:16 +000081typedef struct TaskState {
Alex Bennéebd88c782017-07-12 11:52:15 +010082 pid_t ts_tid; /* tid (or pid) of this task */
83
blueswir184778502008-10-26 20:33:16 +000084 struct TaskState *next;
85 int used; /* non zero if used */
86 struct image_info *info;
87
88 struct emulated_sigtable sigtab[TARGET_NSIG];
89 struct sigqueue sigqueue_table[MAX_SIGQUEUE_SIZE]; /* siginfo queue */
90 struct sigqueue *first_free; /* first free siginfo queue entry */
91 int signal_pending; /* non zero if a signal may be pending */
92
Philippe Mathieu-Daudéf7795e42020-03-04 16:38:15 +010093 uint8_t stack[];
blueswir184778502008-10-26 20:33:16 +000094} __attribute__((aligned(16))) TaskState;
95
96void init_task_state(TaskState *ts);
97extern const char *qemu_uname_release;
Blue Swirl2fa5d9b2009-09-27 19:30:51 +000098extern unsigned long mmap_min_addr;
blueswir184778502008-10-26 20:33:16 +000099
blueswir184778502008-10-26 20:33:16 +0000100/*
101 * MAX_ARG_PAGES defines the number of pages allocated for arguments
102 * and envelope for the new program. 32 should suffice, this gives
103 * a maximum env+arg of 128kB w/4KB pages!
104 */
105#define MAX_ARG_PAGES 32
106
107/*
108 * This structure is used to hold the arguments that are
109 * used when loading binaries.
110 */
Warner Loshafcbcff2021-04-29 10:04:28 -0600111struct bsd_binprm {
blueswir184778502008-10-26 20:33:16 +0000112 char buf[128];
113 void *page[MAX_ARG_PAGES];
114 abi_ulong p;
115 int fd;
116 int e_uid, e_gid;
117 int argc, envc;
118 char **argv;
119 char **envp;
Warner Losh1b50ff62021-04-29 19:34:34 -0600120 char *filename; /* (Given) Name of binary */
121 char *fullpath; /* Full path of binary */
blueswir184778502008-10-26 20:33:16 +0000122};
123
124void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
125abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
Warner Loshffa03662021-04-30 08:17:23 -0600126 abi_ulong stringp);
Warner Losh036a0132021-04-23 19:45:20 -0600127int loader_exec(const char *filename, char **argv, char **envp,
Warner Loshd37853f2021-04-29 18:45:13 -0600128 struct target_pt_regs *regs, struct image_info *infop,
129 struct bsd_binprm *bprm);
blueswir184778502008-10-26 20:33:16 +0000130
Warner Loshafcbcff2021-04-29 10:04:28 -0600131int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
Warner Losh036a0132021-04-23 19:45:20 -0600132 struct image_info *info);
Warner Loshafcbcff2021-04-29 10:04:28 -0600133int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
Warner Losh036a0132021-04-23 19:45:20 -0600134 struct image_info *info);
blueswir184778502008-10-26 20:33:16 +0000135
136abi_long memcpy_to_target(abi_ulong dest, const void *src,
137 unsigned long len);
138void target_set_brk(abi_ulong new_brk);
139abi_long do_brk(abi_ulong new_brk);
140void syscall_init(void);
141abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
142 abi_long arg2, abi_long arg3, abi_long arg4,
Juergen Lock78cfb072009-10-17 00:34:26 +0200143 abi_long arg5, abi_long arg6, abi_long arg7,
144 abi_long arg8);
blueswir184778502008-10-26 20:33:16 +0000145abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1,
146 abi_long arg2, abi_long arg3, abi_long arg4,
147 abi_long arg5, abi_long arg6);
148abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
149 abi_long arg2, abi_long arg3, abi_long arg4,
150 abi_long arg5, abi_long arg6);
Stefan Weile5924d82010-09-23 21:28:03 +0200151void gemu_log(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
Warner Loshd42df502021-08-03 12:34:52 -0600152extern __thread CPUState *thread_cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100153void cpu_loop(CPUArchState *env);
blueswir184778502008-10-26 20:33:16 +0000154char *target_strerror(int err);
155int get_osversion(void);
156void fork_start(void);
157void fork_end(int child);
158
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100159#include "qemu/log.h"
blueswir184778502008-10-26 20:33:16 +0000160
161/* strace.c */
Sean Bruno88dae462014-06-08 09:57:23 -0700162struct syscallname {
163 int nr;
164 const char *name;
165 const char *format;
166 void (*call)(const struct syscallname *,
167 abi_long, abi_long, abi_long,
168 abi_long, abi_long, abi_long);
169 void (*result)(const struct syscallname *, abi_long);
170};
171
blueswir184778502008-10-26 20:33:16 +0000172void
173print_freebsd_syscall(int num,
174 abi_long arg1, abi_long arg2, abi_long arg3,
175 abi_long arg4, abi_long arg5, abi_long arg6);
176void print_freebsd_syscall_ret(int num, abi_long ret);
177void
178print_netbsd_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_netbsd_syscall_ret(int num, abi_long ret);
182void
183print_openbsd_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_openbsd_syscall_ret(int num, abi_long ret);
187extern int do_strace;
188
189/* signal.c */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100190void process_pending_signals(CPUArchState *cpu_env);
blueswir184778502008-10-26 20:33:16 +0000191void signal_init(void);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100192long do_sigreturn(CPUArchState *env);
193long do_rt_sigreturn(CPUArchState *env);
blueswir184778502008-10-26 20:33:16 +0000194abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
195
196/* mmap.c */
197int target_mprotect(abi_ulong start, abi_ulong len, int prot);
198abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
199 int flags, int fd, abi_ulong offset);
200int target_munmap(abi_ulong start, abi_ulong len);
201abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
202 abi_ulong new_size, unsigned long flags,
203 abi_ulong new_addr);
204int target_msync(abi_ulong start, abi_ulong len, int flags);
205extern unsigned long last_brk;
blueswir184778502008-10-26 20:33:16 +0000206void mmap_fork_start(void);
207void mmap_fork_end(int child);
blueswir184778502008-10-26 20:33:16 +0000208
Blue Swirl28e738d2009-08-01 10:29:42 +0000209/* main.c */
Warner Losh01a298a2021-08-03 13:39:31 -0600210extern char qemu_proc_pathname[];
Blue Swirl28e738d2009-08-01 10:29:42 +0000211extern unsigned long x86_stack_size;
212
blueswir184778502008-10-26 20:33:16 +0000213/* user access */
214
Richard Henderson17207512021-02-12 10:48:39 -0800215#define VERIFY_READ PAGE_READ
216#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
blueswir184778502008-10-26 20:33:16 +0000217
Richard Henderson17207512021-02-12 10:48:39 -0800218static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
blueswir184778502008-10-26 20:33:16 +0000219{
Richard Henderson17207512021-02-12 10:48:39 -0800220 return page_check_range((target_ulong)addr, size, type) == 0;
blueswir184778502008-10-26 20:33:16 +0000221}
222
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600223/*
224 * NOTE __get_user and __put_user use host pointers and don't check access.
225 *
226 * These are usually used to access struct data members once the struct has been
227 * locked - usually with lock_user_struct().
blueswir184778502008-10-26 20:33:16 +0000228 */
229#define __put_user(x, hptr)\
230({\
231 int size = sizeof(*hptr);\
Warner Loshcefbade2021-04-23 09:05:57 -0600232 switch (size) {\
blueswir184778502008-10-26 20:33:16 +0000233 case 1:\
234 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
235 break;\
236 case 2:\
237 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
238 break;\
239 case 4:\
240 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
241 break;\
242 case 8:\
243 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
244 break;\
245 default:\
246 abort();\
Warner Losh036a0132021-04-23 19:45:20 -0600247 } \
blueswir184778502008-10-26 20:33:16 +0000248 0;\
249})
250
251#define __get_user(x, hptr) \
252({\
253 int size = sizeof(*hptr);\
Warner Loshcefbade2021-04-23 09:05:57 -0600254 switch (size) {\
blueswir184778502008-10-26 20:33:16 +0000255 case 1:\
256 x = (typeof(*hptr))*(uint8_t *)(hptr);\
257 break;\
258 case 2:\
259 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
260 break;\
261 case 4:\
262 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
263 break;\
264 case 8:\
265 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
266 break;\
267 default:\
blueswir184778502008-10-26 20:33:16 +0000268 x = 0;\
269 abort();\
Warner Losh036a0132021-04-23 19:45:20 -0600270 } \
blueswir184778502008-10-26 20:33:16 +0000271 0;\
272})
273
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600274/*
275 * put_user()/get_user() take a guest address and check access
276 *
277 * These are usually used to access an atomic data type, such as an int, that
278 * has been passed by address. These internally perform locking and unlocking
279 * on the data type.
blueswir184778502008-10-26 20:33:16 +0000280 */
281#define put_user(x, gaddr, target_type) \
282({ \
283 abi_ulong __gaddr = (gaddr); \
284 target_type *__hptr; \
285 abi_long __ret; \
Warner Losh33066932021-04-23 19:53:36 -0600286 __hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0); \
287 if (__hptr) { \
blueswir184778502008-10-26 20:33:16 +0000288 __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; \
Warner Losh33066932021-04-23 19:53:36 -0600300 __hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1); \
301 if (__hptr) { \
blueswir184778502008-10-26 20:33:16 +0000302 __ret = __get_user((x), __hptr); \
303 unlock_user(__hptr, __gaddr, 0); \
304 } else { \
blueswir184778502008-10-26 20:33:16 +0000305 (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
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600333/*
334 * copy_from_user() and copy_to_user() are usually used to copy data
blueswir184778502008-10-26 20:33:16 +0000335 * buffers between the target and host. These internally perform
336 * locking/unlocking of the memory.
337 */
338abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
339abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
340
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600341/*
342 * Functions for accessing guest memory. The tget and tput functions
343 * read/write single values, byteswapping as necessary. The lock_user function
344 * gets a pointer to a contiguous area of guest memory, but does not perform
345 * any byteswapping. lock_user may return either a pointer to the guest
346 * memory, or a temporary buffer.
347 */
blueswir184778502008-10-26 20:33:16 +0000348
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600349/*
350 * Lock an area of guest memory into the host. If copy is true then the
351 * host area will have the same contents as the guest.
352 */
353static inline void *lock_user(int type, abi_ulong guest_addr, long len,
354 int copy)
blueswir184778502008-10-26 20:33:16 +0000355{
Warner Loshcb0ea012021-04-23 19:55:03 -0600356 if (!access_ok(type, guest_addr, len)) {
blueswir184778502008-10-26 20:33:16 +0000357 return NULL;
Warner Loshcb0ea012021-04-23 19:55:03 -0600358 }
blueswir184778502008-10-26 20:33:16 +0000359#ifdef DEBUG_REMAP
360 {
361 void *addr;
Md Haris Iqbalfd9a3042016-04-05 18:39:03 +0530362 addr = g_malloc(len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600363 if (copy) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800364 memcpy(addr, g2h_untagged(guest_addr), len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600365 } else {
blueswir184778502008-10-26 20:33:16 +0000366 memset(addr, 0, len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600367 }
blueswir184778502008-10-26 20:33:16 +0000368 return addr;
369 }
370#else
Richard Henderson3e8f1622021-02-12 10:48:43 -0800371 return g2h_untagged(guest_addr);
blueswir184778502008-10-26 20:33:16 +0000372#endif
373}
374
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600375/*
376 * Unlock an area of guest memory. The first LEN bytes must be flushed back to
377 * guest memory. host_ptr = NULL is explicitly allowed and does nothing.
378 */
blueswir184778502008-10-26 20:33:16 +0000379static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
380 long len)
381{
382
383#ifdef DEBUG_REMAP
Warner Loshcb0ea012021-04-23 19:55:03 -0600384 if (!host_ptr) {
blueswir184778502008-10-26 20:33:16 +0000385 return;
Warner Loshcb0ea012021-04-23 19:55:03 -0600386 }
387 if (host_ptr == g2h_untagged(guest_addr)) {
blueswir184778502008-10-26 20:33:16 +0000388 return;
Warner Loshcb0ea012021-04-23 19:55:03 -0600389 }
390 if (len > 0) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800391 memcpy(g2h_untagged(guest_addr), host_ptr, len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600392 }
Md Haris Iqbalfd9a3042016-04-05 18:39:03 +0530393 g_free(host_ptr);
blueswir184778502008-10-26 20:33:16 +0000394#endif
395}
396
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600397/*
398 * Return the length of a string in target memory or -TARGET_EFAULT if access
399 * error.
400 */
blueswir184778502008-10-26 20:33:16 +0000401abi_long target_strlen(abi_ulong gaddr);
402
403/* Like lock_user but for null terminated strings. */
404static inline void *lock_user_string(abi_ulong guest_addr)
405{
406 abi_long len;
407 len = target_strlen(guest_addr);
Warner Loshcb0ea012021-04-23 19:55:03 -0600408 if (len < 0) {
blueswir184778502008-10-26 20:33:16 +0000409 return NULL;
Warner Loshcb0ea012021-04-23 19:55:03 -0600410 }
blueswir184778502008-10-26 20:33:16 +0000411 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
412}
413
Stefan Weil41d1af42013-09-12 19:57:41 +0200414/* Helper macros for locking/unlocking a target struct. */
blueswir184778502008-10-26 20:33:16 +0000415#define lock_user_struct(type, host_ptr, guest_addr, copy) \
416 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
417#define unlock_user_struct(host_ptr, guest_addr, copy) \
418 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
419
blueswir184778502008-10-26 20:33:16 +0000420#include <pthread.h>
blueswir184778502008-10-26 20:33:16 +0000421
422#endif /* QEMU_H */