4 * Copyright (c) 2003 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 #define _ATFILE_SOURCE
32 #include <sys/types.h>
38 #include <sys/mount.h>
40 #include <sys/fsuid.h>
41 #include <sys/personality.h>
42 #include <sys/prctl.h>
43 #include <sys/resource.h>
46 #include <linux/capability.h>
50 int __clone2(int (*fn
)(void *), void *child_stack_base
,
51 size_t stack_size
, int flags
, void *arg
, ...);
53 #include <sys/socket.h>
57 #include <sys/times.h>
60 #include <sys/statfs.h>
62 #include <sys/sysinfo.h>
63 //#include <sys/user.h>
64 #include <netinet/ip.h>
65 #include <netinet/tcp.h>
66 #include <linux/wireless.h>
67 #include <linux/icmp.h>
68 #include "qemu-common.h"
70 #include <sys/timerfd.h>
76 #include <sys/eventfd.h>
79 #include <sys/epoll.h>
82 #include "qemu/xattr.h"
84 #ifdef CONFIG_SENDFILE
85 #include <sys/sendfile.h>
88 #define termios host_termios
89 #define winsize host_winsize
90 #define termio host_termio
91 #define sgttyb host_sgttyb /* same as target */
92 #define tchars host_tchars /* same as target */
93 #define ltchars host_ltchars /* same as target */
95 #include <linux/termios.h>
96 #include <linux/unistd.h>
97 #include <linux/cdrom.h>
98 #include <linux/hdreg.h>
99 #include <linux/soundcard.h>
100 #include <linux/kd.h>
101 #include <linux/mtio.h>
102 #include <linux/fs.h>
103 #if defined(CONFIG_FIEMAP)
104 #include <linux/fiemap.h>
106 #include <linux/fb.h>
107 #include <linux/vt.h>
108 #include <linux/dm-ioctl.h>
109 #include <linux/reboot.h>
110 #include <linux/route.h>
111 #include <linux/filter.h>
112 #include <linux/blkpg.h>
113 #include "linux_loop.h"
118 #define CLONE_NPTL_FLAGS2 (CLONE_SETTLS | \
119 CLONE_PARENT_SETTID | CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID)
123 //#include <linux/msdos_fs.h>
124 #define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, struct linux_dirent [2])
125 #define VFAT_IOCTL_READDIR_SHORT _IOR('r', 2, struct linux_dirent [2])
136 #define _syscall0(type,name) \
137 static type name (void) \
139 return syscall(__NR_##name); \
142 #define _syscall1(type,name,type1,arg1) \
143 static type name (type1 arg1) \
145 return syscall(__NR_##name, arg1); \
148 #define _syscall2(type,name,type1,arg1,type2,arg2) \
149 static type name (type1 arg1,type2 arg2) \
151 return syscall(__NR_##name, arg1, arg2); \
154 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
155 static type name (type1 arg1,type2 arg2,type3 arg3) \
157 return syscall(__NR_##name, arg1, arg2, arg3); \
160 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
161 static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4) \
163 return syscall(__NR_##name, arg1, arg2, arg3, arg4); \
166 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
168 static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \
170 return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5); \
174 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
175 type5,arg5,type6,arg6) \
176 static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5, \
179 return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5, arg6); \
183 #define __NR_sys_uname __NR_uname
184 #define __NR_sys_getcwd1 __NR_getcwd
185 #define __NR_sys_getdents __NR_getdents
186 #define __NR_sys_getdents64 __NR_getdents64
187 #define __NR_sys_getpriority __NR_getpriority
188 #define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo
189 #define __NR_sys_syslog __NR_syslog
190 #define __NR_sys_tgkill __NR_tgkill
191 #define __NR_sys_tkill __NR_tkill
192 #define __NR_sys_futex __NR_futex
193 #define __NR_sys_inotify_init __NR_inotify_init
194 #define __NR_sys_inotify_add_watch __NR_inotify_add_watch
195 #define __NR_sys_inotify_rm_watch __NR_inotify_rm_watch
197 #if defined(__alpha__) || defined (__ia64__) || defined(__x86_64__) || \
199 #define __NR__llseek __NR_lseek
202 /* Newer kernel ports have llseek() instead of _llseek() */
203 #if defined(TARGET_NR_llseek) && !defined(TARGET_NR__llseek)
204 #define TARGET_NR__llseek TARGET_NR_llseek
208 _syscall0(int, gettid
)
210 /* This is a replacement for the host gettid() and must return a host
212 static int gettid(void) {
216 #if defined(TARGET_NR_getdents) && defined(__NR_getdents)
217 _syscall3(int, sys_getdents
, uint
, fd
, struct linux_dirent
*, dirp
, uint
, count
);
219 #if !defined(__NR_getdents) || \
220 (defined(TARGET_NR_getdents64) && defined(__NR_getdents64))
221 _syscall3(int, sys_getdents64
, uint
, fd
, struct linux_dirent64
*, dirp
, uint
, count
);
223 #if defined(TARGET_NR__llseek) && defined(__NR_llseek)
224 _syscall5(int, _llseek
, uint
, fd
, ulong
, hi
, ulong
, lo
,
225 loff_t
*, res
, uint
, wh
);
227 _syscall3(int,sys_rt_sigqueueinfo
,int,pid
,int,sig
,siginfo_t
*,uinfo
)
228 _syscall3(int,sys_syslog
,int,type
,char*,bufp
,int,len
)
229 #if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
230 _syscall3(int,sys_tgkill
,int,tgid
,int,pid
,int,sig
)
232 #if defined(TARGET_NR_tkill) && defined(__NR_tkill)
233 _syscall2(int,sys_tkill
,int,tid
,int,sig
)
235 #ifdef __NR_exit_group
236 _syscall1(int,exit_group
,int,error_code
)
238 #if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
239 _syscall1(int,set_tid_address
,int *,tidptr
)
241 #if defined(TARGET_NR_futex) && defined(__NR_futex)
242 _syscall6(int,sys_futex
,int *,uaddr
,int,op
,int,val
,
243 const struct timespec
*,timeout
,int *,uaddr2
,int,val3
)
245 #define __NR_sys_sched_getaffinity __NR_sched_getaffinity
246 _syscall3(int, sys_sched_getaffinity
, pid_t
, pid
, unsigned int, len
,
247 unsigned long *, user_mask_ptr
);
248 #define __NR_sys_sched_setaffinity __NR_sched_setaffinity
249 _syscall3(int, sys_sched_setaffinity
, pid_t
, pid
, unsigned int, len
,
250 unsigned long *, user_mask_ptr
);
251 _syscall4(int, reboot
, int, magic1
, int, magic2
, unsigned int, cmd
,
253 _syscall2(int, capget
, struct __user_cap_header_struct
*, header
,
254 struct __user_cap_data_struct
*, data
);
255 _syscall2(int, capset
, struct __user_cap_header_struct
*, header
,
256 struct __user_cap_data_struct
*, data
);
257 #if defined(TARGET_NR_ioprio_get) && defined(__NR_ioprio_get)
258 _syscall2(int, ioprio_get
, int, which
, int, who
)
260 #if defined(TARGET_NR_ioprio_set) && defined(__NR_ioprio_set)
261 _syscall3(int, ioprio_set
, int, which
, int, who
, int, ioprio
)
264 static bitmask_transtbl fcntl_flags_tbl
[] = {
265 { TARGET_O_ACCMODE
, TARGET_O_WRONLY
, O_ACCMODE
, O_WRONLY
, },
266 { TARGET_O_ACCMODE
, TARGET_O_RDWR
, O_ACCMODE
, O_RDWR
, },
267 { TARGET_O_CREAT
, TARGET_O_CREAT
, O_CREAT
, O_CREAT
, },
268 { TARGET_O_EXCL
, TARGET_O_EXCL
, O_EXCL
, O_EXCL
, },
269 { TARGET_O_NOCTTY
, TARGET_O_NOCTTY
, O_NOCTTY
, O_NOCTTY
, },
270 { TARGET_O_TRUNC
, TARGET_O_TRUNC
, O_TRUNC
, O_TRUNC
, },
271 { TARGET_O_APPEND
, TARGET_O_APPEND
, O_APPEND
, O_APPEND
, },
272 { TARGET_O_NONBLOCK
, TARGET_O_NONBLOCK
, O_NONBLOCK
, O_NONBLOCK
, },
273 { TARGET_O_SYNC
, TARGET_O_DSYNC
, O_SYNC
, O_DSYNC
, },
274 { TARGET_O_SYNC
, TARGET_O_SYNC
, O_SYNC
, O_SYNC
, },
275 { TARGET_FASYNC
, TARGET_FASYNC
, FASYNC
, FASYNC
, },
276 { TARGET_O_DIRECTORY
, TARGET_O_DIRECTORY
, O_DIRECTORY
, O_DIRECTORY
, },
277 { TARGET_O_NOFOLLOW
, TARGET_O_NOFOLLOW
, O_NOFOLLOW
, O_NOFOLLOW
, },
278 #if defined(O_DIRECT)
279 { TARGET_O_DIRECT
, TARGET_O_DIRECT
, O_DIRECT
, O_DIRECT
, },
281 #if defined(O_NOATIME)
282 { TARGET_O_NOATIME
, TARGET_O_NOATIME
, O_NOATIME
, O_NOATIME
},
284 #if defined(O_CLOEXEC)
285 { TARGET_O_CLOEXEC
, TARGET_O_CLOEXEC
, O_CLOEXEC
, O_CLOEXEC
},
288 { TARGET_O_PATH
, TARGET_O_PATH
, O_PATH
, O_PATH
},
290 /* Don't terminate the list prematurely on 64-bit host+guest. */
291 #if TARGET_O_LARGEFILE != 0 || O_LARGEFILE != 0
292 { TARGET_O_LARGEFILE
, TARGET_O_LARGEFILE
, O_LARGEFILE
, O_LARGEFILE
, },
297 static int sys_getcwd1(char *buf
, size_t size
)
299 if (getcwd(buf
, size
) == NULL
) {
300 /* getcwd() sets errno */
303 return strlen(buf
)+1;
306 static int sys_openat(int dirfd
, const char *pathname
, int flags
, mode_t mode
)
309 * open(2) has extra parameter 'mode' when called with
312 if ((flags
& O_CREAT
) != 0) {
313 return (openat(dirfd
, pathname
, flags
, mode
));
315 return (openat(dirfd
, pathname
, flags
));
318 #ifdef TARGET_NR_utimensat
319 #ifdef CONFIG_UTIMENSAT
320 static int sys_utimensat(int dirfd
, const char *pathname
,
321 const struct timespec times
[2], int flags
)
323 if (pathname
== NULL
)
324 return futimens(dirfd
, times
);
326 return utimensat(dirfd
, pathname
, times
, flags
);
328 #elif defined(__NR_utimensat)
329 #define __NR_sys_utimensat __NR_utimensat
330 _syscall4(int,sys_utimensat
,int,dirfd
,const char *,pathname
,
331 const struct timespec
*,tsp
,int,flags
)
333 static int sys_utimensat(int dirfd
, const char *pathname
,
334 const struct timespec times
[2], int flags
)
340 #endif /* TARGET_NR_utimensat */
342 #ifdef CONFIG_INOTIFY
343 #include <sys/inotify.h>
345 #if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
346 static int sys_inotify_init(void)
348 return (inotify_init());
351 #if defined(TARGET_NR_inotify_add_watch) && defined(__NR_inotify_add_watch)
352 static int sys_inotify_add_watch(int fd
,const char *pathname
, int32_t mask
)
354 return (inotify_add_watch(fd
, pathname
, mask
));
357 #if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
358 static int sys_inotify_rm_watch(int fd
, int32_t wd
)
360 return (inotify_rm_watch(fd
, wd
));
363 #ifdef CONFIG_INOTIFY1
364 #if defined(TARGET_NR_inotify_init1) && defined(__NR_inotify_init1)
365 static int sys_inotify_init1(int flags
)
367 return (inotify_init1(flags
));
372 /* Userspace can usually survive runtime without inotify */
373 #undef TARGET_NR_inotify_init
374 #undef TARGET_NR_inotify_init1
375 #undef TARGET_NR_inotify_add_watch
376 #undef TARGET_NR_inotify_rm_watch
377 #endif /* CONFIG_INOTIFY */
379 #if defined(TARGET_NR_ppoll)
381 # define __NR_ppoll -1
383 #define __NR_sys_ppoll __NR_ppoll
384 _syscall5(int, sys_ppoll
, struct pollfd
*, fds
, nfds_t
, nfds
,
385 struct timespec
*, timeout
, const sigset_t
*, sigmask
,
389 #if defined(TARGET_NR_pselect6)
390 #ifndef __NR_pselect6
391 # define __NR_pselect6 -1
393 #define __NR_sys_pselect6 __NR_pselect6
394 _syscall6(int, sys_pselect6
, int, nfds
, fd_set
*, readfds
, fd_set
*, writefds
,
395 fd_set
*, exceptfds
, struct timespec
*, timeout
, void *, sig
);
398 #if defined(TARGET_NR_prlimit64)
399 #ifndef __NR_prlimit64
400 # define __NR_prlimit64 -1
402 #define __NR_sys_prlimit64 __NR_prlimit64
403 /* The glibc rlimit structure may not be that used by the underlying syscall */
404 struct host_rlimit64
{
408 _syscall4(int, sys_prlimit64
, pid_t
, pid
, int, resource
,
409 const struct host_rlimit64
*, new_limit
,
410 struct host_rlimit64
*, old_limit
)
414 #if defined(TARGET_NR_timer_create)
415 /* Maxiumum of 32 active POSIX timers allowed at any one time. */
416 static timer_t g_posix_timers
[32] = { 0, } ;
418 static inline int next_free_host_timer(void)
421 /* FIXME: Does finding the next free slot require a lock? */
422 for (k
= 0; k
< ARRAY_SIZE(g_posix_timers
); k
++) {
423 if (g_posix_timers
[k
] == 0) {
424 g_posix_timers
[k
] = (timer_t
) 1;
432 /* ARM EABI and MIPS expect 64bit types aligned even on pairs or registers */
434 static inline int regpairs_aligned(void *cpu_env
) {
435 return ((((CPUARMState
*)cpu_env
)->eabi
) == 1) ;
437 #elif defined(TARGET_MIPS)
438 static inline int regpairs_aligned(void *cpu_env
) { return 1; }
439 #elif defined(TARGET_PPC) && !defined(TARGET_PPC64)
440 /* SysV AVI for PPC32 expects 64bit parameters to be passed on odd/even pairs
441 * of registers which translates to the same as ARM/MIPS, because we start with
443 static inline int regpairs_aligned(void *cpu_env
) { return 1; }
445 static inline int regpairs_aligned(void *cpu_env
) { return 0; }
448 #define ERRNO_TABLE_SIZE 1200
450 /* target_to_host_errno_table[] is initialized from
451 * host_to_target_errno_table[] in syscall_init(). */
452 static uint16_t target_to_host_errno_table
[ERRNO_TABLE_SIZE
] = {
456 * This list is the union of errno values overridden in asm-<arch>/errno.h
457 * minus the errnos that are not actually generic to all archs.
459 static uint16_t host_to_target_errno_table
[ERRNO_TABLE_SIZE
] = {
460 [EIDRM
] = TARGET_EIDRM
,
461 [ECHRNG
] = TARGET_ECHRNG
,
462 [EL2NSYNC
] = TARGET_EL2NSYNC
,
463 [EL3HLT
] = TARGET_EL3HLT
,
464 [EL3RST
] = TARGET_EL3RST
,
465 [ELNRNG
] = TARGET_ELNRNG
,
466 [EUNATCH
] = TARGET_EUNATCH
,
467 [ENOCSI
] = TARGET_ENOCSI
,
468 [EL2HLT
] = TARGET_EL2HLT
,
469 [EDEADLK
] = TARGET_EDEADLK
,
470 [ENOLCK
] = TARGET_ENOLCK
,
471 [EBADE
] = TARGET_EBADE
,
472 [EBADR
] = TARGET_EBADR
,
473 [EXFULL
] = TARGET_EXFULL
,
474 [ENOANO
] = TARGET_ENOANO
,
475 [EBADRQC
] = TARGET_EBADRQC
,
476 [EBADSLT
] = TARGET_EBADSLT
,
477 [EBFONT
] = TARGET_EBFONT
,
478 [ENOSTR
] = TARGET_ENOSTR
,
479 [ENODATA
] = TARGET_ENODATA
,
480 [ETIME
] = TARGET_ETIME
,
481 [ENOSR
] = TARGET_ENOSR
,
482 [ENONET
] = TARGET_ENONET
,
483 [ENOPKG
] = TARGET_ENOPKG
,
484 [EREMOTE
] = TARGET_EREMOTE
,
485 [ENOLINK
] = TARGET_ENOLINK
,
486 [EADV
] = TARGET_EADV
,
487 [ESRMNT
] = TARGET_ESRMNT
,
488 [ECOMM
] = TARGET_ECOMM
,
489 [EPROTO
] = TARGET_EPROTO
,
490 [EDOTDOT
] = TARGET_EDOTDOT
,
491 [EMULTIHOP
] = TARGET_EMULTIHOP
,
492 [EBADMSG
] = TARGET_EBADMSG
,
493 [ENAMETOOLONG
] = TARGET_ENAMETOOLONG
,
494 [EOVERFLOW
] = TARGET_EOVERFLOW
,
495 [ENOTUNIQ
] = TARGET_ENOTUNIQ
,
496 [EBADFD
] = TARGET_EBADFD
,
497 [EREMCHG
] = TARGET_EREMCHG
,
498 [ELIBACC
] = TARGET_ELIBACC
,
499 [ELIBBAD
] = TARGET_ELIBBAD
,
500 [ELIBSCN
] = TARGET_ELIBSCN
,
501 [ELIBMAX
] = TARGET_ELIBMAX
,
502 [ELIBEXEC
] = TARGET_ELIBEXEC
,
503 [EILSEQ
] = TARGET_EILSEQ
,
504 [ENOSYS
] = TARGET_ENOSYS
,
505 [ELOOP
] = TARGET_ELOOP
,
506 [ERESTART
] = TARGET_ERESTART
,
507 [ESTRPIPE
] = TARGET_ESTRPIPE
,
508 [ENOTEMPTY
] = TARGET_ENOTEMPTY
,
509 [EUSERS
] = TARGET_EUSERS
,
510 [ENOTSOCK
] = TARGET_ENOTSOCK
,
511 [EDESTADDRREQ
] = TARGET_EDESTADDRREQ
,
512 [EMSGSIZE
] = TARGET_EMSGSIZE
,
513 [EPROTOTYPE
] = TARGET_EPROTOTYPE
,
514 [ENOPROTOOPT
] = TARGET_ENOPROTOOPT
,
515 [EPROTONOSUPPORT
] = TARGET_EPROTONOSUPPORT
,
516 [ESOCKTNOSUPPORT
] = TARGET_ESOCKTNOSUPPORT
,
517 [EOPNOTSUPP
] = TARGET_EOPNOTSUPP
,
518 [EPFNOSUPPORT
] = TARGET_EPFNOSUPPORT
,
519 [EAFNOSUPPORT
] = TARGET_EAFNOSUPPORT
,
520 [EADDRINUSE
] = TARGET_EADDRINUSE
,
521 [EADDRNOTAVAIL
] = TARGET_EADDRNOTAVAIL
,
522 [ENETDOWN
] = TARGET_ENETDOWN
,
523 [ENETUNREACH
] = TARGET_ENETUNREACH
,
524 [ENETRESET
] = TARGET_ENETRESET
,
525 [ECONNABORTED
] = TARGET_ECONNABORTED
,
526 [ECONNRESET
] = TARGET_ECONNRESET
,
527 [ENOBUFS
] = TARGET_ENOBUFS
,
528 [EISCONN
] = TARGET_EISCONN
,
529 [ENOTCONN
] = TARGET_ENOTCONN
,
530 [EUCLEAN
] = TARGET_EUCLEAN
,
531 [ENOTNAM
] = TARGET_ENOTNAM
,
532 [ENAVAIL
] = TARGET_ENAVAIL
,
533 [EISNAM
] = TARGET_EISNAM
,
534 [EREMOTEIO
] = TARGET_EREMOTEIO
,
535 [ESHUTDOWN
] = TARGET_ESHUTDOWN
,
536 [ETOOMANYREFS
] = TARGET_ETOOMANYREFS
,
537 [ETIMEDOUT
] = TARGET_ETIMEDOUT
,
538 [ECONNREFUSED
] = TARGET_ECONNREFUSED
,
539 [EHOSTDOWN
] = TARGET_EHOSTDOWN
,
540 [EHOSTUNREACH
] = TARGET_EHOSTUNREACH
,
541 [EALREADY
] = TARGET_EALREADY
,
542 [EINPROGRESS
] = TARGET_EINPROGRESS
,
543 [ESTALE
] = TARGET_ESTALE
,
544 [ECANCELED
] = TARGET_ECANCELED
,
545 [ENOMEDIUM
] = TARGET_ENOMEDIUM
,
546 [EMEDIUMTYPE
] = TARGET_EMEDIUMTYPE
,
548 [ENOKEY
] = TARGET_ENOKEY
,
551 [EKEYEXPIRED
] = TARGET_EKEYEXPIRED
,
554 [EKEYREVOKED
] = TARGET_EKEYREVOKED
,
557 [EKEYREJECTED
] = TARGET_EKEYREJECTED
,
560 [EOWNERDEAD
] = TARGET_EOWNERDEAD
,
562 #ifdef ENOTRECOVERABLE
563 [ENOTRECOVERABLE
] = TARGET_ENOTRECOVERABLE
,
567 static inline int host_to_target_errno(int err
)
569 if(host_to_target_errno_table
[err
])
570 return host_to_target_errno_table
[err
];
574 static inline int target_to_host_errno(int err
)
576 if (target_to_host_errno_table
[err
])
577 return target_to_host_errno_table
[err
];
581 static inline abi_long
get_errno(abi_long ret
)
584 return -host_to_target_errno(errno
);
589 static inline int is_error(abi_long ret
)
591 return (abi_ulong
)ret
>= (abi_ulong
)(-4096);
594 char *target_strerror(int err
)
596 if ((err
>= ERRNO_TABLE_SIZE
) || (err
< 0)) {
599 return strerror(target_to_host_errno(err
));
602 static inline int host_to_target_sock_type(int host_type
)
606 switch (host_type
& 0xf /* SOCK_TYPE_MASK */) {
608 target_type
= TARGET_SOCK_DGRAM
;
611 target_type
= TARGET_SOCK_STREAM
;
614 target_type
= host_type
& 0xf /* SOCK_TYPE_MASK */;
618 #if defined(SOCK_CLOEXEC)
619 if (host_type
& SOCK_CLOEXEC
) {
620 target_type
|= TARGET_SOCK_CLOEXEC
;
624 #if defined(SOCK_NONBLOCK)
625 if (host_type
& SOCK_NONBLOCK
) {
626 target_type
|= TARGET_SOCK_NONBLOCK
;
633 static abi_ulong target_brk
;
634 static abi_ulong target_original_brk
;
635 static abi_ulong brk_page
;
637 void target_set_brk(abi_ulong new_brk
)
639 target_original_brk
= target_brk
= HOST_PAGE_ALIGN(new_brk
);
640 brk_page
= HOST_PAGE_ALIGN(target_brk
);
643 //#define DEBUGF_BRK(message, args...) do { fprintf(stderr, (message), ## args); } while (0)
644 #define DEBUGF_BRK(message, args...)
646 /* do_brk() must return target values and target errnos. */
647 abi_long
do_brk(abi_ulong new_brk
)
649 abi_long mapped_addr
;
652 DEBUGF_BRK("do_brk(" TARGET_ABI_FMT_lx
") -> ", new_brk
);
655 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (!new_brk)\n", target_brk
);
658 if (new_brk
< target_original_brk
) {
659 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (new_brk < target_original_brk)\n",
664 /* If the new brk is less than the highest page reserved to the
665 * target heap allocation, set it and we're almost done... */
666 if (new_brk
<= brk_page
) {
667 /* Heap contents are initialized to zero, as for anonymous
669 if (new_brk
> target_brk
) {
670 memset(g2h(target_brk
), 0, new_brk
- target_brk
);
672 target_brk
= new_brk
;
673 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (new_brk <= brk_page)\n", target_brk
);
677 /* We need to allocate more memory after the brk... Note that
678 * we don't use MAP_FIXED because that will map over the top of
679 * any existing mapping (like the one with the host libc or qemu
680 * itself); instead we treat "mapped but at wrong address" as
681 * a failure and unmap again.
683 new_alloc_size
= HOST_PAGE_ALIGN(new_brk
- brk_page
);
684 mapped_addr
= get_errno(target_mmap(brk_page
, new_alloc_size
,
685 PROT_READ
|PROT_WRITE
,
686 MAP_ANON
|MAP_PRIVATE
, 0, 0));
688 if (mapped_addr
== brk_page
) {
689 /* Heap contents are initialized to zero, as for anonymous
690 * mapped pages. Technically the new pages are already
691 * initialized to zero since they *are* anonymous mapped
692 * pages, however we have to take care with the contents that
693 * come from the remaining part of the previous page: it may
694 * contains garbage data due to a previous heap usage (grown
696 memset(g2h(target_brk
), 0, brk_page
- target_brk
);
698 target_brk
= new_brk
;
699 brk_page
= HOST_PAGE_ALIGN(target_brk
);
700 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (mapped_addr == brk_page)\n",
703 } else if (mapped_addr
!= -1) {
704 /* Mapped but at wrong address, meaning there wasn't actually
705 * enough space for this brk.
707 target_munmap(mapped_addr
, new_alloc_size
);
709 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (mapped_addr != -1)\n", target_brk
);
712 DEBUGF_BRK(TARGET_ABI_FMT_lx
" (otherwise)\n", target_brk
);
715 #if defined(TARGET_ALPHA)
716 /* We (partially) emulate OSF/1 on Alpha, which requires we
717 return a proper errno, not an unchanged brk value. */
718 return -TARGET_ENOMEM
;
720 /* For everything else, return the previous break. */
724 static inline abi_long
copy_from_user_fdset(fd_set
*fds
,
725 abi_ulong target_fds_addr
,
729 abi_ulong b
, *target_fds
;
731 nw
= (n
+ TARGET_ABI_BITS
- 1) / TARGET_ABI_BITS
;
732 if (!(target_fds
= lock_user(VERIFY_READ
,
734 sizeof(abi_ulong
) * nw
,
736 return -TARGET_EFAULT
;
740 for (i
= 0; i
< nw
; i
++) {
741 /* grab the abi_ulong */
742 __get_user(b
, &target_fds
[i
]);
743 for (j
= 0; j
< TARGET_ABI_BITS
; j
++) {
744 /* check the bit inside the abi_ulong */
751 unlock_user(target_fds
, target_fds_addr
, 0);
756 static inline abi_ulong
copy_from_user_fdset_ptr(fd_set
*fds
, fd_set
**fds_ptr
,
757 abi_ulong target_fds_addr
,
760 if (target_fds_addr
) {
761 if (copy_from_user_fdset(fds
, target_fds_addr
, n
))
762 return -TARGET_EFAULT
;
770 static inline abi_long
copy_to_user_fdset(abi_ulong target_fds_addr
,
776 abi_ulong
*target_fds
;
778 nw
= (n
+ TARGET_ABI_BITS
- 1) / TARGET_ABI_BITS
;
779 if (!(target_fds
= lock_user(VERIFY_WRITE
,
781 sizeof(abi_ulong
) * nw
,
783 return -TARGET_EFAULT
;
786 for (i
= 0; i
< nw
; i
++) {
788 for (j
= 0; j
< TARGET_ABI_BITS
; j
++) {
789 v
|= ((abi_ulong
)(FD_ISSET(k
, fds
) != 0) << j
);
792 __put_user(v
, &target_fds
[i
]);
795 unlock_user(target_fds
, target_fds_addr
, sizeof(abi_ulong
) * nw
);
800 #if defined(__alpha__)
806 static inline abi_long
host_to_target_clock_t(long ticks
)
808 #if HOST_HZ == TARGET_HZ
811 return ((int64_t)ticks
* TARGET_HZ
) / HOST_HZ
;
815 static inline abi_long
host_to_target_rusage(abi_ulong target_addr
,
816 const struct rusage
*rusage
)
818 struct target_rusage
*target_rusage
;
820 if (!lock_user_struct(VERIFY_WRITE
, target_rusage
, target_addr
, 0))
821 return -TARGET_EFAULT
;
822 target_rusage
->ru_utime
.tv_sec
= tswapal(rusage
->ru_utime
.tv_sec
);
823 target_rusage
->ru_utime
.tv_usec
= tswapal(rusage
->ru_utime
.tv_usec
);
824 target_rusage
->ru_stime
.tv_sec
= tswapal(rusage
->ru_stime
.tv_sec
);
825 target_rusage
->ru_stime
.tv_usec
= tswapal(rusage
->ru_stime
.tv_usec
);
826 target_rusage
->ru_maxrss
= tswapal(rusage
->ru_maxrss
);
827 target_rusage
->ru_ixrss
= tswapal(rusage
->ru_ixrss
);
828 target_rusage
->ru_idrss
= tswapal(rusage
->ru_idrss
);
829 target_rusage
->ru_isrss
= tswapal(rusage
->ru_isrss
);
830 target_rusage
->ru_minflt
= tswapal(rusage
->ru_minflt
);
831 target_rusage
->ru_majflt
= tswapal(rusage
->ru_majflt
);
832 target_rusage
->ru_nswap
= tswapal(rusage
->ru_nswap
);
833 target_rusage
->ru_inblock
= tswapal(rusage
->ru_inblock
);
834 target_rusage
->ru_oublock
= tswapal(rusage
->ru_oublock
);
835 target_rusage
->ru_msgsnd
= tswapal(rusage
->ru_msgsnd
);
836 target_rusage
->ru_msgrcv
= tswapal(rusage
->ru_msgrcv
);
837 target_rusage
->ru_nsignals
= tswapal(rusage
->ru_nsignals
);
838 target_rusage
->ru_nvcsw
= tswapal(rusage
->ru_nvcsw
);
839 target_rusage
->ru_nivcsw
= tswapal(rusage
->ru_nivcsw
);
840 unlock_user_struct(target_rusage
, target_addr
, 1);
845 static inline rlim_t
target_to_host_rlim(abi_ulong target_rlim
)
847 abi_ulong target_rlim_swap
;
850 target_rlim_swap
= tswapal(target_rlim
);
851 if (target_rlim_swap
== TARGET_RLIM_INFINITY
)
852 return RLIM_INFINITY
;
854 result
= target_rlim_swap
;
855 if (target_rlim_swap
!= (rlim_t
)result
)
856 return RLIM_INFINITY
;
861 static inline abi_ulong
host_to_target_rlim(rlim_t rlim
)
863 abi_ulong target_rlim_swap
;
866 if (rlim
== RLIM_INFINITY
|| rlim
!= (abi_long
)rlim
)
867 target_rlim_swap
= TARGET_RLIM_INFINITY
;
869 target_rlim_swap
= rlim
;
870 result
= tswapal(target_rlim_swap
);
875 static inline int target_to_host_resource(int code
)
878 case TARGET_RLIMIT_AS
:
880 case TARGET_RLIMIT_CORE
:
882 case TARGET_RLIMIT_CPU
:
884 case TARGET_RLIMIT_DATA
:
886 case TARGET_RLIMIT_FSIZE
:
888 case TARGET_RLIMIT_LOCKS
:
890 case TARGET_RLIMIT_MEMLOCK
:
891 return RLIMIT_MEMLOCK
;
892 case TARGET_RLIMIT_MSGQUEUE
:
893 return RLIMIT_MSGQUEUE
;
894 case TARGET_RLIMIT_NICE
:
896 case TARGET_RLIMIT_NOFILE
:
897 return RLIMIT_NOFILE
;
898 case TARGET_RLIMIT_NPROC
:
900 case TARGET_RLIMIT_RSS
:
902 case TARGET_RLIMIT_RTPRIO
:
903 return RLIMIT_RTPRIO
;
904 case TARGET_RLIMIT_SIGPENDING
:
905 return RLIMIT_SIGPENDING
;
906 case TARGET_RLIMIT_STACK
:
913 static inline abi_long
copy_from_user_timeval(struct timeval
*tv
,
914 abi_ulong target_tv_addr
)
916 struct target_timeval
*target_tv
;
918 if (!lock_user_struct(VERIFY_READ
, target_tv
, target_tv_addr
, 1))
919 return -TARGET_EFAULT
;
921 __get_user(tv
->tv_sec
, &target_tv
->tv_sec
);
922 __get_user(tv
->tv_usec
, &target_tv
->tv_usec
);
924 unlock_user_struct(target_tv
, target_tv_addr
, 0);
929 static inline abi_long
copy_to_user_timeval(abi_ulong target_tv_addr
,
930 const struct timeval
*tv
)
932 struct target_timeval
*target_tv
;
934 if (!lock_user_struct(VERIFY_WRITE
, target_tv
, target_tv_addr
, 0))
935 return -TARGET_EFAULT
;
937 __put_user(tv
->tv_sec
, &target_tv
->tv_sec
);
938 __put_user(tv
->tv_usec
, &target_tv
->tv_usec
);
940 unlock_user_struct(target_tv
, target_tv_addr
, 1);
945 static inline abi_long
copy_from_user_timezone(struct timezone
*tz
,
946 abi_ulong target_tz_addr
)
948 struct target_timezone
*target_tz
;
950 if (!lock_user_struct(VERIFY_READ
, target_tz
, target_tz_addr
, 1)) {
951 return -TARGET_EFAULT
;
954 __get_user(tz
->tz_minuteswest
, &target_tz
->tz_minuteswest
);
955 __get_user(tz
->tz_dsttime
, &target_tz
->tz_dsttime
);
957 unlock_user_struct(target_tz
, target_tz_addr
, 0);
962 #if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
965 static inline abi_long
copy_from_user_mq_attr(struct mq_attr
*attr
,
966 abi_ulong target_mq_attr_addr
)
968 struct target_mq_attr
*target_mq_attr
;
970 if (!lock_user_struct(VERIFY_READ
, target_mq_attr
,
971 target_mq_attr_addr
, 1))
972 return -TARGET_EFAULT
;
974 __get_user(attr
->mq_flags
, &target_mq_attr
->mq_flags
);
975 __get_user(attr
->mq_maxmsg
, &target_mq_attr
->mq_maxmsg
);
976 __get_user(attr
->mq_msgsize
, &target_mq_attr
->mq_msgsize
);
977 __get_user(attr
->mq_curmsgs
, &target_mq_attr
->mq_curmsgs
);
979 unlock_user_struct(target_mq_attr
, target_mq_attr_addr
, 0);
984 static inline abi_long
copy_to_user_mq_attr(abi_ulong target_mq_attr_addr
,
985 const struct mq_attr
*attr
)
987 struct target_mq_attr
*target_mq_attr
;
989 if (!lock_user_struct(VERIFY_WRITE
, target_mq_attr
,
990 target_mq_attr_addr
, 0))
991 return -TARGET_EFAULT
;
993 __put_user(attr
->mq_flags
, &target_mq_attr
->mq_flags
);
994 __put_user(attr
->mq_maxmsg
, &target_mq_attr
->mq_maxmsg
);
995 __put_user(attr
->mq_msgsize
, &target_mq_attr
->mq_msgsize
);
996 __put_user(attr
->mq_curmsgs
, &target_mq_attr
->mq_curmsgs
);
998 unlock_user_struct(target_mq_attr
, target_mq_attr_addr
, 1);
1004 #if defined(TARGET_NR_select) || defined(TARGET_NR__newselect)
1005 /* do_select() must return target values and target errnos. */
1006 static abi_long
do_select(int n
,
1007 abi_ulong rfd_addr
, abi_ulong wfd_addr
,
1008 abi_ulong efd_addr
, abi_ulong target_tv_addr
)
1010 fd_set rfds
, wfds
, efds
;
1011 fd_set
*rfds_ptr
, *wfds_ptr
, *efds_ptr
;
1012 struct timeval tv
, *tv_ptr
;
1015 ret
= copy_from_user_fdset_ptr(&rfds
, &rfds_ptr
, rfd_addr
, n
);
1019 ret
= copy_from_user_fdset_ptr(&wfds
, &wfds_ptr
, wfd_addr
, n
);
1023 ret
= copy_from_user_fdset_ptr(&efds
, &efds_ptr
, efd_addr
, n
);
1028 if (target_tv_addr
) {
1029 if (copy_from_user_timeval(&tv
, target_tv_addr
))
1030 return -TARGET_EFAULT
;
1036 ret
= get_errno(select(n
, rfds_ptr
, wfds_ptr
, efds_ptr
, tv_ptr
));
1038 if (!is_error(ret
)) {
1039 if (rfd_addr
&& copy_to_user_fdset(rfd_addr
, &rfds
, n
))
1040 return -TARGET_EFAULT
;
1041 if (wfd_addr
&& copy_to_user_fdset(wfd_addr
, &wfds
, n
))
1042 return -TARGET_EFAULT
;
1043 if (efd_addr
&& copy_to_user_fdset(efd_addr
, &efds
, n
))
1044 return -TARGET_EFAULT
;
1046 if (target_tv_addr
&& copy_to_user_timeval(target_tv_addr
, &tv
))
1047 return -TARGET_EFAULT
;
1054 static abi_long
do_pipe2(int host_pipe
[], int flags
)
1057 return pipe2(host_pipe
, flags
);
1063 static abi_long
do_pipe(void *cpu_env
, abi_ulong pipedes
,
1064 int flags
, int is_pipe2
)
1068 ret
= flags
? do_pipe2(host_pipe
, flags
) : pipe(host_pipe
);
1071 return get_errno(ret
);
1073 /* Several targets have special calling conventions for the original
1074 pipe syscall, but didn't replicate this into the pipe2 syscall. */
1076 #if defined(TARGET_ALPHA)
1077 ((CPUAlphaState
*)cpu_env
)->ir
[IR_A4
] = host_pipe
[1];
1078 return host_pipe
[0];
1079 #elif defined(TARGET_MIPS)
1080 ((CPUMIPSState
*)cpu_env
)->active_tc
.gpr
[3] = host_pipe
[1];
1081 return host_pipe
[0];
1082 #elif defined(TARGET_SH4)
1083 ((CPUSH4State
*)cpu_env
)->gregs
[1] = host_pipe
[1];
1084 return host_pipe
[0];
1085 #elif defined(TARGET_SPARC)
1086 ((CPUSPARCState
*)cpu_env
)->regwptr
[1] = host_pipe
[1];
1087 return host_pipe
[0];
1091 if (put_user_s32(host_pipe
[0], pipedes
)
1092 || put_user_s32(host_pipe
[1], pipedes
+ sizeof(host_pipe
[0])))
1093 return -TARGET_EFAULT
;
1094 return get_errno(ret
);
1097 static inline abi_long
target_to_host_ip_mreq(struct ip_mreqn
*mreqn
,
1098 abi_ulong target_addr
,
1101 struct target_ip_mreqn
*target_smreqn
;
1103 target_smreqn
= lock_user(VERIFY_READ
, target_addr
, len
, 1);
1105 return -TARGET_EFAULT
;
1106 mreqn
->imr_multiaddr
.s_addr
= target_smreqn
->imr_multiaddr
.s_addr
;
1107 mreqn
->imr_address
.s_addr
= target_smreqn
->imr_address
.s_addr
;
1108 if (len
== sizeof(struct target_ip_mreqn
))
1109 mreqn
->imr_ifindex
= tswapal(target_smreqn
->imr_ifindex
);
1110 unlock_user(target_smreqn
, target_addr
, 0);
1115 static inline abi_long
target_to_host_sockaddr(struct sockaddr
*addr
,
1116 abi_ulong target_addr
,
1119 const socklen_t unix_maxlen
= sizeof (struct sockaddr_un
);
1120 sa_family_t sa_family
;
1121 struct target_sockaddr
*target_saddr
;
1123 target_saddr
= lock_user(VERIFY_READ
, target_addr
, len
, 1);
1125 return -TARGET_EFAULT
;
1127 sa_family
= tswap16(target_saddr
->sa_family
);
1129 /* Oops. The caller might send a incomplete sun_path; sun_path
1130 * must be terminated by \0 (see the manual page), but
1131 * unfortunately it is quite common to specify sockaddr_un
1132 * length as "strlen(x->sun_path)" while it should be
1133 * "strlen(...) + 1". We'll fix that here if needed.
1134 * Linux kernel has a similar feature.
1137 if (sa_family
== AF_UNIX
) {
1138 if (len
< unix_maxlen
&& len
> 0) {
1139 char *cp
= (char*)target_saddr
;
1141 if ( cp
[len
-1] && !cp
[len
] )
1144 if (len
> unix_maxlen
)
1148 memcpy(addr
, target_saddr
, len
);
1149 addr
->sa_family
= sa_family
;
1150 if (sa_family
== AF_PACKET
) {
1151 struct target_sockaddr_ll
*lladdr
;
1153 lladdr
= (struct target_sockaddr_ll
*)addr
;
1154 lladdr
->sll_ifindex
= tswap32(lladdr
->sll_ifindex
);
1155 lladdr
->sll_hatype
= tswap16(lladdr
->sll_hatype
);
1157 unlock_user(target_saddr
, target_addr
, 0);
1162 static inline abi_long
host_to_target_sockaddr(abi_ulong target_addr
,
1163 struct sockaddr
*addr
,
1166 struct target_sockaddr
*target_saddr
;
1168 target_saddr
= lock_user(VERIFY_WRITE
, target_addr
, len
, 0);
1170 return -TARGET_EFAULT
;
1171 memcpy(target_saddr
, addr
, len
);
1172 target_saddr
->sa_family
= tswap16(addr
->sa_family
);
1173 unlock_user(target_saddr
, target_addr
, len
);
1178 static inline abi_long
target_to_host_cmsg(struct msghdr
*msgh
,
1179 struct target_msghdr
*target_msgh
)
1181 struct cmsghdr
*cmsg
= CMSG_FIRSTHDR(msgh
);
1182 abi_long msg_controllen
;
1183 abi_ulong target_cmsg_addr
;
1184 struct target_cmsghdr
*target_cmsg
;
1185 socklen_t space
= 0;
1187 msg_controllen
= tswapal(target_msgh
->msg_controllen
);
1188 if (msg_controllen
< sizeof (struct target_cmsghdr
))
1190 target_cmsg_addr
= tswapal(target_msgh
->msg_control
);
1191 target_cmsg
= lock_user(VERIFY_READ
, target_cmsg_addr
, msg_controllen
, 1);
1193 return -TARGET_EFAULT
;
1195 while (cmsg
&& target_cmsg
) {
1196 void *data
= CMSG_DATA(cmsg
);
1197 void *target_data
= TARGET_CMSG_DATA(target_cmsg
);
1199 int len
= tswapal(target_cmsg
->cmsg_len
)
1200 - TARGET_CMSG_ALIGN(sizeof (struct target_cmsghdr
));
1202 space
+= CMSG_SPACE(len
);
1203 if (space
> msgh
->msg_controllen
) {
1204 space
-= CMSG_SPACE(len
);
1205 /* This is a QEMU bug, since we allocated the payload
1206 * area ourselves (unlike overflow in host-to-target
1207 * conversion, which is just the guest giving us a buffer
1208 * that's too small). It can't happen for the payload types
1209 * we currently support; if it becomes an issue in future
1210 * we would need to improve our allocation strategy to
1211 * something more intelligent than "twice the size of the
1212 * target buffer we're reading from".
1214 gemu_log("Host cmsg overflow\n");
1218 if (tswap32(target_cmsg
->cmsg_level
) == TARGET_SOL_SOCKET
) {
1219 cmsg
->cmsg_level
= SOL_SOCKET
;
1221 cmsg
->cmsg_level
= tswap32(target_cmsg
->cmsg_level
);
1223 cmsg
->cmsg_type
= tswap32(target_cmsg
->cmsg_type
);
1224 cmsg
->cmsg_len
= CMSG_LEN(len
);
1226 if (cmsg
->cmsg_level
== SOL_SOCKET
&& cmsg
->cmsg_type
== SCM_RIGHTS
) {
1227 int *fd
= (int *)data
;
1228 int *target_fd
= (int *)target_data
;
1229 int i
, numfds
= len
/ sizeof(int);
1231 for (i
= 0; i
< numfds
; i
++) {
1232 __get_user(fd
[i
], target_fd
+ i
);
1234 } else if (cmsg
->cmsg_level
== SOL_SOCKET
1235 && cmsg
->cmsg_type
== SCM_CREDENTIALS
) {
1236 struct ucred
*cred
= (struct ucred
*)data
;
1237 struct target_ucred
*target_cred
=
1238 (struct target_ucred
*)target_data
;
1240 __get_user(cred
->pid
, &target_cred
->pid
);
1241 __get_user(cred
->uid
, &target_cred
->uid
);
1242 __get_user(cred
->gid
, &target_cred
->gid
);
1244 gemu_log("Unsupported ancillary data: %d/%d\n",
1245 cmsg
->cmsg_level
, cmsg
->cmsg_type
);
1246 memcpy(data
, target_data
, len
);
1249 cmsg
= CMSG_NXTHDR(msgh
, cmsg
);
1250 target_cmsg
= TARGET_CMSG_NXTHDR(target_msgh
, target_cmsg
);
1252 unlock_user(target_cmsg
, target_cmsg_addr
, 0);
1254 msgh
->msg_controllen
= space
;
1258 static inline abi_long
host_to_target_cmsg(struct target_msghdr
*target_msgh
,
1259 struct msghdr
*msgh
)
1261 struct cmsghdr
*cmsg
= CMSG_FIRSTHDR(msgh
);
1262 abi_long msg_controllen
;
1263 abi_ulong target_cmsg_addr
;
1264 struct target_cmsghdr
*target_cmsg
;
1265 socklen_t space
= 0;
1267 msg_controllen
= tswapal(target_msgh
->msg_controllen
);
1268 if (msg_controllen
< sizeof (struct target_cmsghdr
))
1270 target_cmsg_addr
= tswapal(target_msgh
->msg_control
);
1271 target_cmsg
= lock_user(VERIFY_WRITE
, target_cmsg_addr
, msg_controllen
, 0);
1273 return -TARGET_EFAULT
;
1275 while (cmsg
&& target_cmsg
) {
1276 void *data
= CMSG_DATA(cmsg
);
1277 void *target_data
= TARGET_CMSG_DATA(target_cmsg
);
1279 int len
= cmsg
->cmsg_len
- CMSG_ALIGN(sizeof (struct cmsghdr
));
1280 int tgt_len
, tgt_space
;
1282 /* We never copy a half-header but may copy half-data;
1283 * this is Linux's behaviour in put_cmsg(). Note that
1284 * truncation here is a guest problem (which we report
1285 * to the guest via the CTRUNC bit), unlike truncation
1286 * in target_to_host_cmsg, which is a QEMU bug.
1288 if (msg_controllen
< sizeof(struct cmsghdr
)) {
1289 target_msgh
->msg_flags
|= tswap32(MSG_CTRUNC
);
1293 if (cmsg
->cmsg_level
== SOL_SOCKET
) {
1294 target_cmsg
->cmsg_level
= tswap32(TARGET_SOL_SOCKET
);
1296 target_cmsg
->cmsg_level
= tswap32(cmsg
->cmsg_level
);
1298 target_cmsg
->cmsg_type
= tswap32(cmsg
->cmsg_type
);
1300 tgt_len
= TARGET_CMSG_LEN(len
);
1302 /* Payload types which need a different size of payload on
1303 * the target must adjust tgt_len here.
1305 switch (cmsg
->cmsg_level
) {
1307 switch (cmsg
->cmsg_type
) {
1309 tgt_len
= sizeof(struct target_timeval
);
1318 if (msg_controllen
< tgt_len
) {
1319 target_msgh
->msg_flags
|= tswap32(MSG_CTRUNC
);
1320 tgt_len
= msg_controllen
;
1323 /* We must now copy-and-convert len bytes of payload
1324 * into tgt_len bytes of destination space. Bear in mind
1325 * that in both source and destination we may be dealing
1326 * with a truncated value!
1328 switch (cmsg
->cmsg_level
) {
1330 switch (cmsg
->cmsg_type
) {
1333 int *fd
= (int *)data
;
1334 int *target_fd
= (int *)target_data
;
1335 int i
, numfds
= tgt_len
/ sizeof(int);
1337 for (i
= 0; i
< numfds
; i
++) {
1338 __put_user(fd
[i
], target_fd
+ i
);
1344 struct timeval
*tv
= (struct timeval
*)data
;
1345 struct target_timeval
*target_tv
=
1346 (struct target_timeval
*)target_data
;
1348 if (len
!= sizeof(struct timeval
) ||
1349 tgt_len
!= sizeof(struct target_timeval
)) {
1353 /* copy struct timeval to target */
1354 __put_user(tv
->tv_sec
, &target_tv
->tv_sec
);
1355 __put_user(tv
->tv_usec
, &target_tv
->tv_usec
);
1358 case SCM_CREDENTIALS
:
1360 struct ucred
*cred
= (struct ucred
*)data
;
1361 struct target_ucred
*target_cred
=
1362 (struct target_ucred
*)target_data
;
1364 __put_user(cred
->pid
, &target_cred
->pid
);
1365 __put_user(cred
->uid
, &target_cred
->uid
);
1366 __put_user(cred
->gid
, &target_cred
->gid
);
1376 gemu_log("Unsupported ancillary data: %d/%d\n",
1377 cmsg
->cmsg_level
, cmsg
->cmsg_type
);
1378 memcpy(target_data
, data
, MIN(len
, tgt_len
));
1379 if (tgt_len
> len
) {
1380 memset(target_data
+ len
, 0, tgt_len
- len
);
1384 target_cmsg
->cmsg_len
= tswapal(tgt_len
);
1385 tgt_space
= TARGET_CMSG_SPACE(tgt_len
);
1386 if (msg_controllen
< tgt_space
) {
1387 tgt_space
= msg_controllen
;
1389 msg_controllen
-= tgt_space
;
1391 cmsg
= CMSG_NXTHDR(msgh
, cmsg
);
1392 target_cmsg
= TARGET_CMSG_NXTHDR(target_msgh
, target_cmsg
);
1394 unlock_user(target_cmsg
, target_cmsg_addr
, space
);
1396 target_msgh
->msg_controllen
= tswapal(space
);
1400 /* do_setsockopt() Must return target values and target errnos. */
1401 static abi_long
do_setsockopt(int sockfd
, int level
, int optname
,
1402 abi_ulong optval_addr
, socklen_t optlen
)
1406 struct ip_mreqn
*ip_mreq
;
1407 struct ip_mreq_source
*ip_mreq_source
;
1411 /* TCP options all take an 'int' value. */
1412 if (optlen
< sizeof(uint32_t))
1413 return -TARGET_EINVAL
;
1415 if (get_user_u32(val
, optval_addr
))
1416 return -TARGET_EFAULT
;
1417 ret
= get_errno(setsockopt(sockfd
, level
, optname
, &val
, sizeof(val
)));
1424 case IP_ROUTER_ALERT
:
1428 case IP_MTU_DISCOVER
:
1434 case IP_MULTICAST_TTL
:
1435 case IP_MULTICAST_LOOP
:
1437 if (optlen
>= sizeof(uint32_t)) {
1438 if (get_user_u32(val
, optval_addr
))
1439 return -TARGET_EFAULT
;
1440 } else if (optlen
>= 1) {
1441 if (get_user_u8(val
, optval_addr
))
1442 return -TARGET_EFAULT
;
1444 ret
= get_errno(setsockopt(sockfd
, level
, optname
, &val
, sizeof(val
)));
1446 case IP_ADD_MEMBERSHIP
:
1447 case IP_DROP_MEMBERSHIP
:
1448 if (optlen
< sizeof (struct target_ip_mreq
) ||
1449 optlen
> sizeof (struct target_ip_mreqn
))
1450 return -TARGET_EINVAL
;
1452 ip_mreq
= (struct ip_mreqn
*) alloca(optlen
);
1453 target_to_host_ip_mreq(ip_mreq
, optval_addr
, optlen
);
1454 ret
= get_errno(setsockopt(sockfd
, level
, optname
, ip_mreq
, optlen
));
1457 case IP_BLOCK_SOURCE
:
1458 case IP_UNBLOCK_SOURCE
:
1459 case IP_ADD_SOURCE_MEMBERSHIP
:
1460 case IP_DROP_SOURCE_MEMBERSHIP
:
1461 if (optlen
!= sizeof (struct target_ip_mreq_source
))
1462 return -TARGET_EINVAL
;
1464 ip_mreq_source
= lock_user(VERIFY_READ
, optval_addr
, optlen
, 1);
1465 ret
= get_errno(setsockopt(sockfd
, level
, optname
, ip_mreq_source
, optlen
));
1466 unlock_user (ip_mreq_source
, optval_addr
, 0);
1475 case IPV6_MTU_DISCOVER
:
1478 case IPV6_RECVPKTINFO
:
1480 if (optlen
< sizeof(uint32_t)) {
1481 return -TARGET_EINVAL
;
1483 if (get_user_u32(val
, optval_addr
)) {
1484 return -TARGET_EFAULT
;
1486 ret
= get_errno(setsockopt(sockfd
, level
, optname
,
1487 &val
, sizeof(val
)));
1496 /* struct icmp_filter takes an u32 value */
1497 if (optlen
< sizeof(uint32_t)) {
1498 return -TARGET_EINVAL
;
1501 if (get_user_u32(val
, optval_addr
)) {
1502 return -TARGET_EFAULT
;
1504 ret
= get_errno(setsockopt(sockfd
, level
, optname
,
1505 &val
, sizeof(val
)));
1512 case TARGET_SOL_SOCKET
:
1514 case TARGET_SO_RCVTIMEO
:
1518 optname
= SO_RCVTIMEO
;
1521 if (optlen
!= sizeof(struct target_timeval
)) {
1522 return -TARGET_EINVAL
;
1525 if (copy_from_user_timeval(&tv
, optval_addr
)) {
1526 return -TARGET_EFAULT
;
1529 ret
= get_errno(setsockopt(sockfd
, SOL_SOCKET
, optname
,
1533 case TARGET_SO_SNDTIMEO
:
1534 optname
= SO_SNDTIMEO
;
1536 case TARGET_SO_ATTACH_FILTER
:
1538 struct target_sock_fprog
*tfprog
;
1539 struct target_sock_filter
*tfilter
;
1540 struct sock_fprog fprog
;
1541 struct sock_filter
*filter
;
1544 if (optlen
!= sizeof(*tfprog
)) {
1545 return -TARGET_EINVAL
;
1547 if (!lock_user_struct(VERIFY_READ
, tfprog
, optval_addr
, 0)) {
1548 return -TARGET_EFAULT
;
1550 if (!lock_user_struct(VERIFY_READ
, tfilter
,
1551 tswapal(tfprog
->filter
), 0)) {
1552 unlock_user_struct(tfprog
, optval_addr
, 1);
1553 return -TARGET_EFAULT
;
1556 fprog
.len
= tswap16(tfprog
->len
);
1557 filter
= malloc(fprog
.len
* sizeof(*filter
));
1558 if (filter
== NULL
) {
1559 unlock_user_struct(tfilter
, tfprog
->filter
, 1);
1560 unlock_user_struct(tfprog
, optval_addr
, 1);
1561 return -TARGET_ENOMEM
;
1563 for (i
= 0; i
< fprog
.len
; i
++) {
1564 filter
[i
].code
= tswap16(tfilter
[i
].code
);
1565 filter
[i
].jt
= tfilter
[i
].jt
;
1566 filter
[i
].jf
= tfilter
[i
].jf
;
1567 filter
[i
].k
= tswap32(tfilter
[i
].k
);
1569 fprog
.filter
= filter
;
1571 ret
= get_errno(setsockopt(sockfd
, SOL_SOCKET
,
1572 SO_ATTACH_FILTER
, &fprog
, sizeof(fprog
)));
1575 unlock_user_struct(tfilter
, tfprog
->filter
, 1);
1576 unlock_user_struct(tfprog
, optval_addr
, 1);
1579 case TARGET_SO_BINDTODEVICE
:
1581 char *dev_ifname
, *addr_ifname
;
1583 if (optlen
> IFNAMSIZ
- 1) {
1584 optlen
= IFNAMSIZ
- 1;
1586 dev_ifname
= lock_user(VERIFY_READ
, optval_addr
, optlen
, 1);
1588 return -TARGET_EFAULT
;
1590 optname
= SO_BINDTODEVICE
;
1591 addr_ifname
= alloca(IFNAMSIZ
);
1592 memcpy(addr_ifname
, dev_ifname
, optlen
);
1593 addr_ifname
[optlen
] = 0;
1594 ret
= get_errno(setsockopt(sockfd
, level
, optname
, addr_ifname
, optlen
));
1595 unlock_user (dev_ifname
, optval_addr
, 0);
1598 /* Options with 'int' argument. */
1599 case TARGET_SO_DEBUG
:
1602 case TARGET_SO_REUSEADDR
:
1603 optname
= SO_REUSEADDR
;
1605 case TARGET_SO_TYPE
:
1608 case TARGET_SO_ERROR
:
1611 case TARGET_SO_DONTROUTE
:
1612 optname
= SO_DONTROUTE
;
1614 case TARGET_SO_BROADCAST
:
1615 optname
= SO_BROADCAST
;
1617 case TARGET_SO_SNDBUF
:
1618 optname
= SO_SNDBUF
;
1620 case TARGET_SO_SNDBUFFORCE
:
1621 optname
= SO_SNDBUFFORCE
;
1623 case TARGET_SO_RCVBUF
:
1624 optname
= SO_RCVBUF
;
1626 case TARGET_SO_RCVBUFFORCE
:
1627 optname
= SO_RCVBUFFORCE
;
1629 case TARGET_SO_KEEPALIVE
:
1630 optname
= SO_KEEPALIVE
;
1632 case TARGET_SO_OOBINLINE
:
1633 optname
= SO_OOBINLINE
;
1635 case TARGET_SO_NO_CHECK
:
1636 optname
= SO_NO_CHECK
;
1638 case TARGET_SO_PRIORITY
:
1639 optname
= SO_PRIORITY
;
1642 case TARGET_SO_BSDCOMPAT
:
1643 optname
= SO_BSDCOMPAT
;
1646 case TARGET_SO_PASSCRED
:
1647 optname
= SO_PASSCRED
;
1649 case TARGET_SO_PASSSEC
:
1650 optname
= SO_PASSSEC
;
1652 case TARGET_SO_TIMESTAMP
:
1653 optname
= SO_TIMESTAMP
;
1655 case TARGET_SO_RCVLOWAT
:
1656 optname
= SO_RCVLOWAT
;
1662 if (optlen
< sizeof(uint32_t))
1663 return -TARGET_EINVAL
;
1665 if (get_user_u32(val
, optval_addr
))
1666 return -TARGET_EFAULT
;
1667 ret
= get_errno(setsockopt(sockfd
, SOL_SOCKET
, optname
, &val
, sizeof(val
)));
1671 gemu_log("Unsupported setsockopt level=%d optname=%d\n", level
, optname
);
1672 ret
= -TARGET_ENOPROTOOPT
;
1677 /* do_getsockopt() Must return target values and target errnos. */
1678 static abi_long
do_getsockopt(int sockfd
, int level
, int optname
,
1679 abi_ulong optval_addr
, abi_ulong optlen
)
1686 case TARGET_SOL_SOCKET
:
1689 /* These don't just return a single integer */
1690 case TARGET_SO_LINGER
:
1691 case TARGET_SO_RCVTIMEO
:
1692 case TARGET_SO_SNDTIMEO
:
1693 case TARGET_SO_PEERNAME
:
1695 case TARGET_SO_PEERCRED
: {
1698 struct target_ucred
*tcr
;
1700 if (get_user_u32(len
, optlen
)) {
1701 return -TARGET_EFAULT
;
1704 return -TARGET_EINVAL
;
1708 ret
= get_errno(getsockopt(sockfd
, level
, SO_PEERCRED
,
1716 if (!lock_user_struct(VERIFY_WRITE
, tcr
, optval_addr
, 0)) {
1717 return -TARGET_EFAULT
;
1719 __put_user(cr
.pid
, &tcr
->pid
);
1720 __put_user(cr
.uid
, &tcr
->uid
);
1721 __put_user(cr
.gid
, &tcr
->gid
);
1722 unlock_user_struct(tcr
, optval_addr
, 1);
1723 if (put_user_u32(len
, optlen
)) {
1724 return -TARGET_EFAULT
;
1728 /* Options with 'int' argument. */
1729 case TARGET_SO_DEBUG
:
1732 case TARGET_SO_REUSEADDR
:
1733 optname
= SO_REUSEADDR
;
1735 case TARGET_SO_TYPE
:
1738 case TARGET_SO_ERROR
:
1741 case TARGET_SO_DONTROUTE
:
1742 optname
= SO_DONTROUTE
;
1744 case TARGET_SO_BROADCAST
:
1745 optname
= SO_BROADCAST
;
1747 case TARGET_SO_SNDBUF
:
1748 optname
= SO_SNDBUF
;
1750 case TARGET_SO_RCVBUF
:
1751 optname
= SO_RCVBUF
;
1753 case TARGET_SO_KEEPALIVE
:
1754 optname
= SO_KEEPALIVE
;
1756 case TARGET_SO_OOBINLINE
:
1757 optname
= SO_OOBINLINE
;
1759 case TARGET_SO_NO_CHECK
:
1760 optname
= SO_NO_CHECK
;
1762 case TARGET_SO_PRIORITY
:
1763 optname
= SO_PRIORITY
;
1766 case TARGET_SO_BSDCOMPAT
:
1767 optname
= SO_BSDCOMPAT
;
1770 case TARGET_SO_PASSCRED
:
1771 optname
= SO_PASSCRED
;
1773 case TARGET_SO_TIMESTAMP
:
1774 optname
= SO_TIMESTAMP
;
1776 case TARGET_SO_RCVLOWAT
:
1777 optname
= SO_RCVLOWAT
;
1779 case TARGET_SO_ACCEPTCONN
:
1780 optname
= SO_ACCEPTCONN
;
1787 /* TCP options all take an 'int' value. */
1789 if (get_user_u32(len
, optlen
))
1790 return -TARGET_EFAULT
;
1792 return -TARGET_EINVAL
;
1794 ret
= get_errno(getsockopt(sockfd
, level
, optname
, &val
, &lv
));
1797 if (optname
== SO_TYPE
) {
1798 val
= host_to_target_sock_type(val
);
1803 if (put_user_u32(val
, optval_addr
))
1804 return -TARGET_EFAULT
;
1806 if (put_user_u8(val
, optval_addr
))
1807 return -TARGET_EFAULT
;
1809 if (put_user_u32(len
, optlen
))
1810 return -TARGET_EFAULT
;
1817 case IP_ROUTER_ALERT
:
1821 case IP_MTU_DISCOVER
:
1827 case IP_MULTICAST_TTL
:
1828 case IP_MULTICAST_LOOP
:
1829 if (get_user_u32(len
, optlen
))
1830 return -TARGET_EFAULT
;
1832 return -TARGET_EINVAL
;
1834 ret
= get_errno(getsockopt(sockfd
, level
, optname
, &val
, &lv
));
1837 if (len
< sizeof(int) && len
> 0 && val
>= 0 && val
< 255) {
1839 if (put_user_u32(len
, optlen
)
1840 || put_user_u8(val
, optval_addr
))
1841 return -TARGET_EFAULT
;
1843 if (len
> sizeof(int))
1845 if (put_user_u32(len
, optlen
)
1846 || put_user_u32(val
, optval_addr
))
1847 return -TARGET_EFAULT
;
1851 ret
= -TARGET_ENOPROTOOPT
;
1857 gemu_log("getsockopt level=%d optname=%d not yet supported\n",
1859 ret
= -TARGET_EOPNOTSUPP
;
1865 static struct iovec
*lock_iovec(int type
, abi_ulong target_addr
,
1866 int count
, int copy
)
1868 struct target_iovec
*target_vec
;
1870 abi_ulong total_len
, max_len
;
1873 bool bad_address
= false;
1879 if (count
< 0 || count
> IOV_MAX
) {
1884 vec
= calloc(count
, sizeof(struct iovec
));
1890 target_vec
= lock_user(VERIFY_READ
, target_addr
,
1891 count
* sizeof(struct target_iovec
), 1);
1892 if (target_vec
== NULL
) {
1897 /* ??? If host page size > target page size, this will result in a
1898 value larger than what we can actually support. */
1899 max_len
= 0x7fffffff & TARGET_PAGE_MASK
;
1902 for (i
= 0; i
< count
; i
++) {
1903 abi_ulong base
= tswapal(target_vec
[i
].iov_base
);
1904 abi_long len
= tswapal(target_vec
[i
].iov_len
);
1909 } else if (len
== 0) {
1910 /* Zero length pointer is ignored. */
1911 vec
[i
].iov_base
= 0;
1913 vec
[i
].iov_base
= lock_user(type
, base
, len
, copy
);
1914 /* If the first buffer pointer is bad, this is a fault. But
1915 * subsequent bad buffers will result in a partial write; this
1916 * is realized by filling the vector with null pointers and
1918 if (!vec
[i
].iov_base
) {
1929 if (len
> max_len
- total_len
) {
1930 len
= max_len
- total_len
;
1933 vec
[i
].iov_len
= len
;
1937 unlock_user(target_vec
, target_addr
, 0);
1942 if (tswapal(target_vec
[i
].iov_len
) > 0) {
1943 unlock_user(vec
[i
].iov_base
, tswapal(target_vec
[i
].iov_base
), 0);
1946 unlock_user(target_vec
, target_addr
, 0);
1953 static void unlock_iovec(struct iovec
*vec
, abi_ulong target_addr
,
1954 int count
, int copy
)
1956 struct target_iovec
*target_vec
;
1959 target_vec
= lock_user(VERIFY_READ
, target_addr
,
1960 count
* sizeof(struct target_iovec
), 1);
1962 for (i
= 0; i
< count
; i
++) {
1963 abi_ulong base
= tswapal(target_vec
[i
].iov_base
);
1964 abi_long len
= tswapal(target_vec
[i
].iov_len
);
1968 unlock_user(vec
[i
].iov_base
, base
, copy
? vec
[i
].iov_len
: 0);
1970 unlock_user(target_vec
, target_addr
, 0);
1976 static inline int target_to_host_sock_type(int *type
)
1979 int target_type
= *type
;
1981 switch (target_type
& TARGET_SOCK_TYPE_MASK
) {
1982 case TARGET_SOCK_DGRAM
:
1983 host_type
= SOCK_DGRAM
;
1985 case TARGET_SOCK_STREAM
:
1986 host_type
= SOCK_STREAM
;
1989 host_type
= target_type
& TARGET_SOCK_TYPE_MASK
;
1992 if (target_type
& TARGET_SOCK_CLOEXEC
) {
1993 #if defined(SOCK_CLOEXEC)
1994 host_type
|= SOCK_CLOEXEC
;
1996 return -TARGET_EINVAL
;
1999 if (target_type
& TARGET_SOCK_NONBLOCK
) {
2000 #if defined(SOCK_NONBLOCK)
2001 host_type
|= SOCK_NONBLOCK
;
2002 #elif !defined(O_NONBLOCK)
2003 return -TARGET_EINVAL
;
2010 /* Try to emulate socket type flags after socket creation. */
2011 static int sock_flags_fixup(int fd
, int target_type
)
2013 #if !defined(SOCK_NONBLOCK) && defined(O_NONBLOCK)
2014 if (target_type
& TARGET_SOCK_NONBLOCK
) {
2015 int flags
= fcntl(fd
, F_GETFL
);
2016 if (fcntl(fd
, F_SETFL
, O_NONBLOCK
| flags
) == -1) {
2018 return -TARGET_EINVAL
;
2025 /* do_socket() Must return target values and target errnos. */
2026 static abi_long
do_socket(int domain
, int type
, int protocol
)
2028 int target_type
= type
;
2031 ret
= target_to_host_sock_type(&type
);
2036 if (domain
== PF_NETLINK
)
2037 return -TARGET_EAFNOSUPPORT
;
2038 ret
= get_errno(socket(domain
, type
, protocol
));
2040 ret
= sock_flags_fixup(ret
, target_type
);
2045 /* do_bind() Must return target values and target errnos. */
2046 static abi_long
do_bind(int sockfd
, abi_ulong target_addr
,
2052 if ((int)addrlen
< 0) {
2053 return -TARGET_EINVAL
;
2056 addr
= alloca(addrlen
+1);
2058 ret
= target_to_host_sockaddr(addr
, target_addr
, addrlen
);
2062 return get_errno(bind(sockfd
, addr
, addrlen
));
2065 /* do_connect() Must return target values and target errnos. */
2066 static abi_long
do_connect(int sockfd
, abi_ulong target_addr
,
2072 if ((int)addrlen
< 0) {
2073 return -TARGET_EINVAL
;
2076 addr
= alloca(addrlen
+1);
2078 ret
= target_to_host_sockaddr(addr
, target_addr
, addrlen
);
2082 return get_errno(connect(sockfd
, addr
, addrlen
));
2085 /* do_sendrecvmsg_locked() Must return target values and target errnos. */
2086 static abi_long
do_sendrecvmsg_locked(int fd
, struct target_msghdr
*msgp
,
2087 int flags
, int send
)
2093 abi_ulong target_vec
;
2095 if (msgp
->msg_name
) {
2096 msg
.msg_namelen
= tswap32(msgp
->msg_namelen
);
2097 msg
.msg_name
= alloca(msg
.msg_namelen
+1);
2098 ret
= target_to_host_sockaddr(msg
.msg_name
, tswapal(msgp
->msg_name
),
2104 msg
.msg_name
= NULL
;
2105 msg
.msg_namelen
= 0;
2107 msg
.msg_controllen
= 2 * tswapal(msgp
->msg_controllen
);
2108 msg
.msg_control
= alloca(msg
.msg_controllen
);
2109 msg
.msg_flags
= tswap32(msgp
->msg_flags
);
2111 count
= tswapal(msgp
->msg_iovlen
);
2112 target_vec
= tswapal(msgp
->msg_iov
);
2113 vec
= lock_iovec(send
? VERIFY_READ
: VERIFY_WRITE
,
2114 target_vec
, count
, send
);
2116 ret
= -host_to_target_errno(errno
);
2119 msg
.msg_iovlen
= count
;
2123 ret
= target_to_host_cmsg(&msg
, msgp
);
2125 ret
= get_errno(sendmsg(fd
, &msg
, flags
));
2127 ret
= get_errno(recvmsg(fd
, &msg
, flags
));
2128 if (!is_error(ret
)) {
2130 ret
= host_to_target_cmsg(msgp
, &msg
);
2131 if (!is_error(ret
)) {
2132 msgp
->msg_namelen
= tswap32(msg
.msg_namelen
);
2133 if (msg
.msg_name
!= NULL
) {
2134 ret
= host_to_target_sockaddr(tswapal(msgp
->msg_name
),
2135 msg
.msg_name
, msg
.msg_namelen
);
2147 unlock_iovec(vec
, target_vec
, count
, !send
);
2152 static abi_long
do_sendrecvmsg(int fd
, abi_ulong target_msg
,
2153 int flags
, int send
)
2156 struct target_msghdr
*msgp
;
2158 if (!lock_user_struct(send
? VERIFY_READ
: VERIFY_WRITE
,
2162 return -TARGET_EFAULT
;
2164 ret
= do_sendrecvmsg_locked(fd
, msgp
, flags
, send
);
2165 unlock_user_struct(msgp
, target_msg
, send
? 0 : 1);
2169 #ifdef TARGET_NR_sendmmsg
2170 /* We don't rely on the C library to have sendmmsg/recvmmsg support,
2171 * so it might not have this *mmsg-specific flag either.
2173 #ifndef MSG_WAITFORONE
2174 #define MSG_WAITFORONE 0x10000
2177 static abi_long
do_sendrecvmmsg(int fd
, abi_ulong target_msgvec
,
2178 unsigned int vlen
, unsigned int flags
,
2181 struct target_mmsghdr
*mmsgp
;
2185 if (vlen
> UIO_MAXIOV
) {
2189 mmsgp
= lock_user(VERIFY_WRITE
, target_msgvec
, sizeof(*mmsgp
) * vlen
, 1);
2191 return -TARGET_EFAULT
;
2194 for (i
= 0; i
< vlen
; i
++) {
2195 ret
= do_sendrecvmsg_locked(fd
, &mmsgp
[i
].msg_hdr
, flags
, send
);
2196 if (is_error(ret
)) {
2199 mmsgp
[i
].msg_len
= tswap32(ret
);
2200 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2201 if (flags
& MSG_WAITFORONE
) {
2202 flags
|= MSG_DONTWAIT
;
2206 unlock_user(mmsgp
, target_msgvec
, sizeof(*mmsgp
) * i
);
2208 /* Return number of datagrams sent if we sent any at all;
2209 * otherwise return the error.
2218 /* If we don't have a system accept4() then just call accept.
2219 * The callsites to do_accept4() will ensure that they don't
2220 * pass a non-zero flags argument in this config.
2222 #ifndef CONFIG_ACCEPT4
2223 static inline int accept4(int sockfd
, struct sockaddr
*addr
,
2224 socklen_t
*addrlen
, int flags
)
2227 return accept(sockfd
, addr
, addrlen
);
2231 /* do_accept4() Must return target values and target errnos. */
2232 static abi_long
do_accept4(int fd
, abi_ulong target_addr
,
2233 abi_ulong target_addrlen_addr
, int flags
)
2240 host_flags
= target_to_host_bitmask(flags
, fcntl_flags_tbl
);
2242 if (target_addr
== 0) {
2243 return get_errno(accept4(fd
, NULL
, NULL
, host_flags
));
2246 /* linux returns EINVAL if addrlen pointer is invalid */
2247 if (get_user_u32(addrlen
, target_addrlen_addr
))
2248 return -TARGET_EINVAL
;
2250 if ((int)addrlen
< 0) {
2251 return -TARGET_EINVAL
;
2254 if (!access_ok(VERIFY_WRITE
, target_addr
, addrlen
))
2255 return -TARGET_EINVAL
;
2257 addr
= alloca(addrlen
);
2259 ret
= get_errno(accept4(fd
, addr
, &addrlen
, host_flags
));
2260 if (!is_error(ret
)) {
2261 host_to_target_sockaddr(target_addr
, addr
, addrlen
);
2262 if (put_user_u32(addrlen
, target_addrlen_addr
))
2263 ret
= -TARGET_EFAULT
;
2268 /* do_getpeername() Must return target values and target errnos. */
2269 static abi_long
do_getpeername(int fd
, abi_ulong target_addr
,
2270 abi_ulong target_addrlen_addr
)
2276 if (get_user_u32(addrlen
, target_addrlen_addr
))
2277 return -TARGET_EFAULT
;
2279 if ((int)addrlen
< 0) {
2280 return -TARGET_EINVAL
;
2283 if (!access_ok(VERIFY_WRITE
, target_addr
, addrlen
))
2284 return -TARGET_EFAULT
;
2286 addr
= alloca(addrlen
);
2288 ret
= get_errno(getpeername(fd
, addr
, &addrlen
));
2289 if (!is_error(ret
)) {
2290 host_to_target_sockaddr(target_addr
, addr
, addrlen
);
2291 if (put_user_u32(addrlen
, target_addrlen_addr
))
2292 ret
= -TARGET_EFAULT
;
2297 /* do_getsockname() Must return target values and target errnos. */
2298 static abi_long
do_getsockname(int fd
, abi_ulong target_addr
,
2299 abi_ulong target_addrlen_addr
)
2305 if (get_user_u32(addrlen
, target_addrlen_addr
))
2306 return -TARGET_EFAULT
;
2308 if ((int)addrlen
< 0) {
2309 return -TARGET_EINVAL
;
2312 if (!access_ok(VERIFY_WRITE
, target_addr
, addrlen
))
2313 return -TARGET_EFAULT
;
2315 addr
= alloca(addrlen
);
2317 ret
= get_errno(getsockname(fd
, addr
, &addrlen
));
2318 if (!is_error(ret
)) {
2319 host_to_target_sockaddr(target_addr
, addr
, addrlen
);
2320 if (put_user_u32(addrlen
, target_addrlen_addr
))
2321 ret
= -TARGET_EFAULT
;
2326 /* do_socketpair() Must return target values and target errnos. */
2327 static abi_long
do_socketpair(int domain
, int type
, int protocol
,
2328 abi_ulong target_tab_addr
)
2333 target_to_host_sock_type(&type
);
2335 ret
= get_errno(socketpair(domain
, type
, protocol
, tab
));
2336 if (!is_error(ret
)) {
2337 if (put_user_s32(tab
[0], target_tab_addr
)
2338 || put_user_s32(tab
[1], target_tab_addr
+ sizeof(tab
[0])))
2339 ret
= -TARGET_EFAULT
;
2344 /* do_sendto() Must return target values and target errnos. */
2345 static abi_long
do_sendto(int fd
, abi_ulong msg
, size_t len
, int flags
,
2346 abi_ulong target_addr
, socklen_t addrlen
)
2352 if ((int)addrlen
< 0) {
2353 return -TARGET_EINVAL
;
2356 host_msg
= lock_user(VERIFY_READ
, msg
, len
, 1);
2358 return -TARGET_EFAULT
;
2360 addr
= alloca(addrlen
+1);
2361 ret
= target_to_host_sockaddr(addr
, target_addr
, addrlen
);
2363 unlock_user(host_msg
, msg
, 0);
2366 ret
= get_errno(sendto(fd
, host_msg
, len
, flags
, addr
, addrlen
));
2368 ret
= get_errno(send(fd
, host_msg
, len
, flags
));
2370 unlock_user(host_msg
, msg
, 0);
2374 /* do_recvfrom() Must return target values and target errnos. */
2375 static abi_long
do_recvfrom(int fd
, abi_ulong msg
, size_t len
, int flags
,
2376 abi_ulong target_addr
,
2377 abi_ulong target_addrlen
)
2384 host_msg
= lock_user(VERIFY_WRITE
, msg
, len
, 0);
2386 return -TARGET_EFAULT
;
2388 if (get_user_u32(addrlen
, target_addrlen
)) {
2389 ret
= -TARGET_EFAULT
;
2392 if ((int)addrlen
< 0) {
2393 ret
= -TARGET_EINVAL
;
2396 addr
= alloca(addrlen
);
2397 ret
= get_errno(recvfrom(fd
, host_msg
, len
, flags
, addr
, &addrlen
));
2399 addr
= NULL
; /* To keep compiler quiet. */
2400 ret
= get_errno(qemu_recv(fd
, host_msg
, len
, flags
));
2402 if (!is_error(ret
)) {
2404 host_to_target_sockaddr(target_addr
, addr
, addrlen
);
2405 if (put_user_u32(addrlen
, target_addrlen
)) {
2406 ret
= -TARGET_EFAULT
;
2410 unlock_user(host_msg
, msg
, len
);
2413 unlock_user(host_msg
, msg
, 0);
2418 #ifdef TARGET_NR_socketcall
2419 /* do_socketcall() Must return target values and target errnos. */
2420 static abi_long
do_socketcall(int num
, abi_ulong vptr
)
2422 static const unsigned ac
[] = { /* number of arguments per call */
2423 [SOCKOP_socket
] = 3, /* domain, type, protocol */
2424 [SOCKOP_bind
] = 3, /* sockfd, addr, addrlen */
2425 [SOCKOP_connect
] = 3, /* sockfd, addr, addrlen */
2426 [SOCKOP_listen
] = 2, /* sockfd, backlog */
2427 [SOCKOP_accept
] = 3, /* sockfd, addr, addrlen */
2428 [SOCKOP_accept4
] = 4, /* sockfd, addr, addrlen, flags */
2429 [SOCKOP_getsockname
] = 3, /* sockfd, addr, addrlen */
2430 [SOCKOP_getpeername
] = 3, /* sockfd, addr, addrlen */
2431 [SOCKOP_socketpair
] = 4, /* domain, type, protocol, tab */
2432 [SOCKOP_send
] = 4, /* sockfd, msg, len, flags */
2433 [SOCKOP_recv
] = 4, /* sockfd, msg, len, flags */
2434 [SOCKOP_sendto
] = 6, /* sockfd, msg, len, flags, addr, addrlen */
2435 [SOCKOP_recvfrom
] = 6, /* sockfd, msg, len, flags, addr, addrlen */
2436 [SOCKOP_shutdown
] = 2, /* sockfd, how */
2437 [SOCKOP_sendmsg
] = 3, /* sockfd, msg, flags */
2438 [SOCKOP_recvmsg
] = 3, /* sockfd, msg, flags */
2439 [SOCKOP_setsockopt
] = 5, /* sockfd, level, optname, optval, optlen */
2440 [SOCKOP_getsockopt
] = 5, /* sockfd, level, optname, optval, optlen */
2442 abi_long a
[6]; /* max 6 args */
2444 /* first, collect the arguments in a[] according to ac[] */
2445 if (num
>= 0 && num
< ARRAY_SIZE(ac
)) {
2447 assert(ARRAY_SIZE(a
) >= ac
[num
]); /* ensure we have space for args */
2448 for (i
= 0; i
< ac
[num
]; ++i
) {
2449 if (get_user_ual(a
[i
], vptr
+ i
* sizeof(abi_long
)) != 0) {
2450 return -TARGET_EFAULT
;
2455 /* now when we have the args, actually handle the call */
2457 case SOCKOP_socket
: /* domain, type, protocol */
2458 return do_socket(a
[0], a
[1], a
[2]);
2459 case SOCKOP_bind
: /* sockfd, addr, addrlen */
2460 return do_bind(a
[0], a
[1], a
[2]);
2461 case SOCKOP_connect
: /* sockfd, addr, addrlen */
2462 return do_connect(a
[0], a
[1], a
[2]);
2463 case SOCKOP_listen
: /* sockfd, backlog */
2464 return get_errno(listen(a
[0], a
[1]));
2465 case SOCKOP_accept
: /* sockfd, addr, addrlen */
2466 return do_accept4(a
[0], a
[1], a
[2], 0);
2467 case SOCKOP_accept4
: /* sockfd, addr, addrlen, flags */
2468 return do_accept4(a
[0], a
[1], a
[2], a
[3]);
2469 case SOCKOP_getsockname
: /* sockfd, addr, addrlen */
2470 return do_getsockname(a
[0], a
[1], a
[2]);
2471 case SOCKOP_getpeername
: /* sockfd, addr, addrlen */
2472 return do_getpeername(a
[0], a
[1], a
[2]);
2473 case SOCKOP_socketpair
: /* domain, type, protocol, tab */
2474 return do_socketpair(a
[0], a
[1], a
[2], a
[3]);
2475 case SOCKOP_send
: /* sockfd, msg, len, flags */
2476 return do_sendto(a
[0], a
[1], a
[2], a
[3], 0, 0);
2477 case SOCKOP_recv
: /* sockfd, msg, len, flags */
2478 return do_recvfrom(a
[0], a
[1], a
[2], a
[3], 0, 0);
2479 case SOCKOP_sendto
: /* sockfd, msg, len, flags, addr, addrlen */
2480 return do_sendto(a
[0], a
[1], a
[2], a
[3], a
[4], a
[5]);
2481 case SOCKOP_recvfrom
: /* sockfd, msg, len, flags, addr, addrlen */
2482 return do_recvfrom(a
[0], a
[1], a
[2], a
[3], a
[4], a
[5]);
2483 case SOCKOP_shutdown
: /* sockfd, how */
2484 return get_errno(shutdown(a
[0], a
[1]));
2485 case SOCKOP_sendmsg
: /* sockfd, msg, flags */
2486 return do_sendrecvmsg(a
[0], a
[1], a
[2], 1);
2487 case SOCKOP_recvmsg
: /* sockfd, msg, flags */
2488 return do_sendrecvmsg(a
[0], a
[1], a
[2], 0);
2489 case SOCKOP_setsockopt
: /* sockfd, level, optname, optval, optlen */
2490 return do_setsockopt(a
[0], a
[1], a
[2], a
[3], a
[4]);
2491 case SOCKOP_getsockopt
: /* sockfd, level, optname, optval, optlen */
2492 return do_getsockopt(a
[0], a
[1], a
[2], a
[3], a
[4]);
2494 gemu_log("Unsupported socketcall: %d\n", num
);
2495 return -TARGET_ENOSYS
;
2500 #define N_SHM_REGIONS 32
2502 static struct shm_region
{
2505 } shm_regions
[N_SHM_REGIONS
];
2507 struct target_semid_ds
2509 struct target_ipc_perm sem_perm
;
2510 abi_ulong sem_otime
;
2511 #if !defined(TARGET_PPC64)
2512 abi_ulong __unused1
;
2514 abi_ulong sem_ctime
;
2515 #if !defined(TARGET_PPC64)
2516 abi_ulong __unused2
;
2518 abi_ulong sem_nsems
;
2519 abi_ulong __unused3
;
2520 abi_ulong __unused4
;
2523 static inline abi_long
target_to_host_ipc_perm(struct ipc_perm
*host_ip
,
2524 abi_ulong target_addr
)
2526 struct target_ipc_perm
*target_ip
;
2527 struct target_semid_ds
*target_sd
;
2529 if (!lock_user_struct(VERIFY_READ
, target_sd
, target_addr
, 1))
2530 return -TARGET_EFAULT
;
2531 target_ip
= &(target_sd
->sem_perm
);
2532 host_ip
->__key
= tswap32(target_ip
->__key
);
2533 host_ip
->uid
= tswap32(target_ip
->uid
);
2534 host_ip
->gid
= tswap32(target_ip
->gid
);
2535 host_ip
->cuid
= tswap32(target_ip
->cuid
);
2536 host_ip
->cgid
= tswap32(target_ip
->cgid
);
2537 #if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_PPC)
2538 host_ip
->mode
= tswap32(target_ip
->mode
);
2540 host_ip
->mode
= tswap16(target_ip
->mode
);
2542 #if defined(TARGET_PPC)
2543 host_ip
->__seq
= tswap32(target_ip
->__seq
);
2545 host_ip
->__seq
= tswap16(target_ip
->__seq
);
2547 unlock_user_struct(target_sd
, target_addr
, 0);
2551 static inline abi_long
host_to_target_ipc_perm(abi_ulong target_addr
,
2552 struct ipc_perm
*host_ip
)
2554 struct target_ipc_perm
*target_ip
;
2555 struct target_semid_ds
*target_sd
;
2557 if (!lock_user_struct(VERIFY_WRITE
, target_sd
, target_addr
, 0))
2558 return -TARGET_EFAULT
;
2559 target_ip
= &(target_sd
->sem_perm
);
2560 target_ip
->__key
= tswap32(host_ip
->__key
);
2561 target_ip
->uid
= tswap32(host_ip
->uid
);
2562 target_ip
->gid
= tswap32(host_ip
->gid
);
2563 target_ip
->cuid
= tswap32(host_ip
->cuid
);
2564 target_ip
->cgid
= tswap32(host_ip
->cgid
);
2565 #if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_PPC)
2566 target_ip
->mode
= tswap32(host_ip
->mode
);
2568 target_ip
->mode
= tswap16(host_ip
->mode
);
2570 #if defined(TARGET_PPC)
2571 target_ip
->__seq
= tswap32(host_ip
->__seq
);
2573 target_ip
->__seq
= tswap16(host_ip
->__seq
);
2575 unlock_user_struct(target_sd
, target_addr
, 1);
2579 static inline abi_long
target_to_host_semid_ds(struct semid_ds
*host_sd
,
2580 abi_ulong target_addr
)
2582 struct target_semid_ds
*target_sd
;
2584 if (!lock_user_struct(VERIFY_READ
, target_sd
, target_addr
, 1))
2585 return -TARGET_EFAULT
;
2586 if (target_to_host_ipc_perm(&(host_sd
->sem_perm
),target_addr
))
2587 return -TARGET_EFAULT
;
2588 host_sd
->sem_nsems
= tswapal(target_sd
->sem_nsems
);
2589 host_sd
->sem_otime
= tswapal(target_sd
->sem_otime
);
2590 host_sd
->sem_ctime
= tswapal(target_sd
->sem_ctime
);
2591 unlock_user_struct(target_sd
, target_addr
, 0);
2595 static inline abi_long
host_to_target_semid_ds(abi_ulong target_addr
,
2596 struct semid_ds
*host_sd
)
2598 struct target_semid_ds
*target_sd
;
2600 if (!lock_user_struct(VERIFY_WRITE
, target_sd
, target_addr
, 0))
2601 return -TARGET_EFAULT
;
2602 if (host_to_target_ipc_perm(target_addr
,&(host_sd
->sem_perm
)))
2603 return -TARGET_EFAULT
;
2604 target_sd
->sem_nsems
= tswapal(host_sd
->sem_nsems
);
2605 target_sd
->sem_otime
= tswapal(host_sd
->sem_otime
);
2606 target_sd
->sem_ctime
= tswapal(host_sd
->sem_ctime
);
2607 unlock_user_struct(target_sd
, target_addr
, 1);
2611 struct target_seminfo
{
2624 static inline abi_long
host_to_target_seminfo(abi_ulong target_addr
,
2625 struct seminfo
*host_seminfo
)
2627 struct target_seminfo
*target_seminfo
;
2628 if (!lock_user_struct(VERIFY_WRITE
, target_seminfo
, target_addr
, 0))
2629 return -TARGET_EFAULT
;
2630 __put_user(host_seminfo
->semmap
, &target_seminfo
->semmap
);
2631 __put_user(host_seminfo
->semmni
, &target_seminfo
->semmni
);
2632 __put_user(host_seminfo
->semmns
, &target_seminfo
->semmns
);
2633 __put_user(host_seminfo
->semmnu
, &target_seminfo
->semmnu
);
2634 __put_user(host_seminfo
->semmsl
, &target_seminfo
->semmsl
);
2635 __put_user(host_seminfo
->semopm
, &target_seminfo
->semopm
);
2636 __put_user(host_seminfo
->semume
, &target_seminfo
->semume
);
2637 __put_user(host_seminfo
->semusz
, &target_seminfo
->semusz
);
2638 __put_user(host_seminfo
->semvmx
, &target_seminfo
->semvmx
);
2639 __put_user(host_seminfo
->semaem
, &target_seminfo
->semaem
);
2640 unlock_user_struct(target_seminfo
, target_addr
, 1);
2646 struct semid_ds
*buf
;
2647 unsigned short *array
;
2648 struct seminfo
*__buf
;
2651 union target_semun
{
2658 static inline abi_long
target_to_host_semarray(int semid
, unsigned short **host_array
,
2659 abi_ulong target_addr
)
2662 unsigned short *array
;
2664 struct semid_ds semid_ds
;
2667 semun
.buf
= &semid_ds
;
2669 ret
= semctl(semid
, 0, IPC_STAT
, semun
);
2671 return get_errno(ret
);
2673 nsems
= semid_ds
.sem_nsems
;
2675 *host_array
= malloc(nsems
*sizeof(unsigned short));
2677 return -TARGET_ENOMEM
;
2679 array
= lock_user(VERIFY_READ
, target_addr
,
2680 nsems
*sizeof(unsigned short), 1);
2683 return -TARGET_EFAULT
;
2686 for(i
=0; i
<nsems
; i
++) {
2687 __get_user((*host_array
)[i
], &array
[i
]);
2689 unlock_user(array
, target_addr
, 0);
2694 static inline abi_long
host_to_target_semarray(int semid
, abi_ulong target_addr
,
2695 unsigned short **host_array
)
2698 unsigned short *array
;
2700 struct semid_ds semid_ds
;
2703 semun
.buf
= &semid_ds
;
2705 ret
= semctl(semid
, 0, IPC_STAT
, semun
);
2707 return get_errno(ret
);
2709 nsems
= semid_ds
.sem_nsems
;
2711 array
= lock_user(VERIFY_WRITE
, target_addr
,
2712 nsems
*sizeof(unsigned short), 0);
2714 return -TARGET_EFAULT
;
2716 for(i
=0; i
<nsems
; i
++) {
2717 __put_user((*host_array
)[i
], &array
[i
]);
2720 unlock_user(array
, target_addr
, 1);
2725 static inline abi_long
do_semctl(int semid
, int semnum
, int cmd
,
2726 union target_semun target_su
)
2729 struct semid_ds dsarg
;
2730 unsigned short *array
= NULL
;
2731 struct seminfo seminfo
;
2732 abi_long ret
= -TARGET_EINVAL
;
2739 /* In 64 bit cross-endian situations, we will erroneously pick up
2740 * the wrong half of the union for the "val" element. To rectify
2741 * this, the entire 8-byte structure is byteswapped, followed by
2742 * a swap of the 4 byte val field. In other cases, the data is
2743 * already in proper host byte order. */
2744 if (sizeof(target_su
.val
) != (sizeof(target_su
.buf
))) {
2745 target_su
.buf
= tswapal(target_su
.buf
);
2746 arg
.val
= tswap32(target_su
.val
);
2748 arg
.val
= target_su
.val
;
2750 ret
= get_errno(semctl(semid
, semnum
, cmd
, arg
));
2754 err
= target_to_host_semarray(semid
, &array
, target_su
.array
);
2758 ret
= get_errno(semctl(semid
, semnum
, cmd
, arg
));
2759 err
= host_to_target_semarray(semid
, target_su
.array
, &array
);
2766 err
= target_to_host_semid_ds(&dsarg
, target_su
.buf
);
2770 ret
= get_errno(semctl(semid
, semnum
, cmd
, arg
));
2771 err
= host_to_target_semid_ds(target_su
.buf
, &dsarg
);
2777 arg
.__buf
= &seminfo
;
2778 ret
= get_errno(semctl(semid
, semnum
, cmd
, arg
));
2779 err
= host_to_target_seminfo(target_su
.__buf
, &seminfo
);
2787 ret
= get_errno(semctl(semid
, semnum
, cmd
, NULL
));
2794 struct target_sembuf
{
2795 unsigned short sem_num
;
2800 static inline abi_long
target_to_host_sembuf(struct sembuf
*host_sembuf
,
2801 abi_ulong target_addr
,
2804 struct target_sembuf
*target_sembuf
;
2807 target_sembuf
= lock_user(VERIFY_READ
, target_addr
,
2808 nsops
*sizeof(struct target_sembuf
), 1);
2810 return -TARGET_EFAULT
;
2812 for(i
=0; i
<nsops
; i
++) {
2813 __get_user(host_sembuf
[i
].sem_num
, &target_sembuf
[i
].sem_num
);
2814 __get_user(host_sembuf
[i
].sem_op
, &target_sembuf
[i
].sem_op
);
2815 __get_user(host_sembuf
[i
].sem_flg
, &target_sembuf
[i
].sem_flg
);
2818 unlock_user(target_sembuf
, target_addr
, 0);
2823 static inline abi_long
do_semop(int semid
, abi_long ptr
, unsigned nsops
)
2825 struct sembuf sops
[nsops
];
2827 if (target_to_host_sembuf(sops
, ptr
, nsops
))
2828 return -TARGET_EFAULT
;
2830 return get_errno(semop(semid
, sops
, nsops
));
2833 struct target_msqid_ds
2835 struct target_ipc_perm msg_perm
;
2836 abi_ulong msg_stime
;
2837 #if TARGET_ABI_BITS == 32
2838 abi_ulong __unused1
;
2840 abi_ulong msg_rtime
;
2841 #if TARGET_ABI_BITS == 32
2842 abi_ulong __unused2
;
2844 abi_ulong msg_ctime
;
2845 #if TARGET_ABI_BITS == 32
2846 abi_ulong __unused3
;
2848 abi_ulong __msg_cbytes
;
2850 abi_ulong msg_qbytes
;
2851 abi_ulong msg_lspid
;
2852 abi_ulong msg_lrpid
;
2853 abi_ulong __unused4
;
2854 abi_ulong __unused5
;
2857 static inline abi_long
target_to_host_msqid_ds(struct msqid_ds
*host_md
,
2858 abi_ulong target_addr
)
2860 struct target_msqid_ds
*target_md
;
2862 if (!lock_user_struct(VERIFY_READ
, target_md
, target_addr
, 1))
2863 return -TARGET_EFAULT
;
2864 if (target_to_host_ipc_perm(&(host_md
->msg_perm
),target_addr
))
2865 return -TARGET_EFAULT
;
2866 host_md
->msg_stime
= tswapal(target_md
->msg_stime
);
2867 host_md
->msg_rtime
= tswapal(target_md
->msg_rtime
);
2868 host_md
->msg_ctime
= tswapal(target_md
->msg_ctime
);
2869 host_md
->__msg_cbytes
= tswapal(target_md
->__msg_cbytes
);
2870 host_md
->msg_qnum
= tswapal(target_md
->msg_qnum
);
2871 host_md
->msg_qbytes
= tswapal(target_md
->msg_qbytes
);
2872 host_md
->msg_lspid
= tswapal(target_md
->msg_lspid
);
2873 host_md
->msg_lrpid
= tswapal(target_md
->msg_lrpid
);
2874 unlock_user_struct(target_md
, target_addr
, 0);
2878 static inline abi_long
host_to_target_msqid_ds(abi_ulong target_addr
,
2879 struct msqid_ds
*host_md
)
2881 struct target_msqid_ds
*target_md
;
2883 if (!lock_user_struct(VERIFY_WRITE
, target_md
, target_addr
, 0))
2884 return -TARGET_EFAULT
;
2885 if (host_to_target_ipc_perm(target_addr
,&(host_md
->msg_perm
)))
2886 return -TARGET_EFAULT
;
2887 target_md
->msg_stime
= tswapal(host_md
->msg_stime
);
2888 target_md
->msg_rtime
= tswapal(host_md
->msg_rtime
);
2889 target_md
->msg_ctime
= tswapal(host_md
->msg_ctime
);
2890 target_md
->__msg_cbytes
= tswapal(host_md
->__msg_cbytes
);
2891 target_md
->msg_qnum
= tswapal(host_md
->msg_qnum
);
2892 target_md
->msg_qbytes
= tswapal(host_md
->msg_qbytes
);
2893 target_md
->msg_lspid
= tswapal(host_md
->msg_lspid
);
2894 target_md
->msg_lrpid
= tswapal(host_md
->msg_lrpid
);
2895 unlock_user_struct(target_md
, target_addr
, 1);
2899 struct target_msginfo
{
2907 unsigned short int msgseg
;
2910 static inline abi_long
host_to_target_msginfo(abi_ulong target_addr
,
2911 struct msginfo
*host_msginfo
)
2913 struct target_msginfo
*target_msginfo
;
2914 if (!lock_user_struct(VERIFY_WRITE
, target_msginfo
, target_addr
, 0))
2915 return -TARGET_EFAULT
;
2916 __put_user(host_msginfo
->msgpool
, &target_msginfo
->msgpool
);
2917 __put_user(host_msginfo
->msgmap
, &target_msginfo
->msgmap
);
2918 __put_user(host_msginfo
->msgmax
, &target_msginfo
->msgmax
);
2919 __put_user(host_msginfo
->msgmnb
, &target_msginfo
->msgmnb
);
2920 __put_user(host_msginfo
->msgmni
, &target_msginfo
->msgmni
);
2921 __put_user(host_msginfo
->msgssz
, &target_msginfo
->msgssz
);
2922 __put_user(host_msginfo
->msgtql
, &target_msginfo
->msgtql
);
2923 __put_user(host_msginfo
->msgseg
, &target_msginfo
->msgseg
);
2924 unlock_user_struct(target_msginfo
, target_addr
, 1);
2928 static inline abi_long
do_msgctl(int msgid
, int cmd
, abi_long ptr
)
2930 struct msqid_ds dsarg
;
2931 struct msginfo msginfo
;
2932 abi_long ret
= -TARGET_EINVAL
;
2940 if (target_to_host_msqid_ds(&dsarg
,ptr
))
2941 return -TARGET_EFAULT
;
2942 ret
= get_errno(msgctl(msgid
, cmd
, &dsarg
));
2943 if (host_to_target_msqid_ds(ptr
,&dsarg
))
2944 return -TARGET_EFAULT
;
2947 ret
= get_errno(msgctl(msgid
, cmd
, NULL
));
2951 ret
= get_errno(msgctl(msgid
, cmd
, (struct msqid_ds
*)&msginfo
));
2952 if (host_to_target_msginfo(ptr
, &msginfo
))
2953 return -TARGET_EFAULT
;
2960 struct target_msgbuf
{
2965 static inline abi_long
do_msgsnd(int msqid
, abi_long msgp
,
2966 ssize_t msgsz
, int msgflg
)
2968 struct target_msgbuf
*target_mb
;
2969 struct msgbuf
*host_mb
;
2973 return -TARGET_EINVAL
;
2976 if (!lock_user_struct(VERIFY_READ
, target_mb
, msgp
, 0))
2977 return -TARGET_EFAULT
;
2978 host_mb
= malloc(msgsz
+sizeof(long));
2980 unlock_user_struct(target_mb
, msgp
, 0);
2981 return -TARGET_ENOMEM
;
2983 host_mb
->mtype
= (abi_long
) tswapal(target_mb
->mtype
);
2984 memcpy(host_mb
->mtext
, target_mb
->mtext
, msgsz
);
2985 ret
= get_errno(msgsnd(msqid
, host_mb
, msgsz
, msgflg
));
2987 unlock_user_struct(target_mb
, msgp
, 0);
2992 static inline abi_long
do_msgrcv(int msqid
, abi_long msgp
,
2993 unsigned int msgsz
, abi_long msgtyp
,
2996 struct target_msgbuf
*target_mb
;
2998 struct msgbuf
*host_mb
;
3001 if (!lock_user_struct(VERIFY_WRITE
, target_mb
, msgp
, 0))
3002 return -TARGET_EFAULT
;
3004 host_mb
= g_malloc(msgsz
+sizeof(long));
3005 ret
= get_errno(msgrcv(msqid
, host_mb
, msgsz
, msgtyp
, msgflg
));
3008 abi_ulong target_mtext_addr
= msgp
+ sizeof(abi_ulong
);
3009 target_mtext
= lock_user(VERIFY_WRITE
, target_mtext_addr
, ret
, 0);
3010 if (!target_mtext
) {
3011 ret
= -TARGET_EFAULT
;
3014 memcpy(target_mb
->mtext
, host_mb
->mtext
, ret
);
3015 unlock_user(target_mtext
, target_mtext_addr
, ret
);
3018 target_mb
->mtype
= tswapal(host_mb
->mtype
);
3022 unlock_user_struct(target_mb
, msgp
, 1);
3027 static inline abi_long
target_to_host_shmid_ds(struct shmid_ds
*host_sd
,
3028 abi_ulong target_addr
)
3030 struct target_shmid_ds
*target_sd
;
3032 if (!lock_user_struct(VERIFY_READ
, target_sd
, target_addr
, 1))
3033 return -TARGET_EFAULT
;
3034 if (target_to_host_ipc_perm(&(host_sd
->shm_perm
), target_addr
))
3035 return -TARGET_EFAULT
;
3036 __get_user(host_sd
->shm_segsz
, &target_sd
->shm_segsz
);
3037 __get_user(host_sd
->shm_atime
, &target_sd
->shm_atime
);
3038 __get_user(host_sd
->shm_dtime
, &target_sd
->shm_dtime
);
3039 __get_user(host_sd
->shm_ctime
, &target_sd
->shm_ctime
);
3040 __get_user(host_sd
->shm_cpid
, &target_sd
->shm_cpid
);
3041 __get_user(host_sd
->shm_lpid
, &target_sd
->shm_lpid
);
3042 __get_user(host_sd
->shm_nattch
, &target_sd
->shm_nattch
);
3043 unlock_user_struct(target_sd
, target_addr
, 0);
3047 static inline abi_long
host_to_target_shmid_ds(abi_ulong target_addr
,
3048 struct shmid_ds
*host_sd
)
3050 struct target_shmid_ds
*target_sd
;
3052 if (!lock_user_struct(VERIFY_WRITE
, target_sd
, target_addr
, 0))
3053 return -TARGET_EFAULT
;
3054 if (host_to_target_ipc_perm(target_addr
, &(host_sd
->shm_perm
)))
3055 return -TARGET_EFAULT
;
3056 __put_user(host_sd
->shm_segsz
, &target_sd
->shm_segsz
);
3057 __put_user(host_sd
->shm_atime
, &target_sd
->shm_atime
);
3058 __put_user(host_sd
->shm_dtime
, &target_sd
->shm_dtime
);
3059 __put_user(host_sd
->shm_ctime
, &target_sd
->shm_ctime
);
3060 __put_user(host_sd
->shm_cpid
, &target_sd
->shm_cpid
);
3061 __put_user(host_sd
->shm_lpid
, &target_sd
->shm_lpid
);
3062 __put_user(host_sd
->shm_nattch
, &target_sd
->shm_nattch
);
3063 unlock_user_struct(target_sd
, target_addr
, 1);
3067 struct target_shminfo
{
3075 static inline abi_long
host_to_target_shminfo(abi_ulong target_addr
,
3076 struct shminfo
*host_shminfo
)
3078 struct target_shminfo
*target_shminfo
;
3079 if (!lock_user_struct(VERIFY_WRITE
, target_shminfo
, target_addr
, 0))
3080 return -TARGET_EFAULT
;
3081 __put_user(host_shminfo
->shmmax
, &target_shminfo
->shmmax
);
3082 __put_user(host_shminfo
->shmmin
, &target_shminfo
->shmmin
);
3083 __put_user(host_shminfo
->shmmni
, &target_shminfo
->shmmni
);
3084 __put_user(host_shminfo
->shmseg
, &target_shminfo
->shmseg
);
3085 __put_user(host_shminfo
->shmall
, &target_shminfo
->shmall
);
3086 unlock_user_struct(target_shminfo
, target_addr
, 1);
3090 struct target_shm_info
{
3095 abi_ulong swap_attempts
;
3096 abi_ulong swap_successes
;
3099 static inline abi_long
host_to_target_shm_info(abi_ulong target_addr
,
3100 struct shm_info
*host_shm_info
)
3102 struct target_shm_info
*target_shm_info
;
3103 if (!lock_user_struct(VERIFY_WRITE
, target_shm_info
, target_addr
, 0))
3104 return -TARGET_EFAULT
;
3105 __put_user(host_shm_info
->used_ids
, &target_shm_info
->used_ids
);
3106 __put_user(host_shm_info
->shm_tot
, &target_shm_info
->shm_tot
);
3107 __put_user(host_shm_info
->shm_rss
, &target_shm_info
->shm_rss
);
3108 __put_user(host_shm_info
->shm_swp
, &target_shm_info
->shm_swp
);
3109 __put_user(host_shm_info
->swap_attempts
, &target_shm_info
->swap_attempts
);
3110 __put_user(host_shm_info
->swap_successes
, &target_shm_info
->swap_successes
);
3111 unlock_user_struct(target_shm_info
, target_addr
, 1);
3115 static inline abi_long
do_shmctl(int shmid
, int cmd
, abi_long buf
)
3117 struct shmid_ds dsarg
;
3118 struct shminfo shminfo
;
3119 struct shm_info shm_info
;
3120 abi_long ret
= -TARGET_EINVAL
;
3128 if (target_to_host_shmid_ds(&dsarg
, buf
))
3129 return -TARGET_EFAULT
;
3130 ret
= get_errno(shmctl(shmid
, cmd
, &dsarg
));
3131 if (host_to_target_shmid_ds(buf
, &dsarg
))
3132 return -TARGET_EFAULT
;
3135 ret
= get_errno(shmctl(shmid
, cmd
, (struct shmid_ds
*)&shminfo
));
3136 if (host_to_target_shminfo(buf
, &shminfo
))
3137 return -TARGET_EFAULT
;
3140 ret
= get_errno(shmctl(shmid
, cmd
, (struct shmid_ds
*)&shm_info
));
3141 if (host_to_target_shm_info(buf
, &shm_info
))
3142 return -TARGET_EFAULT
;
3147 ret
= get_errno(shmctl(shmid
, cmd
, NULL
));
3154 static inline abi_ulong
do_shmat(int shmid
, abi_ulong shmaddr
, int shmflg
)
3158 struct shmid_ds shm_info
;
3161 /* find out the length of the shared memory segment */
3162 ret
= get_errno(shmctl(shmid
, IPC_STAT
, &shm_info
));
3163 if (is_error(ret
)) {
3164 /* can't get length, bail out */
3171 host_raddr
= shmat(shmid
, (void *)g2h(shmaddr
), shmflg
);
3173 abi_ulong mmap_start
;
3175 mmap_start
= mmap_find_vma(0, shm_info
.shm_segsz
);
3177 if (mmap_start
== -1) {
3179 host_raddr
= (void *)-1;
3181 host_raddr
= shmat(shmid
, g2h(mmap_start
), shmflg
| SHM_REMAP
);
3184 if (host_raddr
== (void *)-1) {
3186 return get_errno((long)host_raddr
);
3188 raddr
=h2g((unsigned long)host_raddr
);
3190 page_set_flags(raddr
, raddr
+ shm_info
.shm_segsz
,
3191 PAGE_VALID
| PAGE_READ
|
3192 ((shmflg
& SHM_RDONLY
)? 0 : PAGE_WRITE
));
3194 for (i
= 0; i
< N_SHM_REGIONS
; i
++) {
3195 if (shm_regions
[i
].start
== 0) {
3196 shm_regions
[i
].start
= raddr
;
3197 shm_regions
[i
].size
= shm_info
.shm_segsz
;
3207 static inline abi_long
do_shmdt(abi_ulong shmaddr
)
3211 for (i
= 0; i
< N_SHM_REGIONS
; ++i
) {
3212 if (shm_regions
[i
].start
== shmaddr
) {
3213 shm_regions
[i
].start
= 0;
3214 page_set_flags(shmaddr
, shmaddr
+ shm_regions
[i
].size
, 0);
3219 return get_errno(shmdt(g2h(shmaddr
)));
3222 #ifdef TARGET_NR_ipc
3223 /* ??? This only works with linear mappings. */
3224 /* do_ipc() must return target values and target errnos. */
3225 static abi_long
do_ipc(unsigned int call
, abi_long first
,
3226 abi_long second
, abi_long third
,
3227 abi_long ptr
, abi_long fifth
)
3232 version
= call
>> 16;
3237 ret
= do_semop(first
, ptr
, second
);
3241 ret
= get_errno(semget(first
, second
, third
));
3244 case IPCOP_semctl
: {
3245 /* The semun argument to semctl is passed by value, so dereference the
3248 get_user_ual(atptr
, ptr
);
3249 ret
= do_semctl(first
, second
, third
,
3250 (union target_semun
) atptr
);
3255 ret
= get_errno(msgget(first
, second
));
3259 ret
= do_msgsnd(first
, ptr
, second
, third
);
3263 ret
= do_msgctl(first
, second
, ptr
);
3270 struct target_ipc_kludge
{
3275 if (!lock_user_struct(VERIFY_READ
, tmp
, ptr
, 1)) {
3276 ret
= -TARGET_EFAULT
;
3280 ret
= do_msgrcv(first
, tswapal(tmp
->msgp
), second
, tswapal(tmp
->msgtyp
), third
);
3282 unlock_user_struct(tmp
, ptr
, 0);
3286 ret
= do_msgrcv(first
, ptr
, second
, fifth
, third
);
3295 raddr
= do_shmat(first
, ptr
, second
);
3296 if (is_error(raddr
))
3297 return get_errno(raddr
);
3298 if (put_user_ual(raddr
, third
))
3299 return -TARGET_EFAULT
;
3303 ret
= -TARGET_EINVAL
;
3308 ret
= do_shmdt(ptr
);
3312 /* IPC_* flag values are the same on all linux platforms */
3313 ret
= get_errno(shmget(first
, second
, third
));
3316 /* IPC_* and SHM_* command values are the same on all linux platforms */
3318 ret
= do_shmctl(first
, second
, ptr
);
3321 gemu_log("Unsupported ipc call: %d (version %d)\n", call
, version
);
3322 ret
= -TARGET_ENOSYS
;
3329 /* kernel structure types definitions */
3331 #define STRUCT(name, ...) STRUCT_ ## name,
3332 #define STRUCT_SPECIAL(name) STRUCT_ ## name,
3334 #include "syscall_types.h"
3338 #undef STRUCT_SPECIAL
3340 #define STRUCT(name, ...) static const argtype struct_ ## name ## _def[] = { __VA_ARGS__, TYPE_NULL };
3341 #define STRUCT_SPECIAL(name)
3342 #include "syscall_types.h"
3344 #undef STRUCT_SPECIAL
3346 typedef struct IOCTLEntry IOCTLEntry
;
3348 typedef abi_long
do_ioctl_fn(const IOCTLEntry
*ie
, uint8_t *buf_temp
,
3349 int fd
, int cmd
, abi_long arg
);
3353 unsigned int host_cmd
;
3356 do_ioctl_fn
*do_ioctl
;
3357 const argtype arg_type
[5];
3360 #define IOC_R 0x0001
3361 #define IOC_W 0x0002
3362 #define IOC_RW (IOC_R | IOC_W)
3364 #define MAX_STRUCT_SIZE 4096
3366 #ifdef CONFIG_FIEMAP
3367 /* So fiemap access checks don't overflow on 32 bit systems.
3368 * This is very slightly smaller than the limit imposed by
3369 * the underlying kernel.
3371 #define FIEMAP_MAX_EXTENTS ((UINT_MAX - sizeof(struct fiemap)) \
3372 / sizeof(struct fiemap_extent))
3374 static abi_long
do_ioctl_fs_ioc_fiemap(const IOCTLEntry
*ie
, uint8_t *buf_temp
,
3375 int fd
, int cmd
, abi_long arg
)
3377 /* The parameter for this ioctl is a struct fiemap followed
3378 * by an array of struct fiemap_extent whose size is set
3379 * in fiemap->fm_extent_count. The array is filled in by the
3382 int target_size_in
, target_size_out
;
3384 const argtype
*arg_type
= ie
->arg_type
;
3385 const argtype extent_arg_type
[] = { MK_STRUCT(STRUCT_fiemap_extent
) };
3388 int i
, extent_size
= thunk_type_size(extent_arg_type
, 0);
3392 assert(arg_type
[0] == TYPE_PTR
);
3393 assert(ie
->access
== IOC_RW
);
3395 target_size_in
= thunk_type_size(arg_type
, 0);
3396 argptr
= lock_user(VERIFY_READ
, arg
, target_size_in
, 1);
3398 return -TARGET_EFAULT
;
3400 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3401 unlock_user(argptr
, arg
, 0);
3402 fm
= (struct fiemap
*)buf_temp
;
3403 if (fm
->fm_extent_count
> FIEMAP_MAX_EXTENTS
) {
3404 return -TARGET_EINVAL
;
3407 outbufsz
= sizeof (*fm
) +
3408 (sizeof(struct fiemap_extent
) * fm
->fm_extent_count
);
3410 if (outbufsz
> MAX_STRUCT_SIZE
) {
3411 /* We can't fit all the extents into the fixed size buffer.
3412 * Allocate one that is large enough and use it instead.
3414 fm
= malloc(outbufsz
);
3416 return -TARGET_ENOMEM
;
3418 memcpy(fm
, buf_temp
, sizeof(struct fiemap
));
3421 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, fm
));
3422 if (!is_error(ret
)) {
3423 target_size_out
= target_size_in
;
3424 /* An extent_count of 0 means we were only counting the extents
3425 * so there are no structs to copy
3427 if (fm
->fm_extent_count
!= 0) {
3428 target_size_out
+= fm
->fm_mapped_extents
* extent_size
;
3430 argptr
= lock_user(VERIFY_WRITE
, arg
, target_size_out
, 0);
3432 ret
= -TARGET_EFAULT
;
3434 /* Convert the struct fiemap */
3435 thunk_convert(argptr
, fm
, arg_type
, THUNK_TARGET
);
3436 if (fm
->fm_extent_count
!= 0) {
3437 p
= argptr
+ target_size_in
;
3438 /* ...and then all the struct fiemap_extents */
3439 for (i
= 0; i
< fm
->fm_mapped_extents
; i
++) {
3440 thunk_convert(p
, &fm
->fm_extents
[i
], extent_arg_type
,
3445 unlock_user(argptr
, arg
, target_size_out
);
3455 static abi_long
do_ioctl_ifconf(const IOCTLEntry
*ie
, uint8_t *buf_temp
,
3456 int fd
, int cmd
, abi_long arg
)
3458 const argtype
*arg_type
= ie
->arg_type
;
3462 struct ifconf
*host_ifconf
;
3464 const argtype ifreq_arg_type
[] = { MK_STRUCT(STRUCT_sockaddr_ifreq
) };
3465 int target_ifreq_size
;
3470 abi_long target_ifc_buf
;
3474 assert(arg_type
[0] == TYPE_PTR
);
3475 assert(ie
->access
== IOC_RW
);
3478 target_size
= thunk_type_size(arg_type
, 0);
3480 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3482 return -TARGET_EFAULT
;
3483 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3484 unlock_user(argptr
, arg
, 0);
3486 host_ifconf
= (struct ifconf
*)(unsigned long)buf_temp
;
3487 target_ifc_len
= host_ifconf
->ifc_len
;
3488 target_ifc_buf
= (abi_long
)(unsigned long)host_ifconf
->ifc_buf
;
3490 target_ifreq_size
= thunk_type_size(ifreq_arg_type
, 0);
3491 nb_ifreq
= target_ifc_len
/ target_ifreq_size
;
3492 host_ifc_len
= nb_ifreq
* sizeof(struct ifreq
);
3494 outbufsz
= sizeof(*host_ifconf
) + host_ifc_len
;
3495 if (outbufsz
> MAX_STRUCT_SIZE
) {
3496 /* We can't fit all the extents into the fixed size buffer.
3497 * Allocate one that is large enough and use it instead.
3499 host_ifconf
= malloc(outbufsz
);
3501 return -TARGET_ENOMEM
;
3503 memcpy(host_ifconf
, buf_temp
, sizeof(*host_ifconf
));
3506 host_ifc_buf
= (char*)host_ifconf
+ sizeof(*host_ifconf
);
3508 host_ifconf
->ifc_len
= host_ifc_len
;
3509 host_ifconf
->ifc_buf
= host_ifc_buf
;
3511 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, host_ifconf
));
3512 if (!is_error(ret
)) {
3513 /* convert host ifc_len to target ifc_len */
3515 nb_ifreq
= host_ifconf
->ifc_len
/ sizeof(struct ifreq
);
3516 target_ifc_len
= nb_ifreq
* target_ifreq_size
;
3517 host_ifconf
->ifc_len
= target_ifc_len
;
3519 /* restore target ifc_buf */
3521 host_ifconf
->ifc_buf
= (char *)(unsigned long)target_ifc_buf
;
3523 /* copy struct ifconf to target user */
3525 argptr
= lock_user(VERIFY_WRITE
, arg
, target_size
, 0);
3527 return -TARGET_EFAULT
;
3528 thunk_convert(argptr
, host_ifconf
, arg_type
, THUNK_TARGET
);
3529 unlock_user(argptr
, arg
, target_size
);
3531 /* copy ifreq[] to target user */
3533 argptr
= lock_user(VERIFY_WRITE
, target_ifc_buf
, target_ifc_len
, 0);
3534 for (i
= 0; i
< nb_ifreq
; i
++) {
3535 thunk_convert(argptr
+ i
* target_ifreq_size
,
3536 host_ifc_buf
+ i
* sizeof(struct ifreq
),
3537 ifreq_arg_type
, THUNK_TARGET
);
3539 unlock_user(argptr
, target_ifc_buf
, target_ifc_len
);
3549 static abi_long
do_ioctl_dm(const IOCTLEntry
*ie
, uint8_t *buf_temp
, int fd
,
3550 int cmd
, abi_long arg
)
3553 struct dm_ioctl
*host_dm
;
3554 abi_long guest_data
;
3555 uint32_t guest_data_size
;
3557 const argtype
*arg_type
= ie
->arg_type
;
3559 void *big_buf
= NULL
;
3563 target_size
= thunk_type_size(arg_type
, 0);
3564 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3566 ret
= -TARGET_EFAULT
;
3569 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3570 unlock_user(argptr
, arg
, 0);
3572 /* buf_temp is too small, so fetch things into a bigger buffer */
3573 big_buf
= g_malloc0(((struct dm_ioctl
*)buf_temp
)->data_size
* 2);
3574 memcpy(big_buf
, buf_temp
, target_size
);
3578 guest_data
= arg
+ host_dm
->data_start
;
3579 if ((guest_data
- arg
) < 0) {
3583 guest_data_size
= host_dm
->data_size
- host_dm
->data_start
;
3584 host_data
= (char*)host_dm
+ host_dm
->data_start
;
3586 argptr
= lock_user(VERIFY_READ
, guest_data
, guest_data_size
, 1);
3587 switch (ie
->host_cmd
) {
3589 case DM_LIST_DEVICES
:
3592 case DM_DEV_SUSPEND
:
3595 case DM_TABLE_STATUS
:
3596 case DM_TABLE_CLEAR
:
3598 case DM_LIST_VERSIONS
:
3602 case DM_DEV_SET_GEOMETRY
:
3603 /* data contains only strings */
3604 memcpy(host_data
, argptr
, guest_data_size
);
3607 memcpy(host_data
, argptr
, guest_data_size
);
3608 *(uint64_t*)host_data
= tswap64(*(uint64_t*)argptr
);
3612 void *gspec
= argptr
;
3613 void *cur_data
= host_data
;
3614 const argtype arg_type
[] = { MK_STRUCT(STRUCT_dm_target_spec
) };
3615 int spec_size
= thunk_type_size(arg_type
, 0);
3618 for (i
= 0; i
< host_dm
->target_count
; i
++) {
3619 struct dm_target_spec
*spec
= cur_data
;
3623 thunk_convert(spec
, gspec
, arg_type
, THUNK_HOST
);
3624 slen
= strlen((char*)gspec
+ spec_size
) + 1;
3626 spec
->next
= sizeof(*spec
) + slen
;
3627 strcpy((char*)&spec
[1], gspec
+ spec_size
);
3629 cur_data
+= spec
->next
;
3634 ret
= -TARGET_EINVAL
;
3635 unlock_user(argptr
, guest_data
, 0);
3638 unlock_user(argptr
, guest_data
, 0);
3640 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, buf_temp
));
3641 if (!is_error(ret
)) {
3642 guest_data
= arg
+ host_dm
->data_start
;
3643 guest_data_size
= host_dm
->data_size
- host_dm
->data_start
;
3644 argptr
= lock_user(VERIFY_WRITE
, guest_data
, guest_data_size
, 0);
3645 switch (ie
->host_cmd
) {
3650 case DM_DEV_SUSPEND
:
3653 case DM_TABLE_CLEAR
:
3655 case DM_DEV_SET_GEOMETRY
:
3656 /* no return data */
3658 case DM_LIST_DEVICES
:
3660 struct dm_name_list
*nl
= (void*)host_dm
+ host_dm
->data_start
;
3661 uint32_t remaining_data
= guest_data_size
;
3662 void *cur_data
= argptr
;
3663 const argtype arg_type
[] = { MK_STRUCT(STRUCT_dm_name_list
) };
3664 int nl_size
= 12; /* can't use thunk_size due to alignment */
3667 uint32_t next
= nl
->next
;
3669 nl
->next
= nl_size
+ (strlen(nl
->name
) + 1);
3671 if (remaining_data
< nl
->next
) {
3672 host_dm
->flags
|= DM_BUFFER_FULL_FLAG
;
3675 thunk_convert(cur_data
, nl
, arg_type
, THUNK_TARGET
);
3676 strcpy(cur_data
+ nl_size
, nl
->name
);
3677 cur_data
+= nl
->next
;
3678 remaining_data
-= nl
->next
;
3682 nl
= (void*)nl
+ next
;
3687 case DM_TABLE_STATUS
:
3689 struct dm_target_spec
*spec
= (void*)host_dm
+ host_dm
->data_start
;
3690 void *cur_data
= argptr
;
3691 const argtype arg_type
[] = { MK_STRUCT(STRUCT_dm_target_spec
) };
3692 int spec_size
= thunk_type_size(arg_type
, 0);
3695 for (i
= 0; i
< host_dm
->target_count
; i
++) {
3696 uint32_t next
= spec
->next
;
3697 int slen
= strlen((char*)&spec
[1]) + 1;
3698 spec
->next
= (cur_data
- argptr
) + spec_size
+ slen
;
3699 if (guest_data_size
< spec
->next
) {
3700 host_dm
->flags
|= DM_BUFFER_FULL_FLAG
;
3703 thunk_convert(cur_data
, spec
, arg_type
, THUNK_TARGET
);
3704 strcpy(cur_data
+ spec_size
, (char*)&spec
[1]);
3705 cur_data
= argptr
+ spec
->next
;
3706 spec
= (void*)host_dm
+ host_dm
->data_start
+ next
;
3712 void *hdata
= (void*)host_dm
+ host_dm
->data_start
;
3713 int count
= *(uint32_t*)hdata
;
3714 uint64_t *hdev
= hdata
+ 8;
3715 uint64_t *gdev
= argptr
+ 8;
3718 *(uint32_t*)argptr
= tswap32(count
);
3719 for (i
= 0; i
< count
; i
++) {
3720 *gdev
= tswap64(*hdev
);
3726 case DM_LIST_VERSIONS
:
3728 struct dm_target_versions
*vers
= (void*)host_dm
+ host_dm
->data_start
;
3729 uint32_t remaining_data
= guest_data_size
;
3730 void *cur_data
= argptr
;
3731 const argtype arg_type
[] = { MK_STRUCT(STRUCT_dm_target_versions
) };
3732 int vers_size
= thunk_type_size(arg_type
, 0);
3735 uint32_t next
= vers
->next
;
3737 vers
->next
= vers_size
+ (strlen(vers
->name
) + 1);
3739 if (remaining_data
< vers
->next
) {
3740 host_dm
->flags
|= DM_BUFFER_FULL_FLAG
;
3743 thunk_convert(cur_data
, vers
, arg_type
, THUNK_TARGET
);
3744 strcpy(cur_data
+ vers_size
, vers
->name
);
3745 cur_data
+= vers
->next
;
3746 remaining_data
-= vers
->next
;
3750 vers
= (void*)vers
+ next
;
3755 unlock_user(argptr
, guest_data
, 0);
3756 ret
= -TARGET_EINVAL
;
3759 unlock_user(argptr
, guest_data
, guest_data_size
);
3761 argptr
= lock_user(VERIFY_WRITE
, arg
, target_size
, 0);
3763 ret
= -TARGET_EFAULT
;
3766 thunk_convert(argptr
, buf_temp
, arg_type
, THUNK_TARGET
);
3767 unlock_user(argptr
, arg
, target_size
);
3774 static abi_long
do_ioctl_blkpg(const IOCTLEntry
*ie
, uint8_t *buf_temp
, int fd
,
3775 int cmd
, abi_long arg
)
3779 const argtype
*arg_type
= ie
->arg_type
;
3780 const argtype part_arg_type
[] = { MK_STRUCT(STRUCT_blkpg_partition
) };
3783 struct blkpg_ioctl_arg
*host_blkpg
= (void*)buf_temp
;
3784 struct blkpg_partition host_part
;
3786 /* Read and convert blkpg */
3788 target_size
= thunk_type_size(arg_type
, 0);
3789 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3791 ret
= -TARGET_EFAULT
;
3794 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3795 unlock_user(argptr
, arg
, 0);
3797 switch (host_blkpg
->op
) {
3798 case BLKPG_ADD_PARTITION
:
3799 case BLKPG_DEL_PARTITION
:
3800 /* payload is struct blkpg_partition */
3803 /* Unknown opcode */
3804 ret
= -TARGET_EINVAL
;
3808 /* Read and convert blkpg->data */
3809 arg
= (abi_long
)(uintptr_t)host_blkpg
->data
;
3810 target_size
= thunk_type_size(part_arg_type
, 0);
3811 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3813 ret
= -TARGET_EFAULT
;
3816 thunk_convert(&host_part
, argptr
, part_arg_type
, THUNK_HOST
);
3817 unlock_user(argptr
, arg
, 0);
3819 /* Swizzle the data pointer to our local copy and call! */
3820 host_blkpg
->data
= &host_part
;
3821 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, host_blkpg
));
3827 static abi_long
do_ioctl_rt(const IOCTLEntry
*ie
, uint8_t *buf_temp
,
3828 int fd
, int cmd
, abi_long arg
)
3830 const argtype
*arg_type
= ie
->arg_type
;
3831 const StructEntry
*se
;
3832 const argtype
*field_types
;
3833 const int *dst_offsets
, *src_offsets
;
3836 abi_ulong
*target_rt_dev_ptr
;
3837 unsigned long *host_rt_dev_ptr
;
3841 assert(ie
->access
== IOC_W
);
3842 assert(*arg_type
== TYPE_PTR
);
3844 assert(*arg_type
== TYPE_STRUCT
);
3845 target_size
= thunk_type_size(arg_type
, 0);
3846 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3848 return -TARGET_EFAULT
;
3851 assert(*arg_type
== (int)STRUCT_rtentry
);
3852 se
= struct_entries
+ *arg_type
++;
3853 assert(se
->convert
[0] == NULL
);
3854 /* convert struct here to be able to catch rt_dev string */
3855 field_types
= se
->field_types
;
3856 dst_offsets
= se
->field_offsets
[THUNK_HOST
];
3857 src_offsets
= se
->field_offsets
[THUNK_TARGET
];
3858 for (i
= 0; i
< se
->nb_fields
; i
++) {
3859 if (dst_offsets
[i
] == offsetof(struct rtentry
, rt_dev
)) {
3860 assert(*field_types
== TYPE_PTRVOID
);
3861 target_rt_dev_ptr
= (abi_ulong
*)(argptr
+ src_offsets
[i
]);
3862 host_rt_dev_ptr
= (unsigned long *)(buf_temp
+ dst_offsets
[i
]);
3863 if (*target_rt_dev_ptr
!= 0) {
3864 *host_rt_dev_ptr
= (unsigned long)lock_user_string(
3865 tswapal(*target_rt_dev_ptr
));
3866 if (!*host_rt_dev_ptr
) {
3867 unlock_user(argptr
, arg
, 0);
3868 return -TARGET_EFAULT
;
3871 *host_rt_dev_ptr
= 0;
3876 field_types
= thunk_convert(buf_temp
+ dst_offsets
[i
],
3877 argptr
+ src_offsets
[i
],
3878 field_types
, THUNK_HOST
);
3880 unlock_user(argptr
, arg
, 0);
3882 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, buf_temp
));
3883 if (*host_rt_dev_ptr
!= 0) {
3884 unlock_user((void *)*host_rt_dev_ptr
,
3885 *target_rt_dev_ptr
, 0);
3890 static abi_long
do_ioctl_kdsigaccept(const IOCTLEntry
*ie
, uint8_t *buf_temp
,
3891 int fd
, int cmd
, abi_long arg
)
3893 int sig
= target_to_host_signal(arg
);
3894 return get_errno(ioctl(fd
, ie
->host_cmd
, sig
));
3897 static IOCTLEntry ioctl_entries
[] = {
3898 #define IOCTL(cmd, access, ...) \
3899 { TARGET_ ## cmd, cmd, #cmd, access, 0, { __VA_ARGS__ } },
3900 #define IOCTL_SPECIAL(cmd, access, dofn, ...) \
3901 { TARGET_ ## cmd, cmd, #cmd, access, dofn, { __VA_ARGS__ } },
3906 /* ??? Implement proper locking for ioctls. */
3907 /* do_ioctl() Must return target values and target errnos. */
3908 static abi_long
do_ioctl(int fd
, int cmd
, abi_long arg
)
3910 const IOCTLEntry
*ie
;
3911 const argtype
*arg_type
;
3913 uint8_t buf_temp
[MAX_STRUCT_SIZE
];
3919 if (ie
->target_cmd
== 0) {
3920 gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd
);
3921 return -TARGET_ENOSYS
;
3923 if (ie
->target_cmd
== cmd
)
3927 arg_type
= ie
->arg_type
;
3929 gemu_log("ioctl: cmd=0x%04lx (%s)\n", (long)cmd
, ie
->name
);
3932 return ie
->do_ioctl(ie
, buf_temp
, fd
, cmd
, arg
);
3935 switch(arg_type
[0]) {
3938 ret
= get_errno(ioctl(fd
, ie
->host_cmd
));
3942 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, arg
));
3946 target_size
= thunk_type_size(arg_type
, 0);
3947 switch(ie
->access
) {
3949 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, buf_temp
));
3950 if (!is_error(ret
)) {
3951 argptr
= lock_user(VERIFY_WRITE
, arg
, target_size
, 0);
3953 return -TARGET_EFAULT
;
3954 thunk_convert(argptr
, buf_temp
, arg_type
, THUNK_TARGET
);
3955 unlock_user(argptr
, arg
, target_size
);
3959 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3961 return -TARGET_EFAULT
;
3962 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3963 unlock_user(argptr
, arg
, 0);
3964 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, buf_temp
));
3968 argptr
= lock_user(VERIFY_READ
, arg
, target_size
, 1);
3970 return -TARGET_EFAULT
;
3971 thunk_convert(buf_temp
, argptr
, arg_type
, THUNK_HOST
);
3972 unlock_user(argptr
, arg
, 0);
3973 ret
= get_errno(ioctl(fd
, ie
->host_cmd
, buf_temp
));
3974 if (!is_error(ret
)) {
3975 argptr
= lock_user(VERIFY_WRITE
, arg
, target_size
, 0);
3977 return -TARGET_EFAULT
;
3978 thunk_convert(argptr
, buf_temp
, arg_type
, THUNK_TARGET
);
3979 unlock_user(argptr
, arg
, target_size
);
3985 gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
3986 (long)cmd
, arg_type
[0]);
3987 ret
= -TARGET_ENOSYS
;
3993 static const bitmask_transtbl iflag_tbl
[] = {
3994 { TARGET_IGNBRK
, TARGET_IGNBRK
, IGNBRK
, IGNBRK
},
3995 { TARGET_BRKINT
, TARGET_BRKINT
, BRKINT
, BRKINT
},
3996 { TARGET_IGNPAR
, TARGET_IGNPAR
, IGNPAR
, IGNPAR
},
3997 { TARGET_PARMRK
, TARGET_PARMRK
, PARMRK
, PARMRK
},
3998 { TARGET_INPCK
, TARGET_INPCK
, INPCK
, INPCK
},
3999 { TARGET_ISTRIP
, TARGET_ISTRIP
, ISTRIP
, ISTRIP
},
4000 { TARGET_INLCR
, TARGET_INLCR
, INLCR
, INLCR
},
4001 { TARGET_IGNCR
, TARGET_IGNCR
, IGNCR
, IGNCR
},
4002 { TARGET_ICRNL
, TARGET_ICRNL
, ICRNL
, ICRNL
},
4003 { TARGET_IUCLC
, TARGET_IUCLC
, IUCLC
, IUCLC
},
4004 { TARGET_IXON
, TARGET_IXON
, IXON
, IXON
},
4005 { TARGET_IXANY
, TARGET_IXANY
, IXANY
, IXANY
},
4006 { TARGET_IXOFF
, TARGET_IXOFF
, IXOFF
, IXOFF
},
4007 { TARGET_IMAXBEL
, TARGET_IMAXBEL
, IMAXBEL
, IMAXBEL
},
4011 static const bitmask_transtbl oflag_tbl
[] = {
4012 { TARGET_OPOST
, TARGET_OPOST
, OPOST
, OPOST
},
4013 { TARGET_OLCUC
, TARGET_OLCUC
, OLCUC
, OLCUC
},
4014 { TARGET_ONLCR
, TARGET_ONLCR
, ONLCR
, ONLCR
},
4015 { TARGET_OCRNL
, TARGET_OCRNL
, OCRNL
, OCRNL
},
4016 { TARGET_ONOCR
, TARGET_ONOCR
, ONOCR
, ONOCR
},
4017 { TARGET_ONLRET
, TARGET_ONLRET
, ONLRET
, ONLRET
},
4018 { TARGET_OFILL
, TARGET_OFILL
, OFILL
, OFILL
},
4019 { TARGET_OFDEL
, TARGET_OFDEL
, OFDEL
, OFDEL
},
4020 { TARGET_NLDLY
, TARGET_NL0
, NLDLY
, NL0
},
4021 { TARGET_NLDLY
, TARGET_NL1
, NLDLY
, NL1
},
4022 { TARGET_CRDLY
, TARGET_CR0
, CRDLY
, CR0
},
4023 { TARGET_CRDLY
, TARGET_CR1
, CRDLY
, CR1
},
4024 { TARGET_CRDLY
, TARGET_CR2
, CRDLY
, CR2
},
4025 { TARGET_CRDLY
, TARGET_CR3
, CRDLY
, CR3
},
4026 { TARGET_TABDLY
, TARGET_TAB0
, TABDLY
, TAB0
},
4027 { TARGET_TABDLY
, TARGET_TAB1
, TABDLY
, TAB1
},
4028 { TARGET_TABDLY
, TARGET_TAB2
, TABDLY
, TAB2
},
4029 { TARGET_TABDLY
, TARGET_TAB3
, TABDLY
, TAB3
},
4030 { TARGET_BSDLY
, TARGET_BS0
, BSDLY
, BS0
},
4031 { TARGET_BSDLY
, TARGET_BS1
, BSDLY
, BS1
},
4032 { TARGET_VTDLY
, TARGET_VT0
, VTDLY
, VT0
},
4033 { TARGET_VTDLY
, TARGET_VT1
, VTDLY
, VT1
},
4034 { TARGET_FFDLY
, TARGET_FF0
, FFDLY
, FF0
},
4035 { TARGET_FFDLY
, TARGET_FF1
, FFDLY
, FF1
},
4039 static const bitmask_transtbl cflag_tbl
[] = {
4040 { TARGET_CBAUD
, TARGET_B0
, CBAUD
, B0
},
4041 { TARGET_CBAUD
, TARGET_B50
, CBAUD
, B50
},
4042 { TARGET_CBAUD
, TARGET_B75
, CBAUD
, B75
},
4043 { TARGET_CBAUD
, TARGET_B110
, CBAUD
, B110
},
4044 { TARGET_CBAUD
, TARGET_B134
, CBAUD
, B134
},
4045 { TARGET_CBAUD
, TARGET_B150
, CBAUD
, B150
},
4046 { TARGET_CBAUD
, TARGET_B200
, CBAUD
, B200
},
4047 { TARGET_CBAUD
, TARGET_B300
, CBAUD
, B300
},
4048 { TARGET_CBAUD
, TARGET_B600
, CBAUD
, B600
},
4049 { TARGET_CBAUD
, TARGET_B1200
, CBAUD
, B1200
},
4050 { TARGET_CBAUD
, TARGET_B1800
, CBAUD
, B1800
},
4051 { TARGET_CBAUD
, TARGET_B2400
, CBAUD
, B2400
},
4052 { TARGET_CBAUD
, TARGET_B4800
, CBAUD
, B4800
},
4053 { TARGET_CBAUD
, TARGET_B9600
, CBAUD
, B9600
},
4054 { TARGET_CBAUD
, TARGET_B19200
, CBAUD
, B19200
},
4055 { TARGET_CBAUD
, TARGET_B38400
, CBAUD
, B38400
},
4056 { TARGET_CBAUD
, TARGET_B57600
, CBAUD
, B57600
},
4057 { TARGET_CBAUD
, TARGET_B115200
, CBAUD
, B115200
},
4058 { TARGET_CBAUD
, TARGET_B230400
, CBAUD
, B230400
},
4059 { TARGET_CBAUD
, TARGET_B460800
, CBAUD
, B460800
},
4060 { TARGET_CSIZE
, TARGET_CS5
, CSIZE
, CS5
},
4061 { TARGET_CSIZE
, TARGET_CS6
, CSIZE
, CS6
},
4062 { TARGET_CSIZE
, TARGET_CS7
, CSIZE
, CS7
},
4063 { TARGET_CSIZE
, TARGET_CS8
, CSIZE
, CS8
},
4064 { TARGET_CSTOPB
, TARGET_CSTOPB
, CSTOPB
, CSTOPB
},
4065 { TARGET_CREAD
, TARGET_CREAD
, CREAD
, CREAD
},
4066 { TARGET_PARENB
, TARGET_PARENB
, PARENB
, PARENB
},
4067 { TARGET_PARODD
, TARGET_PARODD
, PARODD
, PARODD
},
4068 { TARGET_HUPCL
, TARGET_HUPCL
, HUPCL
, HUPCL
},
4069 { TARGET_CLOCAL
, TARGET_CLOCAL
, CLOCAL
, CLOCAL
},
4070 { TARGET_CRTSCTS
, TARGET_CRTSCTS
, CRTSCTS
, CRTSCTS
},
4074 static const bitmask_transtbl lflag_tbl
[] = {
4075 { TARGET_ISIG
, TARGET_ISIG
, ISIG
, ISIG
},
4076 { TARGET_ICANON
, TARGET_ICANON
, ICANON
, ICANON
},
4077 { TARGET_XCASE
, TARGET_XCASE
, XCASE
, XCASE
},
4078 { TARGET_ECHO
, TARGET_ECHO
, ECHO
, ECHO
},
4079 { TARGET_ECHOE
, TARGET_ECHOE
, ECHOE
, ECHOE
},
4080 { TARGET_ECHOK
, TARGET_ECHOK
, ECHOK
, ECHOK
},
4081 { TARGET_ECHONL
, TARGET_ECHONL
, ECHONL
, ECHONL
},
4082 { TARGET_NOFLSH
, TARGET_NOFLSH
, NOFLSH
, NOFLSH
},
4083 { TARGET_TOSTOP
, TARGET_TOSTOP
, TOSTOP
, TOSTOP
},
4084 { TARGET_ECHOCTL
, TARGET_ECHOCTL
, ECHOCTL
, ECHOCTL
},
4085 { TARGET_ECHOPRT
, TARGET_ECHOPRT
, ECHOPRT
, ECHOPRT
},
4086 { TARGET_ECHOKE
, TARGET_ECHOKE
, ECHOKE
, ECHOKE
},
4087 { TARGET_FLUSHO
, TARGET_FLUSHO
, FLUSHO
, FLUSHO
},
4088 { TARGET_PENDIN
, TARGET_PENDIN
, PENDIN
, PENDIN
},
4089 { TARGET_IEXTEN
, TARGET_IEXTEN
, IEXTEN
, IEXTEN
},
4093 static void target_to_host_termios (void *dst
, const void *src
)
4095 struct host_termios
*host
= dst
;
4096 const struct target_termios
*target
= src
;
4099 target_to_host_bitmask(tswap32(target
->c_iflag
), iflag_tbl
);
4101 target_to_host_bitmask(tswap32(target
->c_oflag
), oflag_tbl
);
4103 target_to_host_bitmask(tswap32(target
->c_cflag
), cflag_tbl
);
4105 target_to_host_bitmask(tswap32(target
->c_lflag
), lflag_tbl
);
4106 host
->c_line
= target
->c_line
;
4108 memset(host
->c_cc
, 0, sizeof(host
->c_cc
));
4109 host
->c_cc
[VINTR
] = target
->c_cc
[TARGET_VINTR
];
4110 host
->c_cc
[VQUIT
] = target
->c_cc
[TARGET_VQUIT
];
4111 host
->c_cc
[VERASE
] = target
->c_cc
[TARGET_VERASE
];
4112 host
->c_cc
[VKILL
] = target
->c_cc
[TARGET_VKILL
];
4113 host
->c_cc
[VEOF
] = target
->c_cc
[TARGET_VEOF
];
4114 host
->c_cc
[VTIME
] = target
->c_cc
[TARGET_VTIME
];
4115 host
->c_cc
[VMIN
] = target
->c_cc
[TARGET_VMIN
];
4116 host
->c_cc
[VSWTC
] = target
->c_cc
[TARGET_VSWTC
];
4117 host
->c_cc
[VSTART
] = target
->c_cc
[TARGET_VSTART
];
4118 host
->c_cc
[VSTOP
] = target
->c_cc
[TARGET_VSTOP
];
4119 host
->c_cc
[VSUSP
] = target
->c_cc
[TARGET_VSUSP
];
4120 host
->c_cc
[VEOL
] = target
->c_cc
[TARGET_VEOL
];
4121 host
->c_cc
[VREPRINT
] = target
->c_cc
[TARGET_VREPRINT
];
4122 host
->c_cc
[VDISCARD
] = target
->c_cc
[TARGET_VDISCARD
];
4123 host
->c_cc
[VWERASE
] = target
->c_cc
[TARGET_VWERASE
];
4124 host
->c_cc
[VLNEXT
] = target
->c_cc
[TARGET_VLNEXT
];
4125 host
->c_cc
[VEOL2
] = target
->c_cc
[TARGET_VEOL2
];
4128 static void host_to_target_termios (void *dst
, const void *src
)
4130 struct target_termios
*target
= dst
;
4131 const struct host_termios
*host
= src
;
4134 tswap32(host_to_target_bitmask(host
->c_iflag
, iflag_tbl
));
4136 tswap32(host_to_target_bitmask(host
->c_oflag
, oflag_tbl
));
4138 tswap32(host_to_target_bitmask(host
->c_cflag
, cflag_tbl
));
4140 tswap32(host_to_target_bitmask(host
->c_lflag
, lflag_tbl
));
4141 target
->c_line
= host
->c_line
;
4143 memset(target
->c_cc
, 0, sizeof(target
->c_cc
));
4144 target
->c_cc
[TARGET_VINTR
] = host
->c_cc
[VINTR
];
4145 target
->c_cc
[TARGET_VQUIT
] = host
->c_cc
[VQUIT
];
4146 target
->c_cc
[TARGET_VERASE
] = host
->c_cc
[VERASE
];
4147 target
->c_cc
[TARGET_VKILL
] = host
->c_cc
[VKILL
];
4148 target
->c_cc
[TARGET_VEOF
] = host
->c_cc
[VEOF
];
4149 target
->c_cc
[TARGET_VTIME
] = host
->c_cc
[VTIME
];
4150 target
->c_cc
[TARGET_VMIN
] = host
->c_cc
[VMIN
];
4151 target
->c_cc
[TARGET_VSWTC
] = host
->c_cc
[VSWTC
];
4152 target
->c_cc
[TARGET_VSTART
] = host
->c_cc
[VSTART
];
4153 target
->c_cc
[TARGET_VSTOP
] = host
->c_cc
[VSTOP
];
4154 target
->c_cc
[TARGET_VSUSP
] = host
->c_cc
[VSUSP
];
4155 target
->c_cc
[TARGET_VEOL
] = host
->c_cc
[VEOL
];
4156 target
->c_cc
[TARGET_VREPRINT
] = host
->c_cc
[VREPRINT
];
4157 target
->c_cc
[TARGET_VDISCARD
] = host
->c_cc
[VDISCARD
];
4158 target
->c_cc
[TARGET_VWERASE
] = host
->c_cc
[VWERASE
];
4159 target
->c_cc
[TARGET_VLNEXT
] = host
->c_cc
[VLNEXT
];
4160 target
->c_cc
[TARGET_VEOL2
] = host
->c_cc
[VEOL2
];
4163 static const StructEntry struct_termios_def
= {
4164 .convert
= { host_to_target_termios
, target_to_host_termios
},
4165 .size
= { sizeof(struct target_termios
), sizeof(struct host_termios
) },
4166 .align
= { __alignof__(struct target_termios
), __alignof__(struct host_termios
) },
4169 static bitmask_transtbl mmap_flags_tbl
[] = {
4170 { TARGET_MAP_SHARED
, TARGET_MAP_SHARED
, MAP_SHARED
, MAP_SHARED
},
4171 { TARGET_MAP_PRIVATE
, TARGET_MAP_PRIVATE
, MAP_PRIVATE
, MAP_PRIVATE
},
4172 { TARGET_MAP_FIXED
, TARGET_MAP_FIXED
, MAP_FIXED
, MAP_FIXED
},
4173 { TARGET_MAP_ANONYMOUS
, TARGET_MAP_ANONYMOUS
, MAP_ANONYMOUS
, MAP_ANONYMOUS
},
4174 { TARGET_MAP_GROWSDOWN
, TARGET_MAP_GROWSDOWN
, MAP_GROWSDOWN
, MAP_GROWSDOWN
},
4175 { TARGET_MAP_DENYWRITE
, TARGET_MAP_DENYWRITE
, MAP_DENYWRITE
, MAP_DENYWRITE
},
4176 { TARGET_MAP_EXECUTABLE
, TARGET_MAP_EXECUTABLE
, MAP_EXECUTABLE
, MAP_EXECUTABLE
},
4177 { TARGET_MAP_LOCKED
, TARGET_MAP_LOCKED
, MAP_LOCKED
, MAP_LOCKED
},
4178 { TARGET_MAP_NORESERVE
, TARGET_MAP_NORESERVE
, MAP_NORESERVE
,
4183 #if defined(TARGET_I386)
4185 /* NOTE: there is really one LDT for all the threads */
4186 static uint8_t *ldt_table
;
4188 static abi_long
read_ldt(abi_ulong ptr
, unsigned long bytecount
)
4195 size
= TARGET_LDT_ENTRIES
* TARGET_LDT_ENTRY_SIZE
;
4196 if (size
> bytecount
)
4198 p
= lock_user(VERIFY_WRITE
, ptr
, size
, 0);
4200 return -TARGET_EFAULT
;
4201 /* ??? Should this by byteswapped? */
4202 memcpy(p
, ldt_table
, size
);
4203 unlock_user(p
, ptr
, size
);
4207 /* XXX: add locking support */
4208 static abi_long
write_ldt(CPUX86State
*env
,
4209 abi_ulong ptr
, unsigned long bytecount
, int oldmode
)
4211 struct target_modify_ldt_ldt_s ldt_info
;
4212 struct target_modify_ldt_ldt_s
*target_ldt_info
;
4213 int seg_32bit
, contents
, read_exec_only
, limit_in_pages
;
4214 int seg_not_present
, useable
, lm
;
4215 uint32_t *lp
, entry_1
, entry_2
;
4217 if (bytecount
!= sizeof(ldt_info
))
4218 return -TARGET_EINVAL
;
4219 if (!lock_user_struct(VERIFY_READ
, target_ldt_info
, ptr
, 1))
4220 return -TARGET_EFAULT
;
4221 ldt_info
.entry_number
= tswap32(target_ldt_info
->entry_number
);
4222 ldt_info
.base_addr
= tswapal(target_ldt_info
->base_addr
);
4223 ldt_info
.limit
= tswap32(target_ldt_info
->limit
);
4224 ldt_info
.flags
= tswap32(target_ldt_info
->flags
);
4225 unlock_user_struct(target_ldt_info
, ptr
, 0);
4227 if (ldt_info
.entry_number
>= TARGET_LDT_ENTRIES
)
4228 return -TARGET_EINVAL
;
4229 seg_32bit
= ldt_info
.flags
& 1;
4230 contents
= (ldt_info
.flags
>> 1) & 3;
4231 read_exec_only
= (ldt_info
.flags
>> 3) & 1;
4232 limit_in_pages
= (ldt_info
.flags
>> 4) & 1;
4233 seg_not_present
= (ldt_info
.flags
>> 5) & 1;
4234 useable
= (ldt_info
.flags
>> 6) & 1;
4238 lm
= (ldt_info
.flags
>> 7) & 1;
4240 if (contents
== 3) {
4242 return -TARGET_EINVAL
;
4243 if (seg_not_present
== 0)
4244 return -TARGET_EINVAL
;
4246 /* allocate the LDT */
4248 env
->ldt
.base
= target_mmap(0,
4249 TARGET_LDT_ENTRIES
* TARGET_LDT_ENTRY_SIZE
,
4250 PROT_READ
|PROT_WRITE
,
4251 MAP_ANONYMOUS
|MAP_PRIVATE
, -1, 0);
4252 if (env
->ldt
.base
== -1)
4253 return -TARGET_ENOMEM
;
4254 memset(g2h(env
->ldt
.base
), 0,
4255 TARGET_LDT_ENTRIES
* TARGET_LDT_ENTRY_SIZE
);
4256 env
->ldt
.limit
= 0xffff;
4257 ldt_table
= g2h(env
->ldt
.base
);
4260 /* NOTE: same code as Linux kernel */
4261 /* Allow LDTs to be cleared by the user. */
4262 if (ldt_info
.base_addr
== 0 && ldt_info
.limit
== 0) {
4265 read_exec_only
== 1 &&
4267 limit_in_pages
== 0 &&
4268 seg_not_present
== 1 &&
4276 entry_1
= ((ldt_info
.base_addr
& 0x0000ffff) << 16) |
4277 (ldt_info
.limit
& 0x0ffff);
4278 entry_2
= (ldt_info
.base_addr
& 0xff000000) |
4279 ((ldt_info
.base_addr
& 0x00ff0000) >> 16) |
4280 (ldt_info
.limit
& 0xf0000) |
4281 ((read_exec_only
^ 1) << 9) |
4283 ((seg_not_present
^ 1) << 15) |
4285 (limit_in_pages
<< 23) |
4289 entry_2
|= (useable
<< 20);
4291 /* Install the new entry ... */
4293 lp
= (uint32_t *)(ldt_table
+ (ldt_info
.entry_number
<< 3));
4294 lp
[0] = tswap32(entry_1
);
4295 lp
[1] = tswap32(entry_2
);
4299 /* specific and weird i386 syscalls */
4300 static abi_long
do_modify_ldt(CPUX86State
*env
, int func
, abi_ulong ptr
,
4301 unsigned long bytecount
)
4307 ret
= read_ldt(ptr
, bytecount
);
4310 ret
= write_ldt(env
, ptr
, bytecount
, 1);
4313 ret
= write_ldt(env
, ptr
, bytecount
, 0);
4316 ret
= -TARGET_ENOSYS
;
4322 #if defined(TARGET_I386) && defined(TARGET_ABI32)
4323 abi_long
do_set_thread_area(CPUX86State
*env
, abi_ulong ptr
)
4325 uint64_t *gdt_table
= g2h(env
->gdt
.base
);
4326 struct target_modify_ldt_ldt_s ldt_info
;
4327 struct target_modify_ldt_ldt_s
*target_ldt_info
;
4328 int seg_32bit
, contents
, read_exec_only
, limit_in_pages
;
4329 int seg_not_present
, useable
, lm
;
4330 uint32_t *lp
, entry_1
, entry_2
;
4333 lock_user_struct(VERIFY_WRITE
, target_ldt_info
, ptr
, 1);
4334 if (!target_ldt_info
)
4335 return -TARGET_EFAULT
;
4336 ldt_info
.entry_number
= tswap32(target_ldt_info
->entry_number
);
4337 ldt_info
.base_addr
= tswapal(target_ldt_info
->base_addr
);
4338 ldt_info
.limit
= tswap32(target_ldt_info
->limit
);
4339 ldt_info
.flags
= tswap32(target_ldt_info
->flags
);
4340 if (ldt_info
.entry_number
== -1) {
4341 for (i
=TARGET_GDT_ENTRY_TLS_MIN
; i
<=TARGET_GDT_ENTRY_TLS_MAX
; i
++) {
4342 if (gdt_table
[i
] == 0) {
4343 ldt_info
.entry_number
= i
;
4344 target_ldt_info
->entry_number
= tswap32(i
);
4349 unlock_user_struct(target_ldt_info
, ptr
, 1);
4351 if (ldt_info
.entry_number
< TARGET_GDT_ENTRY_TLS_MIN
||
4352 ldt_info
.entry_number
> TARGET_GDT_ENTRY_TLS_MAX
)
4353 return -TARGET_EINVAL
;
4354 seg_32bit
= ldt_info
.flags
& 1;
4355 contents
= (ldt_info
.flags
>> 1) & 3;
4356 read_exec_only
= (ldt_info
.flags
>> 3) & 1;
4357 limit_in_pages
= (ldt_info
.flags
>> 4) & 1;
4358 seg_not_present
= (ldt_info
.flags
>> 5) & 1;
4359 useable
= (ldt_info
.flags
>> 6) & 1;
4363 lm
= (ldt_info
.flags
>> 7) & 1;
4366 if (contents
== 3) {
4367 if (seg_not_present
== 0)
4368 return -TARGET_EINVAL
;
4371 /* NOTE: same code as Linux kernel */
4372 /* Allow LDTs to be cleared by the user. */
4373 if (ldt_info
.base_addr
== 0 && ldt_info
.limit
== 0) {
4374 if ((contents
== 0 &&
4375 read_exec_only
== 1 &&
4377 limit_in_pages
== 0 &&
4378 seg_not_present
== 1 &&
4386 entry_1
= ((ldt_info
.base_addr
& 0x0000ffff) << 16) |
4387 (ldt_info
.limit
& 0x0ffff);
4388 entry_2
= (ldt_info
.base_addr
& 0xff000000) |
4389 ((ldt_info
.base_addr
& 0x00ff0000) >> 16) |
4390 (ldt_info
.limit
& 0xf0000) |
4391 ((read_exec_only
^ 1) << 9) |
4393 ((seg_not_present
^ 1) << 15) |
4395 (limit_in_pages
<< 23) |
4400 /* Install the new entry ... */
4402 lp
= (uint32_t *)(gdt_table
+ ldt_info
.entry_number
);
4403 lp
[0] = tswap32(entry_1
);
4404 lp
[1] = tswap32(entry_2
);
4408 static abi_long
do_get_thread_area(CPUX86State
*env
, abi_ulong ptr
)
4410 struct target_modify_ldt_ldt_s
*target_ldt_info
;
4411 uint64_t *gdt_table
= g2h(env
->gdt
.base
);
4412 uint32_t base_addr
, limit
, flags
;
4413 int seg_32bit
, contents
, read_exec_only
, limit_in_pages
, idx
;
4414 int seg_not_present
, useable
, lm
;
4415 uint32_t *lp
, entry_1
, entry_2
;
4417 lock_user_struct(VERIFY_WRITE
, target_ldt_info
, ptr
, 1);
4418 if (!target_ldt_info
)
4419 return -TARGET_EFAULT
;
4420 idx
= tswap32(target_ldt_info
->entry_number
);
4421 if (idx
< TARGET_GDT_ENTRY_TLS_MIN
||
4422 idx
> TARGET_GDT_ENTRY_TLS_MAX
) {
4423 unlock_user_struct(target_ldt_info
, ptr
, 1);
4424 return -TARGET_EINVAL
;
4426 lp
= (uint32_t *)(gdt_table
+ idx
);
4427 entry_1
= tswap32(lp
[0]);
4428 entry_2
= tswap32(lp
[1]);
4430 read_exec_only
= ((entry_2
>> 9) & 1) ^ 1;
4431 contents
= (entry_2
>> 10) & 3;
4432 seg_not_present
= ((entry_2
>> 15) & 1) ^ 1;
4433 seg_32bit
= (entry_2
>> 22) & 1;
4434 limit_in_pages
= (entry_2
>> 23) & 1;
4435 useable
= (entry_2
>> 20) & 1;
4439 lm
= (entry_2
>> 21) & 1;
4441 flags
= (seg_32bit
<< 0) | (contents
<< 1) |
4442 (read_exec_only
<< 3) | (limit_in_pages
<< 4) |
4443 (seg_not_present
<< 5) | (useable
<< 6) | (lm
<< 7);
4444 limit
= (entry_1
& 0xffff) | (entry_2
& 0xf0000);
4445 base_addr
= (entry_1
>> 16) |
4446 (entry_2
& 0xff000000) |
4447 ((entry_2
& 0xff) << 16);
4448 target_ldt_info
->base_addr
= tswapal(base_addr
);
4449 target_ldt_info
->limit
= tswap32(limit
);
4450 target_ldt_info
->flags
= tswap32(flags
);
4451 unlock_user_struct(target_ldt_info
, ptr
, 1);
4454 #endif /* TARGET_I386 && TARGET_ABI32 */
4456 #ifndef TARGET_ABI32
4457 abi_long
do_arch_prctl(CPUX86State
*env
, int code
, abi_ulong addr
)
4464 case TARGET_ARCH_SET_GS
:
4465 case TARGET_ARCH_SET_FS
:
4466 if (code
== TARGET_ARCH_SET_GS
)
4470 cpu_x86_load_seg(env
, idx
, 0);
4471 env
->segs
[idx
].base
= addr
;
4473 case TARGET_ARCH_GET_GS
:
4474 case TARGET_ARCH_GET_FS
:
4475 if (code
== TARGET_ARCH_GET_GS
)
4479 val
= env
->segs
[idx
].base
;
4480 if (put_user(val
, addr
, abi_ulong
))
4481 ret
= -TARGET_EFAULT
;
4484 ret
= -TARGET_EINVAL
;
4491 #endif /* defined(TARGET_I386) */
4493 #define NEW_STACK_SIZE 0x40000
4496 static pthread_mutex_t clone_lock
= PTHREAD_MUTEX_INITIALIZER
;
4499 pthread_mutex_t mutex
;
4500 pthread_cond_t cond
;
4503 abi_ulong child_tidptr
;
4504 abi_ulong parent_tidptr
;
4508 static void *clone_func(void *arg
)
4510 new_thread_info
*info
= arg
;
4515 rcu_register_thread();
4517 cpu
= ENV_GET_CPU(env
);
4519 ts
= (TaskState
*)cpu
->opaque
;
4520 info
->tid
= gettid();
4521 cpu
->host_tid
= info
->tid
;
4523 if (info
->child_tidptr
)
4524 put_user_u32(info
->tid
, info
->child_tidptr
);
4525 if (info
->parent_tidptr
)
4526 put_user_u32(info
->tid
, info
->parent_tidptr
);
4527 /* Enable signals. */
4528 sigprocmask(SIG_SETMASK
, &info
->sigmask
, NULL
);
4529 /* Signal to the parent that we're ready. */
4530 pthread_mutex_lock(&info
->mutex
);
4531 pthread_cond_broadcast(&info
->cond
);
4532 pthread_mutex_unlock(&info
->mutex
);
4533 /* Wait until the parent has finshed initializing the tls state. */
4534 pthread_mutex_lock(&clone_lock
);
4535 pthread_mutex_unlock(&clone_lock
);
4541 /* do_fork() Must return host values and target errnos (unlike most
4542 do_*() functions). */
4543 static int do_fork(CPUArchState
*env
, unsigned int flags
, abi_ulong newsp
,
4544 abi_ulong parent_tidptr
, target_ulong newtls
,
4545 abi_ulong child_tidptr
)
4547 CPUState
*cpu
= ENV_GET_CPU(env
);
4551 CPUArchState
*new_env
;
4552 unsigned int nptl_flags
;
4555 /* Emulate vfork() with fork() */
4556 if (flags
& CLONE_VFORK
)
4557 flags
&= ~(CLONE_VFORK
| CLONE_VM
);
4559 if (flags
& CLONE_VM
) {
4560 TaskState
*parent_ts
= (TaskState
*)cpu
->opaque
;
4561 new_thread_info info
;
4562 pthread_attr_t attr
;
4564 ts
= g_malloc0(sizeof(TaskState
));
4565 init_task_state(ts
);
4566 /* we create a new CPU instance. */
4567 new_env
= cpu_copy(env
);
4568 /* Init regs that differ from the parent. */
4569 cpu_clone_regs(new_env
, newsp
);
4570 new_cpu
= ENV_GET_CPU(new_env
);
4571 new_cpu
->opaque
= ts
;
4572 ts
->bprm
= parent_ts
->bprm
;
4573 ts
->info
= parent_ts
->info
;
4575 flags
&= ~CLONE_NPTL_FLAGS2
;
4577 if (nptl_flags
& CLONE_CHILD_CLEARTID
) {
4578 ts
->child_tidptr
= child_tidptr
;
4581 if (nptl_flags
& CLONE_SETTLS
)
4582 cpu_set_tls (new_env
, newtls
);
4584 /* Grab a mutex so that thread setup appears atomic. */
4585 pthread_mutex_lock(&clone_lock
);
4587 memset(&info
, 0, sizeof(info
));
4588 pthread_mutex_init(&info
.mutex
, NULL
);
4589 pthread_mutex_lock(&info
.mutex
);
4590 pthread_cond_init(&info
.cond
, NULL
);
4592 if (nptl_flags
& CLONE_CHILD_SETTID
)
4593 info
.child_tidptr
= child_tidptr
;
4594 if (nptl_flags
& CLONE_PARENT_SETTID
)
4595 info
.parent_tidptr
= parent_tidptr
;
4597 ret
= pthread_attr_init(&attr
);
4598 ret
= pthread_attr_setstacksize(&attr
, NEW_STACK_SIZE
);
4599 ret
= pthread_attr_setdetachstate(&attr
, PTHREAD_CREATE_DETACHED
);
4600 /* It is not safe to deliver signals until the child has finished
4601 initializing, so temporarily block all signals. */
4602 sigfillset(&sigmask
);
4603 sigprocmask(SIG_BLOCK
, &sigmask
, &info
.sigmask
);
4605 ret
= pthread_create(&info
.thread
, &attr
, clone_func
, &info
);
4606 /* TODO: Free new CPU state if thread creation failed. */
4608 sigprocmask(SIG_SETMASK
, &info
.sigmask
, NULL
);
4609 pthread_attr_destroy(&attr
);
4611 /* Wait for the child to initialize. */
4612 pthread_cond_wait(&info
.cond
, &info
.mutex
);
4614 if (flags
& CLONE_PARENT_SETTID
)
4615 put_user_u32(ret
, parent_tidptr
);
4619 pthread_mutex_unlock(&info
.mutex
);
4620 pthread_cond_destroy(&info
.cond
);
4621 pthread_mutex_destroy(&info
.mutex
);
4622 pthread_mutex_unlock(&clone_lock
);
4624 /* if no CLONE_VM, we consider it is a fork */
4625 if ((flags
& ~(CSIGNAL
| CLONE_NPTL_FLAGS2
)) != 0)
4630 /* Child Process. */
4632 cpu_clone_regs(env
, newsp
);
4634 /* There is a race condition here. The parent process could
4635 theoretically read the TID in the child process before the child
4636 tid is set. This would require using either ptrace
4637 (not implemented) or having *_tidptr to point at a shared memory
4638 mapping. We can't repeat the spinlock hack used above because
4639 the child process gets its own copy of the lock. */
4640 if (flags
& CLONE_CHILD_SETTID
)
4641 put_user_u32(gettid(), child_tidptr
);
4642 if (flags
& CLONE_PARENT_SETTID
)
4643 put_user_u32(gettid(), parent_tidptr
);
4644 ts
= (TaskState
*)cpu
->opaque
;
4645 if (flags
& CLONE_SETTLS
)
4646 cpu_set_tls (env
, newtls
);
4647 if (flags
& CLONE_CHILD_CLEARTID
)
4648 ts
->child_tidptr
= child_tidptr
;
4656 /* warning : doesn't handle linux specific flags... */
4657 static int target_to_host_fcntl_cmd(int cmd
)
4660 case TARGET_F_DUPFD
:
4661 case TARGET_F_GETFD
:
4662 case TARGET_F_SETFD
:
4663 case TARGET_F_GETFL
:
4664 case TARGET_F_SETFL
:
4666 case TARGET_F_GETLK
:
4668 case TARGET_F_SETLK
:
4670 case TARGET_F_SETLKW
:
4672 case TARGET_F_GETOWN
:
4674 case TARGET_F_SETOWN
:
4676 case TARGET_F_GETSIG
:
4678 case TARGET_F_SETSIG
:
4680 #if TARGET_ABI_BITS == 32
4681 case TARGET_F_GETLK64
:
4683 case TARGET_F_SETLK64
:
4685 case TARGET_F_SETLKW64
:
4688 case TARGET_F_SETLEASE
:
4690 case TARGET_F_GETLEASE
:
4692 #ifdef F_DUPFD_CLOEXEC
4693 case TARGET_F_DUPFD_CLOEXEC
:
4694 return F_DUPFD_CLOEXEC
;
4696 case TARGET_F_NOTIFY
:
4699 case TARGET_F_GETOWN_EX
:
4703 case TARGET_F_SETOWN_EX
:
4707 return -TARGET_EINVAL
;
4709 return -TARGET_EINVAL
;
4712 #define TRANSTBL_CONVERT(a) { -1, TARGET_##a, -1, a }
4713 static const bitmask_transtbl flock_tbl
[] = {
4714 TRANSTBL_CONVERT(F_RDLCK
),
4715 TRANSTBL_CONVERT(F_WRLCK
),
4716 TRANSTBL_CONVERT(F_UNLCK
),
4717 TRANSTBL_CONVERT(F_EXLCK
),
4718 TRANSTBL_CONVERT(F_SHLCK
),
4722 static abi_long
do_fcntl(int fd
, int cmd
, abi_ulong arg
)
4725 struct target_flock
*target_fl
;
4726 struct flock64 fl64
;
4727 struct target_flock64
*target_fl64
;
4729 struct f_owner_ex fox
;
4730 struct target_f_owner_ex
*target_fox
;
4733 int host_cmd
= target_to_host_fcntl_cmd(cmd
);
4735 if (host_cmd
== -TARGET_EINVAL
)
4739 case TARGET_F_GETLK
:
4740 if (!lock_user_struct(VERIFY_READ
, target_fl
, arg
, 1))
4741 return -TARGET_EFAULT
;
4743 target_to_host_bitmask(tswap16(target_fl
->l_type
), flock_tbl
);
4744 fl
.l_whence
= tswap16(target_fl
->l_whence
);
4745 fl
.l_start
= tswapal(target_fl
->l_start
);
4746 fl
.l_len
= tswapal(target_fl
->l_len
);
4747 fl
.l_pid
= tswap32(target_fl
->l_pid
);
4748 unlock_user_struct(target_fl
, arg
, 0);
4749 ret
= get_errno(fcntl(fd
, host_cmd
, &fl
));
4751 if (!lock_user_struct(VERIFY_WRITE
, target_fl
, arg
, 0))
4752 return -TARGET_EFAULT
;
4754 host_to_target_bitmask(tswap16(fl
.l_type
), flock_tbl
);
4755 target_fl
->l_whence
= tswap16(fl
.l_whence
);
4756 target_fl
->l_start
= tswapal(fl
.l_start
);
4757 target_fl
->l_len
= tswapal(fl
.l_len
);
4758 target_fl
->l_pid
= tswap32(fl
.l_pid
);
4759 unlock_user_struct(target_fl
, arg
, 1);
4763 case TARGET_F_SETLK
:
4764 case TARGET_F_SETLKW
:
4765 if (!lock_user_struct(VERIFY_READ
, target_fl
, arg
, 1))
4766 return -TARGET_EFAULT
;
4768 target_to_host_bitmask(tswap16(target_fl
->l_type
), flock_tbl
);
4769 fl
.l_whence
= tswap16(target_fl
->l_whence
);
4770 fl
.l_start
= tswapal(target_fl
->l_start
);
4771 fl
.l_len
= tswapal(target_fl
->l_len
);
4772 fl
.l_pid
= tswap32(target_fl
->l_pid
);
4773 unlock_user_struct(target_fl
, arg
, 0);
4774 ret
= get_errno(fcntl(fd
, host_cmd
, &fl
));
4777 case TARGET_F_GETLK64
:
4778 if (!lock_user_struct(VERIFY_READ
, target_fl64
, arg
, 1))
4779 return -TARGET_EFAULT
;
4781 target_to_host_bitmask(tswap16(target_fl64
->l_type
), flock_tbl
) >> 1;
4782 fl64
.l_whence
= tswap16(target_fl64
->l_whence
);
4783 fl64
.l_start
= tswap64(target_fl64
->l_start
);
4784 fl64
.l_len
= tswap64(target_fl64
->l_len
);
4785 fl64
.l_pid
= tswap32(target_fl64
->l_pid
);
4786 unlock_user_struct(target_fl64
, arg
, 0);
4787 ret
= get_errno(fcntl(fd
, host_cmd
, &fl64
));
4789 if (!lock_user_struct(VERIFY_WRITE
, target_fl64
, arg
, 0))
4790 return -TARGET_EFAULT
;
4791 target_fl64
->l_type
=
4792 host_to_target_bitmask(tswap16(fl64
.l_type
), flock_tbl
) >> 1;
4793 target_fl64
->l_whence
= tswap16(fl64
.l_whence
);
4794 target_fl64
->l_start
= tswap64(fl64
.l_start
);
4795 target_fl64
->l_len
= tswap64(fl64
.l_len
);
4796 target_fl64
->l_pid
= tswap32(fl64
.l_pid
);
4797 unlock_user_struct(target_fl64
, arg
, 1);
4800 case TARGET_F_SETLK64
:
4801 case TARGET_F_SETLKW64
:
4802 if (!lock_user_struct(VERIFY_READ
, target_fl64
, arg
, 1))
4803 return -TARGET_EFAULT
;
4805 target_to_host_bitmask(tswap16(target_fl64
->l_type
), flock_tbl
) >> 1;
4806 fl64
.l_whence
= tswap16(target_fl64
->l_whence
);
4807 fl64
.l_start
= tswap64(target_fl64
->l_start
);
4808 fl64
.l_len
= tswap64(target_fl64
->l_len
);
4809 fl64
.l_pid
= tswap32(target_fl64
->l_pid
);
4810 unlock_user_struct(target_fl64
, arg
, 0);
4811 ret
= get_errno(fcntl(fd
, host_cmd
, &fl64
));
4814 case TARGET_F_GETFL
:
4815 ret
= get_errno(fcntl(fd
, host_cmd
, arg
));
4817 ret
= host_to_target_bitmask(ret
, fcntl_flags_tbl
);
4821 case TARGET_F_SETFL
:
4822 ret
= get_errno(fcntl(fd
, host_cmd
, target_to_host_bitmask(arg
, fcntl_flags_tbl
)));
4826 case TARGET_F_GETOWN_EX
:
4827 ret
= get_errno(fcntl(fd
, host_cmd
, &fox
));
4829 if (!lock_user_struct(VERIFY_WRITE
, target_fox
, arg
, 0))
4830 return -TARGET_EFAULT
;
4831 target_fox
->type
= tswap32(fox
.type
);
4832 target_fox
->pid
= tswap32(fox
.pid
);
4833 unlock_user_struct(target_fox
, arg
, 1);
4839 case TARGET_F_SETOWN_EX
:
4840 if (!lock_user_struct(VERIFY_READ
, target_fox
, arg
, 1))
4841 return -TARGET_EFAULT
;
4842 fox
.type
= tswap32(target_fox
->type
);
4843 fox
.pid
= tswap32(target_fox
->pid
);
4844 unlock_user_struct(target_fox
, arg
, 0);
4845 ret
= get_errno(fcntl(fd
, host_cmd
, &fox
));
4849 case TARGET_F_SETOWN
:
4850 case TARGET_F_GETOWN
:
4851 case TARGET_F_SETSIG
:
4852 case TARGET_F_GETSIG
:
4853 case TARGET_F_SETLEASE
:
4854 case TARGET_F_GETLEASE
:
4855 ret
= get_errno(fcntl(fd
, host_cmd
, arg
));
4859 ret
= get_errno(fcntl(fd
, cmd
, arg
));
4867 static inline int high2lowuid(int uid
)
4875 static inline int high2lowgid(int gid
)
4883 static inline int low2highuid(int uid
)
4885 if ((int16_t)uid
== -1)
4891 static inline int low2highgid(int gid
)
4893 if ((int16_t)gid
== -1)
4898 static inline int tswapid(int id
)
4903 #define put_user_id(x, gaddr) put_user_u16(x, gaddr)
4905 #else /* !USE_UID16 */
4906 static inline int high2lowuid(int uid
)
4910 static inline int high2lowgid(int gid
)
4914 static inline int low2highuid(int uid
)
4918 static inline int low2highgid(int gid
)
4922 static inline int tswapid(int id
)
4927 #define put_user_id(x, gaddr) put_user_u32(x, gaddr)
4929 #endif /* USE_UID16 */
4931 void syscall_init(void)
4934 const argtype
*arg_type
;
4938 thunk_init(STRUCT_MAX
);
4940 #define STRUCT(name, ...) thunk_register_struct(STRUCT_ ## name, #name, struct_ ## name ## _def);
4941 #define STRUCT_SPECIAL(name) thunk_register_struct_direct(STRUCT_ ## name, #name, &struct_ ## name ## _def);
4942 #include "syscall_types.h"
4944 #undef STRUCT_SPECIAL
4946 /* Build target_to_host_errno_table[] table from
4947 * host_to_target_errno_table[]. */
4948 for (i
= 0; i
< ERRNO_TABLE_SIZE
; i
++) {
4949 target_to_host_errno_table
[host_to_target_errno_table
[i
]] = i
;
4952 /* we patch the ioctl size if necessary. We rely on the fact that
4953 no ioctl has all the bits at '1' in the size field */
4955 while (ie
->target_cmd
!= 0) {
4956 if (((ie
->target_cmd
>> TARGET_IOC_SIZESHIFT
) & TARGET_IOC_SIZEMASK
) ==
4957 TARGET_IOC_SIZEMASK
) {
4958 arg_type
= ie
->arg_type
;
4959 if (arg_type
[0] != TYPE_PTR
) {
4960 fprintf(stderr
, "cannot patch size for ioctl 0x%x\n",
4965 size
= thunk_type_size(arg_type
, 0);
4966 ie
->target_cmd
= (ie
->target_cmd
&
4967 ~(TARGET_IOC_SIZEMASK
<< TARGET_IOC_SIZESHIFT
)) |
4968 (size
<< TARGET_IOC_SIZESHIFT
);
4971 /* automatic consistency check if same arch */
4972 #if (defined(__i386__) && defined(TARGET_I386) && defined(TARGET_ABI32)) || \
4973 (defined(__x86_64__) && defined(TARGET_X86_64))
4974 if (unlikely(ie
->target_cmd
!= ie
->host_cmd
)) {
4975 fprintf(stderr
, "ERROR: ioctl(%s): target=0x%x host=0x%x\n",
4976 ie
->name
, ie
->target_cmd
, ie
->host_cmd
);
4983 #if TARGET_ABI_BITS == 32
4984 static inline uint64_t target_offset64(uint32_t word0
, uint32_t word1
)
4986 #ifdef TARGET_WORDS_BIGENDIAN
4987 return ((uint64_t)word0
<< 32) | word1
;
4989 return ((uint64_t)word1
<< 32) | word0
;
4992 #else /* TARGET_ABI_BITS == 32 */
4993 static inline uint64_t target_offset64(uint64_t word0
, uint64_t word1
)
4997 #endif /* TARGET_ABI_BITS != 32 */
4999 #ifdef TARGET_NR_truncate64
5000 static inline abi_long
target_truncate64(void *cpu_env
, const char *arg1
,
5005 if (regpairs_aligned(cpu_env
)) {
5009 return get_errno(truncate64(arg1
, target_offset64(arg2
, arg3
)));
5013 #ifdef TARGET_NR_ftruncate64
5014 static inline abi_long
target_ftruncate64(void *cpu_env
, abi_long arg1
,
5019 if (regpairs_aligned(cpu_env
)) {
5023 return get_errno(ftruncate64(arg1
, target_offset64(arg2
, arg3
)));
5027 static inline abi_long
target_to_host_timespec(struct timespec
*host_ts
,
5028 abi_ulong target_addr
)
5030 struct target_timespec
*target_ts
;
5032 if (!lock_user_struct(VERIFY_READ
, target_ts
, target_addr
, 1))
5033 return -TARGET_EFAULT
;
5034 host_ts
->tv_sec
= tswapal(target_ts
->tv_sec
);
5035 host_ts
->tv_nsec
= tswapal(target_ts
->tv_nsec
);
5036 unlock_user_struct(target_ts
, target_addr
, 0);
5040 static inline abi_long
host_to_target_timespec(abi_ulong target_addr
,
5041 struct timespec
*host_ts
)
5043 struct target_timespec
*target_ts
;
5045 if (!lock_user_struct(VERIFY_WRITE
, target_ts
, target_addr
, 0))
5046 return -TARGET_EFAULT
;
5047 target_ts
->tv_sec
= tswapal(host_ts
->tv_sec
);
5048 target_ts
->tv_nsec
= tswapal(host_ts
->tv_nsec
);
5049 unlock_user_struct(target_ts
, target_addr
, 1);
5053 static inline abi_long
target_to_host_itimerspec(struct itimerspec
*host_itspec
,
5054 abi_ulong target_addr
)
5056 struct target_itimerspec
*target_itspec
;
5058 if (!lock_user_struct(VERIFY_READ
, target_itspec
, target_addr
, 1)) {
5059 return -TARGET_EFAULT
;
5062 host_itspec
->it_interval
.tv_sec
=
5063 tswapal(target_itspec
->it_interval
.tv_sec
);
5064 host_itspec
->it_interval
.tv_nsec
=
5065 tswapal(target_itspec
->it_interval
.tv_nsec
);
5066 host_itspec
->it_value
.tv_sec
= tswapal(target_itspec
->it_value
.tv_sec
);
5067 host_itspec
->it_value
.tv_nsec
= tswapal(target_itspec
->it_value
.tv_nsec
);
5069 unlock_user_struct(target_itspec
, target_addr
, 1);
5073 static inline abi_long
host_to_target_itimerspec(abi_ulong target_addr
,
5074 struct itimerspec
*host_its
)
5076 struct target_itimerspec
*target_itspec
;
5078 if (!lock_user_struct(VERIFY_WRITE
, target_itspec
, target_addr
, 0)) {
5079 return -TARGET_EFAULT
;
5082 target_itspec
->it_interval
.tv_sec
= tswapal(host_its
->it_interval
.tv_sec
);
5083 target_itspec
->it_interval
.tv_nsec
= tswapal(host_its
->it_interval
.tv_nsec
);
5085 target_itspec
->it_value
.tv_sec
= tswapal(host_its
->it_value
.tv_sec
);
5086 target_itspec
->it_value
.tv_nsec
= tswapal(host_its
->it_value
.tv_nsec
);
5088 unlock_user_struct(target_itspec
, target_addr
, 0);
5092 static inline abi_long
target_to_host_sigevent(struct sigevent
*host_sevp
,
5093 abi_ulong target_addr
)
5095 struct target_sigevent
*target_sevp
;
5097 if (!lock_user_struct(VERIFY_READ
, target_sevp
, target_addr
, 1)) {
5098 return -TARGET_EFAULT
;
5101 /* This union is awkward on 64 bit systems because it has a 32 bit
5102 * integer and a pointer in it; we follow the conversion approach
5103 * used for handling sigval types in signal.c so the guest should get
5104 * the correct value back even if we did a 64 bit byteswap and it's
5105 * using the 32 bit integer.
5107 host_sevp
->sigev_value
.sival_ptr
=
5108 (void *)(uintptr_t)tswapal(target_sevp
->sigev_value
.sival_ptr
);
5109 host_sevp
->sigev_signo
=
5110 target_to_host_signal(tswap32(target_sevp
->sigev_signo
));
5111 host_sevp
->sigev_notify
= tswap32(target_sevp
->sigev_notify
);
5112 host_sevp
->_sigev_un
._tid
= tswap32(target_sevp
->_sigev_un
._tid
);
5114 unlock_user_struct(target_sevp
, target_addr
, 1);
5118 #if defined(TARGET_NR_mlockall)
5119 static inline int target_to_host_mlockall_arg(int arg
)
5123 if (arg
& TARGET_MLOCKALL_MCL_CURRENT
) {
5124 result
|= MCL_CURRENT
;
5126 if (arg
& TARGET_MLOCKALL_MCL_FUTURE
) {
5127 result
|= MCL_FUTURE
;
5133 #if defined(TARGET_NR_stat64) || defined(TARGET_NR_newfstatat)
5134 static inline abi_long
host_to_target_stat64(void *cpu_env
,
5135 abi_ulong target_addr
,
5136 struct stat
*host_st
)
5138 #if defined(TARGET_ARM) && defined(TARGET_ABI32)
5139 if (((CPUARMState
*)cpu_env
)->eabi
) {
5140 struct target_eabi_stat64
*target_st
;
5142 if (!lock_user_struct(VERIFY_WRITE
, target_st
, target_addr
, 0))
5143 return -TARGET_EFAULT
;
5144 memset(target_st
, 0, sizeof(struct target_eabi_stat64
));
5145 __put_user(host_st
->st_dev
, &target_st
->st_dev
);
5146 __put_user(host_st
->st_ino
, &target_st
->st_ino
);
5147 #ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
5148 __put_user(host_st
->st_ino
, &target_st
->__st_ino
);
5150 __put_user(host_st
->st_mode
, &target_st
->st_mode
);
5151 __put_user(host_st
->st_nlink
, &target_st
->st_nlink
);
5152 __put_user(host_st
->st_uid
, &target_st
->st_uid
);
5153 __put_user(host_st
->st_gid
, &target_st
->st_gid
);
5154 __put_user(host_st
->st_rdev
, &target_st
->st_rdev
);
5155 __put_user(host_st
->st_size
, &target_st
->st_size
);
5156 __put_user(host_st
->st_blksize
, &target_st
->st_blksize
);
5157 __put_user(host_st
->st_blocks
, &target_st
->st_blocks
);
5158 __put_user(host_st
->st_atime
, &target_st
->target_st_atime
);
5159 __put_user(host_st
->st_mtime
, &target_st
->target_st_mtime
);
5160 __put_user(host_st
->st_ctime
, &target_st
->target_st_ctime
);
5161 unlock_user_struct(target_st
, target_addr
, 1);
5165 #if defined(TARGET_HAS_STRUCT_STAT64)
5166 struct target_stat64
*target_st
;
5168 struct target_stat
*target_st
;
5171 if (!lock_user_struct(VERIFY_WRITE
, target_st
, target_addr
, 0))
5172 return -TARGET_EFAULT
;
5173 memset(target_st
, 0, sizeof(*target_st
));
5174 __put_user(host_st
->st_dev
, &target_st
->st_dev
);
5175 __put_user(host_st
->st_ino
, &target_st
->st_ino
);
5176 #ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
5177 __put_user(host_st
->st_ino
, &target_st
->__st_ino
);
5179 __put_user(host_st
->st_mode
, &target_st
->st_mode
);
5180 __put_user(host_st
->st_nlink
, &target_st
->st_nlink
);
5181 __put_user(host_st
->st_uid
, &target_st
->st_uid
);
5182 __put_user(host_st
->st_gid
, &target_st
->st_gid
);
5183 __put_user(host_st
->st_rdev
, &target_st
->st_rdev
);
5184 /* XXX: better use of kernel struct */
5185 __put_user(host_st
->st_size
, &target_st
->st_size
);
5186 __put_user(host_st
->st_blksize
, &target_st
->st_blksize
);
5187 __put_user(host_st
->st_blocks
, &target_st
->st_blocks
);
5188 __put_user(host_st
->st_atime
, &target_st
->target_st_atime
);
5189 __put_user(host_st
->st_mtime
, &target_st
->target_st_mtime
);
5190 __put_user(host_st
->st_ctime
, &target_st
->target_st_ctime
);
5191 unlock_user_struct(target_st
, target_addr
, 1);
5198 /* ??? Using host futex calls even when target atomic operations
5199 are not really atomic probably breaks things. However implementing
5200 futexes locally would make futexes shared between multiple processes
5201 tricky. However they're probably useless because guest atomic
5202 operations won't work either. */
5203 static int do_futex(target_ulong uaddr
, int op
, int val
, target_ulong timeout
,
5204 target_ulong uaddr2
, int val3
)
5206 struct timespec ts
, *pts
;
5209 /* ??? We assume FUTEX_* constants are the same on both host
5211 #ifdef FUTEX_CMD_MASK
5212 base_op
= op
& FUTEX_CMD_MASK
;
5218 case FUTEX_WAIT_BITSET
:
5221 target_to_host_timespec(pts
, timeout
);
5225 return get_errno(sys_futex(g2h(uaddr
), op
, tswap32(val
),
5228 return get_errno(sys_futex(g2h(uaddr
), op
, val
, NULL
, NULL
, 0));
5230 return get_errno(sys_futex(g2h(uaddr
), op
, val
, NULL
, NULL
, 0));
5232 case FUTEX_CMP_REQUEUE
:
5234 /* For FUTEX_REQUEUE, FUTEX_CMP_REQUEUE, and FUTEX_WAKE_OP, the
5235 TIMEOUT parameter is interpreted as a uint32_t by the kernel.
5236 But the prototype takes a `struct timespec *'; insert casts
5237 to satisfy the compiler. We do not need to tswap TIMEOUT
5238 since it's not compared to guest memory. */
5239 pts
= (struct timespec
*)(uintptr_t) timeout
;
5240 return get_errno(sys_futex(g2h(uaddr
), op
, val
, pts
,
5242 (base_op
== FUTEX_CMP_REQUEUE
5246 return -TARGET_ENOSYS
;
5250 /* Map host to target signal numbers for the wait family of syscalls.
5251 Assume all other status bits are the same. */
5252 int host_to_target_waitstatus(int status
)
5254 if (WIFSIGNALED(status
)) {
5255 return host_to_target_signal(WTERMSIG(status
)) | (status
& ~0x7f);
5257 if (WIFSTOPPED(status
)) {
5258 return (host_to_target_signal(WSTOPSIG(status
)) << 8)
5264 static int open_self_cmdline(void *cpu_env
, int fd
)
5267 bool word_skipped
= false;
5269 fd_orig
= open("/proc/self/cmdline", O_RDONLY
);
5279 nb_read
= read(fd_orig
, buf
, sizeof(buf
));
5281 fd_orig
= close(fd_orig
);
5283 } else if (nb_read
== 0) {
5287 if (!word_skipped
) {
5288 /* Skip the first string, which is the path to qemu-*-static
5289 instead of the actual command. */
5290 cp_buf
= memchr(buf
, 0, sizeof(buf
));
5292 /* Null byte found, skip one string */
5294 nb_read
-= cp_buf
- buf
;
5295 word_skipped
= true;
5300 if (write(fd
, cp_buf
, nb_read
) != nb_read
) {
5307 return close(fd_orig
);
5310 static int open_self_maps(void *cpu_env
, int fd
)
5312 CPUState
*cpu
= ENV_GET_CPU((CPUArchState
*)cpu_env
);
5313 TaskState
*ts
= cpu
->opaque
;
5319 fp
= fopen("/proc/self/maps", "r");
5324 while ((read
= getline(&line
, &len
, fp
)) != -1) {
5325 int fields
, dev_maj
, dev_min
, inode
;
5326 uint64_t min
, max
, offset
;
5327 char flag_r
, flag_w
, flag_x
, flag_p
;
5328 char path
[512] = "";
5329 fields
= sscanf(line
, "%"PRIx64
"-%"PRIx64
" %c%c%c%c %"PRIx64
" %x:%x %d"
5330 " %512s", &min
, &max
, &flag_r
, &flag_w
, &flag_x
,
5331 &flag_p
, &offset
, &dev_maj
, &dev_min
, &inode
, path
);
5333 if ((fields
< 10) || (fields
> 11)) {
5336 if (h2g_valid(min
)) {
5337 int flags
= page_get_flags(h2g(min
));
5338 max
= h2g_valid(max
- 1) ? max
: (uintptr_t)g2h(GUEST_ADDR_MAX
);
5339 if (page_check_range(h2g(min
), max
- min
, flags
) == -1) {
5342 if (h2g(min
) == ts
->info
->stack_limit
) {
5343 pstrcpy(path
, sizeof(path
), " [stack]");
5345 dprintf(fd
, TARGET_ABI_FMT_lx
"-" TARGET_ABI_FMT_lx
5346 " %c%c%c%c %08" PRIx64
" %02x:%02x %d %s%s\n",
5347 h2g(min
), h2g(max
- 1) + 1, flag_r
, flag_w
,
5348 flag_x
, flag_p
, offset
, dev_maj
, dev_min
, inode
,
5349 path
[0] ? " " : "", path
);
5359 static int open_self_stat(void *cpu_env
, int fd
)
5361 CPUState
*cpu
= ENV_GET_CPU((CPUArchState
*)cpu_env
);
5362 TaskState
*ts
= cpu
->opaque
;
5363 abi_ulong start_stack
= ts
->info
->start_stack
;
5366 for (i
= 0; i
< 44; i
++) {
5374 snprintf(buf
, sizeof(buf
), "%"PRId64
" ", val
);
5375 } else if (i
== 1) {
5377 snprintf(buf
, sizeof(buf
), "(%s) ", ts
->bprm
->argv
[0]);
5378 } else if (i
== 27) {
5381 snprintf(buf
, sizeof(buf
), "%"PRId64
" ", val
);
5383 /* for the rest, there is MasterCard */
5384 snprintf(buf
, sizeof(buf
), "0%c", i
== 43 ? '\n' : ' ');
5388 if (write(fd
, buf
, len
) != len
) {
5396 static int open_self_auxv(void *cpu_env
, int fd
)
5398 CPUState
*cpu
= ENV_GET_CPU((CPUArchState
*)cpu_env
);
5399 TaskState
*ts
= cpu
->opaque
;
5400 abi_ulong auxv
= ts
->info
->saved_auxv
;
5401 abi_ulong len
= ts
->info
->auxv_len
;
5405 * Auxiliary vector is stored in target process stack.
5406 * read in whole auxv vector and copy it to file
5408 ptr
= lock_user(VERIFY_READ
, auxv
, len
, 0);
5412 r
= write(fd
, ptr
, len
);
5419 lseek(fd
, 0, SEEK_SET
);
5420 unlock_user(ptr
, auxv
, len
);
5426 static int is_proc_myself(const char *filename
, const char *entry
)
5428 if (!strncmp(filename
, "/proc/", strlen("/proc/"))) {
5429 filename
+= strlen("/proc/");
5430 if (!strncmp(filename
, "self/", strlen("self/"))) {
5431 filename
+= strlen("self/");
5432 } else if (*filename
>= '1' && *filename
<= '9') {
5434 snprintf(myself
, sizeof(myself
), "%d/", getpid());
5435 if (!strncmp(filename
, myself
, strlen(myself
))) {
5436 filename
+= strlen(myself
);
5443 if (!strcmp(filename
, entry
)) {
5450 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
5451 static int is_proc(const char *filename
, const char *entry
)
5453 return strcmp(filename
, entry
) == 0;
5456 static int open_net_route(void *cpu_env
, int fd
)
5463 fp
= fopen("/proc/net/route", "r");
5470 read
= getline(&line
, &len
, fp
);
5471 dprintf(fd
, "%s", line
);
5475 while ((read
= getline(&line
, &len
, fp
)) != -1) {
5477 uint32_t dest
, gw
, mask
;
5478 unsigned int flags
, refcnt
, use
, metric
, mtu
, window
, irtt
;
5479 sscanf(line
, "%s\t%08x\t%08x\t%04x\t%d\t%d\t%d\t%08x\t%d\t%u\t%u\n",
5480 iface
, &dest
, &gw
, &flags
, &refcnt
, &use
, &metric
,
5481 &mask
, &mtu
, &window
, &irtt
);
5482 dprintf(fd
, "%s\t%08x\t%08x\t%04x\t%d\t%d\t%d\t%08x\t%d\t%u\t%u\n",
5483 iface
, tswap32(dest
), tswap32(gw
), flags
, refcnt
, use
,
5484 metric
, tswap32(mask
), mtu
, window
, irtt
);
5494 static int do_openat(void *cpu_env
, int dirfd
, const char *pathname
, int flags
, mode_t mode
)
5497 const char *filename
;
5498 int (*fill
)(void *cpu_env
, int fd
);
5499 int (*cmp
)(const char *s1
, const char *s2
);
5501 const struct fake_open
*fake_open
;
5502 static const struct fake_open fakes
[] = {
5503 { "maps", open_self_maps
, is_proc_myself
},
5504 { "stat", open_self_stat
, is_proc_myself
},
5505 { "auxv", open_self_auxv
, is_proc_myself
},
5506 { "cmdline", open_self_cmdline
, is_proc_myself
},
5507 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
5508 { "/proc/net/route", open_net_route
, is_proc
},
5510 { NULL
, NULL
, NULL
}
5513 if (is_proc_myself(pathname
, "exe")) {
5514 int execfd
= qemu_getauxval(AT_EXECFD
);
5515 return execfd
? execfd
: get_errno(sys_openat(dirfd
, exec_path
, flags
, mode
));
5518 for (fake_open
= fakes
; fake_open
->filename
; fake_open
++) {
5519 if (fake_open
->cmp(pathname
, fake_open
->filename
)) {
5524 if (fake_open
->filename
) {
5526 char filename
[PATH_MAX
];
5529 /* create temporary file to map stat to */
5530 tmpdir
= getenv("TMPDIR");
5533 snprintf(filename
, sizeof(filename
), "%s/qemu-open.XXXXXX", tmpdir
);
5534 fd
= mkstemp(filename
);
5540 if ((r
= fake_open
->fill(cpu_env
, fd
))) {
5544 lseek(fd
, 0, SEEK_SET
);
5549 return get_errno(sys_openat(dirfd
, path(pathname
), flags
, mode
));
5552 #define TIMER_MAGIC 0x0caf0000
5553 #define TIMER_MAGIC_MASK 0xffff0000
5555 /* Convert QEMU provided timer ID back to internal 16bit index format */
5556 static target_timer_t
get_timer_id(abi_long arg
)
5558 target_timer_t timerid
= arg
;
5560 if ((timerid
& TIMER_MAGIC_MASK
) != TIMER_MAGIC
) {
5561 return -TARGET_EINVAL
;
5566 if (timerid
>= ARRAY_SIZE(g_posix_timers
)) {
5567 return -TARGET_EINVAL
;
5573 /* do_syscall() should always have a single exit point at the end so
5574 that actions, such as logging of syscall results, can be performed.
5575 All errnos that do_syscall() returns must be -TARGET_<errcode>. */
5576 abi_long
do_syscall(void *cpu_env
, int num
, abi_long arg1
,
5577 abi_long arg2
, abi_long arg3
, abi_long arg4
,
5578 abi_long arg5
, abi_long arg6
, abi_long arg7
,
5581 CPUState
*cpu
= ENV_GET_CPU(cpu_env
);
5588 gemu_log("syscall %d", num
);
5591 print_syscall(num
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
5594 case TARGET_NR_exit
:
5595 /* In old applications this may be used to implement _exit(2).
5596 However in threaded applictions it is used for thread termination,
5597 and _exit_group is used for application termination.
5598 Do thread termination if we have more then one thread. */
5599 /* FIXME: This probably breaks if a signal arrives. We should probably
5600 be disabling signals. */
5601 if (CPU_NEXT(first_cpu
)) {
5605 /* Remove the CPU from the list. */
5606 QTAILQ_REMOVE(&cpus
, cpu
, node
);
5609 if (ts
->child_tidptr
) {
5610 put_user_u32(0, ts
->child_tidptr
);
5611 sys_futex(g2h(ts
->child_tidptr
), FUTEX_WAKE
, INT_MAX
,
5615 object_unref(OBJECT(cpu
));
5617 rcu_unregister_thread();
5623 gdb_exit(cpu_env
, arg1
);
5625 ret
= 0; /* avoid warning */
5627 case TARGET_NR_read
:
5631 if (!(p
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0)))
5633 ret
= get_errno(read(arg1
, p
, arg3
));
5634 unlock_user(p
, arg2
, ret
);
5637 case TARGET_NR_write
:
5638 if (!(p
= lock_user(VERIFY_READ
, arg2
, arg3
, 1)))
5640 ret
= get_errno(write(arg1
, p
, arg3
));
5641 unlock_user(p
, arg2
, 0);
5643 #ifdef TARGET_NR_open
5644 case TARGET_NR_open
:
5645 if (!(p
= lock_user_string(arg1
)))
5647 ret
= get_errno(do_openat(cpu_env
, AT_FDCWD
, p
,
5648 target_to_host_bitmask(arg2
, fcntl_flags_tbl
),
5650 unlock_user(p
, arg1
, 0);
5653 case TARGET_NR_openat
:
5654 if (!(p
= lock_user_string(arg2
)))
5656 ret
= get_errno(do_openat(cpu_env
, arg1
, p
,
5657 target_to_host_bitmask(arg3
, fcntl_flags_tbl
),
5659 unlock_user(p
, arg2
, 0);
5661 case TARGET_NR_close
:
5662 ret
= get_errno(close(arg1
));
5667 #ifdef TARGET_NR_fork
5668 case TARGET_NR_fork
:
5669 ret
= get_errno(do_fork(cpu_env
, SIGCHLD
, 0, 0, 0, 0));
5672 #ifdef TARGET_NR_waitpid
5673 case TARGET_NR_waitpid
:
5676 ret
= get_errno(waitpid(arg1
, &status
, arg3
));
5677 if (!is_error(ret
) && arg2
&& ret
5678 && put_user_s32(host_to_target_waitstatus(status
), arg2
))
5683 #ifdef TARGET_NR_waitid
5684 case TARGET_NR_waitid
:
5688 ret
= get_errno(waitid(arg1
, arg2
, &info
, arg4
));
5689 if (!is_error(ret
) && arg3
&& info
.si_pid
!= 0) {
5690 if (!(p
= lock_user(VERIFY_WRITE
, arg3
, sizeof(target_siginfo_t
), 0)))
5692 host_to_target_siginfo(p
, &info
);
5693 unlock_user(p
, arg3
, sizeof(target_siginfo_t
));
5698 #ifdef TARGET_NR_creat /* not on alpha */
5699 case TARGET_NR_creat
:
5700 if (!(p
= lock_user_string(arg1
)))
5702 ret
= get_errno(creat(p
, arg2
));
5703 unlock_user(p
, arg1
, 0);
5706 #ifdef TARGET_NR_link
5707 case TARGET_NR_link
:
5710 p
= lock_user_string(arg1
);
5711 p2
= lock_user_string(arg2
);
5713 ret
= -TARGET_EFAULT
;
5715 ret
= get_errno(link(p
, p2
));
5716 unlock_user(p2
, arg2
, 0);
5717 unlock_user(p
, arg1
, 0);
5721 #if defined(TARGET_NR_linkat)
5722 case TARGET_NR_linkat
:
5727 p
= lock_user_string(arg2
);
5728 p2
= lock_user_string(arg4
);
5730 ret
= -TARGET_EFAULT
;
5732 ret
= get_errno(linkat(arg1
, p
, arg3
, p2
, arg5
));
5733 unlock_user(p
, arg2
, 0);
5734 unlock_user(p2
, arg4
, 0);
5738 #ifdef TARGET_NR_unlink
5739 case TARGET_NR_unlink
:
5740 if (!(p
= lock_user_string(arg1
)))
5742 ret
= get_errno(unlink(p
));
5743 unlock_user(p
, arg1
, 0);
5746 #if defined(TARGET_NR_unlinkat)
5747 case TARGET_NR_unlinkat
:
5748 if (!(p
= lock_user_string(arg2
)))
5750 ret
= get_errno(unlinkat(arg1
, p
, arg3
));
5751 unlock_user(p
, arg2
, 0);
5754 case TARGET_NR_execve
:
5756 char **argp
, **envp
;
5759 abi_ulong guest_argp
;
5760 abi_ulong guest_envp
;
5767 for (gp
= guest_argp
; gp
; gp
+= sizeof(abi_ulong
)) {
5768 if (get_user_ual(addr
, gp
))
5776 for (gp
= guest_envp
; gp
; gp
+= sizeof(abi_ulong
)) {
5777 if (get_user_ual(addr
, gp
))
5784 argp
= alloca((argc
+ 1) * sizeof(void *));
5785 envp
= alloca((envc
+ 1) * sizeof(void *));
5787 for (gp
= guest_argp
, q
= argp
; gp
;
5788 gp
+= sizeof(abi_ulong
), q
++) {
5789 if (get_user_ual(addr
, gp
))
5793 if (!(*q
= lock_user_string(addr
)))
5795 total_size
+= strlen(*q
) + 1;
5799 for (gp
= guest_envp
, q
= envp
; gp
;
5800 gp
+= sizeof(abi_ulong
), q
++) {
5801 if (get_user_ual(addr
, gp
))
5805 if (!(*q
= lock_user_string(addr
)))
5807 total_size
+= strlen(*q
) + 1;
5811 /* This case will not be caught by the host's execve() if its
5812 page size is bigger than the target's. */
5813 if (total_size
> MAX_ARG_PAGES
* TARGET_PAGE_SIZE
) {
5814 ret
= -TARGET_E2BIG
;
5817 if (!(p
= lock_user_string(arg1
)))
5819 ret
= get_errno(execve(p
, argp
, envp
));
5820 unlock_user(p
, arg1
, 0);
5825 ret
= -TARGET_EFAULT
;
5828 for (gp
= guest_argp
, q
= argp
; *q
;
5829 gp
+= sizeof(abi_ulong
), q
++) {
5830 if (get_user_ual(addr
, gp
)
5833 unlock_user(*q
, addr
, 0);
5835 for (gp
= guest_envp
, q
= envp
; *q
;
5836 gp
+= sizeof(abi_ulong
), q
++) {
5837 if (get_user_ual(addr
, gp
)
5840 unlock_user(*q
, addr
, 0);
5844 case TARGET_NR_chdir
:
5845 if (!(p
= lock_user_string(arg1
)))
5847 ret
= get_errno(chdir(p
));
5848 unlock_user(p
, arg1
, 0);
5850 #ifdef TARGET_NR_time
5851 case TARGET_NR_time
:
5854 ret
= get_errno(time(&host_time
));
5857 && put_user_sal(host_time
, arg1
))
5862 #ifdef TARGET_NR_mknod
5863 case TARGET_NR_mknod
:
5864 if (!(p
= lock_user_string(arg1
)))
5866 ret
= get_errno(mknod(p
, arg2
, arg3
));
5867 unlock_user(p
, arg1
, 0);
5870 #if defined(TARGET_NR_mknodat)
5871 case TARGET_NR_mknodat
:
5872 if (!(p
= lock_user_string(arg2
)))
5874 ret
= get_errno(mknodat(arg1
, p
, arg3
, arg4
));
5875 unlock_user(p
, arg2
, 0);
5878 #ifdef TARGET_NR_chmod
5879 case TARGET_NR_chmod
:
5880 if (!(p
= lock_user_string(arg1
)))
5882 ret
= get_errno(chmod(p
, arg2
));
5883 unlock_user(p
, arg1
, 0);
5886 #ifdef TARGET_NR_break
5887 case TARGET_NR_break
:
5890 #ifdef TARGET_NR_oldstat
5891 case TARGET_NR_oldstat
:
5894 case TARGET_NR_lseek
:
5895 ret
= get_errno(lseek(arg1
, arg2
, arg3
));
5897 #if defined(TARGET_NR_getxpid) && defined(TARGET_ALPHA)
5898 /* Alpha specific */
5899 case TARGET_NR_getxpid
:
5900 ((CPUAlphaState
*)cpu_env
)->ir
[IR_A4
] = getppid();
5901 ret
= get_errno(getpid());
5904 #ifdef TARGET_NR_getpid
5905 case TARGET_NR_getpid
:
5906 ret
= get_errno(getpid());
5909 case TARGET_NR_mount
:
5911 /* need to look at the data field */
5915 p
= lock_user_string(arg1
);
5923 p2
= lock_user_string(arg2
);
5926 unlock_user(p
, arg1
, 0);
5932 p3
= lock_user_string(arg3
);
5935 unlock_user(p
, arg1
, 0);
5937 unlock_user(p2
, arg2
, 0);
5944 /* FIXME - arg5 should be locked, but it isn't clear how to
5945 * do that since it's not guaranteed to be a NULL-terminated
5949 ret
= mount(p
, p2
, p3
, (unsigned long)arg4
, NULL
);
5951 ret
= mount(p
, p2
, p3
, (unsigned long)arg4
, g2h(arg5
));
5953 ret
= get_errno(ret
);
5956 unlock_user(p
, arg1
, 0);
5958 unlock_user(p2
, arg2
, 0);
5960 unlock_user(p3
, arg3
, 0);
5964 #ifdef TARGET_NR_umount
5965 case TARGET_NR_umount
:
5966 if (!(p
= lock_user_string(arg1
)))
5968 ret
= get_errno(umount(p
));
5969 unlock_user(p
, arg1
, 0);
5972 #ifdef TARGET_NR_stime /* not on alpha */
5973 case TARGET_NR_stime
:
5976 if (get_user_sal(host_time
, arg1
))
5978 ret
= get_errno(stime(&host_time
));
5982 case TARGET_NR_ptrace
:
5984 #ifdef TARGET_NR_alarm /* not on alpha */
5985 case TARGET_NR_alarm
:
5989 #ifdef TARGET_NR_oldfstat
5990 case TARGET_NR_oldfstat
:
5993 #ifdef TARGET_NR_pause /* not on alpha */
5994 case TARGET_NR_pause
:
5995 ret
= get_errno(pause());
5998 #ifdef TARGET_NR_utime
5999 case TARGET_NR_utime
:
6001 struct utimbuf tbuf
, *host_tbuf
;
6002 struct target_utimbuf
*target_tbuf
;
6004 if (!lock_user_struct(VERIFY_READ
, target_tbuf
, arg2
, 1))
6006 tbuf
.actime
= tswapal(target_tbuf
->actime
);
6007 tbuf
.modtime
= tswapal(target_tbuf
->modtime
);
6008 unlock_user_struct(target_tbuf
, arg2
, 0);
6013 if (!(p
= lock_user_string(arg1
)))
6015 ret
= get_errno(utime(p
, host_tbuf
));
6016 unlock_user(p
, arg1
, 0);
6020 #ifdef TARGET_NR_utimes
6021 case TARGET_NR_utimes
:
6023 struct timeval
*tvp
, tv
[2];
6025 if (copy_from_user_timeval(&tv
[0], arg2
)
6026 || copy_from_user_timeval(&tv
[1],
6027 arg2
+ sizeof(struct target_timeval
)))
6033 if (!(p
= lock_user_string(arg1
)))
6035 ret
= get_errno(utimes(p
, tvp
));
6036 unlock_user(p
, arg1
, 0);
6040 #if defined(TARGET_NR_futimesat)
6041 case TARGET_NR_futimesat
:
6043 struct timeval
*tvp
, tv
[2];
6045 if (copy_from_user_timeval(&tv
[0], arg3
)
6046 || copy_from_user_timeval(&tv
[1],
6047 arg3
+ sizeof(struct target_timeval
)))
6053 if (!(p
= lock_user_string(arg2
)))
6055 ret
= get_errno(futimesat(arg1
, path(p
), tvp
));
6056 unlock_user(p
, arg2
, 0);
6060 #ifdef TARGET_NR_stty
6061 case TARGET_NR_stty
:
6064 #ifdef TARGET_NR_gtty
6065 case TARGET_NR_gtty
:
6068 #ifdef TARGET_NR_access
6069 case TARGET_NR_access
:
6070 if (!(p
= lock_user_string(arg1
)))
6072 ret
= get_errno(access(path(p
), arg2
));
6073 unlock_user(p
, arg1
, 0);
6076 #if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
6077 case TARGET_NR_faccessat
:
6078 if (!(p
= lock_user_string(arg2
)))
6080 ret
= get_errno(faccessat(arg1
, p
, arg3
, 0));
6081 unlock_user(p
, arg2
, 0);
6084 #ifdef TARGET_NR_nice /* not on alpha */
6085 case TARGET_NR_nice
:
6086 ret
= get_errno(nice(arg1
));
6089 #ifdef TARGET_NR_ftime
6090 case TARGET_NR_ftime
:
6093 case TARGET_NR_sync
:
6097 case TARGET_NR_kill
:
6098 ret
= get_errno(kill(arg1
, target_to_host_signal(arg2
)));
6100 #ifdef TARGET_NR_rename
6101 case TARGET_NR_rename
:
6104 p
= lock_user_string(arg1
);
6105 p2
= lock_user_string(arg2
);
6107 ret
= -TARGET_EFAULT
;
6109 ret
= get_errno(rename(p
, p2
));
6110 unlock_user(p2
, arg2
, 0);
6111 unlock_user(p
, arg1
, 0);
6115 #if defined(TARGET_NR_renameat)
6116 case TARGET_NR_renameat
:
6119 p
= lock_user_string(arg2
);
6120 p2
= lock_user_string(arg4
);
6122 ret
= -TARGET_EFAULT
;
6124 ret
= get_errno(renameat(arg1
, p
, arg3
, p2
));
6125 unlock_user(p2
, arg4
, 0);
6126 unlock_user(p
, arg2
, 0);
6130 #ifdef TARGET_NR_mkdir
6131 case TARGET_NR_mkdir
:
6132 if (!(p
= lock_user_string(arg1
)))
6134 ret
= get_errno(mkdir(p
, arg2
));
6135 unlock_user(p
, arg1
, 0);
6138 #if defined(TARGET_NR_mkdirat)
6139 case TARGET_NR_mkdirat
:
6140 if (!(p
= lock_user_string(arg2
)))
6142 ret
= get_errno(mkdirat(arg1
, p
, arg3
));
6143 unlock_user(p
, arg2
, 0);
6146 #ifdef TARGET_NR_rmdir
6147 case TARGET_NR_rmdir
:
6148 if (!(p
= lock_user_string(arg1
)))
6150 ret
= get_errno(rmdir(p
));
6151 unlock_user(p
, arg1
, 0);
6155 ret
= get_errno(dup(arg1
));
6157 #ifdef TARGET_NR_pipe
6158 case TARGET_NR_pipe
:
6159 ret
= do_pipe(cpu_env
, arg1
, 0, 0);
6162 #ifdef TARGET_NR_pipe2
6163 case TARGET_NR_pipe2
:
6164 ret
= do_pipe(cpu_env
, arg1
,
6165 target_to_host_bitmask(arg2
, fcntl_flags_tbl
), 1);
6168 case TARGET_NR_times
:
6170 struct target_tms
*tmsp
;
6172 ret
= get_errno(times(&tms
));
6174 tmsp
= lock_user(VERIFY_WRITE
, arg1
, sizeof(struct target_tms
), 0);
6177 tmsp
->tms_utime
= tswapal(host_to_target_clock_t(tms
.tms_utime
));
6178 tmsp
->tms_stime
= tswapal(host_to_target_clock_t(tms
.tms_stime
));
6179 tmsp
->tms_cutime
= tswapal(host_to_target_clock_t(tms
.tms_cutime
));
6180 tmsp
->tms_cstime
= tswapal(host_to_target_clock_t(tms
.tms_cstime
));
6183 ret
= host_to_target_clock_t(ret
);
6186 #ifdef TARGET_NR_prof
6187 case TARGET_NR_prof
:
6190 #ifdef TARGET_NR_signal
6191 case TARGET_NR_signal
:
6194 case TARGET_NR_acct
:
6196 ret
= get_errno(acct(NULL
));
6198 if (!(p
= lock_user_string(arg1
)))
6200 ret
= get_errno(acct(path(p
)));
6201 unlock_user(p
, arg1
, 0);
6204 #ifdef TARGET_NR_umount2
6205 case TARGET_NR_umount2
:
6206 if (!(p
= lock_user_string(arg1
)))
6208 ret
= get_errno(umount2(p
, arg2
));
6209 unlock_user(p
, arg1
, 0);
6212 #ifdef TARGET_NR_lock
6213 case TARGET_NR_lock
:
6216 case TARGET_NR_ioctl
:
6217 ret
= do_ioctl(arg1
, arg2
, arg3
);
6219 case TARGET_NR_fcntl
:
6220 ret
= do_fcntl(arg1
, arg2
, arg3
);
6222 #ifdef TARGET_NR_mpx
6226 case TARGET_NR_setpgid
:
6227 ret
= get_errno(setpgid(arg1
, arg2
));
6229 #ifdef TARGET_NR_ulimit
6230 case TARGET_NR_ulimit
:
6233 #ifdef TARGET_NR_oldolduname
6234 case TARGET_NR_oldolduname
:
6237 case TARGET_NR_umask
:
6238 ret
= get_errno(umask(arg1
));
6240 case TARGET_NR_chroot
:
6241 if (!(p
= lock_user_string(arg1
)))
6243 ret
= get_errno(chroot(p
));
6244 unlock_user(p
, arg1
, 0);
6246 #ifdef TARGET_NR_ustat
6247 case TARGET_NR_ustat
:
6250 #ifdef TARGET_NR_dup2
6251 case TARGET_NR_dup2
:
6252 ret
= get_errno(dup2(arg1
, arg2
));
6255 #if defined(CONFIG_DUP3) && defined(TARGET_NR_dup3)
6256 case TARGET_NR_dup3
:
6257 ret
= get_errno(dup3(arg1
, arg2
, arg3
));
6260 #ifdef TARGET_NR_getppid /* not on alpha */
6261 case TARGET_NR_getppid
:
6262 ret
= get_errno(getppid());
6265 #ifdef TARGET_NR_getpgrp
6266 case TARGET_NR_getpgrp
:
6267 ret
= get_errno(getpgrp());
6270 case TARGET_NR_setsid
:
6271 ret
= get_errno(setsid());
6273 #ifdef TARGET_NR_sigaction
6274 case TARGET_NR_sigaction
:
6276 #if defined(TARGET_ALPHA)
6277 struct target_sigaction act
, oact
, *pact
= 0;
6278 struct target_old_sigaction
*old_act
;
6280 if (!lock_user_struct(VERIFY_READ
, old_act
, arg2
, 1))
6282 act
._sa_handler
= old_act
->_sa_handler
;
6283 target_siginitset(&act
.sa_mask
, old_act
->sa_mask
);
6284 act
.sa_flags
= old_act
->sa_flags
;
6285 act
.sa_restorer
= 0;
6286 unlock_user_struct(old_act
, arg2
, 0);
6289 ret
= get_errno(do_sigaction(arg1
, pact
, &oact
));
6290 if (!is_error(ret
) && arg3
) {
6291 if (!lock_user_struct(VERIFY_WRITE
, old_act
, arg3
, 0))
6293 old_act
->_sa_handler
= oact
._sa_handler
;
6294 old_act
->sa_mask
= oact
.sa_mask
.sig
[0];
6295 old_act
->sa_flags
= oact
.sa_flags
;
6296 unlock_user_struct(old_act
, arg3
, 1);
6298 #elif defined(TARGET_MIPS)
6299 struct target_sigaction act
, oact
, *pact
, *old_act
;
6302 if (!lock_user_struct(VERIFY_READ
, old_act
, arg2
, 1))
6304 act
._sa_handler
= old_act
->_sa_handler
;
6305 target_siginitset(&act
.sa_mask
, old_act
->sa_mask
.sig
[0]);
6306 act
.sa_flags
= old_act
->sa_flags
;
6307 unlock_user_struct(old_act
, arg2
, 0);
6313 ret
= get_errno(do_sigaction(arg1
, pact
, &oact
));
6315 if (!is_error(ret
) && arg3
) {
6316 if (!lock_user_struct(VERIFY_WRITE
, old_act
, arg3
, 0))
6318 old_act
->_sa_handler
= oact
._sa_handler
;
6319 old_act
->sa_flags
= oact
.sa_flags
;
6320 old_act
->sa_mask
.sig
[0] = oact
.sa_mask
.sig
[0];
6321 old_act
->sa_mask
.sig
[1] = 0;
6322 old_act
->sa_mask
.sig
[2] = 0;
6323 old_act
->sa_mask
.sig
[3] = 0;
6324 unlock_user_struct(old_act
, arg3
, 1);
6327 struct target_old_sigaction
*old_act
;
6328 struct target_sigaction act
, oact
, *pact
;
6330 if (!lock_user_struct(VERIFY_READ
, old_act
, arg2
, 1))
6332 act
._sa_handler
= old_act
->_sa_handler
;
6333 target_siginitset(&act
.sa_mask
, old_act
->sa_mask
);
6334 act
.sa_flags
= old_act
->sa_flags
;
6335 act
.sa_restorer
= old_act
->sa_restorer
;
6336 unlock_user_struct(old_act
, arg2
, 0);
6341 ret
= get_errno(do_sigaction(arg1
, pact
, &oact
));
6342 if (!is_error(ret
) && arg3
) {
6343 if (!lock_user_struct(VERIFY_WRITE
, old_act
, arg3
, 0))
6345 old_act
->_sa_handler
= oact
._sa_handler
;
6346 old_act
->sa_mask
= oact
.sa_mask
.sig
[0];
6347 old_act
->sa_flags
= oact
.sa_flags
;
6348 old_act
->sa_restorer
= oact
.sa_restorer
;
6349 unlock_user_struct(old_act
, arg3
, 1);
6355 case TARGET_NR_rt_sigaction
:
6357 #if defined(TARGET_ALPHA)
6358 struct target_sigaction act
, oact
, *pact
= 0;
6359 struct target_rt_sigaction
*rt_act
;
6360 /* ??? arg4 == sizeof(sigset_t). */
6362 if (!lock_user_struct(VERIFY_READ
, rt_act
, arg2
, 1))
6364 act
._sa_handler
= rt_act
->_sa_handler
;
6365 act
.sa_mask
= rt_act
->sa_mask
;
6366 act
.sa_flags
= rt_act
->sa_flags
;
6367 act
.sa_restorer
= arg5
;
6368 unlock_user_struct(rt_act
, arg2
, 0);
6371 ret
= get_errno(do_sigaction(arg1
, pact
, &oact
));
6372 if (!is_error(ret
) && arg3
) {
6373 if (!lock_user_struct(VERIFY_WRITE
, rt_act
, arg3
, 0))
6375 rt_act
->_sa_handler
= oact
._sa_handler
;
6376 rt_act
->sa_mask
= oact
.sa_mask
;
6377 rt_act
->sa_flags
= oact
.sa_flags
;
6378 unlock_user_struct(rt_act
, arg3
, 1);
6381 struct target_sigaction
*act
;
6382 struct target_sigaction
*oact
;
6385 if (!lock_user_struct(VERIFY_READ
, act
, arg2
, 1))
6390 if (!lock_user_struct(VERIFY_WRITE
, oact
, arg3
, 0)) {
6391 ret
= -TARGET_EFAULT
;
6392 goto rt_sigaction_fail
;
6396 ret
= get_errno(do_sigaction(arg1
, act
, oact
));
6399 unlock_user_struct(act
, arg2
, 0);
6401 unlock_user_struct(oact
, arg3
, 1);
6405 #ifdef TARGET_NR_sgetmask /* not on alpha */
6406 case TARGET_NR_sgetmask
:
6409 abi_ulong target_set
;
6410 do_sigprocmask(0, NULL
, &cur_set
);
6411 host_to_target_old_sigset(&target_set
, &cur_set
);
6416 #ifdef TARGET_NR_ssetmask /* not on alpha */
6417 case TARGET_NR_ssetmask
:
6419 sigset_t set
, oset
, cur_set
;
6420 abi_ulong target_set
= arg1
;
6421 do_sigprocmask(0, NULL
, &cur_set
);
6422 target_to_host_old_sigset(&set
, &target_set
);
6423 sigorset(&set
, &set
, &cur_set
);
6424 do_sigprocmask(SIG_SETMASK
, &set
, &oset
);
6425 host_to_target_old_sigset(&target_set
, &oset
);
6430 #ifdef TARGET_NR_sigprocmask
6431 case TARGET_NR_sigprocmask
:
6433 #if defined(TARGET_ALPHA)
6434 sigset_t set
, oldset
;
6439 case TARGET_SIG_BLOCK
:
6442 case TARGET_SIG_UNBLOCK
:
6445 case TARGET_SIG_SETMASK
:
6449 ret
= -TARGET_EINVAL
;
6453 target_to_host_old_sigset(&set
, &mask
);
6455 ret
= get_errno(do_sigprocmask(how
, &set
, &oldset
));
6456 if (!is_error(ret
)) {
6457 host_to_target_old_sigset(&mask
, &oldset
);
6459 ((CPUAlphaState
*)cpu_env
)->ir
[IR_V0
] = 0; /* force no error */
6462 sigset_t set
, oldset
, *set_ptr
;
6467 case TARGET_SIG_BLOCK
:
6470 case TARGET_SIG_UNBLOCK
:
6473 case TARGET_SIG_SETMASK
:
6477 ret
= -TARGET_EINVAL
;
6480 if (!(p
= lock_user(VERIFY_READ
, arg2
, sizeof(target_sigset_t
), 1)))
6482 target_to_host_old_sigset(&set
, p
);
6483 unlock_user(p
, arg2
, 0);
6489 ret
= get_errno(do_sigprocmask(how
, set_ptr
, &oldset
));
6490 if (!is_error(ret
) && arg3
) {
6491 if (!(p
= lock_user(VERIFY_WRITE
, arg3
, sizeof(target_sigset_t
), 0)))
6493 host_to_target_old_sigset(p
, &oldset
);
6494 unlock_user(p
, arg3
, sizeof(target_sigset_t
));
6500 case TARGET_NR_rt_sigprocmask
:
6503 sigset_t set
, oldset
, *set_ptr
;
6507 case TARGET_SIG_BLOCK
:
6510 case TARGET_SIG_UNBLOCK
:
6513 case TARGET_SIG_SETMASK
:
6517 ret
= -TARGET_EINVAL
;
6520 if (!(p
= lock_user(VERIFY_READ
, arg2
, sizeof(target_sigset_t
), 1)))
6522 target_to_host_sigset(&set
, p
);
6523 unlock_user(p
, arg2
, 0);
6529 ret
= get_errno(do_sigprocmask(how
, set_ptr
, &oldset
));
6530 if (!is_error(ret
) && arg3
) {
6531 if (!(p
= lock_user(VERIFY_WRITE
, arg3
, sizeof(target_sigset_t
), 0)))
6533 host_to_target_sigset(p
, &oldset
);
6534 unlock_user(p
, arg3
, sizeof(target_sigset_t
));
6538 #ifdef TARGET_NR_sigpending
6539 case TARGET_NR_sigpending
:
6542 ret
= get_errno(sigpending(&set
));
6543 if (!is_error(ret
)) {
6544 if (!(p
= lock_user(VERIFY_WRITE
, arg1
, sizeof(target_sigset_t
), 0)))
6546 host_to_target_old_sigset(p
, &set
);
6547 unlock_user(p
, arg1
, sizeof(target_sigset_t
));
6552 case TARGET_NR_rt_sigpending
:
6555 ret
= get_errno(sigpending(&set
));
6556 if (!is_error(ret
)) {
6557 if (!(p
= lock_user(VERIFY_WRITE
, arg1
, sizeof(target_sigset_t
), 0)))
6559 host_to_target_sigset(p
, &set
);
6560 unlock_user(p
, arg1
, sizeof(target_sigset_t
));
6564 #ifdef TARGET_NR_sigsuspend
6565 case TARGET_NR_sigsuspend
:
6568 #if defined(TARGET_ALPHA)
6569 abi_ulong mask
= arg1
;
6570 target_to_host_old_sigset(&set
, &mask
);
6572 if (!(p
= lock_user(VERIFY_READ
, arg1
, sizeof(target_sigset_t
), 1)))
6574 target_to_host_old_sigset(&set
, p
);
6575 unlock_user(p
, arg1
, 0);
6577 ret
= get_errno(sigsuspend(&set
));
6581 case TARGET_NR_rt_sigsuspend
:
6584 if (!(p
= lock_user(VERIFY_READ
, arg1
, sizeof(target_sigset_t
), 1)))
6586 target_to_host_sigset(&set
, p
);
6587 unlock_user(p
, arg1
, 0);
6588 ret
= get_errno(sigsuspend(&set
));
6591 case TARGET_NR_rt_sigtimedwait
:
6594 struct timespec uts
, *puts
;
6597 if (!(p
= lock_user(VERIFY_READ
, arg1
, sizeof(target_sigset_t
), 1)))
6599 target_to_host_sigset(&set
, p
);
6600 unlock_user(p
, arg1
, 0);
6603 target_to_host_timespec(puts
, arg3
);
6607 ret
= get_errno(sigtimedwait(&set
, &uinfo
, puts
));
6608 if (!is_error(ret
)) {
6610 p
= lock_user(VERIFY_WRITE
, arg2
, sizeof(target_siginfo_t
),
6615 host_to_target_siginfo(p
, &uinfo
);
6616 unlock_user(p
, arg2
, sizeof(target_siginfo_t
));
6618 ret
= host_to_target_signal(ret
);
6622 case TARGET_NR_rt_sigqueueinfo
:
6625 if (!(p
= lock_user(VERIFY_READ
, arg3
, sizeof(target_sigset_t
), 1)))
6627 target_to_host_siginfo(&uinfo
, p
);
6628 unlock_user(p
, arg1
, 0);
6629 ret
= get_errno(sys_rt_sigqueueinfo(arg1
, arg2
, &uinfo
));
6632 #ifdef TARGET_NR_sigreturn
6633 case TARGET_NR_sigreturn
:
6634 /* NOTE: ret is eax, so not transcoding must be done */
6635 ret
= do_sigreturn(cpu_env
);
6638 case TARGET_NR_rt_sigreturn
:
6639 /* NOTE: ret is eax, so not transcoding must be done */
6640 ret
= do_rt_sigreturn(cpu_env
);
6642 case TARGET_NR_sethostname
:
6643 if (!(p
= lock_user_string(arg1
)))
6645 ret
= get_errno(sethostname(p
, arg2
));
6646 unlock_user(p
, arg1
, 0);
6648 case TARGET_NR_setrlimit
:
6650 int resource
= target_to_host_resource(arg1
);
6651 struct target_rlimit
*target_rlim
;
6653 if (!lock_user_struct(VERIFY_READ
, target_rlim
, arg2
, 1))
6655 rlim
.rlim_cur
= target_to_host_rlim(target_rlim
->rlim_cur
);
6656 rlim
.rlim_max
= target_to_host_rlim(target_rlim
->rlim_max
);
6657 unlock_user_struct(target_rlim
, arg2
, 0);
6658 ret
= get_errno(setrlimit(resource
, &rlim
));
6661 case TARGET_NR_getrlimit
:
6663 int resource
= target_to_host_resource(arg1
);
6664 struct target_rlimit
*target_rlim
;
6667 ret
= get_errno(getrlimit(resource
, &rlim
));
6668 if (!is_error(ret
)) {
6669 if (!lock_user_struct(VERIFY_WRITE
, target_rlim
, arg2
, 0))
6671 target_rlim
->rlim_cur
= host_to_target_rlim(rlim
.rlim_cur
);
6672 target_rlim
->rlim_max
= host_to_target_rlim(rlim
.rlim_max
);
6673 unlock_user_struct(target_rlim
, arg2
, 1);
6677 case TARGET_NR_getrusage
:
6679 struct rusage rusage
;
6680 ret
= get_errno(getrusage(arg1
, &rusage
));
6681 if (!is_error(ret
)) {
6682 ret
= host_to_target_rusage(arg2
, &rusage
);
6686 case TARGET_NR_gettimeofday
:
6689 ret
= get_errno(gettimeofday(&tv
, NULL
));
6690 if (!is_error(ret
)) {
6691 if (copy_to_user_timeval(arg1
, &tv
))
6696 case TARGET_NR_settimeofday
:
6698 struct timeval tv
, *ptv
= NULL
;
6699 struct timezone tz
, *ptz
= NULL
;
6702 if (copy_from_user_timeval(&tv
, arg1
)) {
6709 if (copy_from_user_timezone(&tz
, arg2
)) {
6715 ret
= get_errno(settimeofday(ptv
, ptz
));
6718 #if defined(TARGET_NR_select)
6719 case TARGET_NR_select
:
6720 #if defined(TARGET_S390X) || defined(TARGET_ALPHA)
6721 ret
= do_select(arg1
, arg2
, arg3
, arg4
, arg5
);
6724 struct target_sel_arg_struct
*sel
;
6725 abi_ulong inp
, outp
, exp
, tvp
;
6728 if (!lock_user_struct(VERIFY_READ
, sel
, arg1
, 1))
6730 nsel
= tswapal(sel
->n
);
6731 inp
= tswapal(sel
->inp
);
6732 outp
= tswapal(sel
->outp
);
6733 exp
= tswapal(sel
->exp
);
6734 tvp
= tswapal(sel
->tvp
);
6735 unlock_user_struct(sel
, arg1
, 0);
6736 ret
= do_select(nsel
, inp
, outp
, exp
, tvp
);
6741 #ifdef TARGET_NR_pselect6
6742 case TARGET_NR_pselect6
:
6744 abi_long rfd_addr
, wfd_addr
, efd_addr
, n
, ts_addr
;
6745 fd_set rfds
, wfds
, efds
;
6746 fd_set
*rfds_ptr
, *wfds_ptr
, *efds_ptr
;
6747 struct timespec ts
, *ts_ptr
;
6750 * The 6th arg is actually two args smashed together,
6751 * so we cannot use the C library.
6759 abi_ulong arg_sigset
, arg_sigsize
, *arg7
;
6760 target_sigset_t
*target_sigset
;
6768 ret
= copy_from_user_fdset_ptr(&rfds
, &rfds_ptr
, rfd_addr
, n
);
6772 ret
= copy_from_user_fdset_ptr(&wfds
, &wfds_ptr
, wfd_addr
, n
);
6776 ret
= copy_from_user_fdset_ptr(&efds
, &efds_ptr
, efd_addr
, n
);
6782 * This takes a timespec, and not a timeval, so we cannot
6783 * use the do_select() helper ...
6786 if (target_to_host_timespec(&ts
, ts_addr
)) {
6794 /* Extract the two packed args for the sigset */
6797 sig
.size
= _NSIG
/ 8;
6799 arg7
= lock_user(VERIFY_READ
, arg6
, sizeof(*arg7
) * 2, 1);
6803 arg_sigset
= tswapal(arg7
[0]);
6804 arg_sigsize
= tswapal(arg7
[1]);
6805 unlock_user(arg7
, arg6
, 0);
6809 if (arg_sigsize
!= sizeof(*target_sigset
)) {
6810 /* Like the kernel, we enforce correct size sigsets */
6811 ret
= -TARGET_EINVAL
;
6814 target_sigset
= lock_user(VERIFY_READ
, arg_sigset
,
6815 sizeof(*target_sigset
), 1);
6816 if (!target_sigset
) {
6819 target_to_host_sigset(&set
, target_sigset
);
6820 unlock_user(target_sigset
, arg_sigset
, 0);
6828 ret
= get_errno(sys_pselect6(n
, rfds_ptr
, wfds_ptr
, efds_ptr
,
6831 if (!is_error(ret
)) {
6832 if (rfd_addr
&& copy_to_user_fdset(rfd_addr
, &rfds
, n
))
6834 if (wfd_addr
&& copy_to_user_fdset(wfd_addr
, &wfds
, n
))
6836 if (efd_addr
&& copy_to_user_fdset(efd_addr
, &efds
, n
))
6839 if (ts_addr
&& host_to_target_timespec(ts_addr
, &ts
))
6845 #ifdef TARGET_NR_symlink
6846 case TARGET_NR_symlink
:
6849 p
= lock_user_string(arg1
);
6850 p2
= lock_user_string(arg2
);
6852 ret
= -TARGET_EFAULT
;
6854 ret
= get_errno(symlink(p
, p2
));
6855 unlock_user(p2
, arg2
, 0);
6856 unlock_user(p
, arg1
, 0);
6860 #if defined(TARGET_NR_symlinkat)
6861 case TARGET_NR_symlinkat
:
6864 p
= lock_user_string(arg1
);
6865 p2
= lock_user_string(arg3
);
6867 ret
= -TARGET_EFAULT
;
6869 ret
= get_errno(symlinkat(p
, arg2
, p2
));
6870 unlock_user(p2
, arg3
, 0);
6871 unlock_user(p
, arg1
, 0);
6875 #ifdef TARGET_NR_oldlstat
6876 case TARGET_NR_oldlstat
:
6879 #ifdef TARGET_NR_readlink
6880 case TARGET_NR_readlink
:
6883 p
= lock_user_string(arg1
);
6884 p2
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0);
6886 ret
= -TARGET_EFAULT
;
6888 /* Short circuit this for the magic exe check. */
6889 ret
= -TARGET_EINVAL
;
6890 } else if (is_proc_myself((const char *)p
, "exe")) {
6891 char real
[PATH_MAX
], *temp
;
6892 temp
= realpath(exec_path
, real
);
6893 /* Return value is # of bytes that we wrote to the buffer. */
6895 ret
= get_errno(-1);
6897 /* Don't worry about sign mismatch as earlier mapping
6898 * logic would have thrown a bad address error. */
6899 ret
= MIN(strlen(real
), arg3
);
6900 /* We cannot NUL terminate the string. */
6901 memcpy(p2
, real
, ret
);
6904 ret
= get_errno(readlink(path(p
), p2
, arg3
));
6906 unlock_user(p2
, arg2
, ret
);
6907 unlock_user(p
, arg1
, 0);
6911 #if defined(TARGET_NR_readlinkat)
6912 case TARGET_NR_readlinkat
:
6915 p
= lock_user_string(arg2
);
6916 p2
= lock_user(VERIFY_WRITE
, arg3
, arg4
, 0);
6918 ret
= -TARGET_EFAULT
;
6919 } else if (is_proc_myself((const char *)p
, "exe")) {
6920 char real
[PATH_MAX
], *temp
;
6921 temp
= realpath(exec_path
, real
);
6922 ret
= temp
== NULL
? get_errno(-1) : strlen(real
) ;
6923 snprintf((char *)p2
, arg4
, "%s", real
);
6925 ret
= get_errno(readlinkat(arg1
, path(p
), p2
, arg4
));
6927 unlock_user(p2
, arg3
, ret
);
6928 unlock_user(p
, arg2
, 0);
6932 #ifdef TARGET_NR_uselib
6933 case TARGET_NR_uselib
:
6936 #ifdef TARGET_NR_swapon
6937 case TARGET_NR_swapon
:
6938 if (!(p
= lock_user_string(arg1
)))
6940 ret
= get_errno(swapon(p
, arg2
));
6941 unlock_user(p
, arg1
, 0);
6944 case TARGET_NR_reboot
:
6945 if (arg3
== LINUX_REBOOT_CMD_RESTART2
) {
6946 /* arg4 must be ignored in all other cases */
6947 p
= lock_user_string(arg4
);
6951 ret
= get_errno(reboot(arg1
, arg2
, arg3
, p
));
6952 unlock_user(p
, arg4
, 0);
6954 ret
= get_errno(reboot(arg1
, arg2
, arg3
, NULL
));
6957 #ifdef TARGET_NR_readdir
6958 case TARGET_NR_readdir
:
6961 #ifdef TARGET_NR_mmap
6962 case TARGET_NR_mmap
:
6963 #if (defined(TARGET_I386) && defined(TARGET_ABI32)) || \
6964 (defined(TARGET_ARM) && defined(TARGET_ABI32)) || \
6965 defined(TARGET_M68K) || defined(TARGET_CRIS) || defined(TARGET_MICROBLAZE) \
6966 || defined(TARGET_S390X)
6969 abi_ulong v1
, v2
, v3
, v4
, v5
, v6
;
6970 if (!(v
= lock_user(VERIFY_READ
, arg1
, 6 * sizeof(abi_ulong
), 1)))
6978 unlock_user(v
, arg1
, 0);
6979 ret
= get_errno(target_mmap(v1
, v2
, v3
,
6980 target_to_host_bitmask(v4
, mmap_flags_tbl
),
6984 ret
= get_errno(target_mmap(arg1
, arg2
, arg3
,
6985 target_to_host_bitmask(arg4
, mmap_flags_tbl
),
6991 #ifdef TARGET_NR_mmap2
6992 case TARGET_NR_mmap2
:
6994 #define MMAP_SHIFT 12
6996 ret
= get_errno(target_mmap(arg1
, arg2
, arg3
,
6997 target_to_host_bitmask(arg4
, mmap_flags_tbl
),
6999 arg6
<< MMAP_SHIFT
));
7002 case TARGET_NR_munmap
:
7003 ret
= get_errno(target_munmap(arg1
, arg2
));
7005 case TARGET_NR_mprotect
:
7007 TaskState
*ts
= cpu
->opaque
;
7008 /* Special hack to detect libc making the stack executable. */
7009 if ((arg3
& PROT_GROWSDOWN
)
7010 && arg1
>= ts
->info
->stack_limit
7011 && arg1
<= ts
->info
->start_stack
) {
7012 arg3
&= ~PROT_GROWSDOWN
;
7013 arg2
= arg2
+ arg1
- ts
->info
->stack_limit
;
7014 arg1
= ts
->info
->stack_limit
;
7017 ret
= get_errno(target_mprotect(arg1
, arg2
, arg3
));
7019 #ifdef TARGET_NR_mremap
7020 case TARGET_NR_mremap
:
7021 ret
= get_errno(target_mremap(arg1
, arg2
, arg3
, arg4
, arg5
));
7024 /* ??? msync/mlock/munlock are broken for softmmu. */
7025 #ifdef TARGET_NR_msync
7026 case TARGET_NR_msync
:
7027 ret
= get_errno(msync(g2h(arg1
), arg2
, arg3
));
7030 #ifdef TARGET_NR_mlock
7031 case TARGET_NR_mlock
:
7032 ret
= get_errno(mlock(g2h(arg1
), arg2
));
7035 #ifdef TARGET_NR_munlock
7036 case TARGET_NR_munlock
:
7037 ret
= get_errno(munlock(g2h(arg1
), arg2
));
7040 #ifdef TARGET_NR_mlockall
7041 case TARGET_NR_mlockall
:
7042 ret
= get_errno(mlockall(target_to_host_mlockall_arg(arg1
)));
7045 #ifdef TARGET_NR_munlockall
7046 case TARGET_NR_munlockall
:
7047 ret
= get_errno(munlockall());
7050 case TARGET_NR_truncate
:
7051 if (!(p
= lock_user_string(arg1
)))
7053 ret
= get_errno(truncate(p
, arg2
));
7054 unlock_user(p
, arg1
, 0);
7056 case TARGET_NR_ftruncate
:
7057 ret
= get_errno(ftruncate(arg1
, arg2
));
7059 case TARGET_NR_fchmod
:
7060 ret
= get_errno(fchmod(arg1
, arg2
));
7062 #if defined(TARGET_NR_fchmodat)
7063 case TARGET_NR_fchmodat
:
7064 if (!(p
= lock_user_string(arg2
)))
7066 ret
= get_errno(fchmodat(arg1
, p
, arg3
, 0));
7067 unlock_user(p
, arg2
, 0);
7070 case TARGET_NR_getpriority
:
7071 /* Note that negative values are valid for getpriority, so we must
7072 differentiate based on errno settings. */
7074 ret
= getpriority(arg1
, arg2
);
7075 if (ret
== -1 && errno
!= 0) {
7076 ret
= -host_to_target_errno(errno
);
7080 /* Return value is the unbiased priority. Signal no error. */
7081 ((CPUAlphaState
*)cpu_env
)->ir
[IR_V0
] = 0;
7083 /* Return value is a biased priority to avoid negative numbers. */
7087 case TARGET_NR_setpriority
:
7088 ret
= get_errno(setpriority(arg1
, arg2
, arg3
));
7090 #ifdef TARGET_NR_profil
7091 case TARGET_NR_profil
:
7094 case TARGET_NR_statfs
:
7095 if (!(p
= lock_user_string(arg1
)))
7097 ret
= get_errno(statfs(path(p
), &stfs
));
7098 unlock_user(p
, arg1
, 0);
7100 if (!is_error(ret
)) {
7101 struct target_statfs
*target_stfs
;
7103 if (!lock_user_struct(VERIFY_WRITE
, target_stfs
, arg2
, 0))
7105 __put_user(stfs
.f_type
, &target_stfs
->f_type
);
7106 __put_user(stfs
.f_bsize
, &target_stfs
->f_bsize
);
7107 __put_user(stfs
.f_blocks
, &target_stfs
->f_blocks
);
7108 __put_user(stfs
.f_bfree
, &target_stfs
->f_bfree
);
7109 __put_user(stfs
.f_bavail
, &target_stfs
->f_bavail
);
7110 __put_user(stfs
.f_files
, &target_stfs
->f_files
);
7111 __put_user(stfs
.f_ffree
, &target_stfs
->f_ffree
);
7112 __put_user(stfs
.f_fsid
.__val
[0], &target_stfs
->f_fsid
.val
[0]);
7113 __put_user(stfs
.f_fsid
.__val
[1], &target_stfs
->f_fsid
.val
[1]);
7114 __put_user(stfs
.f_namelen
, &target_stfs
->f_namelen
);
7115 __put_user(stfs
.f_frsize
, &target_stfs
->f_frsize
);
7116 memset(target_stfs
->f_spare
, 0, sizeof(target_stfs
->f_spare
));
7117 unlock_user_struct(target_stfs
, arg2
, 1);
7120 case TARGET_NR_fstatfs
:
7121 ret
= get_errno(fstatfs(arg1
, &stfs
));
7122 goto convert_statfs
;
7123 #ifdef TARGET_NR_statfs64
7124 case TARGET_NR_statfs64
:
7125 if (!(p
= lock_user_string(arg1
)))
7127 ret
= get_errno(statfs(path(p
), &stfs
));
7128 unlock_user(p
, arg1
, 0);
7130 if (!is_error(ret
)) {
7131 struct target_statfs64
*target_stfs
;
7133 if (!lock_user_struct(VERIFY_WRITE
, target_stfs
, arg3
, 0))
7135 __put_user(stfs
.f_type
, &target_stfs
->f_type
);
7136 __put_user(stfs
.f_bsize
, &target_stfs
->f_bsize
);
7137 __put_user(stfs
.f_blocks
, &target_stfs
->f_blocks
);
7138 __put_user(stfs
.f_bfree
, &target_stfs
->f_bfree
);
7139 __put_user(stfs
.f_bavail
, &target_stfs
->f_bavail
);
7140 __put_user(stfs
.f_files
, &target_stfs
->f_files
);
7141 __put_user(stfs
.f_ffree
, &target_stfs
->f_ffree
);
7142 __put_user(stfs
.f_fsid
.__val
[0], &target_stfs
->f_fsid
.val
[0]);
7143 __put_user(stfs
.f_fsid
.__val
[1], &target_stfs
->f_fsid
.val
[1]);
7144 __put_user(stfs
.f_namelen
, &target_stfs
->f_namelen
);
7145 __put_user(stfs
.f_frsize
, &target_stfs
->f_frsize
);
7146 memset(target_stfs
->f_spare
, 0, sizeof(target_stfs
->f_spare
));
7147 unlock_user_struct(target_stfs
, arg3
, 1);
7150 case TARGET_NR_fstatfs64
:
7151 ret
= get_errno(fstatfs(arg1
, &stfs
));
7152 goto convert_statfs64
;
7154 #ifdef TARGET_NR_ioperm
7155 case TARGET_NR_ioperm
:
7158 #ifdef TARGET_NR_socketcall
7159 case TARGET_NR_socketcall
:
7160 ret
= do_socketcall(arg1
, arg2
);
7163 #ifdef TARGET_NR_accept
7164 case TARGET_NR_accept
:
7165 ret
= do_accept4(arg1
, arg2
, arg3
, 0);
7168 #ifdef TARGET_NR_accept4
7169 case TARGET_NR_accept4
:
7170 #ifdef CONFIG_ACCEPT4
7171 ret
= do_accept4(arg1
, arg2
, arg3
, arg4
);
7177 #ifdef TARGET_NR_bind
7178 case TARGET_NR_bind
:
7179 ret
= do_bind(arg1
, arg2
, arg3
);
7182 #ifdef TARGET_NR_connect
7183 case TARGET_NR_connect
:
7184 ret
= do_connect(arg1
, arg2
, arg3
);
7187 #ifdef TARGET_NR_getpeername
7188 case TARGET_NR_getpeername
:
7189 ret
= do_getpeername(arg1
, arg2
, arg3
);
7192 #ifdef TARGET_NR_getsockname
7193 case TARGET_NR_getsockname
:
7194 ret
= do_getsockname(arg1
, arg2
, arg3
);
7197 #ifdef TARGET_NR_getsockopt
7198 case TARGET_NR_getsockopt
:
7199 ret
= do_getsockopt(arg1
, arg2
, arg3
, arg4
, arg5
);
7202 #ifdef TARGET_NR_listen
7203 case TARGET_NR_listen
:
7204 ret
= get_errno(listen(arg1
, arg2
));
7207 #ifdef TARGET_NR_recv
7208 case TARGET_NR_recv
:
7209 ret
= do_recvfrom(arg1
, arg2
, arg3
, arg4
, 0, 0);
7212 #ifdef TARGET_NR_recvfrom
7213 case TARGET_NR_recvfrom
:
7214 ret
= do_recvfrom(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
7217 #ifdef TARGET_NR_recvmsg
7218 case TARGET_NR_recvmsg
:
7219 ret
= do_sendrecvmsg(arg1
, arg2
, arg3
, 0);
7222 #ifdef TARGET_NR_send
7223 case TARGET_NR_send
:
7224 ret
= do_sendto(arg1
, arg2
, arg3
, arg4
, 0, 0);
7227 #ifdef TARGET_NR_sendmsg
7228 case TARGET_NR_sendmsg
:
7229 ret
= do_sendrecvmsg(arg1
, arg2
, arg3
, 1);
7232 #ifdef TARGET_NR_sendmmsg
7233 case TARGET_NR_sendmmsg
:
7234 ret
= do_sendrecvmmsg(arg1
, arg2
, arg3
, arg4
, 1);
7236 case TARGET_NR_recvmmsg
:
7237 ret
= do_sendrecvmmsg(arg1
, arg2
, arg3
, arg4
, 0);
7240 #ifdef TARGET_NR_sendto
7241 case TARGET_NR_sendto
:
7242 ret
= do_sendto(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
7245 #ifdef TARGET_NR_shutdown
7246 case TARGET_NR_shutdown
:
7247 ret
= get_errno(shutdown(arg1
, arg2
));
7250 #ifdef TARGET_NR_socket
7251 case TARGET_NR_socket
:
7252 ret
= do_socket(arg1
, arg2
, arg3
);
7255 #ifdef TARGET_NR_socketpair
7256 case TARGET_NR_socketpair
:
7257 ret
= do_socketpair(arg1
, arg2
, arg3
, arg4
);
7260 #ifdef TARGET_NR_setsockopt
7261 case TARGET_NR_setsockopt
:
7262 ret
= do_setsockopt(arg1
, arg2
, arg3
, arg4
, (socklen_t
) arg5
);
7266 case TARGET_NR_syslog
:
7267 if (!(p
= lock_user_string(arg2
)))
7269 ret
= get_errno(sys_syslog((int)arg1
, p
, (int)arg3
));
7270 unlock_user(p
, arg2
, 0);
7273 case TARGET_NR_setitimer
:
7275 struct itimerval value
, ovalue
, *pvalue
;
7279 if (copy_from_user_timeval(&pvalue
->it_interval
, arg2
)
7280 || copy_from_user_timeval(&pvalue
->it_value
,
7281 arg2
+ sizeof(struct target_timeval
)))
7286 ret
= get_errno(setitimer(arg1
, pvalue
, &ovalue
));
7287 if (!is_error(ret
) && arg3
) {
7288 if (copy_to_user_timeval(arg3
,
7289 &ovalue
.it_interval
)
7290 || copy_to_user_timeval(arg3
+ sizeof(struct target_timeval
),
7296 case TARGET_NR_getitimer
:
7298 struct itimerval value
;
7300 ret
= get_errno(getitimer(arg1
, &value
));
7301 if (!is_error(ret
) && arg2
) {
7302 if (copy_to_user_timeval(arg2
,
7304 || copy_to_user_timeval(arg2
+ sizeof(struct target_timeval
),
7310 #ifdef TARGET_NR_stat
7311 case TARGET_NR_stat
:
7312 if (!(p
= lock_user_string(arg1
)))
7314 ret
= get_errno(stat(path(p
), &st
));
7315 unlock_user(p
, arg1
, 0);
7318 #ifdef TARGET_NR_lstat
7319 case TARGET_NR_lstat
:
7320 if (!(p
= lock_user_string(arg1
)))
7322 ret
= get_errno(lstat(path(p
), &st
));
7323 unlock_user(p
, arg1
, 0);
7326 case TARGET_NR_fstat
:
7328 ret
= get_errno(fstat(arg1
, &st
));
7329 #if defined(TARGET_NR_stat) || defined(TARGET_NR_lstat)
7332 if (!is_error(ret
)) {
7333 struct target_stat
*target_st
;
7335 if (!lock_user_struct(VERIFY_WRITE
, target_st
, arg2
, 0))
7337 memset(target_st
, 0, sizeof(*target_st
));
7338 __put_user(st
.st_dev
, &target_st
->st_dev
);
7339 __put_user(st
.st_ino
, &target_st
->st_ino
);
7340 __put_user(st
.st_mode
, &target_st
->st_mode
);
7341 __put_user(st
.st_uid
, &target_st
->st_uid
);
7342 __put_user(st
.st_gid
, &target_st
->st_gid
);
7343 __put_user(st
.st_nlink
, &target_st
->st_nlink
);
7344 __put_user(st
.st_rdev
, &target_st
->st_rdev
);
7345 __put_user(st
.st_size
, &target_st
->st_size
);
7346 __put_user(st
.st_blksize
, &target_st
->st_blksize
);
7347 __put_user(st
.st_blocks
, &target_st
->st_blocks
);
7348 __put_user(st
.st_atime
, &target_st
->target_st_atime
);
7349 __put_user(st
.st_mtime
, &target_st
->target_st_mtime
);
7350 __put_user(st
.st_ctime
, &target_st
->target_st_ctime
);
7351 unlock_user_struct(target_st
, arg2
, 1);
7355 #ifdef TARGET_NR_olduname
7356 case TARGET_NR_olduname
:
7359 #ifdef TARGET_NR_iopl
7360 case TARGET_NR_iopl
:
7363 case TARGET_NR_vhangup
:
7364 ret
= get_errno(vhangup());
7366 #ifdef TARGET_NR_idle
7367 case TARGET_NR_idle
:
7370 #ifdef TARGET_NR_syscall
7371 case TARGET_NR_syscall
:
7372 ret
= do_syscall(cpu_env
, arg1
& 0xffff, arg2
, arg3
, arg4
, arg5
,
7373 arg6
, arg7
, arg8
, 0);
7376 case TARGET_NR_wait4
:
7379 abi_long status_ptr
= arg2
;
7380 struct rusage rusage
, *rusage_ptr
;
7381 abi_ulong target_rusage
= arg4
;
7382 abi_long rusage_err
;
7384 rusage_ptr
= &rusage
;
7387 ret
= get_errno(wait4(arg1
, &status
, arg3
, rusage_ptr
));
7388 if (!is_error(ret
)) {
7389 if (status_ptr
&& ret
) {
7390 status
= host_to_target_waitstatus(status
);
7391 if (put_user_s32(status
, status_ptr
))
7394 if (target_rusage
) {
7395 rusage_err
= host_to_target_rusage(target_rusage
, &rusage
);
7403 #ifdef TARGET_NR_swapoff
7404 case TARGET_NR_swapoff
:
7405 if (!(p
= lock_user_string(arg1
)))
7407 ret
= get_errno(swapoff(p
));
7408 unlock_user(p
, arg1
, 0);
7411 case TARGET_NR_sysinfo
:
7413 struct target_sysinfo
*target_value
;
7414 struct sysinfo value
;
7415 ret
= get_errno(sysinfo(&value
));
7416 if (!is_error(ret
) && arg1
)
7418 if (!lock_user_struct(VERIFY_WRITE
, target_value
, arg1
, 0))
7420 __put_user(value
.uptime
, &target_value
->uptime
);
7421 __put_user(value
.loads
[0], &target_value
->loads
[0]);
7422 __put_user(value
.loads
[1], &target_value
->loads
[1]);
7423 __put_user(value
.loads
[2], &target_value
->loads
[2]);
7424 __put_user(value
.totalram
, &target_value
->totalram
);
7425 __put_user(value
.freeram
, &target_value
->freeram
);
7426 __put_user(value
.sharedram
, &target_value
->sharedram
);
7427 __put_user(value
.bufferram
, &target_value
->bufferram
);
7428 __put_user(value
.totalswap
, &target_value
->totalswap
);
7429 __put_user(value
.freeswap
, &target_value
->freeswap
);
7430 __put_user(value
.procs
, &target_value
->procs
);
7431 __put_user(value
.totalhigh
, &target_value
->totalhigh
);
7432 __put_user(value
.freehigh
, &target_value
->freehigh
);
7433 __put_user(value
.mem_unit
, &target_value
->mem_unit
);
7434 unlock_user_struct(target_value
, arg1
, 1);
7438 #ifdef TARGET_NR_ipc
7440 ret
= do_ipc(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
7443 #ifdef TARGET_NR_semget
7444 case TARGET_NR_semget
:
7445 ret
= get_errno(semget(arg1
, arg2
, arg3
));
7448 #ifdef TARGET_NR_semop
7449 case TARGET_NR_semop
:
7450 ret
= do_semop(arg1
, arg2
, arg3
);
7453 #ifdef TARGET_NR_semctl
7454 case TARGET_NR_semctl
:
7455 ret
= do_semctl(arg1
, arg2
, arg3
, (union target_semun
)(abi_ulong
)arg4
);
7458 #ifdef TARGET_NR_msgctl
7459 case TARGET_NR_msgctl
:
7460 ret
= do_msgctl(arg1
, arg2
, arg3
);
7463 #ifdef TARGET_NR_msgget
7464 case TARGET_NR_msgget
:
7465 ret
= get_errno(msgget(arg1
, arg2
));
7468 #ifdef TARGET_NR_msgrcv
7469 case TARGET_NR_msgrcv
:
7470 ret
= do_msgrcv(arg1
, arg2
, arg3
, arg4
, arg5
);
7473 #ifdef TARGET_NR_msgsnd
7474 case TARGET_NR_msgsnd
:
7475 ret
= do_msgsnd(arg1
, arg2
, arg3
, arg4
);
7478 #ifdef TARGET_NR_shmget
7479 case TARGET_NR_shmget
:
7480 ret
= get_errno(shmget(arg1
, arg2
, arg3
));
7483 #ifdef TARGET_NR_shmctl
7484 case TARGET_NR_shmctl
:
7485 ret
= do_shmctl(arg1
, arg2
, arg3
);
7488 #ifdef TARGET_NR_shmat
7489 case TARGET_NR_shmat
:
7490 ret
= do_shmat(arg1
, arg2
, arg3
);
7493 #ifdef TARGET_NR_shmdt
7494 case TARGET_NR_shmdt
:
7495 ret
= do_shmdt(arg1
);
7498 case TARGET_NR_fsync
:
7499 ret
= get_errno(fsync(arg1
));
7501 case TARGET_NR_clone
:
7502 /* Linux manages to have three different orderings for its
7503 * arguments to clone(); the BACKWARDS and BACKWARDS2 defines
7504 * match the kernel's CONFIG_CLONE_* settings.
7505 * Microblaze is further special in that it uses a sixth
7506 * implicit argument to clone for the TLS pointer.
7508 #if defined(TARGET_MICROBLAZE)
7509 ret
= get_errno(do_fork(cpu_env
, arg1
, arg2
, arg4
, arg6
, arg5
));
7510 #elif defined(TARGET_CLONE_BACKWARDS)
7511 ret
= get_errno(do_fork(cpu_env
, arg1
, arg2
, arg3
, arg4
, arg5
));
7512 #elif defined(TARGET_CLONE_BACKWARDS2)
7513 ret
= get_errno(do_fork(cpu_env
, arg2
, arg1
, arg3
, arg5
, arg4
));
7515 ret
= get_errno(do_fork(cpu_env
, arg1
, arg2
, arg3
, arg5
, arg4
));
7518 #ifdef __NR_exit_group
7519 /* new thread calls */
7520 case TARGET_NR_exit_group
:
7524 gdb_exit(cpu_env
, arg1
);
7525 ret
= get_errno(exit_group(arg1
));
7528 case TARGET_NR_setdomainname
:
7529 if (!(p
= lock_user_string(arg1
)))
7531 ret
= get_errno(setdomainname(p
, arg2
));
7532 unlock_user(p
, arg1
, 0);
7534 case TARGET_NR_uname
:
7535 /* no need to transcode because we use the linux syscall */
7537 struct new_utsname
* buf
;
7539 if (!lock_user_struct(VERIFY_WRITE
, buf
, arg1
, 0))
7541 ret
= get_errno(sys_uname(buf
));
7542 if (!is_error(ret
)) {
7543 /* Overrite the native machine name with whatever is being
7545 strcpy (buf
->machine
, cpu_to_uname_machine(cpu_env
));
7546 /* Allow the user to override the reported release. */
7547 if (qemu_uname_release
&& *qemu_uname_release
)
7548 strcpy (buf
->release
, qemu_uname_release
);
7550 unlock_user_struct(buf
, arg1
, 1);
7554 case TARGET_NR_modify_ldt
:
7555 ret
= do_modify_ldt(cpu_env
, arg1
, arg2
, arg3
);
7557 #if !defined(TARGET_X86_64)
7558 case TARGET_NR_vm86old
:
7560 case TARGET_NR_vm86
:
7561 ret
= do_vm86(cpu_env
, arg1
, arg2
);
7565 case TARGET_NR_adjtimex
:
7567 #ifdef TARGET_NR_create_module
7568 case TARGET_NR_create_module
:
7570 case TARGET_NR_init_module
:
7571 case TARGET_NR_delete_module
:
7572 #ifdef TARGET_NR_get_kernel_syms
7573 case TARGET_NR_get_kernel_syms
:
7576 case TARGET_NR_quotactl
:
7578 case TARGET_NR_getpgid
:
7579 ret
= get_errno(getpgid(arg1
));
7581 case TARGET_NR_fchdir
:
7582 ret
= get_errno(fchdir(arg1
));
7584 #ifdef TARGET_NR_bdflush /* not on x86_64 */
7585 case TARGET_NR_bdflush
:
7588 #ifdef TARGET_NR_sysfs
7589 case TARGET_NR_sysfs
:
7592 case TARGET_NR_personality
:
7593 ret
= get_errno(personality(arg1
));
7595 #ifdef TARGET_NR_afs_syscall
7596 case TARGET_NR_afs_syscall
:
7599 #ifdef TARGET_NR__llseek /* Not on alpha */
7600 case TARGET_NR__llseek
:
7603 #if !defined(__NR_llseek)
7604 res
= lseek(arg1
, ((uint64_t)arg2
<< 32) | arg3
, arg5
);
7606 ret
= get_errno(res
);
7611 ret
= get_errno(_llseek(arg1
, arg2
, arg3
, &res
, arg5
));
7613 if ((ret
== 0) && put_user_s64(res
, arg4
)) {
7619 #ifdef TARGET_NR_getdents
7620 case TARGET_NR_getdents
:
7621 #ifdef __NR_getdents
7622 #if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
7624 struct target_dirent
*target_dirp
;
7625 struct linux_dirent
*dirp
;
7626 abi_long count
= arg3
;
7628 dirp
= malloc(count
);
7630 ret
= -TARGET_ENOMEM
;
7634 ret
= get_errno(sys_getdents(arg1
, dirp
, count
));
7635 if (!is_error(ret
)) {
7636 struct linux_dirent
*de
;
7637 struct target_dirent
*tde
;
7639 int reclen
, treclen
;
7640 int count1
, tnamelen
;
7644 if (!(target_dirp
= lock_user(VERIFY_WRITE
, arg2
, count
, 0)))
7648 reclen
= de
->d_reclen
;
7649 tnamelen
= reclen
- offsetof(struct linux_dirent
, d_name
);
7650 assert(tnamelen
>= 0);
7651 treclen
= tnamelen
+ offsetof(struct target_dirent
, d_name
);
7652 assert(count1
+ treclen
<= count
);
7653 tde
->d_reclen
= tswap16(treclen
);
7654 tde
->d_ino
= tswapal(de
->d_ino
);
7655 tde
->d_off
= tswapal(de
->d_off
);
7656 memcpy(tde
->d_name
, de
->d_name
, tnamelen
);
7657 de
= (struct linux_dirent
*)((char *)de
+ reclen
);
7659 tde
= (struct target_dirent
*)((char *)tde
+ treclen
);
7663 unlock_user(target_dirp
, arg2
, ret
);
7669 struct linux_dirent
*dirp
;
7670 abi_long count
= arg3
;
7672 if (!(dirp
= lock_user(VERIFY_WRITE
, arg2
, count
, 0)))
7674 ret
= get_errno(sys_getdents(arg1
, dirp
, count
));
7675 if (!is_error(ret
)) {
7676 struct linux_dirent
*de
;
7681 reclen
= de
->d_reclen
;
7684 de
->d_reclen
= tswap16(reclen
);
7685 tswapls(&de
->d_ino
);
7686 tswapls(&de
->d_off
);
7687 de
= (struct linux_dirent
*)((char *)de
+ reclen
);
7691 unlock_user(dirp
, arg2
, ret
);
7695 /* Implement getdents in terms of getdents64 */
7697 struct linux_dirent64
*dirp
;
7698 abi_long count
= arg3
;
7700 dirp
= lock_user(VERIFY_WRITE
, arg2
, count
, 0);
7704 ret
= get_errno(sys_getdents64(arg1
, dirp
, count
));
7705 if (!is_error(ret
)) {
7706 /* Convert the dirent64 structs to target dirent. We do this
7707 * in-place, since we can guarantee that a target_dirent is no
7708 * larger than a dirent64; however this means we have to be
7709 * careful to read everything before writing in the new format.
7711 struct linux_dirent64
*de
;
7712 struct target_dirent
*tde
;
7717 tde
= (struct target_dirent
*)dirp
;
7719 int namelen
, treclen
;
7720 int reclen
= de
->d_reclen
;
7721 uint64_t ino
= de
->d_ino
;
7722 int64_t off
= de
->d_off
;
7723 uint8_t type
= de
->d_type
;
7725 namelen
= strlen(de
->d_name
);
7726 treclen
= offsetof(struct target_dirent
, d_name
)
7728 treclen
= QEMU_ALIGN_UP(treclen
, sizeof(abi_long
));
7730 memmove(tde
->d_name
, de
->d_name
, namelen
+ 1);
7731 tde
->d_ino
= tswapal(ino
);
7732 tde
->d_off
= tswapal(off
);
7733 tde
->d_reclen
= tswap16(treclen
);
7734 /* The target_dirent type is in what was formerly a padding
7735 * byte at the end of the structure:
7737 *(((char *)tde
) + treclen
- 1) = type
;
7739 de
= (struct linux_dirent64
*)((char *)de
+ reclen
);
7740 tde
= (struct target_dirent
*)((char *)tde
+ treclen
);
7746 unlock_user(dirp
, arg2
, ret
);
7750 #endif /* TARGET_NR_getdents */
7751 #if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
7752 case TARGET_NR_getdents64
:
7754 struct linux_dirent64
*dirp
;
7755 abi_long count
= arg3
;
7756 if (!(dirp
= lock_user(VERIFY_WRITE
, arg2
, count
, 0)))
7758 ret
= get_errno(sys_getdents64(arg1
, dirp
, count
));
7759 if (!is_error(ret
)) {
7760 struct linux_dirent64
*de
;
7765 reclen
= de
->d_reclen
;
7768 de
->d_reclen
= tswap16(reclen
);
7769 tswap64s((uint64_t *)&de
->d_ino
);
7770 tswap64s((uint64_t *)&de
->d_off
);
7771 de
= (struct linux_dirent64
*)((char *)de
+ reclen
);
7775 unlock_user(dirp
, arg2
, ret
);
7778 #endif /* TARGET_NR_getdents64 */
7779 #if defined(TARGET_NR__newselect)
7780 case TARGET_NR__newselect
:
7781 ret
= do_select(arg1
, arg2
, arg3
, arg4
, arg5
);
7784 #if defined(TARGET_NR_poll) || defined(TARGET_NR_ppoll)
7785 # ifdef TARGET_NR_poll
7786 case TARGET_NR_poll
:
7788 # ifdef TARGET_NR_ppoll
7789 case TARGET_NR_ppoll
:
7792 struct target_pollfd
*target_pfd
;
7793 unsigned int nfds
= arg2
;
7798 target_pfd
= lock_user(VERIFY_WRITE
, arg1
, sizeof(struct target_pollfd
) * nfds
, 1);
7802 pfd
= alloca(sizeof(struct pollfd
) * nfds
);
7803 for(i
= 0; i
< nfds
; i
++) {
7804 pfd
[i
].fd
= tswap32(target_pfd
[i
].fd
);
7805 pfd
[i
].events
= tswap16(target_pfd
[i
].events
);
7808 # ifdef TARGET_NR_ppoll
7809 if (num
== TARGET_NR_ppoll
) {
7810 struct timespec _timeout_ts
, *timeout_ts
= &_timeout_ts
;
7811 target_sigset_t
*target_set
;
7812 sigset_t _set
, *set
= &_set
;
7815 if (target_to_host_timespec(timeout_ts
, arg3
)) {
7816 unlock_user(target_pfd
, arg1
, 0);
7824 target_set
= lock_user(VERIFY_READ
, arg4
, sizeof(target_sigset_t
), 1);
7826 unlock_user(target_pfd
, arg1
, 0);
7829 target_to_host_sigset(set
, target_set
);
7834 ret
= get_errno(sys_ppoll(pfd
, nfds
, timeout_ts
, set
, _NSIG
/8));
7836 if (!is_error(ret
) && arg3
) {
7837 host_to_target_timespec(arg3
, timeout_ts
);
7840 unlock_user(target_set
, arg4
, 0);
7844 ret
= get_errno(poll(pfd
, nfds
, timeout
));
7846 if (!is_error(ret
)) {
7847 for(i
= 0; i
< nfds
; i
++) {
7848 target_pfd
[i
].revents
= tswap16(pfd
[i
].revents
);
7851 unlock_user(target_pfd
, arg1
, sizeof(struct target_pollfd
) * nfds
);
7855 case TARGET_NR_flock
:
7856 /* NOTE: the flock constant seems to be the same for every
7858 ret
= get_errno(flock(arg1
, arg2
));
7860 case TARGET_NR_readv
:
7862 struct iovec
*vec
= lock_iovec(VERIFY_WRITE
, arg2
, arg3
, 0);
7864 ret
= get_errno(readv(arg1
, vec
, arg3
));
7865 unlock_iovec(vec
, arg2
, arg3
, 1);
7867 ret
= -host_to_target_errno(errno
);
7871 case TARGET_NR_writev
:
7873 struct iovec
*vec
= lock_iovec(VERIFY_READ
, arg2
, arg3
, 1);
7875 ret
= get_errno(writev(arg1
, vec
, arg3
));
7876 unlock_iovec(vec
, arg2
, arg3
, 0);
7878 ret
= -host_to_target_errno(errno
);
7882 case TARGET_NR_getsid
:
7883 ret
= get_errno(getsid(arg1
));
7885 #if defined(TARGET_NR_fdatasync) /* Not on alpha (osf_datasync ?) */
7886 case TARGET_NR_fdatasync
:
7887 ret
= get_errno(fdatasync(arg1
));
7890 #ifdef TARGET_NR__sysctl
7891 case TARGET_NR__sysctl
:
7892 /* We don't implement this, but ENOTDIR is always a safe
7894 ret
= -TARGET_ENOTDIR
;
7897 case TARGET_NR_sched_getaffinity
:
7899 unsigned int mask_size
;
7900 unsigned long *mask
;
7903 * sched_getaffinity needs multiples of ulong, so need to take
7904 * care of mismatches between target ulong and host ulong sizes.
7906 if (arg2
& (sizeof(abi_ulong
) - 1)) {
7907 ret
= -TARGET_EINVAL
;
7910 mask_size
= (arg2
+ (sizeof(*mask
) - 1)) & ~(sizeof(*mask
) - 1);
7912 mask
= alloca(mask_size
);
7913 ret
= get_errno(sys_sched_getaffinity(arg1
, mask_size
, mask
));
7915 if (!is_error(ret
)) {
7917 /* More data returned than the caller's buffer will fit.
7918 * This only happens if sizeof(abi_long) < sizeof(long)
7919 * and the caller passed us a buffer holding an odd number
7920 * of abi_longs. If the host kernel is actually using the
7921 * extra 4 bytes then fail EINVAL; otherwise we can just
7922 * ignore them and only copy the interesting part.
7924 int numcpus
= sysconf(_SC_NPROCESSORS_CONF
);
7925 if (numcpus
> arg2
* 8) {
7926 ret
= -TARGET_EINVAL
;
7932 if (copy_to_user(arg3
, mask
, ret
)) {
7938 case TARGET_NR_sched_setaffinity
:
7940 unsigned int mask_size
;
7941 unsigned long *mask
;
7944 * sched_setaffinity needs multiples of ulong, so need to take
7945 * care of mismatches between target ulong and host ulong sizes.
7947 if (arg2
& (sizeof(abi_ulong
) - 1)) {
7948 ret
= -TARGET_EINVAL
;
7951 mask_size
= (arg2
+ (sizeof(*mask
) - 1)) & ~(sizeof(*mask
) - 1);
7953 mask
= alloca(mask_size
);
7954 if (!lock_user_struct(VERIFY_READ
, p
, arg3
, 1)) {
7957 memcpy(mask
, p
, arg2
);
7958 unlock_user_struct(p
, arg2
, 0);
7960 ret
= get_errno(sys_sched_setaffinity(arg1
, mask_size
, mask
));
7963 case TARGET_NR_sched_setparam
:
7965 struct sched_param
*target_schp
;
7966 struct sched_param schp
;
7969 return -TARGET_EINVAL
;
7971 if (!lock_user_struct(VERIFY_READ
, target_schp
, arg2
, 1))
7973 schp
.sched_priority
= tswap32(target_schp
->sched_priority
);
7974 unlock_user_struct(target_schp
, arg2
, 0);
7975 ret
= get_errno(sched_setparam(arg1
, &schp
));
7978 case TARGET_NR_sched_getparam
:
7980 struct sched_param
*target_schp
;
7981 struct sched_param schp
;
7984 return -TARGET_EINVAL
;
7986 ret
= get_errno(sched_getparam(arg1
, &schp
));
7987 if (!is_error(ret
)) {
7988 if (!lock_user_struct(VERIFY_WRITE
, target_schp
, arg2
, 0))
7990 target_schp
->sched_priority
= tswap32(schp
.sched_priority
);
7991 unlock_user_struct(target_schp
, arg2
, 1);
7995 case TARGET_NR_sched_setscheduler
:
7997 struct sched_param
*target_schp
;
7998 struct sched_param schp
;
8000 return -TARGET_EINVAL
;
8002 if (!lock_user_struct(VERIFY_READ
, target_schp
, arg3
, 1))
8004 schp
.sched_priority
= tswap32(target_schp
->sched_priority
);
8005 unlock_user_struct(target_schp
, arg3
, 0);
8006 ret
= get_errno(sched_setscheduler(arg1
, arg2
, &schp
));
8009 case TARGET_NR_sched_getscheduler
:
8010 ret
= get_errno(sched_getscheduler(arg1
));
8012 case TARGET_NR_sched_yield
:
8013 ret
= get_errno(sched_yield());
8015 case TARGET_NR_sched_get_priority_max
:
8016 ret
= get_errno(sched_get_priority_max(arg1
));
8018 case TARGET_NR_sched_get_priority_min
:
8019 ret
= get_errno(sched_get_priority_min(arg1
));
8021 case TARGET_NR_sched_rr_get_interval
:
8024 ret
= get_errno(sched_rr_get_interval(arg1
, &ts
));
8025 if (!is_error(ret
)) {
8026 ret
= host_to_target_timespec(arg2
, &ts
);
8030 case TARGET_NR_nanosleep
:
8032 struct timespec req
, rem
;
8033 target_to_host_timespec(&req
, arg1
);
8034 ret
= get_errno(nanosleep(&req
, &rem
));
8035 if (is_error(ret
) && arg2
) {
8036 host_to_target_timespec(arg2
, &rem
);
8040 #ifdef TARGET_NR_query_module
8041 case TARGET_NR_query_module
:
8044 #ifdef TARGET_NR_nfsservctl
8045 case TARGET_NR_nfsservctl
:
8048 case TARGET_NR_prctl
:
8050 case PR_GET_PDEATHSIG
:
8053 ret
= get_errno(prctl(arg1
, &deathsig
, arg3
, arg4
, arg5
));
8054 if (!is_error(ret
) && arg2
8055 && put_user_ual(deathsig
, arg2
)) {
8063 void *name
= lock_user(VERIFY_WRITE
, arg2
, 16, 1);
8067 ret
= get_errno(prctl(arg1
, (unsigned long)name
,
8069 unlock_user(name
, arg2
, 16);
8074 void *name
= lock_user(VERIFY_READ
, arg2
, 16, 1);
8078 ret
= get_errno(prctl(arg1
, (unsigned long)name
,
8080 unlock_user(name
, arg2
, 0);
8085 /* Most prctl options have no pointer arguments */
8086 ret
= get_errno(prctl(arg1
, arg2
, arg3
, arg4
, arg5
));
8090 #ifdef TARGET_NR_arch_prctl
8091 case TARGET_NR_arch_prctl
:
8092 #if defined(TARGET_I386) && !defined(TARGET_ABI32)
8093 ret
= do_arch_prctl(cpu_env
, arg1
, arg2
);
8099 #ifdef TARGET_NR_pread64
8100 case TARGET_NR_pread64
:
8101 if (regpairs_aligned(cpu_env
)) {
8105 if (!(p
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0)))
8107 ret
= get_errno(pread64(arg1
, p
, arg3
, target_offset64(arg4
, arg5
)));
8108 unlock_user(p
, arg2
, ret
);
8110 case TARGET_NR_pwrite64
:
8111 if (regpairs_aligned(cpu_env
)) {
8115 if (!(p
= lock_user(VERIFY_READ
, arg2
, arg3
, 1)))
8117 ret
= get_errno(pwrite64(arg1
, p
, arg3
, target_offset64(arg4
, arg5
)));
8118 unlock_user(p
, arg2
, 0);
8121 case TARGET_NR_getcwd
:
8122 if (!(p
= lock_user(VERIFY_WRITE
, arg1
, arg2
, 0)))
8124 ret
= get_errno(sys_getcwd1(p
, arg2
));
8125 unlock_user(p
, arg1
, ret
);
8127 case TARGET_NR_capget
:
8128 case TARGET_NR_capset
:
8130 struct target_user_cap_header
*target_header
;
8131 struct target_user_cap_data
*target_data
= NULL
;
8132 struct __user_cap_header_struct header
;
8133 struct __user_cap_data_struct data
[2];
8134 struct __user_cap_data_struct
*dataptr
= NULL
;
8135 int i
, target_datalen
;
8138 if (!lock_user_struct(VERIFY_WRITE
, target_header
, arg1
, 1)) {
8141 header
.version
= tswap32(target_header
->version
);
8142 header
.pid
= tswap32(target_header
->pid
);
8144 if (header
.version
!= _LINUX_CAPABILITY_VERSION
) {
8145 /* Version 2 and up takes pointer to two user_data structs */
8149 target_datalen
= sizeof(*target_data
) * data_items
;
8152 if (num
== TARGET_NR_capget
) {
8153 target_data
= lock_user(VERIFY_WRITE
, arg2
, target_datalen
, 0);
8155 target_data
= lock_user(VERIFY_READ
, arg2
, target_datalen
, 1);
8158 unlock_user_struct(target_header
, arg1
, 0);
8162 if (num
== TARGET_NR_capset
) {
8163 for (i
= 0; i
< data_items
; i
++) {
8164 data
[i
].effective
= tswap32(target_data
[i
].effective
);
8165 data
[i
].permitted
= tswap32(target_data
[i
].permitted
);
8166 data
[i
].inheritable
= tswap32(target_data
[i
].inheritable
);
8173 if (num
== TARGET_NR_capget
) {
8174 ret
= get_errno(capget(&header
, dataptr
));
8176 ret
= get_errno(capset(&header
, dataptr
));
8179 /* The kernel always updates version for both capget and capset */
8180 target_header
->version
= tswap32(header
.version
);
8181 unlock_user_struct(target_header
, arg1
, 1);
8184 if (num
== TARGET_NR_capget
) {
8185 for (i
= 0; i
< data_items
; i
++) {
8186 target_data
[i
].effective
= tswap32(data
[i
].effective
);
8187 target_data
[i
].permitted
= tswap32(data
[i
].permitted
);
8188 target_data
[i
].inheritable
= tswap32(data
[i
].inheritable
);
8190 unlock_user(target_data
, arg2
, target_datalen
);
8192 unlock_user(target_data
, arg2
, 0);
8197 case TARGET_NR_sigaltstack
:
8198 #if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) || \
8199 defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_ALPHA) || \
8200 defined(TARGET_M68K) || defined(TARGET_S390X) || defined(TARGET_OPENRISC)
8201 ret
= do_sigaltstack(arg1
, arg2
, get_sp_from_cpustate((CPUArchState
*)cpu_env
));
8207 #ifdef CONFIG_SENDFILE
8208 case TARGET_NR_sendfile
:
8213 ret
= get_user_sal(off
, arg3
);
8214 if (is_error(ret
)) {
8219 ret
= get_errno(sendfile(arg1
, arg2
, offp
, arg4
));
8220 if (!is_error(ret
) && arg3
) {
8221 abi_long ret2
= put_user_sal(off
, arg3
);
8222 if (is_error(ret2
)) {
8228 #ifdef TARGET_NR_sendfile64
8229 case TARGET_NR_sendfile64
:
8234 ret
= get_user_s64(off
, arg3
);
8235 if (is_error(ret
)) {
8240 ret
= get_errno(sendfile(arg1
, arg2
, offp
, arg4
));
8241 if (!is_error(ret
) && arg3
) {
8242 abi_long ret2
= put_user_s64(off
, arg3
);
8243 if (is_error(ret2
)) {
8251 case TARGET_NR_sendfile
:
8252 #ifdef TARGET_NR_sendfile64
8253 case TARGET_NR_sendfile64
:
8258 #ifdef TARGET_NR_getpmsg
8259 case TARGET_NR_getpmsg
:
8262 #ifdef TARGET_NR_putpmsg
8263 case TARGET_NR_putpmsg
:
8266 #ifdef TARGET_NR_vfork
8267 case TARGET_NR_vfork
:
8268 ret
= get_errno(do_fork(cpu_env
, CLONE_VFORK
| CLONE_VM
| SIGCHLD
,
8272 #ifdef TARGET_NR_ugetrlimit
8273 case TARGET_NR_ugetrlimit
:
8276 int resource
= target_to_host_resource(arg1
);
8277 ret
= get_errno(getrlimit(resource
, &rlim
));
8278 if (!is_error(ret
)) {
8279 struct target_rlimit
*target_rlim
;
8280 if (!lock_user_struct(VERIFY_WRITE
, target_rlim
, arg2
, 0))
8282 target_rlim
->rlim_cur
= host_to_target_rlim(rlim
.rlim_cur
);
8283 target_rlim
->rlim_max
= host_to_target_rlim(rlim
.rlim_max
);
8284 unlock_user_struct(target_rlim
, arg2
, 1);
8289 #ifdef TARGET_NR_truncate64
8290 case TARGET_NR_truncate64
:
8291 if (!(p
= lock_user_string(arg1
)))
8293 ret
= target_truncate64(cpu_env
, p
, arg2
, arg3
, arg4
);
8294 unlock_user(p
, arg1
, 0);
8297 #ifdef TARGET_NR_ftruncate64
8298 case TARGET_NR_ftruncate64
:
8299 ret
= target_ftruncate64(cpu_env
, arg1
, arg2
, arg3
, arg4
);
8302 #ifdef TARGET_NR_stat64
8303 case TARGET_NR_stat64
:
8304 if (!(p
= lock_user_string(arg1
)))
8306 ret
= get_errno(stat(path(p
), &st
));
8307 unlock_user(p
, arg1
, 0);
8309 ret
= host_to_target_stat64(cpu_env
, arg2
, &st
);
8312 #ifdef TARGET_NR_lstat64
8313 case TARGET_NR_lstat64
:
8314 if (!(p
= lock_user_string(arg1
)))
8316 ret
= get_errno(lstat(path(p
), &st
));
8317 unlock_user(p
, arg1
, 0);
8319 ret
= host_to_target_stat64(cpu_env
, arg2
, &st
);
8322 #ifdef TARGET_NR_fstat64
8323 case TARGET_NR_fstat64
:
8324 ret
= get_errno(fstat(arg1
, &st
));
8326 ret
= host_to_target_stat64(cpu_env
, arg2
, &st
);
8329 #if (defined(TARGET_NR_fstatat64) || defined(TARGET_NR_newfstatat))
8330 #ifdef TARGET_NR_fstatat64
8331 case TARGET_NR_fstatat64
:
8333 #ifdef TARGET_NR_newfstatat
8334 case TARGET_NR_newfstatat
:
8336 if (!(p
= lock_user_string(arg2
)))
8338 ret
= get_errno(fstatat(arg1
, path(p
), &st
, arg4
));
8340 ret
= host_to_target_stat64(cpu_env
, arg3
, &st
);
8343 #ifdef TARGET_NR_lchown
8344 case TARGET_NR_lchown
:
8345 if (!(p
= lock_user_string(arg1
)))
8347 ret
= get_errno(lchown(p
, low2highuid(arg2
), low2highgid(arg3
)));
8348 unlock_user(p
, arg1
, 0);
8351 #ifdef TARGET_NR_getuid
8352 case TARGET_NR_getuid
:
8353 ret
= get_errno(high2lowuid(getuid()));
8356 #ifdef TARGET_NR_getgid
8357 case TARGET_NR_getgid
:
8358 ret
= get_errno(high2lowgid(getgid()));
8361 #ifdef TARGET_NR_geteuid
8362 case TARGET_NR_geteuid
:
8363 ret
= get_errno(high2lowuid(geteuid()));
8366 #ifdef TARGET_NR_getegid
8367 case TARGET_NR_getegid
:
8368 ret
= get_errno(high2lowgid(getegid()));
8371 case TARGET_NR_setreuid
:
8372 ret
= get_errno(setreuid(low2highuid(arg1
), low2highuid(arg2
)));
8374 case TARGET_NR_setregid
:
8375 ret
= get_errno(setregid(low2highgid(arg1
), low2highgid(arg2
)));
8377 case TARGET_NR_getgroups
:
8379 int gidsetsize
= arg1
;
8380 target_id
*target_grouplist
;
8384 grouplist
= alloca(gidsetsize
* sizeof(gid_t
));
8385 ret
= get_errno(getgroups(gidsetsize
, grouplist
));
8386 if (gidsetsize
== 0)
8388 if (!is_error(ret
)) {
8389 target_grouplist
= lock_user(VERIFY_WRITE
, arg2
, gidsetsize
* sizeof(target_id
), 0);
8390 if (!target_grouplist
)
8392 for(i
= 0;i
< ret
; i
++)
8393 target_grouplist
[i
] = tswapid(high2lowgid(grouplist
[i
]));
8394 unlock_user(target_grouplist
, arg2
, gidsetsize
* sizeof(target_id
));
8398 case TARGET_NR_setgroups
:
8400 int gidsetsize
= arg1
;
8401 target_id
*target_grouplist
;
8402 gid_t
*grouplist
= NULL
;
8405 grouplist
= alloca(gidsetsize
* sizeof(gid_t
));
8406 target_grouplist
= lock_user(VERIFY_READ
, arg2
, gidsetsize
* sizeof(target_id
), 1);
8407 if (!target_grouplist
) {
8408 ret
= -TARGET_EFAULT
;
8411 for (i
= 0; i
< gidsetsize
; i
++) {
8412 grouplist
[i
] = low2highgid(tswapid(target_grouplist
[i
]));
8414 unlock_user(target_grouplist
, arg2
, 0);
8416 ret
= get_errno(setgroups(gidsetsize
, grouplist
));
8419 case TARGET_NR_fchown
:
8420 ret
= get_errno(fchown(arg1
, low2highuid(arg2
), low2highgid(arg3
)));
8422 #if defined(TARGET_NR_fchownat)
8423 case TARGET_NR_fchownat
:
8424 if (!(p
= lock_user_string(arg2
)))
8426 ret
= get_errno(fchownat(arg1
, p
, low2highuid(arg3
),
8427 low2highgid(arg4
), arg5
));
8428 unlock_user(p
, arg2
, 0);
8431 #ifdef TARGET_NR_setresuid
8432 case TARGET_NR_setresuid
:
8433 ret
= get_errno(setresuid(low2highuid(arg1
),
8435 low2highuid(arg3
)));
8438 #ifdef TARGET_NR_getresuid
8439 case TARGET_NR_getresuid
:
8441 uid_t ruid
, euid
, suid
;
8442 ret
= get_errno(getresuid(&ruid
, &euid
, &suid
));
8443 if (!is_error(ret
)) {
8444 if (put_user_id(high2lowuid(ruid
), arg1
)
8445 || put_user_id(high2lowuid(euid
), arg2
)
8446 || put_user_id(high2lowuid(suid
), arg3
))
8452 #ifdef TARGET_NR_getresgid
8453 case TARGET_NR_setresgid
:
8454 ret
= get_errno(setresgid(low2highgid(arg1
),
8456 low2highgid(arg3
)));
8459 #ifdef TARGET_NR_getresgid
8460 case TARGET_NR_getresgid
:
8462 gid_t rgid
, egid
, sgid
;
8463 ret
= get_errno(getresgid(&rgid
, &egid
, &sgid
));
8464 if (!is_error(ret
)) {
8465 if (put_user_id(high2lowgid(rgid
), arg1
)
8466 || put_user_id(high2lowgid(egid
), arg2
)
8467 || put_user_id(high2lowgid(sgid
), arg3
))
8473 #ifdef TARGET_NR_chown
8474 case TARGET_NR_chown
:
8475 if (!(p
= lock_user_string(arg1
)))
8477 ret
= get_errno(chown(p
, low2highuid(arg2
), low2highgid(arg3
)));
8478 unlock_user(p
, arg1
, 0);
8481 case TARGET_NR_setuid
:
8482 ret
= get_errno(setuid(low2highuid(arg1
)));
8484 case TARGET_NR_setgid
:
8485 ret
= get_errno(setgid(low2highgid(arg1
)));
8487 case TARGET_NR_setfsuid
:
8488 ret
= get_errno(setfsuid(arg1
));
8490 case TARGET_NR_setfsgid
:
8491 ret
= get_errno(setfsgid(arg1
));
8494 #ifdef TARGET_NR_lchown32
8495 case TARGET_NR_lchown32
:
8496 if (!(p
= lock_user_string(arg1
)))
8498 ret
= get_errno(lchown(p
, arg2
, arg3
));
8499 unlock_user(p
, arg1
, 0);
8502 #ifdef TARGET_NR_getuid32
8503 case TARGET_NR_getuid32
:
8504 ret
= get_errno(getuid());
8508 #if defined(TARGET_NR_getxuid) && defined(TARGET_ALPHA)
8509 /* Alpha specific */
8510 case TARGET_NR_getxuid
:
8514 ((CPUAlphaState
*)cpu_env
)->ir
[IR_A4
]=euid
;
8516 ret
= get_errno(getuid());
8519 #if defined(TARGET_NR_getxgid) && defined(TARGET_ALPHA)
8520 /* Alpha specific */
8521 case TARGET_NR_getxgid
:
8525 ((CPUAlphaState
*)cpu_env
)->ir
[IR_A4
]=egid
;
8527 ret
= get_errno(getgid());
8530 #if defined(TARGET_NR_osf_getsysinfo) && defined(TARGET_ALPHA)
8531 /* Alpha specific */
8532 case TARGET_NR_osf_getsysinfo
:
8533 ret
= -TARGET_EOPNOTSUPP
;
8535 case TARGET_GSI_IEEE_FP_CONTROL
:
8537 uint64_t swcr
, fpcr
= cpu_alpha_load_fpcr (cpu_env
);
8539 /* Copied from linux ieee_fpcr_to_swcr. */
8540 swcr
= (fpcr
>> 35) & SWCR_STATUS_MASK
;
8541 swcr
|= (fpcr
>> 36) & SWCR_MAP_DMZ
;
8542 swcr
|= (~fpcr
>> 48) & (SWCR_TRAP_ENABLE_INV
8543 | SWCR_TRAP_ENABLE_DZE
8544 | SWCR_TRAP_ENABLE_OVF
);
8545 swcr
|= (~fpcr
>> 57) & (SWCR_TRAP_ENABLE_UNF
8546 | SWCR_TRAP_ENABLE_INE
);
8547 swcr
|= (fpcr
>> 47) & SWCR_MAP_UMZ
;
8548 swcr
|= (~fpcr
>> 41) & SWCR_TRAP_ENABLE_DNO
;
8550 if (put_user_u64 (swcr
, arg2
))
8556 /* case GSI_IEEE_STATE_AT_SIGNAL:
8557 -- Not implemented in linux kernel.
8559 -- Retrieves current unaligned access state; not much used.
8561 -- Retrieves implver information; surely not used.
8563 -- Grabs a copy of the HWRPB; surely not used.
8568 #if defined(TARGET_NR_osf_setsysinfo) && defined(TARGET_ALPHA)
8569 /* Alpha specific */
8570 case TARGET_NR_osf_setsysinfo
:
8571 ret
= -TARGET_EOPNOTSUPP
;
8573 case TARGET_SSI_IEEE_FP_CONTROL
:
8575 uint64_t swcr
, fpcr
, orig_fpcr
;
8577 if (get_user_u64 (swcr
, arg2
)) {
8580 orig_fpcr
= cpu_alpha_load_fpcr(cpu_env
);
8581 fpcr
= orig_fpcr
& FPCR_DYN_MASK
;
8583 /* Copied from linux ieee_swcr_to_fpcr. */
8584 fpcr
|= (swcr
& SWCR_STATUS_MASK
) << 35;
8585 fpcr
|= (swcr
& SWCR_MAP_DMZ
) << 36;
8586 fpcr
|= (~swcr
& (SWCR_TRAP_ENABLE_INV
8587 | SWCR_TRAP_ENABLE_DZE
8588 | SWCR_TRAP_ENABLE_OVF
)) << 48;
8589 fpcr
|= (~swcr
& (SWCR_TRAP_ENABLE_UNF
8590 | SWCR_TRAP_ENABLE_INE
)) << 57;
8591 fpcr
|= (swcr
& SWCR_MAP_UMZ
? FPCR_UNDZ
| FPCR_UNFD
: 0);
8592 fpcr
|= (~swcr
& SWCR_TRAP_ENABLE_DNO
) << 41;
8594 cpu_alpha_store_fpcr(cpu_env
, fpcr
);
8599 case TARGET_SSI_IEEE_RAISE_EXCEPTION
:
8601 uint64_t exc
, fpcr
, orig_fpcr
;
8604 if (get_user_u64(exc
, arg2
)) {
8608 orig_fpcr
= cpu_alpha_load_fpcr(cpu_env
);
8610 /* We only add to the exception status here. */
8611 fpcr
= orig_fpcr
| ((exc
& SWCR_STATUS_MASK
) << 35);
8613 cpu_alpha_store_fpcr(cpu_env
, fpcr
);
8616 /* Old exceptions are not signaled. */
8617 fpcr
&= ~(orig_fpcr
& FPCR_STATUS_MASK
);
8619 /* If any exceptions set by this call,
8620 and are unmasked, send a signal. */
8622 if ((fpcr
& (FPCR_INE
| FPCR_INED
)) == FPCR_INE
) {
8623 si_code
= TARGET_FPE_FLTRES
;
8625 if ((fpcr
& (FPCR_UNF
| FPCR_UNFD
)) == FPCR_UNF
) {
8626 si_code
= TARGET_FPE_FLTUND
;
8628 if ((fpcr
& (FPCR_OVF
| FPCR_OVFD
)) == FPCR_OVF
) {
8629 si_code
= TARGET_FPE_FLTOVF
;
8631 if ((fpcr
& (FPCR_DZE
| FPCR_DZED
)) == FPCR_DZE
) {
8632 si_code
= TARGET_FPE_FLTDIV
;
8634 if ((fpcr
& (FPCR_INV
| FPCR_INVD
)) == FPCR_INV
) {
8635 si_code
= TARGET_FPE_FLTINV
;
8638 target_siginfo_t info
;
8639 info
.si_signo
= SIGFPE
;
8641 info
.si_code
= si_code
;
8642 info
._sifields
._sigfault
._addr
8643 = ((CPUArchState
*)cpu_env
)->pc
;
8644 queue_signal((CPUArchState
*)cpu_env
, info
.si_signo
, &info
);
8649 /* case SSI_NVPAIRS:
8650 -- Used with SSIN_UACPROC to enable unaligned accesses.
8651 case SSI_IEEE_STATE_AT_SIGNAL:
8652 case SSI_IEEE_IGNORE_STATE_AT_SIGNAL:
8653 -- Not implemented in linux kernel
8658 #ifdef TARGET_NR_osf_sigprocmask
8659 /* Alpha specific. */
8660 case TARGET_NR_osf_sigprocmask
:
8664 sigset_t set
, oldset
;
8667 case TARGET_SIG_BLOCK
:
8670 case TARGET_SIG_UNBLOCK
:
8673 case TARGET_SIG_SETMASK
:
8677 ret
= -TARGET_EINVAL
;
8681 target_to_host_old_sigset(&set
, &mask
);
8682 do_sigprocmask(how
, &set
, &oldset
);
8683 host_to_target_old_sigset(&mask
, &oldset
);
8689 #ifdef TARGET_NR_getgid32
8690 case TARGET_NR_getgid32
:
8691 ret
= get_errno(getgid());
8694 #ifdef TARGET_NR_geteuid32
8695 case TARGET_NR_geteuid32
:
8696 ret
= get_errno(geteuid());
8699 #ifdef TARGET_NR_getegid32
8700 case TARGET_NR_getegid32
:
8701 ret
= get_errno(getegid());
8704 #ifdef TARGET_NR_setreuid32
8705 case TARGET_NR_setreuid32
:
8706 ret
= get_errno(setreuid(arg1
, arg2
));
8709 #ifdef TARGET_NR_setregid32
8710 case TARGET_NR_setregid32
:
8711 ret
= get_errno(setregid(arg1
, arg2
));
8714 #ifdef TARGET_NR_getgroups32
8715 case TARGET_NR_getgroups32
:
8717 int gidsetsize
= arg1
;
8718 uint32_t *target_grouplist
;
8722 grouplist
= alloca(gidsetsize
* sizeof(gid_t
));
8723 ret
= get_errno(getgroups(gidsetsize
, grouplist
));
8724 if (gidsetsize
== 0)
8726 if (!is_error(ret
)) {
8727 target_grouplist
= lock_user(VERIFY_WRITE
, arg2
, gidsetsize
* 4, 0);
8728 if (!target_grouplist
) {
8729 ret
= -TARGET_EFAULT
;
8732 for(i
= 0;i
< ret
; i
++)
8733 target_grouplist
[i
] = tswap32(grouplist
[i
]);
8734 unlock_user(target_grouplist
, arg2
, gidsetsize
* 4);
8739 #ifdef TARGET_NR_setgroups32
8740 case TARGET_NR_setgroups32
:
8742 int gidsetsize
= arg1
;
8743 uint32_t *target_grouplist
;
8747 grouplist
= alloca(gidsetsize
* sizeof(gid_t
));
8748 target_grouplist
= lock_user(VERIFY_READ
, arg2
, gidsetsize
* 4, 1);
8749 if (!target_grouplist
) {
8750 ret
= -TARGET_EFAULT
;
8753 for(i
= 0;i
< gidsetsize
; i
++)
8754 grouplist
[i
] = tswap32(target_grouplist
[i
]);
8755 unlock_user(target_grouplist
, arg2
, 0);
8756 ret
= get_errno(setgroups(gidsetsize
, grouplist
));
8760 #ifdef TARGET_NR_fchown32
8761 case TARGET_NR_fchown32
:
8762 ret
= get_errno(fchown(arg1
, arg2
, arg3
));
8765 #ifdef TARGET_NR_setresuid32
8766 case TARGET_NR_setresuid32
:
8767 ret
= get_errno(setresuid(arg1
, arg2
, arg3
));
8770 #ifdef TARGET_NR_getresuid32
8771 case TARGET_NR_getresuid32
:
8773 uid_t ruid
, euid
, suid
;
8774 ret
= get_errno(getresuid(&ruid
, &euid
, &suid
));
8775 if (!is_error(ret
)) {
8776 if (put_user_u32(ruid
, arg1
)
8777 || put_user_u32(euid
, arg2
)
8778 || put_user_u32(suid
, arg3
))
8784 #ifdef TARGET_NR_setresgid32
8785 case TARGET_NR_setresgid32
:
8786 ret
= get_errno(setresgid(arg1
, arg2
, arg3
));
8789 #ifdef TARGET_NR_getresgid32
8790 case TARGET_NR_getresgid32
:
8792 gid_t rgid
, egid
, sgid
;
8793 ret
= get_errno(getresgid(&rgid
, &egid
, &sgid
));
8794 if (!is_error(ret
)) {
8795 if (put_user_u32(rgid
, arg1
)
8796 || put_user_u32(egid
, arg2
)
8797 || put_user_u32(sgid
, arg3
))
8803 #ifdef TARGET_NR_chown32
8804 case TARGET_NR_chown32
:
8805 if (!(p
= lock_user_string(arg1
)))
8807 ret
= get_errno(chown(p
, arg2
, arg3
));
8808 unlock_user(p
, arg1
, 0);
8811 #ifdef TARGET_NR_setuid32
8812 case TARGET_NR_setuid32
:
8813 ret
= get_errno(setuid(arg1
));
8816 #ifdef TARGET_NR_setgid32
8817 case TARGET_NR_setgid32
:
8818 ret
= get_errno(setgid(arg1
));
8821 #ifdef TARGET_NR_setfsuid32
8822 case TARGET_NR_setfsuid32
:
8823 ret
= get_errno(setfsuid(arg1
));
8826 #ifdef TARGET_NR_setfsgid32
8827 case TARGET_NR_setfsgid32
:
8828 ret
= get_errno(setfsgid(arg1
));
8832 case TARGET_NR_pivot_root
:
8834 #ifdef TARGET_NR_mincore
8835 case TARGET_NR_mincore
:
8838 ret
= -TARGET_EFAULT
;
8839 if (!(a
= lock_user(VERIFY_READ
, arg1
,arg2
, 0)))
8841 if (!(p
= lock_user_string(arg3
)))
8843 ret
= get_errno(mincore(a
, arg2
, p
));
8844 unlock_user(p
, arg3
, ret
);
8846 unlock_user(a
, arg1
, 0);
8850 #ifdef TARGET_NR_arm_fadvise64_64
8851 case TARGET_NR_arm_fadvise64_64
:
8854 * arm_fadvise64_64 looks like fadvise64_64 but
8855 * with different argument order
8863 #if defined(TARGET_NR_fadvise64_64) || defined(TARGET_NR_arm_fadvise64_64) || defined(TARGET_NR_fadvise64)
8864 #ifdef TARGET_NR_fadvise64_64
8865 case TARGET_NR_fadvise64_64
:
8867 #ifdef TARGET_NR_fadvise64
8868 case TARGET_NR_fadvise64
:
8872 case 4: arg4
= POSIX_FADV_NOREUSE
+ 1; break; /* make sure it's an invalid value */
8873 case 5: arg4
= POSIX_FADV_NOREUSE
+ 2; break; /* ditto */
8874 case 6: arg4
= POSIX_FADV_DONTNEED
; break;
8875 case 7: arg4
= POSIX_FADV_NOREUSE
; break;
8879 ret
= -posix_fadvise(arg1
, arg2
, arg3
, arg4
);
8882 #ifdef TARGET_NR_madvise
8883 case TARGET_NR_madvise
:
8884 /* A straight passthrough may not be safe because qemu sometimes
8885 turns private file-backed mappings into anonymous mappings.
8886 This will break MADV_DONTNEED.
8887 This is a hint, so ignoring and returning success is ok. */
8891 #if TARGET_ABI_BITS == 32
8892 case TARGET_NR_fcntl64
:
8896 struct target_flock64
*target_fl
;
8898 struct target_eabi_flock64
*target_efl
;
8901 cmd
= target_to_host_fcntl_cmd(arg2
);
8902 if (cmd
== -TARGET_EINVAL
) {
8908 case TARGET_F_GETLK64
:
8910 if (((CPUARMState
*)cpu_env
)->eabi
) {
8911 if (!lock_user_struct(VERIFY_READ
, target_efl
, arg3
, 1))
8913 fl
.l_type
= tswap16(target_efl
->l_type
);
8914 fl
.l_whence
= tswap16(target_efl
->l_whence
);
8915 fl
.l_start
= tswap64(target_efl
->l_start
);
8916 fl
.l_len
= tswap64(target_efl
->l_len
);
8917 fl
.l_pid
= tswap32(target_efl
->l_pid
);
8918 unlock_user_struct(target_efl
, arg3
, 0);
8922 if (!lock_user_struct(VERIFY_READ
, target_fl
, arg3
, 1))
8924 fl
.l_type
= tswap16(target_fl
->l_type
);
8925 fl
.l_whence
= tswap16(target_fl
->l_whence
);
8926 fl
.l_start
= tswap64(target_fl
->l_start
);
8927 fl
.l_len
= tswap64(target_fl
->l_len
);
8928 fl
.l_pid
= tswap32(target_fl
->l_pid
);
8929 unlock_user_struct(target_fl
, arg3
, 0);
8931 ret
= get_errno(fcntl(arg1
, cmd
, &fl
));
8934 if (((CPUARMState
*)cpu_env
)->eabi
) {
8935 if (!lock_user_struct(VERIFY_WRITE
, target_efl
, arg3
, 0))
8937 target_efl
->l_type
= tswap16(fl
.l_type
);
8938 target_efl
->l_whence
= tswap16(fl
.l_whence
);
8939 target_efl
->l_start
= tswap64(fl
.l_start
);
8940 target_efl
->l_len
= tswap64(fl
.l_len
);
8941 target_efl
->l_pid
= tswap32(fl
.l_pid
);
8942 unlock_user_struct(target_efl
, arg3
, 1);
8946 if (!lock_user_struct(VERIFY_WRITE
, target_fl
, arg3
, 0))
8948 target_fl
->l_type
= tswap16(fl
.l_type
);
8949 target_fl
->l_whence
= tswap16(fl
.l_whence
);
8950 target_fl
->l_start
= tswap64(fl
.l_start
);
8951 target_fl
->l_len
= tswap64(fl
.l_len
);
8952 target_fl
->l_pid
= tswap32(fl
.l_pid
);
8953 unlock_user_struct(target_fl
, arg3
, 1);
8958 case TARGET_F_SETLK64
:
8959 case TARGET_F_SETLKW64
:
8961 if (((CPUARMState
*)cpu_env
)->eabi
) {
8962 if (!lock_user_struct(VERIFY_READ
, target_efl
, arg3
, 1))
8964 fl
.l_type
= tswap16(target_efl
->l_type
);
8965 fl
.l_whence
= tswap16(target_efl
->l_whence
);
8966 fl
.l_start
= tswap64(target_efl
->l_start
);
8967 fl
.l_len
= tswap64(target_efl
->l_len
);
8968 fl
.l_pid
= tswap32(target_efl
->l_pid
);
8969 unlock_user_struct(target_efl
, arg3
, 0);
8973 if (!lock_user_struct(VERIFY_READ
, target_fl
, arg3
, 1))
8975 fl
.l_type
= tswap16(target_fl
->l_type
);
8976 fl
.l_whence
= tswap16(target_fl
->l_whence
);
8977 fl
.l_start
= tswap64(target_fl
->l_start
);
8978 fl
.l_len
= tswap64(target_fl
->l_len
);
8979 fl
.l_pid
= tswap32(target_fl
->l_pid
);
8980 unlock_user_struct(target_fl
, arg3
, 0);
8982 ret
= get_errno(fcntl(arg1
, cmd
, &fl
));
8985 ret
= do_fcntl(arg1
, arg2
, arg3
);
8991 #ifdef TARGET_NR_cacheflush
8992 case TARGET_NR_cacheflush
:
8993 /* self-modifying code is handled automatically, so nothing needed */
8997 #ifdef TARGET_NR_security
8998 case TARGET_NR_security
:
9001 #ifdef TARGET_NR_getpagesize
9002 case TARGET_NR_getpagesize
:
9003 ret
= TARGET_PAGE_SIZE
;
9006 case TARGET_NR_gettid
:
9007 ret
= get_errno(gettid());
9009 #ifdef TARGET_NR_readahead
9010 case TARGET_NR_readahead
:
9011 #if TARGET_ABI_BITS == 32
9012 if (regpairs_aligned(cpu_env
)) {
9017 ret
= get_errno(readahead(arg1
, ((off64_t
)arg3
<< 32) | arg2
, arg4
));
9019 ret
= get_errno(readahead(arg1
, arg2
, arg3
));
9024 #ifdef TARGET_NR_setxattr
9025 case TARGET_NR_listxattr
:
9026 case TARGET_NR_llistxattr
:
9030 b
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0);
9032 ret
= -TARGET_EFAULT
;
9036 p
= lock_user_string(arg1
);
9038 if (num
== TARGET_NR_listxattr
) {
9039 ret
= get_errno(listxattr(p
, b
, arg3
));
9041 ret
= get_errno(llistxattr(p
, b
, arg3
));
9044 ret
= -TARGET_EFAULT
;
9046 unlock_user(p
, arg1
, 0);
9047 unlock_user(b
, arg2
, arg3
);
9050 case TARGET_NR_flistxattr
:
9054 b
= lock_user(VERIFY_WRITE
, arg2
, arg3
, 0);
9056 ret
= -TARGET_EFAULT
;
9060 ret
= get_errno(flistxattr(arg1
, b
, arg3
));
9061 unlock_user(b
, arg2
, arg3
);
9064 case TARGET_NR_setxattr
:
9065 case TARGET_NR_lsetxattr
:
9067 void *p
, *n
, *v
= 0;
9069 v
= lock_user(VERIFY_READ
, arg3
, arg4
, 1);
9071 ret
= -TARGET_EFAULT
;
9075 p
= lock_user_string(arg1
);
9076 n
= lock_user_string(arg2
);
9078 if (num
== TARGET_NR_setxattr
) {
9079 ret
= get_errno(setxattr(p
, n
, v
, arg4
, arg5
));
9081 ret
= get_errno(lsetxattr(p
, n
, v
, arg4
, arg5
));
9084 ret
= -TARGET_EFAULT
;
9086 unlock_user(p
, arg1
, 0);
9087 unlock_user(n
, arg2
, 0);
9088 unlock_user(v
, arg3
, 0);
9091 case TARGET_NR_fsetxattr
:
9095 v
= lock_user(VERIFY_READ
, arg3
, arg4
, 1);
9097 ret
= -TARGET_EFAULT
;
9101 n
= lock_user_string(arg2
);
9103 ret
= get_errno(fsetxattr(arg1
, n
, v
, arg4
, arg5
));
9105 ret
= -TARGET_EFAULT
;
9107 unlock_user(n
, arg2
, 0);
9108 unlock_user(v
, arg3
, 0);
9111 case TARGET_NR_getxattr
:
9112 case TARGET_NR_lgetxattr
:
9114 void *p
, *n
, *v
= 0;
9116 v
= lock_user(VERIFY_WRITE
, arg3
, arg4
, 0);
9118 ret
= -TARGET_EFAULT
;
9122 p
= lock_user_string(arg1
);
9123 n
= lock_user_string(arg2
);
9125 if (num
== TARGET_NR_getxattr
) {
9126 ret
= get_errno(getxattr(p
, n
, v
, arg4
));
9128 ret
= get_errno(lgetxattr(p
, n
, v
, arg4
));
9131 ret
= -TARGET_EFAULT
;
9133 unlock_user(p
, arg1
, 0);
9134 unlock_user(n
, arg2
, 0);
9135 unlock_user(v
, arg3
, arg4
);
9138 case TARGET_NR_fgetxattr
:
9142 v
= lock_user(VERIFY_WRITE
, arg3
, arg4
, 0);
9144 ret
= -TARGET_EFAULT
;
9148 n
= lock_user_string(arg2
);
9150 ret
= get_errno(fgetxattr(arg1
, n
, v
, arg4
));
9152 ret
= -TARGET_EFAULT
;
9154 unlock_user(n
, arg2
, 0);
9155 unlock_user(v
, arg3
, arg4
);
9158 case TARGET_NR_removexattr
:
9159 case TARGET_NR_lremovexattr
:
9162 p
= lock_user_string(arg1
);
9163 n
= lock_user_string(arg2
);
9165 if (num
== TARGET_NR_removexattr
) {
9166 ret
= get_errno(removexattr(p
, n
));
9168 ret
= get_errno(lremovexattr(p
, n
));
9171 ret
= -TARGET_EFAULT
;
9173 unlock_user(p
, arg1
, 0);
9174 unlock_user(n
, arg2
, 0);
9177 case TARGET_NR_fremovexattr
:
9180 n
= lock_user_string(arg2
);
9182 ret
= get_errno(fremovexattr(arg1
, n
));
9184 ret
= -TARGET_EFAULT
;
9186 unlock_user(n
, arg2
, 0);
9190 #endif /* CONFIG_ATTR */
9191 #ifdef TARGET_NR_set_thread_area
9192 case TARGET_NR_set_thread_area
:
9193 #if defined(TARGET_MIPS)
9194 ((CPUMIPSState
*) cpu_env
)->active_tc
.CP0_UserLocal
= arg1
;
9197 #elif defined(TARGET_CRIS)
9199 ret
= -TARGET_EINVAL
;
9201 ((CPUCRISState
*) cpu_env
)->pregs
[PR_PID
] = arg1
;
9205 #elif defined(TARGET_I386) && defined(TARGET_ABI32)
9206 ret
= do_set_thread_area(cpu_env
, arg1
);
9208 #elif defined(TARGET_M68K)
9210 TaskState
*ts
= cpu
->opaque
;
9211 ts
->tp_value
= arg1
;
9216 goto unimplemented_nowarn
;
9219 #ifdef TARGET_NR_get_thread_area
9220 case TARGET_NR_get_thread_area
:
9221 #if defined(TARGET_I386) && defined(TARGET_ABI32)
9222 ret
= do_get_thread_area(cpu_env
, arg1
);
9224 #elif defined(TARGET_M68K)
9226 TaskState
*ts
= cpu
->opaque
;
9231 goto unimplemented_nowarn
;
9234 #ifdef TARGET_NR_getdomainname
9235 case TARGET_NR_getdomainname
:
9236 goto unimplemented_nowarn
;
9239 #ifdef TARGET_NR_clock_gettime
9240 case TARGET_NR_clock_gettime
:
9243 ret
= get_errno(clock_gettime(arg1
, &ts
));
9244 if (!is_error(ret
)) {
9245 host_to_target_timespec(arg2
, &ts
);
9250 #ifdef TARGET_NR_clock_getres
9251 case TARGET_NR_clock_getres
:
9254 ret
= get_errno(clock_getres(arg1
, &ts
));
9255 if (!is_error(ret
)) {
9256 host_to_target_timespec(arg2
, &ts
);
9261 #ifdef TARGET_NR_clock_nanosleep
9262 case TARGET_NR_clock_nanosleep
:
9265 target_to_host_timespec(&ts
, arg3
);
9266 ret
= get_errno(clock_nanosleep(arg1
, arg2
, &ts
, arg4
? &ts
: NULL
));
9268 host_to_target_timespec(arg4
, &ts
);
9270 #if defined(TARGET_PPC)
9271 /* clock_nanosleep is odd in that it returns positive errno values.
9272 * On PPC, CR0 bit 3 should be set in such a situation. */
9274 ((CPUPPCState
*)cpu_env
)->crf
[0] |= 1;
9281 #if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
9282 case TARGET_NR_set_tid_address
:
9283 ret
= get_errno(set_tid_address((int *)g2h(arg1
)));
9287 #if defined(TARGET_NR_tkill) && defined(__NR_tkill)
9288 case TARGET_NR_tkill
:
9289 ret
= get_errno(sys_tkill((int)arg1
, target_to_host_signal(arg2
)));
9293 #if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
9294 case TARGET_NR_tgkill
:
9295 ret
= get_errno(sys_tgkill((int)arg1
, (int)arg2
,
9296 target_to_host_signal(arg3
)));
9300 #ifdef TARGET_NR_set_robust_list
9301 case TARGET_NR_set_robust_list
:
9302 case TARGET_NR_get_robust_list
:
9303 /* The ABI for supporting robust futexes has userspace pass
9304 * the kernel a pointer to a linked list which is updated by
9305 * userspace after the syscall; the list is walked by the kernel
9306 * when the thread exits. Since the linked list in QEMU guest
9307 * memory isn't a valid linked list for the host and we have
9308 * no way to reliably intercept the thread-death event, we can't
9309 * support these. Silently return ENOSYS so that guest userspace
9310 * falls back to a non-robust futex implementation (which should
9311 * be OK except in the corner case of the guest crashing while
9312 * holding a mutex that is shared with another process via
9315 goto unimplemented_nowarn
;
9318 #if defined(TARGET_NR_utimensat)
9319 case TARGET_NR_utimensat
:
9321 struct timespec
*tsp
, ts
[2];
9325 target_to_host_timespec(ts
, arg3
);
9326 target_to_host_timespec(ts
+1, arg3
+sizeof(struct target_timespec
));
9330 ret
= get_errno(sys_utimensat(arg1
, NULL
, tsp
, arg4
));
9332 if (!(p
= lock_user_string(arg2
))) {
9333 ret
= -TARGET_EFAULT
;
9336 ret
= get_errno(sys_utimensat(arg1
, path(p
), tsp
, arg4
));
9337 unlock_user(p
, arg2
, 0);
9342 case TARGET_NR_futex
:
9343 ret
= do_futex(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
);
9345 #if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
9346 case TARGET_NR_inotify_init
:
9347 ret
= get_errno(sys_inotify_init());
9350 #ifdef CONFIG_INOTIFY1
9351 #if defined(TARGET_NR_inotify_init1) && defined(__NR_inotify_init1)
9352 case TARGET_NR_inotify_init1
:
9353 ret
= get_errno(sys_inotify_init1(arg1
));
9357 #if defined(TARGET_NR_inotify_add_watch) && defined(__NR_inotify_add_watch)
9358 case TARGET_NR_inotify_add_watch
:
9359 p
= lock_user_string(arg2
);
9360 ret
= get_errno(sys_inotify_add_watch(arg1
, path(p
), arg3
));
9361 unlock_user(p
, arg2
, 0);
9364 #if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
9365 case TARGET_NR_inotify_rm_watch
:
9366 ret
= get_errno(sys_inotify_rm_watch(arg1
, arg2
));
9370 #if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
9371 case TARGET_NR_mq_open
:
9373 struct mq_attr posix_mq_attr
, *attrp
;
9375 p
= lock_user_string(arg1
- 1);
9377 copy_from_user_mq_attr (&posix_mq_attr
, arg4
);
9378 attrp
= &posix_mq_attr
;
9382 ret
= get_errno(mq_open(p
, arg2
, arg3
, attrp
));
9383 unlock_user (p
, arg1
, 0);
9387 case TARGET_NR_mq_unlink
:
9388 p
= lock_user_string(arg1
- 1);
9389 ret
= get_errno(mq_unlink(p
));
9390 unlock_user (p
, arg1
, 0);
9393 case TARGET_NR_mq_timedsend
:
9397 p
= lock_user (VERIFY_READ
, arg2
, arg3
, 1);
9399 target_to_host_timespec(&ts
, arg5
);
9400 ret
= get_errno(mq_timedsend(arg1
, p
, arg3
, arg4
, &ts
));
9401 host_to_target_timespec(arg5
, &ts
);
9404 ret
= get_errno(mq_send(arg1
, p
, arg3
, arg4
));
9405 unlock_user (p
, arg2
, arg3
);
9409 case TARGET_NR_mq_timedreceive
:
9414 p
= lock_user (VERIFY_READ
, arg2
, arg3
, 1);
9416 target_to_host_timespec(&ts
, arg5
);
9417 ret
= get_errno(mq_timedreceive(arg1
, p
, arg3
, &prio
, &ts
));
9418 host_to_target_timespec(arg5
, &ts
);
9421 ret
= get_errno(mq_receive(arg1
, p
, arg3
, &prio
));
9422 unlock_user (p
, arg2
, arg3
);
9424 put_user_u32(prio
, arg4
);
9428 /* Not implemented for now... */
9429 /* case TARGET_NR_mq_notify: */
9432 case TARGET_NR_mq_getsetattr
:
9434 struct mq_attr posix_mq_attr_in
, posix_mq_attr_out
;
9437 ret
= mq_getattr(arg1
, &posix_mq_attr_out
);
9438 copy_to_user_mq_attr(arg3
, &posix_mq_attr_out
);
9441 copy_from_user_mq_attr(&posix_mq_attr_in
, arg2
);
9442 ret
|= mq_setattr(arg1
, &posix_mq_attr_in
, &posix_mq_attr_out
);
9449 #ifdef CONFIG_SPLICE
9450 #ifdef TARGET_NR_tee
9453 ret
= get_errno(tee(arg1
,arg2
,arg3
,arg4
));
9457 #ifdef TARGET_NR_splice
9458 case TARGET_NR_splice
:
9460 loff_t loff_in
, loff_out
;
9461 loff_t
*ploff_in
= NULL
, *ploff_out
= NULL
;
9463 if (get_user_u64(loff_in
, arg2
)) {
9466 ploff_in
= &loff_in
;
9469 if (get_user_u64(loff_out
, arg4
)) {
9472 ploff_out
= &loff_out
;
9474 ret
= get_errno(splice(arg1
, ploff_in
, arg3
, ploff_out
, arg5
, arg6
));
9476 if (put_user_u64(loff_in
, arg2
)) {
9481 if (put_user_u64(loff_out
, arg4
)) {
9488 #ifdef TARGET_NR_vmsplice
9489 case TARGET_NR_vmsplice
:
9491 struct iovec
*vec
= lock_iovec(VERIFY_READ
, arg2
, arg3
, 1);
9493 ret
= get_errno(vmsplice(arg1
, vec
, arg3
, arg4
));
9494 unlock_iovec(vec
, arg2
, arg3
, 0);
9496 ret
= -host_to_target_errno(errno
);
9501 #endif /* CONFIG_SPLICE */
9502 #ifdef CONFIG_EVENTFD
9503 #if defined(TARGET_NR_eventfd)
9504 case TARGET_NR_eventfd
:
9505 ret
= get_errno(eventfd(arg1
, 0));
9508 #if defined(TARGET_NR_eventfd2)
9509 case TARGET_NR_eventfd2
:
9511 int host_flags
= arg2
& (~(TARGET_O_NONBLOCK
| TARGET_O_CLOEXEC
));
9512 if (arg2
& TARGET_O_NONBLOCK
) {
9513 host_flags
|= O_NONBLOCK
;
9515 if (arg2
& TARGET_O_CLOEXEC
) {
9516 host_flags
|= O_CLOEXEC
;
9518 ret
= get_errno(eventfd(arg1
, host_flags
));
9522 #endif /* CONFIG_EVENTFD */
9523 #if defined(CONFIG_FALLOCATE) && defined(TARGET_NR_fallocate)
9524 case TARGET_NR_fallocate
:
9525 #if TARGET_ABI_BITS == 32
9526 ret
= get_errno(fallocate(arg1
, arg2
, target_offset64(arg3
, arg4
),
9527 target_offset64(arg5
, arg6
)));
9529 ret
= get_errno(fallocate(arg1
, arg2
, arg3
, arg4
));
9533 #if defined(CONFIG_SYNC_FILE_RANGE)
9534 #if defined(TARGET_NR_sync_file_range)
9535 case TARGET_NR_sync_file_range
:
9536 #if TARGET_ABI_BITS == 32
9537 #if defined(TARGET_MIPS)
9538 ret
= get_errno(sync_file_range(arg1
, target_offset64(arg3
, arg4
),
9539 target_offset64(arg5
, arg6
), arg7
));
9541 ret
= get_errno(sync_file_range(arg1
, target_offset64(arg2
, arg3
),
9542 target_offset64(arg4
, arg5
), arg6
));
9543 #endif /* !TARGET_MIPS */
9545 ret
= get_errno(sync_file_range(arg1
, arg2
, arg3
, arg4
));
9549 #if defined(TARGET_NR_sync_file_range2)
9550 case TARGET_NR_sync_file_range2
:
9551 /* This is like sync_file_range but the arguments are reordered */
9552 #if TARGET_ABI_BITS == 32
9553 ret
= get_errno(sync_file_range(arg1
, target_offset64(arg3
, arg4
),
9554 target_offset64(arg5
, arg6
), arg2
));
9556 ret
= get_errno(sync_file_range(arg1
, arg3
, arg4
, arg2
));
9561 #if defined(CONFIG_EPOLL)
9562 #if defined(TARGET_NR_epoll_create)
9563 case TARGET_NR_epoll_create
:
9564 ret
= get_errno(epoll_create(arg1
));
9567 #if defined(TARGET_NR_epoll_create1) && defined(CONFIG_EPOLL_CREATE1)
9568 case TARGET_NR_epoll_create1
:
9569 ret
= get_errno(epoll_create1(arg1
));
9572 #if defined(TARGET_NR_epoll_ctl)
9573 case TARGET_NR_epoll_ctl
:
9575 struct epoll_event ep
;
9576 struct epoll_event
*epp
= 0;
9578 struct target_epoll_event
*target_ep
;
9579 if (!lock_user_struct(VERIFY_READ
, target_ep
, arg4
, 1)) {
9582 ep
.events
= tswap32(target_ep
->events
);
9583 /* The epoll_data_t union is just opaque data to the kernel,
9584 * so we transfer all 64 bits across and need not worry what
9585 * actual data type it is.
9587 ep
.data
.u64
= tswap64(target_ep
->data
.u64
);
9588 unlock_user_struct(target_ep
, arg4
, 0);
9591 ret
= get_errno(epoll_ctl(arg1
, arg2
, arg3
, epp
));
9596 #if defined(TARGET_NR_epoll_pwait) && defined(CONFIG_EPOLL_PWAIT)
9597 #define IMPLEMENT_EPOLL_PWAIT
9599 #if defined(TARGET_NR_epoll_wait) || defined(IMPLEMENT_EPOLL_PWAIT)
9600 #if defined(TARGET_NR_epoll_wait)
9601 case TARGET_NR_epoll_wait
:
9603 #if defined(IMPLEMENT_EPOLL_PWAIT)
9604 case TARGET_NR_epoll_pwait
:
9607 struct target_epoll_event
*target_ep
;
9608 struct epoll_event
*ep
;
9610 int maxevents
= arg3
;
9613 target_ep
= lock_user(VERIFY_WRITE
, arg2
,
9614 maxevents
* sizeof(struct target_epoll_event
), 1);
9619 ep
= alloca(maxevents
* sizeof(struct epoll_event
));
9622 #if defined(IMPLEMENT_EPOLL_PWAIT)
9623 case TARGET_NR_epoll_pwait
:
9625 target_sigset_t
*target_set
;
9626 sigset_t _set
, *set
= &_set
;
9629 target_set
= lock_user(VERIFY_READ
, arg5
,
9630 sizeof(target_sigset_t
), 1);
9632 unlock_user(target_ep
, arg2
, 0);
9635 target_to_host_sigset(set
, target_set
);
9636 unlock_user(target_set
, arg5
, 0);
9641 ret
= get_errno(epoll_pwait(epfd
, ep
, maxevents
, timeout
, set
));
9645 #if defined(TARGET_NR_epoll_wait)
9646 case TARGET_NR_epoll_wait
:
9647 ret
= get_errno(epoll_wait(epfd
, ep
, maxevents
, timeout
));
9651 ret
= -TARGET_ENOSYS
;
9653 if (!is_error(ret
)) {
9655 for (i
= 0; i
< ret
; i
++) {
9656 target_ep
[i
].events
= tswap32(ep
[i
].events
);
9657 target_ep
[i
].data
.u64
= tswap64(ep
[i
].data
.u64
);
9660 unlock_user(target_ep
, arg2
, ret
* sizeof(struct target_epoll_event
));
9665 #ifdef TARGET_NR_prlimit64
9666 case TARGET_NR_prlimit64
:
9668 /* args: pid, resource number, ptr to new rlimit, ptr to old rlimit */
9669 struct target_rlimit64
*target_rnew
, *target_rold
;
9670 struct host_rlimit64 rnew
, rold
, *rnewp
= 0;
9671 int resource
= target_to_host_resource(arg2
);
9673 if (!lock_user_struct(VERIFY_READ
, target_rnew
, arg3
, 1)) {
9676 rnew
.rlim_cur
= tswap64(target_rnew
->rlim_cur
);
9677 rnew
.rlim_max
= tswap64(target_rnew
->rlim_max
);
9678 unlock_user_struct(target_rnew
, arg3
, 0);
9682 ret
= get_errno(sys_prlimit64(arg1
, resource
, rnewp
, arg4
? &rold
: 0));
9683 if (!is_error(ret
) && arg4
) {
9684 if (!lock_user_struct(VERIFY_WRITE
, target_rold
, arg4
, 1)) {
9687 target_rold
->rlim_cur
= tswap64(rold
.rlim_cur
);
9688 target_rold
->rlim_max
= tswap64(rold
.rlim_max
);
9689 unlock_user_struct(target_rold
, arg4
, 1);
9694 #ifdef TARGET_NR_gethostname
9695 case TARGET_NR_gethostname
:
9697 char *name
= lock_user(VERIFY_WRITE
, arg1
, arg2
, 0);
9699 ret
= get_errno(gethostname(name
, arg2
));
9700 unlock_user(name
, arg1
, arg2
);
9702 ret
= -TARGET_EFAULT
;
9707 #ifdef TARGET_NR_atomic_cmpxchg_32
9708 case TARGET_NR_atomic_cmpxchg_32
:
9710 /* should use start_exclusive from main.c */
9711 abi_ulong mem_value
;
9712 if (get_user_u32(mem_value
, arg6
)) {
9713 target_siginfo_t info
;
9714 info
.si_signo
= SIGSEGV
;
9716 info
.si_code
= TARGET_SEGV_MAPERR
;
9717 info
._sifields
._sigfault
._addr
= arg6
;
9718 queue_signal((CPUArchState
*)cpu_env
, info
.si_signo
, &info
);
9722 if (mem_value
== arg2
)
9723 put_user_u32(arg1
, arg6
);
9728 #ifdef TARGET_NR_atomic_barrier
9729 case TARGET_NR_atomic_barrier
:
9731 /* Like the kernel implementation and the qemu arm barrier, no-op this? */
9737 #ifdef TARGET_NR_timer_create
9738 case TARGET_NR_timer_create
:
9740 /* args: clockid_t clockid, struct sigevent *sevp, timer_t *timerid */
9742 struct sigevent host_sevp
= { {0}, }, *phost_sevp
= NULL
;
9745 int timer_index
= next_free_host_timer();
9747 if (timer_index
< 0) {
9748 ret
= -TARGET_EAGAIN
;
9750 timer_t
*phtimer
= g_posix_timers
+ timer_index
;
9753 phost_sevp
= &host_sevp
;
9754 ret
= target_to_host_sigevent(phost_sevp
, arg2
);
9760 ret
= get_errno(timer_create(clkid
, phost_sevp
, phtimer
));
9764 if (put_user(TIMER_MAGIC
| timer_index
, arg3
, target_timer_t
)) {
9773 #ifdef TARGET_NR_timer_settime
9774 case TARGET_NR_timer_settime
:
9776 /* args: timer_t timerid, int flags, const struct itimerspec *new_value,
9777 * struct itimerspec * old_value */
9778 target_timer_t timerid
= get_timer_id(arg1
);
9782 } else if (arg3
== 0) {
9783 ret
= -TARGET_EINVAL
;
9785 timer_t htimer
= g_posix_timers
[timerid
];
9786 struct itimerspec hspec_new
= {{0},}, hspec_old
= {{0},};
9788 target_to_host_itimerspec(&hspec_new
, arg3
);
9790 timer_settime(htimer
, arg2
, &hspec_new
, &hspec_old
));
9791 host_to_target_itimerspec(arg2
, &hspec_old
);
9797 #ifdef TARGET_NR_timer_gettime
9798 case TARGET_NR_timer_gettime
:
9800 /* args: timer_t timerid, struct itimerspec *curr_value */
9801 target_timer_t timerid
= get_timer_id(arg1
);
9806 ret
= -TARGET_EFAULT
;
9808 timer_t htimer
= g_posix_timers
[timerid
];
9809 struct itimerspec hspec
;
9810 ret
= get_errno(timer_gettime(htimer
, &hspec
));
9812 if (host_to_target_itimerspec(arg2
, &hspec
)) {
9813 ret
= -TARGET_EFAULT
;
9820 #ifdef TARGET_NR_timer_getoverrun
9821 case TARGET_NR_timer_getoverrun
:
9823 /* args: timer_t timerid */
9824 target_timer_t timerid
= get_timer_id(arg1
);
9829 timer_t htimer
= g_posix_timers
[timerid
];
9830 ret
= get_errno(timer_getoverrun(htimer
));
9836 #ifdef TARGET_NR_timer_delete
9837 case TARGET_NR_timer_delete
:
9839 /* args: timer_t timerid */
9840 target_timer_t timerid
= get_timer_id(arg1
);
9845 timer_t htimer
= g_posix_timers
[timerid
];
9846 ret
= get_errno(timer_delete(htimer
));
9847 g_posix_timers
[timerid
] = 0;
9853 #if defined(TARGET_NR_timerfd_create) && defined(CONFIG_TIMERFD)
9854 case TARGET_NR_timerfd_create
:
9855 ret
= get_errno(timerfd_create(arg1
,
9856 target_to_host_bitmask(arg2
, fcntl_flags_tbl
)));
9860 #if defined(TARGET_NR_timerfd_gettime) && defined(CONFIG_TIMERFD)
9861 case TARGET_NR_timerfd_gettime
:
9863 struct itimerspec its_curr
;
9865 ret
= get_errno(timerfd_gettime(arg1
, &its_curr
));
9867 if (arg2
&& host_to_target_itimerspec(arg2
, &its_curr
)) {
9874 #if defined(TARGET_NR_timerfd_settime) && defined(CONFIG_TIMERFD)
9875 case TARGET_NR_timerfd_settime
:
9877 struct itimerspec its_new
, its_old
, *p_new
;
9880 if (target_to_host_itimerspec(&its_new
, arg3
)) {
9888 ret
= get_errno(timerfd_settime(arg1
, arg2
, p_new
, &its_old
));
9890 if (arg4
&& host_to_target_itimerspec(arg4
, &its_old
)) {
9897 #if defined(TARGET_NR_ioprio_get) && defined(__NR_ioprio_get)
9898 case TARGET_NR_ioprio_get
:
9899 ret
= get_errno(ioprio_get(arg1
, arg2
));
9903 #if defined(TARGET_NR_ioprio_set) && defined(__NR_ioprio_set)
9904 case TARGET_NR_ioprio_set
:
9905 ret
= get_errno(ioprio_set(arg1
, arg2
, arg3
));
9909 #if defined(TARGET_NR_setns) && defined(CONFIG_SETNS)
9910 case TARGET_NR_setns
:
9911 ret
= get_errno(setns(arg1
, arg2
));
9914 #if defined(TARGET_NR_unshare) && defined(CONFIG_SETNS)
9915 case TARGET_NR_unshare
:
9916 ret
= get_errno(unshare(arg1
));
9922 gemu_log("qemu: Unsupported syscall: %d\n", num
);
9923 #if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
9924 unimplemented_nowarn
:
9926 ret
= -TARGET_ENOSYS
;
9931 gemu_log(" = " TARGET_ABI_FMT_ld
"\n", ret
);
9934 print_syscall_ret(num
, ret
);
9937 ret
= -TARGET_EFAULT
;