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