blob: 6b601ce4b5ead311eb532b1f93a1da9cdd26a47f [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
Juan Quintela2f7bb872009-07-27 16:13:24 +020043#if defined(CONFIG_USE_NPTL)
blueswir184778502008-10-26 20:33:16 +000044#define THREAD __thread
45#else
46#define THREAD
47#endif
48
Warner Loshc2bdd9a2021-04-23 19:50:53 -060049/*
50 * This struct is used to hold certain information about the image. Basically,
51 * it replicates in user space what would be certain task_struct fields in the
52 * kernel
blueswir184778502008-10-26 20:33:16 +000053 */
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;
blueswir184778502008-10-26 20:33:16 +000069 int personality;
70};
71
72#define MAX_SIGQUEUE_SIZE 1024
73
74struct sigqueue {
75 struct sigqueue *next;
blueswir184778502008-10-26 20:33:16 +000076};
77
78struct emulated_sigtable {
79 int pending; /* true if signal is pending */
80 struct sigqueue *first;
Warner Loshc2bdd9a2021-04-23 19:50:53 -060081 /* in order to always have memory for the first signal, we put it here */
82 struct sigqueue info;
blueswir184778502008-10-26 20:33:16 +000083};
84
Warner Loshc2bdd9a2021-04-23 19:50:53 -060085/*
86 * NOTE: we force a big alignment so that the stack stored after is aligned too
87 */
blueswir184778502008-10-26 20:33:16 +000088typedef struct TaskState {
Alex Bennéebd88c782017-07-12 11:52:15 +010089 pid_t ts_tid; /* tid (or pid) of this task */
90
blueswir184778502008-10-26 20:33:16 +000091 struct TaskState *next;
92 int used; /* non zero if used */
93 struct image_info *info;
94
95 struct emulated_sigtable sigtab[TARGET_NSIG];
96 struct sigqueue sigqueue_table[MAX_SIGQUEUE_SIZE]; /* siginfo queue */
97 struct sigqueue *first_free; /* first free siginfo queue entry */
98 int signal_pending; /* non zero if a signal may be pending */
99
Philippe Mathieu-Daudéf7795e42020-03-04 16:38:15 +0100100 uint8_t stack[];
blueswir184778502008-10-26 20:33:16 +0000101} __attribute__((aligned(16))) TaskState;
102
103void init_task_state(TaskState *ts);
104extern const char *qemu_uname_release;
Blue Swirl2fa5d9b2009-09-27 19:30:51 +0000105extern unsigned long mmap_min_addr;
blueswir184778502008-10-26 20:33:16 +0000106
blueswir184778502008-10-26 20:33:16 +0000107/*
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 */
Warner Loshafcbcff2021-04-29 10:04:28 -0600118struct bsd_binprm {
blueswir184778502008-10-26 20:33:16 +0000119 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;
Warner Losh1b50ff62021-04-29 19:34:34 -0600127 char *filename; /* (Given) Name of binary */
128 char *fullpath; /* Full path of binary */
blueswir184778502008-10-26 20:33:16 +0000129};
130
131void do_init_thread(struct target_pt_regs *regs, struct image_info *infop);
132abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
133 abi_ulong stringp, int push_ptr);
Warner Losh036a0132021-04-23 19:45:20 -0600134int loader_exec(const char *filename, char **argv, char **envp,
Warner Loshd37853f2021-04-29 18:45:13 -0600135 struct target_pt_regs *regs, struct image_info *infop,
136 struct bsd_binprm *bprm);
blueswir184778502008-10-26 20:33:16 +0000137
Warner Loshafcbcff2021-04-29 10:04:28 -0600138int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
Warner Losh036a0132021-04-23 19:45:20 -0600139 struct image_info *info);
Warner Loshafcbcff2021-04-29 10:04:28 -0600140int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
Warner Losh036a0132021-04-23 19:45:20 -0600141 struct image_info *info);
blueswir184778502008-10-26 20:33:16 +0000142
143abi_long memcpy_to_target(abi_ulong dest, const void *src,
144 unsigned long len);
145void target_set_brk(abi_ulong new_brk);
146abi_long do_brk(abi_ulong new_brk);
147void syscall_init(void);
148abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
149 abi_long arg2, abi_long arg3, abi_long arg4,
Juergen Lock78cfb072009-10-17 00:34:26 +0200150 abi_long arg5, abi_long arg6, abi_long arg7,
151 abi_long arg8);
blueswir184778502008-10-26 20:33:16 +0000152abi_long do_netbsd_syscall(void *cpu_env, int num, abi_long arg1,
153 abi_long arg2, abi_long arg3, abi_long arg4,
154 abi_long arg5, abi_long arg6);
155abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
156 abi_long arg2, abi_long arg3, abi_long arg4,
157 abi_long arg5, abi_long arg6);
Stefan Weile5924d82010-09-23 21:28:03 +0200158void gemu_log(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
Andreas Färberdca11732013-06-09 19:51:23 +0200159extern THREAD CPUState *thread_cpu;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100160void cpu_loop(CPUArchState *env);
blueswir184778502008-10-26 20:33:16 +0000161char *target_strerror(int err);
162int get_osversion(void);
163void fork_start(void);
164void fork_end(int child);
165
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100166#include "qemu/log.h"
blueswir184778502008-10-26 20:33:16 +0000167
168/* strace.c */
Sean Bruno88dae462014-06-08 09:57:23 -0700169struct syscallname {
170 int nr;
171 const char *name;
172 const char *format;
173 void (*call)(const struct syscallname *,
174 abi_long, abi_long, abi_long,
175 abi_long, abi_long, abi_long);
176 void (*result)(const struct syscallname *, abi_long);
177};
178
blueswir184778502008-10-26 20:33:16 +0000179void
180print_freebsd_syscall(int num,
181 abi_long arg1, abi_long arg2, abi_long arg3,
182 abi_long arg4, abi_long arg5, abi_long arg6);
183void print_freebsd_syscall_ret(int num, abi_long ret);
184void
185print_netbsd_syscall(int num,
186 abi_long arg1, abi_long arg2, abi_long arg3,
187 abi_long arg4, abi_long arg5, abi_long arg6);
188void print_netbsd_syscall_ret(int num, abi_long ret);
189void
190print_openbsd_syscall(int num,
191 abi_long arg1, abi_long arg2, abi_long arg3,
192 abi_long arg4, abi_long arg5, abi_long arg6);
193void print_openbsd_syscall_ret(int num, abi_long ret);
194extern int do_strace;
195
196/* signal.c */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100197void process_pending_signals(CPUArchState *cpu_env);
blueswir184778502008-10-26 20:33:16 +0000198void signal_init(void);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100199long do_sigreturn(CPUArchState *env);
200long do_rt_sigreturn(CPUArchState *env);
blueswir184778502008-10-26 20:33:16 +0000201abi_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,
206 int flags, int fd, abi_ulong offset);
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;
blueswir184778502008-10-26 20:33:16 +0000213void mmap_fork_start(void);
214void mmap_fork_end(int child);
blueswir184778502008-10-26 20:33:16 +0000215
Blue Swirl28e738d2009-08-01 10:29:42 +0000216/* main.c */
217extern unsigned long x86_stack_size;
218
blueswir184778502008-10-26 20:33:16 +0000219/* user access */
220
Richard Henderson17207512021-02-12 10:48:39 -0800221#define VERIFY_READ PAGE_READ
222#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
blueswir184778502008-10-26 20:33:16 +0000223
Richard Henderson17207512021-02-12 10:48:39 -0800224static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
blueswir184778502008-10-26 20:33:16 +0000225{
Richard Henderson17207512021-02-12 10:48:39 -0800226 return page_check_range((target_ulong)addr, size, type) == 0;
blueswir184778502008-10-26 20:33:16 +0000227}
228
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600229/*
230 * NOTE __get_user and __put_user use host pointers and don't check access.
231 *
232 * These are usually used to access struct data members once the struct has been
233 * locked - usually with lock_user_struct().
blueswir184778502008-10-26 20:33:16 +0000234 */
235#define __put_user(x, hptr)\
236({\
237 int size = sizeof(*hptr);\
Warner Loshcefbade2021-04-23 09:05:57 -0600238 switch (size) {\
blueswir184778502008-10-26 20:33:16 +0000239 case 1:\
240 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
241 break;\
242 case 2:\
243 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
244 break;\
245 case 4:\
246 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
247 break;\
248 case 8:\
249 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
250 break;\
251 default:\
252 abort();\
Warner Losh036a0132021-04-23 19:45:20 -0600253 } \
blueswir184778502008-10-26 20:33:16 +0000254 0;\
255})
256
257#define __get_user(x, hptr) \
258({\
259 int size = sizeof(*hptr);\
Warner Loshcefbade2021-04-23 09:05:57 -0600260 switch (size) {\
blueswir184778502008-10-26 20:33:16 +0000261 case 1:\
262 x = (typeof(*hptr))*(uint8_t *)(hptr);\
263 break;\
264 case 2:\
265 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
266 break;\
267 case 4:\
268 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
269 break;\
270 case 8:\
271 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
272 break;\
273 default:\
blueswir184778502008-10-26 20:33:16 +0000274 x = 0;\
275 abort();\
Warner Losh036a0132021-04-23 19:45:20 -0600276 } \
blueswir184778502008-10-26 20:33:16 +0000277 0;\
278})
279
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600280/*
281 * put_user()/get_user() take a guest address and check access
282 *
283 * These are usually used to access an atomic data type, such as an int, that
284 * has been passed by address. These internally perform locking and unlocking
285 * on the data type.
blueswir184778502008-10-26 20:33:16 +0000286 */
287#define put_user(x, gaddr, target_type) \
288({ \
289 abi_ulong __gaddr = (gaddr); \
290 target_type *__hptr; \
291 abi_long __ret; \
Warner Losh33066932021-04-23 19:53:36 -0600292 __hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0); \
293 if (__hptr) { \
blueswir184778502008-10-26 20:33:16 +0000294 __ret = __put_user((x), __hptr); \
295 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
296 } else \
297 __ret = -TARGET_EFAULT; \
298 __ret; \
299})
300
301#define get_user(x, gaddr, target_type) \
302({ \
303 abi_ulong __gaddr = (gaddr); \
304 target_type *__hptr; \
305 abi_long __ret; \
Warner Losh33066932021-04-23 19:53:36 -0600306 __hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1); \
307 if (__hptr) { \
blueswir184778502008-10-26 20:33:16 +0000308 __ret = __get_user((x), __hptr); \
309 unlock_user(__hptr, __gaddr, 0); \
310 } else { \
blueswir184778502008-10-26 20:33:16 +0000311 (x) = 0; \
312 __ret = -TARGET_EFAULT; \
313 } \
314 __ret; \
315})
316
317#define put_user_ual(x, gaddr) put_user((x), (gaddr), abi_ulong)
318#define put_user_sal(x, gaddr) put_user((x), (gaddr), abi_long)
319#define put_user_u64(x, gaddr) put_user((x), (gaddr), uint64_t)
320#define put_user_s64(x, gaddr) put_user((x), (gaddr), int64_t)
321#define put_user_u32(x, gaddr) put_user((x), (gaddr), uint32_t)
322#define put_user_s32(x, gaddr) put_user((x), (gaddr), int32_t)
323#define put_user_u16(x, gaddr) put_user((x), (gaddr), uint16_t)
324#define put_user_s16(x, gaddr) put_user((x), (gaddr), int16_t)
325#define put_user_u8(x, gaddr) put_user((x), (gaddr), uint8_t)
326#define put_user_s8(x, gaddr) put_user((x), (gaddr), int8_t)
327
328#define get_user_ual(x, gaddr) get_user((x), (gaddr), abi_ulong)
329#define get_user_sal(x, gaddr) get_user((x), (gaddr), abi_long)
330#define get_user_u64(x, gaddr) get_user((x), (gaddr), uint64_t)
331#define get_user_s64(x, gaddr) get_user((x), (gaddr), int64_t)
332#define get_user_u32(x, gaddr) get_user((x), (gaddr), uint32_t)
333#define get_user_s32(x, gaddr) get_user((x), (gaddr), int32_t)
334#define get_user_u16(x, gaddr) get_user((x), (gaddr), uint16_t)
335#define get_user_s16(x, gaddr) get_user((x), (gaddr), int16_t)
336#define get_user_u8(x, gaddr) get_user((x), (gaddr), uint8_t)
337#define get_user_s8(x, gaddr) get_user((x), (gaddr), int8_t)
338
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600339/*
340 * copy_from_user() and copy_to_user() are usually used to copy data
blueswir184778502008-10-26 20:33:16 +0000341 * buffers between the target and host. These internally perform
342 * locking/unlocking of the memory.
343 */
344abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
345abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
346
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600347/*
348 * Functions for accessing guest memory. The tget and tput functions
349 * read/write single values, byteswapping as necessary. The lock_user function
350 * gets a pointer to a contiguous area of guest memory, but does not perform
351 * any byteswapping. lock_user may return either a pointer to the guest
352 * memory, or a temporary buffer.
353 */
blueswir184778502008-10-26 20:33:16 +0000354
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600355/*
356 * Lock an area of guest memory into the host. If copy is true then the
357 * host area will have the same contents as the guest.
358 */
359static inline void *lock_user(int type, abi_ulong guest_addr, long len,
360 int copy)
blueswir184778502008-10-26 20:33:16 +0000361{
Warner Loshcb0ea012021-04-23 19:55:03 -0600362 if (!access_ok(type, guest_addr, len)) {
blueswir184778502008-10-26 20:33:16 +0000363 return NULL;
Warner Loshcb0ea012021-04-23 19:55:03 -0600364 }
blueswir184778502008-10-26 20:33:16 +0000365#ifdef DEBUG_REMAP
366 {
367 void *addr;
Md Haris Iqbalfd9a3042016-04-05 18:39:03 +0530368 addr = g_malloc(len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600369 if (copy) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800370 memcpy(addr, g2h_untagged(guest_addr), len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600371 } else {
blueswir184778502008-10-26 20:33:16 +0000372 memset(addr, 0, len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600373 }
blueswir184778502008-10-26 20:33:16 +0000374 return addr;
375 }
376#else
Richard Henderson3e8f1622021-02-12 10:48:43 -0800377 return g2h_untagged(guest_addr);
blueswir184778502008-10-26 20:33:16 +0000378#endif
379}
380
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600381/*
382 * Unlock an area of guest memory. The first LEN bytes must be flushed back to
383 * guest memory. host_ptr = NULL is explicitly allowed and does nothing.
384 */
blueswir184778502008-10-26 20:33:16 +0000385static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
386 long len)
387{
388
389#ifdef DEBUG_REMAP
Warner Loshcb0ea012021-04-23 19:55:03 -0600390 if (!host_ptr) {
blueswir184778502008-10-26 20:33:16 +0000391 return;
Warner Loshcb0ea012021-04-23 19:55:03 -0600392 }
393 if (host_ptr == g2h_untagged(guest_addr)) {
blueswir184778502008-10-26 20:33:16 +0000394 return;
Warner Loshcb0ea012021-04-23 19:55:03 -0600395 }
396 if (len > 0) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800397 memcpy(g2h_untagged(guest_addr), host_ptr, len);
Warner Loshcb0ea012021-04-23 19:55:03 -0600398 }
Md Haris Iqbalfd9a3042016-04-05 18:39:03 +0530399 g_free(host_ptr);
blueswir184778502008-10-26 20:33:16 +0000400#endif
401}
402
Warner Loshc2bdd9a2021-04-23 19:50:53 -0600403/*
404 * Return the length of a string in target memory or -TARGET_EFAULT if access
405 * error.
406 */
blueswir184778502008-10-26 20:33:16 +0000407abi_long target_strlen(abi_ulong gaddr);
408
409/* Like lock_user but for null terminated strings. */
410static inline void *lock_user_string(abi_ulong guest_addr)
411{
412 abi_long len;
413 len = target_strlen(guest_addr);
Warner Loshcb0ea012021-04-23 19:55:03 -0600414 if (len < 0) {
blueswir184778502008-10-26 20:33:16 +0000415 return NULL;
Warner Loshcb0ea012021-04-23 19:55:03 -0600416 }
blueswir184778502008-10-26 20:33:16 +0000417 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
418}
419
Stefan Weil41d1af42013-09-12 19:57:41 +0200420/* Helper macros for locking/unlocking a target struct. */
blueswir184778502008-10-26 20:33:16 +0000421#define lock_user_struct(type, host_ptr, guest_addr, copy) \
422 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
423#define unlock_user_struct(host_ptr, guest_addr, copy) \
424 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
425
Juan Quintela2f7bb872009-07-27 16:13:24 +0200426#if defined(CONFIG_USE_NPTL)
blueswir184778502008-10-26 20:33:16 +0000427#include <pthread.h>
428#endif
429
430#endif /* QEMU_H */