]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/qemu.h
bsd-user: style tweak: Use preferred block comments
[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
BS
20
21#include "cpu.h"
f08b6170 22#include "exec/cpu_ldst.h"
84778508
BS
23
24#undef DEBUG_REMAP
25#ifdef DEBUG_REMAP
84778508
BS
26#endif /* DEBUG_REMAP */
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
BS
38
39#include "syscall_defs.h"
0c6940d0 40#include "target_syscall.h"
84778508 41#include "target_signal.h"
022c62cb 42#include "exec/gdbstub.h"
84778508 43
2f7bb878 44#if defined(CONFIG_USE_NPTL)
84778508
BS
45#define THREAD __thread
46#else
47#define THREAD
48#endif
49
c2bdd9a1
WL
50/*
51 * This struct is used to hold certain information about the image. Basically,
52 * it replicates in user space what would be certain task_struct fields in the
53 * kernel
84778508
BS
54 */
55struct image_info {
56 abi_ulong load_addr;
57 abi_ulong start_code;
58 abi_ulong end_code;
59 abi_ulong start_data;
60 abi_ulong end_data;
61 abi_ulong start_brk;
62 abi_ulong brk;
63 abi_ulong start_mmap;
64 abi_ulong mmap;
65 abi_ulong rss;
66 abi_ulong start_stack;
67 abi_ulong entry;
68 abi_ulong code_offset;
69 abi_ulong data_offset;
84778508
BS
70 int personality;
71};
72
73#define MAX_SIGQUEUE_SIZE 1024
74
75struct sigqueue {
76 struct sigqueue *next;
84778508
BS
77};
78
79struct emulated_sigtable {
80 int pending; /* true if signal is pending */
81 struct sigqueue *first;
c2bdd9a1
WL
82 /* in order to always have memory for the first signal, we put it here */
83 struct sigqueue info;
84778508
BS
84};
85
c2bdd9a1
WL
86/*
87 * NOTE: we force a big alignment so that the stack stored after is aligned too
88 */
84778508 89typedef struct TaskState {
bd88c780
AB
90 pid_t ts_tid; /* tid (or pid) of this task */
91
84778508
BS
92 struct TaskState *next;
93 int used; /* non zero if used */
94 struct image_info *info;
95
96 struct emulated_sigtable sigtab[TARGET_NSIG];
97 struct sigqueue sigqueue_table[MAX_SIGQUEUE_SIZE]; /* siginfo queue */
98 struct sigqueue *first_free; /* first free siginfo queue entry */
99 int signal_pending; /* non zero if a signal may be pending */
100
f7795e40 101 uint8_t stack[];
84778508
BS
102} __attribute__((aligned(16))) TaskState;
103
104void init_task_state(TaskState *ts);
105extern const char *qemu_uname_release;
2fa5d9ba 106extern unsigned long mmap_min_addr;
84778508 107
84778508
BS
108/*
109 * MAX_ARG_PAGES defines the number of pages allocated for arguments
110 * and envelope for the new program. 32 should suffice, this gives
111 * a maximum env+arg of 128kB w/4KB pages!
112 */
113#define MAX_ARG_PAGES 32
114
115/*
116 * This structure is used to hold the arguments that are
117 * used when loading binaries.
118 */
119struct linux_binprm {
120 char buf[128];
121 void *page[MAX_ARG_PAGES];
122 abi_ulong p;
123 int fd;
124 int e_uid, e_gid;
125 int argc, envc;
126 char **argv;
127 char **envp;
036a013f 128 char *filename; /* Name of binary */
84778508
BS
129};
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);
036a013f
WL
134int loader_exec(const char *filename, char **argv, char **envp,
135 struct target_pt_regs *regs, struct image_info *infop);
84778508 136
036a013f
WL
137int load_elf_binary(struct linux_binprm *bprm, struct target_pt_regs *regs,
138 struct image_info *info);
139int load_flt_binary(struct linux_binprm *bprm, struct target_pt_regs *regs,
140 struct image_info *info);
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);
dca1173c 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);
84778508
BS
200abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
201
202/* mmap.c */
203int target_mprotect(abi_ulong start, abi_ulong len, int prot);
204abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
205 int flags, int fd, abi_ulong offset);
206int target_munmap(abi_ulong start, abi_ulong len);
207abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
208 abi_ulong new_size, unsigned long flags,
209 abi_ulong new_addr);
210int target_msync(abi_ulong start, abi_ulong len, int flags);
211extern unsigned long last_brk;
84778508
BS
212void mmap_fork_start(void);
213void mmap_fork_end(int child);
84778508 214
28e738dc
BS
215/* main.c */
216extern unsigned long x86_stack_size;
217
84778508
BS
218/* user access */
219
1720751f
RH
220#define VERIFY_READ PAGE_READ
221#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
84778508 222
1720751f 223static inline bool access_ok(int type, abi_ulong addr, abi_ulong size)
84778508 224{
1720751f 225 return page_check_range((target_ulong)addr, size, type) == 0;
84778508
BS
226}
227
c2bdd9a1
WL
228/*
229 * NOTE __get_user and __put_user use host pointers and don't check access.
230 *
231 * These are usually used to access struct data members once the struct has been
232 * locked - usually with lock_user_struct().
84778508
BS
233 */
234#define __put_user(x, hptr)\
235({\
236 int size = sizeof(*hptr);\
cefbade1 237 switch (size) {\
84778508
BS
238 case 1:\
239 *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\
240 break;\
241 case 2:\
242 *(uint16_t *)(hptr) = tswap16((typeof(*hptr))(x));\
243 break;\
244 case 4:\
245 *(uint32_t *)(hptr) = tswap32((typeof(*hptr))(x));\
246 break;\
247 case 8:\
248 *(uint64_t *)(hptr) = tswap64((typeof(*hptr))(x));\
249 break;\
250 default:\
251 abort();\
036a013f 252 } \
84778508
BS
253 0;\
254})
255
256#define __get_user(x, hptr) \
257({\
258 int size = sizeof(*hptr);\
cefbade1 259 switch (size) {\
84778508
BS
260 case 1:\
261 x = (typeof(*hptr))*(uint8_t *)(hptr);\
262 break;\
263 case 2:\
264 x = (typeof(*hptr))tswap16(*(uint16_t *)(hptr));\
265 break;\
266 case 4:\
267 x = (typeof(*hptr))tswap32(*(uint32_t *)(hptr));\
268 break;\
269 case 8:\
270 x = (typeof(*hptr))tswap64(*(uint64_t *)(hptr));\
271 break;\
272 default:\
84778508
BS
273 x = 0;\
274 abort();\
036a013f 275 } \
84778508
BS
276 0;\
277})
278
c2bdd9a1
WL
279/*
280 * put_user()/get_user() take a guest address and check access
281 *
282 * These are usually used to access an atomic data type, such as an int, that
283 * has been passed by address. These internally perform locking and unlocking
284 * on the data type.
84778508
BS
285 */
286#define put_user(x, gaddr, target_type) \
287({ \
288 abi_ulong __gaddr = (gaddr); \
289 target_type *__hptr; \
290 abi_long __ret; \
291 if ((__hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0))) { \
292 __ret = __put_user((x), __hptr); \
293 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
294 } else \
295 __ret = -TARGET_EFAULT; \
296 __ret; \
297})
298
299#define get_user(x, gaddr, target_type) \
300({ \
301 abi_ulong __gaddr = (gaddr); \
302 target_type *__hptr; \
303 abi_long __ret; \
304 if ((__hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1))) { \
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
BS
358{
359 if (!access_ok(type, guest_addr, len))
360 return NULL;
361#ifdef DEBUG_REMAP
362 {
363 void *addr;
fd9a3048 364 addr = g_malloc(len);
84778508 365 if (copy)
3e8f1628 366 memcpy(addr, g2h_untagged(guest_addr), len);
84778508
BS
367 else
368 memset(addr, 0, len);
369 return addr;
370 }
371#else
3e8f1628 372 return g2h_untagged(guest_addr);
84778508
BS
373#endif
374}
375
c2bdd9a1
WL
376/*
377 * Unlock an area of guest memory. The first LEN bytes must be flushed back to
378 * guest memory. host_ptr = NULL is explicitly allowed and does nothing.
379 */
84778508
BS
380static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
381 long len)
382{
383
384#ifdef DEBUG_REMAP
385 if (!host_ptr)
386 return;
3e8f1628 387 if (host_ptr == g2h_untagged(guest_addr))
84778508
BS
388 return;
389 if (len > 0)
3e8f1628 390 memcpy(g2h_untagged(guest_addr), host_ptr, len);
fd9a3048 391 g_free(host_ptr);
84778508
BS
392#endif
393}
394
c2bdd9a1
WL
395/*
396 * Return the length of a string in target memory or -TARGET_EFAULT if access
397 * error.
398 */
84778508
BS
399abi_long target_strlen(abi_ulong gaddr);
400
401/* Like lock_user but for null terminated strings. */
402static inline void *lock_user_string(abi_ulong guest_addr)
403{
404 abi_long len;
405 len = target_strlen(guest_addr);
406 if (len < 0)
407 return NULL;
408 return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
409}
410
41d1af4d 411/* Helper macros for locking/unlocking a target struct. */
84778508
BS
412#define lock_user_struct(type, host_ptr, guest_addr, copy) \
413 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
414#define unlock_user_struct(host_ptr, guest_addr, copy) \
415 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
416
2f7bb878 417#if defined(CONFIG_USE_NPTL)
84778508
BS
418#include <pthread.h>
419#endif
420
421#endif /* QEMU_H */