4 * Copyright (c) 2003 - 2008 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
20 #include "qemu/cutils.h"
21 #include "qemu/path.h"
22 #include <sys/syscall.h>
23 #include <sys/param.h>
24 #include <sys/sysctl.h>
28 #include "qemu-common.h"
29 #include "user/syscall-trace.h"
33 static abi_ulong target_brk
;
34 static abi_ulong target_original_brk
;
36 static inline abi_long
get_errno(abi_long ret
)
39 /* XXX need to translate host -> target errnos here */
45 #define target_to_host_bitmask(x, tbl) (x)
47 static inline int is_error(abi_long ret
)
49 return (abi_ulong
)ret
>= (abi_ulong
)(-4096);
52 void target_set_brk(abi_ulong new_brk
)
54 target_original_brk
= target_brk
= HOST_PAGE_ALIGN(new_brk
);
57 /* do_obreak() must return target errnos. */
58 static abi_long
do_obreak(abi_ulong new_brk
)
66 if (new_brk
< target_original_brk
)
67 return -TARGET_EINVAL
;
69 brk_page
= HOST_PAGE_ALIGN(target_brk
);
71 /* If the new brk is less than this, set it and we're done... */
72 if (new_brk
< brk_page
) {
77 /* We need to allocate more memory after the brk... */
78 new_alloc_size
= HOST_PAGE_ALIGN(new_brk
- brk_page
+ 1);
79 mapped_addr
= get_errno(target_mmap(brk_page
, new_alloc_size
,
81 MAP_ANON
|MAP_FIXED
|MAP_PRIVATE
, -1, 0));
83 if (!is_error(mapped_addr
))
91 #if defined(TARGET_I386)
92 static abi_long
do_freebsd_sysarch(CPUX86State
*env
, int op
, abi_ulong parms
)
100 case TARGET_FREEBSD_I386_SET_GSBASE
:
101 case TARGET_FREEBSD_I386_SET_FSBASE
:
102 if (op
== TARGET_FREEBSD_I386_SET_GSBASE
)
104 case TARGET_FREEBSD_AMD64_SET_GSBASE
:
105 case TARGET_FREEBSD_AMD64_SET_FSBASE
:
106 if (op
== TARGET_FREEBSD_AMD64_SET_GSBASE
)
111 if (get_user(val
, parms
, abi_ulong
))
112 return -TARGET_EFAULT
;
113 cpu_x86_load_seg(env
, idx
, 0);
114 env
->segs
[idx
].base
= val
;
117 case TARGET_FREEBSD_I386_GET_GSBASE
:
118 case TARGET_FREEBSD_I386_GET_FSBASE
:
119 if (op
== TARGET_FREEBSD_I386_GET_GSBASE
)
121 case TARGET_FREEBSD_AMD64_GET_GSBASE
:
122 case TARGET_FREEBSD_AMD64_GET_FSBASE
:
123 if (op
== TARGET_FREEBSD_AMD64_GET_GSBASE
)
128 val
= env
->segs
[idx
].base
;
129 if (put_user(val
, parms
, abi_ulong
))
130 return -TARGET_EFAULT
;
132 /* XXX handle the others... */
134 ret
= -TARGET_EINVAL
;
142 static abi_long
do_freebsd_sysarch(void *env
, int op
, abi_ulong parms
)
145 * TARGET_FREEBSD_SPARC_UTRAP_INSTALL,
146 * TARGET_FREEBSD_SPARC_SIGTRAMP_INSTALL
148 return -TARGET_EINVAL
;
154 * XXX this uses the undocumented oidfmt interface to find the kind of
155 * a requested sysctl, see /sys/kern/kern_sysctl.c:sysctl_sysctl_oidfmt()
156 * (this is mostly copied from src/sbin/sysctl/sysctl.c)
159 oidfmt(int *oid
, int len
, char *fmt
, uint32_t *kind
)
161 int qoid
[CTL_MAXNAME
+2];
168 memcpy(qoid
+ 2, oid
, len
* sizeof(int));
171 i
= sysctl(qoid
, len
+ 2, buf
, &j
, 0, 0);
176 *kind
= *(uint32_t *)buf
;
179 strcpy(fmt
, (char *)(buf
+ sizeof(uint32_t)));
184 * try and convert sysctl return data for the target.
185 * XXX doesn't handle CTLTYPE_OPAQUE and CTLTYPE_STRUCT.
187 static int sysctl_oldcvt(void *holdp
, size_t holdlen
, uint32_t kind
)
189 switch (kind
& CTLTYPE
) {
192 *(uint32_t *)holdp
= tswap32(*(uint32_t *)holdp
);
197 *(uint32_t *)holdp
= tswap32(*(long *)holdp
);
201 *(uint64_t *)holdp
= tswap64(*(long *)holdp
);
204 *(uint64_t *)holdp
= tswap64(*(unsigned long *)holdp
);
213 *(uint64_t *)holdp
= tswap64(*(uint64_t *)holdp
);
224 /* XXX this needs to be emulated on non-FreeBSD hosts... */
225 static abi_long
do_freebsd_sysctl(abi_ulong namep
, int32_t namelen
, abi_ulong oldp
,
226 abi_ulong oldlenp
, abi_ulong newp
, abi_ulong newlen
)
229 void *hnamep
, *holdp
, *hnewp
= NULL
;
231 abi_ulong oldlen
= 0;
232 int32_t *snamep
= g_malloc(sizeof(int32_t) * namelen
), *p
, *q
, i
;
236 get_user_ual(oldlen
, oldlenp
);
237 if (!(hnamep
= lock_user(VERIFY_READ
, namep
, namelen
, 1)))
238 return -TARGET_EFAULT
;
239 if (newp
&& !(hnewp
= lock_user(VERIFY_READ
, newp
, newlen
, 1)))
240 return -TARGET_EFAULT
;
241 if (!(holdp
= lock_user(VERIFY_WRITE
, oldp
, oldlen
, 0)))
242 return -TARGET_EFAULT
;
244 for (p
= hnamep
, q
= snamep
, i
= 0; i
< namelen
; p
++, i
++)
246 oidfmt(snamep
, namelen
, NULL
, &kind
);
248 ret
= get_errno(sysctl(snamep
, namelen
, holdp
, &holdlen
, hnewp
, newlen
));
250 sysctl_oldcvt(holdp
, holdlen
, kind
);
251 put_user_ual(holdlen
, oldlenp
);
252 unlock_user(hnamep
, namep
, 0);
253 unlock_user(holdp
, oldp
, holdlen
);
255 unlock_user(hnewp
, newp
, 0);
262 * lock_iovec()/unlock_iovec() have a return code of 0 for success where
263 * other lock functions have a return code of 0 for failure.
265 static abi_long
lock_iovec(int type
, struct iovec
*vec
, abi_ulong target_addr
,
268 struct target_iovec
*target_vec
;
272 target_vec
= lock_user(VERIFY_READ
, target_addr
, count
* sizeof(struct target_iovec
), 1);
274 return -TARGET_EFAULT
;
275 for (i
= 0;i
< count
; i
++) {
276 base
= tswapl(target_vec
[i
].iov_base
);
277 vec
[i
].iov_len
= tswapl(target_vec
[i
].iov_len
);
278 if (vec
[i
].iov_len
!= 0) {
279 vec
[i
].iov_base
= lock_user(type
, base
, vec
[i
].iov_len
, copy
);
280 /* Don't check lock_user return value. We must call writev even
281 if a element has invalid base address. */
283 /* zero length pointer is ignored */
284 vec
[i
].iov_base
= NULL
;
287 unlock_user (target_vec
, target_addr
, 0);
291 static abi_long
unlock_iovec(struct iovec
*vec
, abi_ulong target_addr
,
294 struct target_iovec
*target_vec
;
298 target_vec
= lock_user(VERIFY_READ
, target_addr
, count
* sizeof(struct target_iovec
), 1);
300 return -TARGET_EFAULT
;
301 for (i
= 0;i
< count
; i
++) {
302 if (target_vec
[i
].iov_base
) {
303 base
= tswapl(target_vec
[i
].iov_base
);
304 unlock_user(vec
[i
].iov_base
, base
, copy
? vec
[i
].iov_len
: 0);
307 unlock_user (target_vec
, target_addr
, 0);
312 /* do_syscall() should always have a single exit point at the end so
313 that actions, such as logging of syscall results, can be performed.
314 All errnos that do_syscall() returns must be -TARGET_<errcode>. */
315 abi_long
do_freebsd_syscall(void *cpu_env
, int num
, abi_long arg1
,
316 abi_long arg2
, abi_long arg3
, abi_long arg4
,
317 abi_long arg5
, abi_long arg6
, abi_long arg7
,
320 CPUState
*cpu
= env_cpu(cpu_env
);
325 gemu_log("freebsd syscall %d\n", num
);
327 record_syscall_start(cpu
, num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, 0, 0);
330 print_freebsd_syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
333 case TARGET_FREEBSD_NR_exit
:
338 qemu_plugin_user_exit();
339 /* XXX: should free thread stack and CPU env */
341 ret
= 0; /* avoid warning */
343 case TARGET_FREEBSD_NR_read
:
344 if (!(p
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0)))
346 ret
= get_errno(read(arg1
, p
, arg3
));
347 unlock_user(p
, arg2
, ret
);
349 case TARGET_FREEBSD_NR_write
:
350 if (!(p
= lock_user(VERIFY_READ
, arg2
, arg3
, 1)))
352 ret
= get_errno(write(arg1
, p
, arg3
));
353 unlock_user(p
, arg2
, 0);
355 case TARGET_FREEBSD_NR_writev
:
360 vec
= alloca(count
* sizeof(struct iovec
));
361 if (lock_iovec(VERIFY_READ
, vec
, arg2
, count
, 1) < 0)
363 ret
= get_errno(writev(arg1
, vec
, count
));
364 unlock_iovec(vec
, arg2
, count
, 0);
367 case TARGET_FREEBSD_NR_open
:
368 if (!(p
= lock_user_string(arg1
)))
370 ret
= get_errno(open(path(p
),
371 target_to_host_bitmask(arg2
, fcntl_flags_tbl
),
373 unlock_user(p
, arg1
, 0);
375 case TARGET_FREEBSD_NR_mmap
:
376 ret
= get_errno(target_mmap(arg1
, arg2
, arg3
,
377 target_to_host_bitmask(arg4
, mmap_flags_tbl
),
381 case TARGET_FREEBSD_NR_mprotect
:
382 ret
= get_errno(target_mprotect(arg1
, arg2
, arg3
));
384 case TARGET_FREEBSD_NR_break
:
385 ret
= do_obreak(arg1
);
388 case TARGET_FREEBSD_NR___sysctl
:
389 ret
= do_freebsd_sysctl(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
392 case TARGET_FREEBSD_NR_sysarch
:
393 ret
= do_freebsd_sysarch(cpu_env
, arg1
, arg2
);
395 case TARGET_FREEBSD_NR_syscall
:
396 case TARGET_FREEBSD_NR___syscall
:
397 ret
= do_freebsd_syscall(cpu_env
,arg1
& 0xffff,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,0);
400 ret
= get_errno(syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, arg7
, arg8
));
405 gemu_log(" = %ld\n", ret
);
408 print_freebsd_syscall_ret(num
, ret
);
410 record_syscall_return(cpu
, num
, ret
);
413 ret
= -TARGET_EFAULT
;
417 abi_long
do_netbsd_syscall(void *cpu_env
, int num
, abi_long arg1
,
418 abi_long arg2
, abi_long arg3
, abi_long arg4
,
419 abi_long arg5
, abi_long arg6
)
421 CPUState
*cpu
= env_cpu(cpu_env
);
426 gemu_log("netbsd syscall %d\n", num
);
429 record_syscall_start(cpu
, num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, 0, 0);
432 print_netbsd_syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
435 case TARGET_NETBSD_NR_exit
:
440 qemu_plugin_user_exit();
441 /* XXX: should free thread stack and CPU env */
443 ret
= 0; /* avoid warning */
445 case TARGET_NETBSD_NR_read
:
446 if (!(p
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0)))
448 ret
= get_errno(read(arg1
, p
, arg3
));
449 unlock_user(p
, arg2
, ret
);
451 case TARGET_NETBSD_NR_write
:
452 if (!(p
= lock_user(VERIFY_READ
, arg2
, arg3
, 1)))
454 ret
= get_errno(write(arg1
, p
, arg3
));
455 unlock_user(p
, arg2
, 0);
457 case TARGET_NETBSD_NR_open
:
458 if (!(p
= lock_user_string(arg1
)))
460 ret
= get_errno(open(path(p
),
461 target_to_host_bitmask(arg2
, fcntl_flags_tbl
),
463 unlock_user(p
, arg1
, 0);
465 case TARGET_NETBSD_NR_mmap
:
466 ret
= get_errno(target_mmap(arg1
, arg2
, arg3
,
467 target_to_host_bitmask(arg4
, mmap_flags_tbl
),
471 case TARGET_NETBSD_NR_mprotect
:
472 ret
= get_errno(target_mprotect(arg1
, arg2
, arg3
));
474 case TARGET_NETBSD_NR_syscall
:
475 case TARGET_NETBSD_NR___syscall
:
476 ret
= do_netbsd_syscall(cpu_env
,arg1
& 0xffff,arg2
,arg3
,arg4
,arg5
,arg6
,0);
479 ret
= syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
484 gemu_log(" = %ld\n", ret
);
487 print_netbsd_syscall_ret(num
, ret
);
489 record_syscall_return(cpu
, num
, ret
);
492 ret
= -TARGET_EFAULT
;
496 abi_long
do_openbsd_syscall(void *cpu_env
, int num
, abi_long arg1
,
497 abi_long arg2
, abi_long arg3
, abi_long arg4
,
498 abi_long arg5
, abi_long arg6
)
500 CPUState
*cpu
= env_cpu(cpu_env
);
505 gemu_log("openbsd syscall %d\n", num
);
508 record_syscall_start(cpu
, num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, 0, 0);
511 print_openbsd_syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
514 case TARGET_OPENBSD_NR_exit
:
519 qemu_plugin_user_exit();
520 /* XXX: should free thread stack and CPU env */
522 ret
= 0; /* avoid warning */
524 case TARGET_OPENBSD_NR_read
:
525 if (!(p
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0)))
527 ret
= get_errno(read(arg1
, p
, arg3
));
528 unlock_user(p
, arg2
, ret
);
530 case TARGET_OPENBSD_NR_write
:
531 if (!(p
= lock_user(VERIFY_READ
, arg2
, arg3
, 1)))
533 ret
= get_errno(write(arg1
, p
, arg3
));
534 unlock_user(p
, arg2
, 0);
536 case TARGET_OPENBSD_NR_open
:
537 if (!(p
= lock_user_string(arg1
)))
539 ret
= get_errno(open(path(p
),
540 target_to_host_bitmask(arg2
, fcntl_flags_tbl
),
542 unlock_user(p
, arg1
, 0);
544 case TARGET_OPENBSD_NR_mmap
:
545 ret
= get_errno(target_mmap(arg1
, arg2
, arg3
,
546 target_to_host_bitmask(arg4
, mmap_flags_tbl
),
550 case TARGET_OPENBSD_NR_mprotect
:
551 ret
= get_errno(target_mprotect(arg1
, arg2
, arg3
));
553 case TARGET_OPENBSD_NR_syscall
:
554 case TARGET_OPENBSD_NR___syscall
:
555 ret
= do_openbsd_syscall(cpu_env
,arg1
& 0xffff,arg2
,arg3
,arg4
,arg5
,arg6
,0);
558 ret
= syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
563 gemu_log(" = %ld\n", ret
);
566 print_openbsd_syscall_ret(num
, ret
);
568 record_syscall_return(cpu
, num
, ret
);
571 ret
= -TARGET_EFAULT
;
575 void syscall_init(void)