syscall.c 179.9 KB
Newer Older
1 2
/*
 *  Linux syscalls
3
 *
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *  Copyright (c) 2003 Fabrice Bellard
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
B
bellard 已提交
23
#include <string.h>
24 25 26 27 28
#include <elf.h>
#include <endian.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
B
bellard 已提交
29
#include <time.h>
30
#include <limits.h>
31
#include <sys/types.h>
T
ths 已提交
32 33
#include <sys/ipc.h>
#include <sys/msg.h>
34 35 36 37
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/mount.h>
38
#include <sys/prctl.h>
39 40 41 42 43 44 45
#include <sys/resource.h>
#include <sys/mman.h>
#include <sys/swap.h>
#include <signal.h>
#include <sched.h>
#include <sys/socket.h>
#include <sys/uio.h>
B
bellard 已提交
46
#include <sys/poll.h>
B
bellard 已提交
47
#include <sys/times.h>
48
#include <sys/shm.h>
49
#include <sys/sem.h>
B
bellard 已提交
50
#include <sys/statfs.h>
51
#include <utime.h>
B
bellard 已提交
52
#include <sys/sysinfo.h>
B
bellard 已提交
53
//#include <sys/user.h>
54
#include <netinet/ip.h>
B
bellard 已提交
55
#include <netinet/tcp.h>
56 57 58 59

#define termios host_termios
#define winsize host_winsize
#define termio host_termio
B
bellard 已提交
60 61 62
#define sgttyb host_sgttyb /* same as target */
#define tchars host_tchars /* same as target */
#define ltchars host_ltchars /* same as target */
63 64 65 66 67 68 69

#include <linux/termios.h>
#include <linux/unistd.h>
#include <linux/utsname.h>
#include <linux/cdrom.h>
#include <linux/hdreg.h>
#include <linux/soundcard.h>
B
bellard 已提交
70
#include <linux/dirent.h>
B
bellard 已提交
71
#include <linux/kd.h>
72
#include "linux_loop.h"
73

B
bellard 已提交
74
#include "qemu.h"
75
#include "qemu-common.h"
76

P
pbrook 已提交
77 78
#if defined(USE_NPTL)
#include <linux/futex.h>
P
pbrook 已提交
79 80 81 82 83
#define CLONE_NPTL_FLAGS2 (CLONE_SETTLS | \
    CLONE_PARENT_SETTID | CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID)
#else
/* XXX: Hardcode the above values.  */
#define CLONE_NPTL_FLAGS2 0
P
pbrook 已提交
84 85
#endif

B
bellard 已提交
86
//#define DEBUG
87

P
pbrook 已提交
88
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_SPARC) \
89
    || defined(TARGET_M68K) || defined(TARGET_SH4) || defined(TARGET_CRIS)
90 91 92 93
/* 16 bit uid wrappers emulation */
#define USE_UID16
#endif

B
bellard 已提交
94 95 96 97
//#include <linux/msdos_fs.h>
#define	VFAT_IOCTL_READDIR_BOTH		_IOR('r', 1, struct dirent [2])
#define	VFAT_IOCTL_READDIR_SHORT	_IOR('r', 2, struct dirent [2])

98 99 100 101 102 103 104

#undef _syscall0
#undef _syscall1
#undef _syscall2
#undef _syscall3
#undef _syscall4
#undef _syscall5
B
bellard 已提交
105
#undef _syscall6
106

B
bellard 已提交
107 108 109 110 111
#define _syscall0(type,name)		\
type name (void)			\
{					\
	return syscall(__NR_##name);	\
}
112

B
bellard 已提交
113 114 115 116
#define _syscall1(type,name,type1,arg1)		\
type name (type1 arg1)				\
{						\
	return syscall(__NR_##name, arg1);	\
117 118
}

B
bellard 已提交
119 120 121 122
#define _syscall2(type,name,type1,arg1,type2,arg2)	\
type name (type1 arg1,type2 arg2)			\
{							\
	return syscall(__NR_##name, arg1, arg2);	\
123 124
}

B
bellard 已提交
125 126 127 128
#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3)	\
type name (type1 arg1,type2 arg2,type3 arg3)			\
{								\
	return syscall(__NR_##name, arg1, arg2, arg3);		\
129 130
}

B
bellard 已提交
131 132 133 134
#define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4)	\
type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4)				\
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4);			\
135 136
}

B
bellard 已提交
137 138 139 140 141
#define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,	\
		  type5,arg5)							\
type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5)		\
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5);		\
142 143
}

B
bellard 已提交
144 145 146 147 148 149

#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,	\
		  type5,arg5,type6,arg6)					\
type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5,type6 arg6)	\
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5, arg6);	\
150
}
B
bellard 已提交
151

152

153
#define __NR_sys_uname __NR_uname
154
#define __NR_sys_faccessat __NR_faccessat
155
#define __NR_sys_fchmodat __NR_fchmodat
156
#define __NR_sys_fchownat __NR_fchownat
B
bellard 已提交
157 158
#define __NR_sys_getcwd1 __NR_getcwd
#define __NR_sys_getdents __NR_getdents
B
bellard 已提交
159
#define __NR_sys_getdents64 __NR_getdents64
160
#define __NR_sys_getpriority __NR_getpriority
161
#define __NR_sys_linkat __NR_linkat
162
#define __NR_sys_mkdirat __NR_mkdirat
163
#define __NR_sys_mknodat __NR_mknodat
164
#define __NR_sys_openat __NR_openat
165
#define __NR_sys_readlinkat __NR_readlinkat
166
#define __NR_sys_renameat __NR_renameat
B
bellard 已提交
167
#define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo
168
#define __NR_sys_symlinkat __NR_symlinkat
169
#define __NR_sys_syslog __NR_syslog
T
ths 已提交
170
#define __NR_sys_tgkill __NR_tgkill
T
ths 已提交
171
#define __NR_sys_tkill __NR_tkill
172
#define __NR_sys_unlinkat __NR_unlinkat
173
#define __NR_sys_utimensat __NR_utimensat
174
#define __NR_sys_futex __NR_futex
175

176
#if defined(__alpha__) || defined (__ia64__) || defined(__x86_64__)
B
bellard 已提交
177 178 179
#define __NR__llseek __NR_lseek
#endif

B
bellard 已提交
180
#ifdef __NR_gettid
181
_syscall0(int, gettid)
B
bellard 已提交
182
#else
183 184
/* This is a replacement for the host gettid() and must return a host
   errno. */
B
bellard 已提交
185 186 187 188
static int gettid(void) {
    return -ENOSYS;
}
#endif
189
_syscall1(int,sys_uname,struct new_utsname *,buf)
190 191 192
#if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
_syscall4(int,sys_faccessat,int,dirfd,const char *,pathname,int,mode,int,flags)
#endif
193 194 195 196
#if defined(TARGET_NR_fchmodat) && defined(__NR_fchmodat)
_syscall4(int,sys_fchmodat,int,dirfd,const char *,pathname,
          mode_t,mode,int,flags)
#endif
197 198 199 200
#if defined(TARGET_NR_fchownat) && defined(__NR_fchownat)
_syscall5(int,sys_fchownat,int,dirfd,const char *,pathname,
          uid_t,owner,gid_t,group,int,flags)
#endif
B
bellard 已提交
201 202
_syscall2(int,sys_getcwd1,char *,buf,size_t,size)
_syscall3(int, sys_getdents, uint, fd, struct dirent *, dirp, uint, count);
T
ths 已提交
203
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
204
_syscall3(int, sys_getdents64, uint, fd, struct dirent64 *, dirp, uint, count);
T
ths 已提交
205
#endif
206
_syscall2(int, sys_getpriority, int, which, int, who);
207 208
_syscall5(int, _llseek,  uint,  fd, ulong, hi, ulong, lo,
          loff_t *, res, uint, wh);
209 210 211 212
#if defined(TARGET_NR_linkat) && defined(__NR_linkat)
_syscall5(int,sys_linkat,int,olddirfd,const char *,oldpath,
	  int,newdirfd,const char *,newpath,int,flags)
#endif
213 214 215
#if defined(TARGET_NR_mkdirat) && defined(__NR_mkdirat)
_syscall3(int,sys_mkdirat,int,dirfd,const char *,pathname,mode_t,mode)
#endif
216 217 218 219
#if defined(TARGET_NR_mknodat) && defined(__NR_mknodat)
_syscall4(int,sys_mknodat,int,dirfd,const char *,pathname,
          mode_t,mode,dev_t,dev)
#endif
220 221 222
#if defined(TARGET_NR_openat) && defined(__NR_openat)
_syscall4(int,sys_openat,int,dirfd,const char *,pathname,int,flags,mode_t,mode)
#endif
223 224 225 226
#if defined(TARGET_NR_readlinkat) && defined(__NR_readlinkat)
_syscall4(int,sys_readlinkat,int,dirfd,const char *,pathname,
          char *,buf,size_t,bufsize)
#endif
227 228 229 230
#if defined(TARGET_NR_renameat) && defined(__NR_renameat)
_syscall4(int,sys_renameat,int,olddirfd,const char *,oldpath,
          int,newdirfd,const char *,newpath)
#endif
B
bellard 已提交
231
_syscall3(int,sys_rt_sigqueueinfo,int,pid,int,sig,siginfo_t *,uinfo)
232
#if defined(TARGET_NR_symlinkat) && defined(__NR_symlinkat)
233 234 235
_syscall3(int,sys_symlinkat,const char *,oldpath,
          int,newdirfd,const char *,newpath)
#endif
236
_syscall3(int,sys_syslog,int,type,char*,bufp,int,len)
T
ths 已提交
237
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
238
_syscall3(int,sys_tgkill,int,tgid,int,pid,int,sig)
T
ths 已提交
239
#endif
T
ths 已提交
240
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
241 242
_syscall2(int,sys_tkill,int,tid,int,sig)
#endif
243 244 245
#ifdef __NR_exit_group
_syscall1(int,exit_group,int,error_code)
#endif
246 247 248
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
_syscall1(int,set_tid_address,int *,tidptr)
#endif
249 250 251
#if defined(TARGET_NR_unlinkat) && defined(__NR_unlinkat)
_syscall3(int,sys_unlinkat,int,dirfd,const char *,pathname,int,flags)
#endif
252 253 254 255
#if defined(TARGET_NR_utimensat) && defined(__NR_utimensat)
_syscall4(int,sys_utimensat,int,dirfd,const char *,pathname,
          const struct timespec *,tsp,int,flags)
#endif
256 257 258 259 260
#if defined(TARGET_NR_futex) && defined(__NR_futex)
_syscall6(int,sys_futex,int *,uaddr,int,op,int,val,
          const struct timespec *,timeout,int *,uaddr2,int,val3)
          
#endif
B
bellard 已提交
261 262

extern int personality(int);
B
bellard 已提交
263 264 265
extern int flock(int, int);
extern int setfsuid(int);
extern int setfsgid(int);
B
bellard 已提交
266 267 268 269
extern int setresuid(uid_t, uid_t, uid_t);
extern int getresuid(uid_t *, uid_t *, uid_t *);
extern int setresgid(gid_t, gid_t, gid_t);
extern int getresgid(gid_t *, gid_t *, gid_t *);
B
bellard 已提交
270
extern int setgroups(int, gid_t *);
271

272 273 274 275 276 277 278
#define ERRNO_TABLE_SIZE 1200

/* target_to_host_errno_table[] is initialized from
 * host_to_target_errno_table[] in syscall_init(). */
static uint16_t target_to_host_errno_table[ERRNO_TABLE_SIZE] = {
};

279
/*
T
ths 已提交
280
 * This list is the union of errno values overridden in asm-<arch>/errno.h
281 282
 * minus the errnos that are not actually generic to all archs.
 */
283
static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
    [EIDRM]		= TARGET_EIDRM,
    [ECHRNG]		= TARGET_ECHRNG,
    [EL2NSYNC]		= TARGET_EL2NSYNC,
    [EL3HLT]		= TARGET_EL3HLT,
    [EL3RST]		= TARGET_EL3RST,
    [ELNRNG]		= TARGET_ELNRNG,
    [EUNATCH]		= TARGET_EUNATCH,
    [ENOCSI]		= TARGET_ENOCSI,
    [EL2HLT]		= TARGET_EL2HLT,
    [EDEADLK]		= TARGET_EDEADLK,
    [ENOLCK]		= TARGET_ENOLCK,
    [EBADE]		= TARGET_EBADE,
    [EBADR]		= TARGET_EBADR,
    [EXFULL]		= TARGET_EXFULL,
    [ENOANO]		= TARGET_ENOANO,
    [EBADRQC]		= TARGET_EBADRQC,
    [EBADSLT]		= TARGET_EBADSLT,
    [EBFONT]		= TARGET_EBFONT,
    [ENOSTR]		= TARGET_ENOSTR,
    [ENODATA]		= TARGET_ENODATA,
    [ETIME]		= TARGET_ETIME,
    [ENOSR]		= TARGET_ENOSR,
    [ENONET]		= TARGET_ENONET,
    [ENOPKG]		= TARGET_ENOPKG,
    [EREMOTE]		= TARGET_EREMOTE,
    [ENOLINK]		= TARGET_ENOLINK,
    [EADV]		= TARGET_EADV,
    [ESRMNT]		= TARGET_ESRMNT,
    [ECOMM]		= TARGET_ECOMM,
    [EPROTO]		= TARGET_EPROTO,
    [EDOTDOT]		= TARGET_EDOTDOT,
    [EMULTIHOP]		= TARGET_EMULTIHOP,
    [EBADMSG]		= TARGET_EBADMSG,
    [ENAMETOOLONG]	= TARGET_ENAMETOOLONG,
    [EOVERFLOW]		= TARGET_EOVERFLOW,
    [ENOTUNIQ]		= TARGET_ENOTUNIQ,
    [EBADFD]		= TARGET_EBADFD,
    [EREMCHG]		= TARGET_EREMCHG,
    [ELIBACC]		= TARGET_ELIBACC,
    [ELIBBAD]		= TARGET_ELIBBAD,
    [ELIBSCN]		= TARGET_ELIBSCN,
    [ELIBMAX]		= TARGET_ELIBMAX,
    [ELIBEXEC]		= TARGET_ELIBEXEC,
    [EILSEQ]		= TARGET_EILSEQ,
    [ENOSYS]		= TARGET_ENOSYS,
    [ELOOP]		= TARGET_ELOOP,
    [ERESTART]		= TARGET_ERESTART,
    [ESTRPIPE]		= TARGET_ESTRPIPE,
    [ENOTEMPTY]		= TARGET_ENOTEMPTY,
    [EUSERS]		= TARGET_EUSERS,
    [ENOTSOCK]		= TARGET_ENOTSOCK,
    [EDESTADDRREQ]	= TARGET_EDESTADDRREQ,
    [EMSGSIZE]		= TARGET_EMSGSIZE,
    [EPROTOTYPE]	= TARGET_EPROTOTYPE,
    [ENOPROTOOPT]	= TARGET_ENOPROTOOPT,
    [EPROTONOSUPPORT]	= TARGET_EPROTONOSUPPORT,
    [ESOCKTNOSUPPORT]	= TARGET_ESOCKTNOSUPPORT,
    [EOPNOTSUPP]	= TARGET_EOPNOTSUPP,
    [EPFNOSUPPORT]	= TARGET_EPFNOSUPPORT,
    [EAFNOSUPPORT]	= TARGET_EAFNOSUPPORT,
    [EADDRINUSE]	= TARGET_EADDRINUSE,
    [EADDRNOTAVAIL]	= TARGET_EADDRNOTAVAIL,
    [ENETDOWN]		= TARGET_ENETDOWN,
    [ENETUNREACH]	= TARGET_ENETUNREACH,
    [ENETRESET]		= TARGET_ENETRESET,
    [ECONNABORTED]	= TARGET_ECONNABORTED,
    [ECONNRESET]	= TARGET_ECONNRESET,
    [ENOBUFS]		= TARGET_ENOBUFS,
    [EISCONN]		= TARGET_EISCONN,
    [ENOTCONN]		= TARGET_ENOTCONN,
    [EUCLEAN]		= TARGET_EUCLEAN,
    [ENOTNAM]		= TARGET_ENOTNAM,
    [ENAVAIL]		= TARGET_ENAVAIL,
    [EISNAM]		= TARGET_EISNAM,
    [EREMOTEIO]		= TARGET_EREMOTEIO,
    [ESHUTDOWN]		= TARGET_ESHUTDOWN,
    [ETOOMANYREFS]	= TARGET_ETOOMANYREFS,
    [ETIMEDOUT]		= TARGET_ETIMEDOUT,
    [ECONNREFUSED]	= TARGET_ECONNREFUSED,
    [EHOSTDOWN]		= TARGET_EHOSTDOWN,
    [EHOSTUNREACH]	= TARGET_EHOSTUNREACH,
    [EALREADY]		= TARGET_EALREADY,
    [EINPROGRESS]	= TARGET_EINPROGRESS,
    [ESTALE]		= TARGET_ESTALE,
    [ECANCELED]		= TARGET_ECANCELED,
    [ENOMEDIUM]		= TARGET_ENOMEDIUM,
    [EMEDIUMTYPE]	= TARGET_EMEDIUMTYPE,
T
ths 已提交
371
#ifdef ENOKEY
372
    [ENOKEY]		= TARGET_ENOKEY,
T
ths 已提交
373 374
#endif
#ifdef EKEYEXPIRED
375
    [EKEYEXPIRED]	= TARGET_EKEYEXPIRED,
T
ths 已提交
376 377
#endif
#ifdef EKEYREVOKED
378
    [EKEYREVOKED]	= TARGET_EKEYREVOKED,
T
ths 已提交
379 380
#endif
#ifdef EKEYREJECTED
381
    [EKEYREJECTED]	= TARGET_EKEYREJECTED,
T
ths 已提交
382 383
#endif
#ifdef EOWNERDEAD
384
    [EOWNERDEAD]	= TARGET_EOWNERDEAD,
T
ths 已提交
385 386
#endif
#ifdef ENOTRECOVERABLE
387
    [ENOTRECOVERABLE]	= TARGET_ENOTRECOVERABLE,
T
ths 已提交
388
#endif
389
};
390 391 392 393 394 395 396 397

static inline int host_to_target_errno(int err)
{
    if(host_to_target_errno_table[err])
        return host_to_target_errno_table[err];
    return err;
}

398 399 400 401 402 403 404
static inline int target_to_host_errno(int err)
{
    if (target_to_host_errno_table[err])
        return target_to_host_errno_table[err];
    return err;
}

405
static inline abi_long get_errno(abi_long ret)
406 407
{
    if (ret == -1)
408
        return -host_to_target_errno(errno);
409 410 411 412
    else
        return ret;
}

413
static inline int is_error(abi_long ret)
414
{
415
    return (abi_ulong)ret >= (abi_ulong)(-4096);
416 417
}

418 419 420 421 422
char *target_strerror(int err)
{
    return strerror(target_to_host_errno(err));
}

423 424
static abi_ulong target_brk;
static abi_ulong target_original_brk;
425

426
void target_set_brk(abi_ulong new_brk)
427
{
428
    target_original_brk = target_brk = HOST_PAGE_ALIGN(new_brk);
429 430
}

431
/* do_brk() must return target values and target errnos. */
432
abi_long do_brk(abi_ulong new_brk)
433
{
434 435
    abi_ulong brk_page;
    abi_long mapped_addr;
436 437 438
    int	new_alloc_size;

    if (!new_brk)
439
        return target_brk;
440
    if (new_brk < target_original_brk)
441
        return target_brk;
442

443
    brk_page = HOST_PAGE_ALIGN(target_brk);
444 445 446 447

    /* If the new brk is less than this, set it and we're done... */
    if (new_brk < brk_page) {
	target_brk = new_brk;
448
    	return target_brk;
449 450 451
    }

    /* We need to allocate more memory after the brk... */
B
bellard 已提交
452
    new_alloc_size = HOST_PAGE_ALIGN(new_brk - brk_page + 1);
453
    mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size,
B
bellard 已提交
454 455
                                        PROT_READ|PROT_WRITE,
                                        MAP_ANON|MAP_FIXED|MAP_PRIVATE, 0, 0));
456 457

    if (!is_error(mapped_addr))
458
	target_brk = new_brk;
459 460
    
    return target_brk;
461 462
}

463 464 465
static inline abi_long copy_from_user_fdset(fd_set *fds,
                                            abi_ulong target_fds_addr,
                                            int n)
466
{
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
    int i, nw, j, k;
    abi_ulong b, *target_fds;

    nw = (n + TARGET_ABI_BITS - 1) / TARGET_ABI_BITS;
    if (!(target_fds = lock_user(VERIFY_READ,
                                 target_fds_addr,
                                 sizeof(abi_ulong) * nw,
                                 1)))
        return -TARGET_EFAULT;

    FD_ZERO(fds);
    k = 0;
    for (i = 0; i < nw; i++) {
        /* grab the abi_ulong */
        __get_user(b, &target_fds[i]);
        for (j = 0; j < TARGET_ABI_BITS; j++) {
            /* check the bit inside the abi_ulong */
            if ((b >> j) & 1)
                FD_SET(k, fds);
            k++;
487 488
        }
    }
489 490 491 492

    unlock_user(target_fds, target_fds_addr, 0);

    return 0;
493 494
}

495 496 497
static inline abi_long copy_to_user_fdset(abi_ulong target_fds_addr,
                                          const fd_set *fds,
                                          int n)
498 499
{
    int i, nw, j, k;
500
    abi_long v;
501
    abi_ulong *target_fds;
502

503 504 505 506 507 508 509 510 511 512 513 514 515
    nw = (n + TARGET_ABI_BITS - 1) / TARGET_ABI_BITS;
    if (!(target_fds = lock_user(VERIFY_WRITE,
                                 target_fds_addr,
                                 sizeof(abi_ulong) * nw,
                                 0)))
        return -TARGET_EFAULT;

    k = 0;
    for (i = 0; i < nw; i++) {
        v = 0;
        for (j = 0; j < TARGET_ABI_BITS; j++) {
            v |= ((FD_ISSET(k, fds) != 0) << j);
            k++;
516
        }
517
        __put_user(v, &target_fds[i]);
518
    }
519 520 521 522

    unlock_user(target_fds, target_fds_addr, sizeof(abi_ulong) * nw);

    return 0;
523 524
}

B
bellard 已提交
525 526 527 528 529 530
#if defined(__alpha__)
#define HOST_HZ 1024
#else
#define HOST_HZ 100
#endif

531
static inline abi_long host_to_target_clock_t(long ticks)
B
bellard 已提交
532 533 534 535 536 537 538 539
{
#if HOST_HZ == TARGET_HZ
    return ticks;
#else
    return ((int64_t)ticks * TARGET_HZ) / HOST_HZ;
#endif
}

540 541
static inline abi_long host_to_target_rusage(abi_ulong target_addr,
                                             const struct rusage *rusage)
B
bellard 已提交
542
{
543 544
    struct target_rusage *target_rusage;

545 546
    if (!lock_user_struct(VERIFY_WRITE, target_rusage, target_addr, 0))
        return -TARGET_EFAULT;
B
bellard 已提交
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
    target_rusage->ru_utime.tv_sec = tswapl(rusage->ru_utime.tv_sec);
    target_rusage->ru_utime.tv_usec = tswapl(rusage->ru_utime.tv_usec);
    target_rusage->ru_stime.tv_sec = tswapl(rusage->ru_stime.tv_sec);
    target_rusage->ru_stime.tv_usec = tswapl(rusage->ru_stime.tv_usec);
    target_rusage->ru_maxrss = tswapl(rusage->ru_maxrss);
    target_rusage->ru_ixrss = tswapl(rusage->ru_ixrss);
    target_rusage->ru_idrss = tswapl(rusage->ru_idrss);
    target_rusage->ru_isrss = tswapl(rusage->ru_isrss);
    target_rusage->ru_minflt = tswapl(rusage->ru_minflt);
    target_rusage->ru_majflt = tswapl(rusage->ru_majflt);
    target_rusage->ru_nswap = tswapl(rusage->ru_nswap);
    target_rusage->ru_inblock = tswapl(rusage->ru_inblock);
    target_rusage->ru_oublock = tswapl(rusage->ru_oublock);
    target_rusage->ru_msgsnd = tswapl(rusage->ru_msgsnd);
    target_rusage->ru_msgrcv = tswapl(rusage->ru_msgrcv);
    target_rusage->ru_nsignals = tswapl(rusage->ru_nsignals);
    target_rusage->ru_nvcsw = tswapl(rusage->ru_nvcsw);
    target_rusage->ru_nivcsw = tswapl(rusage->ru_nivcsw);
565
    unlock_user_struct(target_rusage, target_addr, 1);
566 567

    return 0;
B
bellard 已提交
568 569
}

570 571
static inline abi_long copy_from_user_timeval(struct timeval *tv,
                                              abi_ulong target_tv_addr)
572
{
573 574
    struct target_timeval *target_tv;

575
    if (!lock_user_struct(VERIFY_READ, target_tv, target_tv_addr, 1))
576
        return -TARGET_EFAULT;
577 578 579 580 581

    __get_user(tv->tv_sec, &target_tv->tv_sec);
    __get_user(tv->tv_usec, &target_tv->tv_usec);

    unlock_user_struct(target_tv, target_tv_addr, 0);
582 583

    return 0;
584 585
}

586 587
static inline abi_long copy_to_user_timeval(abi_ulong target_tv_addr,
                                            const struct timeval *tv)
588
{
589 590
    struct target_timeval *target_tv;

591
    if (!lock_user_struct(VERIFY_WRITE, target_tv, target_tv_addr, 0))
592
        return -TARGET_EFAULT;
593 594 595 596 597

    __put_user(tv->tv_sec, &target_tv->tv_sec);
    __put_user(tv->tv_usec, &target_tv->tv_usec);

    unlock_user_struct(target_tv, target_tv_addr, 1);
598 599

    return 0;
600 601 602
}


603
/* do_select() must return target values and target errnos. */
604
static abi_long do_select(int n,
605 606
                          abi_ulong rfd_addr, abi_ulong wfd_addr,
                          abi_ulong efd_addr, abi_ulong target_tv_addr)
607 608 609 610
{
    fd_set rfds, wfds, efds;
    fd_set *rfds_ptr, *wfds_ptr, *efds_ptr;
    struct timeval tv, *tv_ptr;
611
    abi_long ret;
612

613 614 615 616
    if (rfd_addr) {
        if (copy_from_user_fdset(&rfds, rfd_addr, n))
            return -TARGET_EFAULT;
        rfds_ptr = &rfds;
617 618 619
    } else {
        rfds_ptr = NULL;
    }
620 621 622 623
    if (wfd_addr) {
        if (copy_from_user_fdset(&wfds, wfd_addr, n))
            return -TARGET_EFAULT;
        wfds_ptr = &wfds;
624 625 626
    } else {
        wfds_ptr = NULL;
    }
627 628 629 630
    if (efd_addr) {
        if (copy_from_user_fdset(&efds, efd_addr, n))
            return -TARGET_EFAULT;
        efds_ptr = &efds;
631 632 633
    } else {
        efds_ptr = NULL;
    }
634

635
    if (target_tv_addr) {
636 637
        if (copy_from_user_timeval(&tv, target_tv_addr))
            return -TARGET_EFAULT;
638 639 640 641
        tv_ptr = &tv;
    } else {
        tv_ptr = NULL;
    }
642

643
    ret = get_errno(select(n, rfds_ptr, wfds_ptr, efds_ptr, tv_ptr));
644

645 646 647 648 649 650 651
    if (!is_error(ret)) {
        if (rfd_addr && copy_to_user_fdset(rfd_addr, &rfds, n))
            return -TARGET_EFAULT;
        if (wfd_addr && copy_to_user_fdset(wfd_addr, &wfds, n))
            return -TARGET_EFAULT;
        if (efd_addr && copy_to_user_fdset(efd_addr, &efds, n))
            return -TARGET_EFAULT;
652

653 654
        if (target_tv_addr && copy_to_user_timeval(target_tv_addr, &tv))
            return -TARGET_EFAULT;
655
    }
656

657 658 659
    return ret;
}

660 661 662
static inline abi_long target_to_host_sockaddr(struct sockaddr *addr,
                                               abi_ulong target_addr,
                                               socklen_t len)
B
bellard 已提交
663
{
664 665
    struct target_sockaddr *target_saddr;

666 667 668
    target_saddr = lock_user(VERIFY_READ, target_addr, len, 1);
    if (!target_saddr)
        return -TARGET_EFAULT;
669 670 671
    memcpy(addr, target_saddr, len);
    addr->sa_family = tswap16(target_saddr->sa_family);
    unlock_user(target_saddr, target_addr, 0);
672 673

    return 0;
B
bellard 已提交
674 675
}

676 677 678
static inline abi_long host_to_target_sockaddr(abi_ulong target_addr,
                                               struct sockaddr *addr,
                                               socklen_t len)
B
bellard 已提交
679
{
680 681
    struct target_sockaddr *target_saddr;

682 683 684
    target_saddr = lock_user(VERIFY_WRITE, target_addr, len, 0);
    if (!target_saddr)
        return -TARGET_EFAULT;
685 686 687
    memcpy(target_saddr, addr, len);
    target_saddr->sa_family = tswap16(addr->sa_family);
    unlock_user(target_saddr, target_addr, len);
688 689

    return 0;
B
bellard 已提交
690 691
}

692
/* ??? Should this also swap msgh->name?  */
693 694
static inline abi_long target_to_host_cmsg(struct msghdr *msgh,
                                           struct target_msghdr *target_msgh)
B
bellard 已提交
695 696
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
697 698 699
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
700
    socklen_t space = 0;
701 702 703 704 705 706 707 708
    
    msg_controllen = tswapl(target_msgh->msg_controllen);
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
    target_cmsg_addr = tswapl(target_msgh->msg_control);
    target_cmsg = lock_user(VERIFY_READ, target_cmsg_addr, msg_controllen, 1);
    if (!target_cmsg)
        return -TARGET_EFAULT;
B
bellard 已提交
709 710 711 712 713

    while (cmsg && target_cmsg) {
        void *data = CMSG_DATA(cmsg);
        void *target_data = TARGET_CMSG_DATA(target_cmsg);

714
        int len = tswapl(target_cmsg->cmsg_len)
B
bellard 已提交
715 716 717 718 719
                  - TARGET_CMSG_ALIGN(sizeof (struct target_cmsghdr));

        space += CMSG_SPACE(len);
        if (space > msgh->msg_controllen) {
            space -= CMSG_SPACE(len);
B
bellard 已提交
720
            gemu_log("Host cmsg overflow\n");
B
bellard 已提交
721 722 723 724 725 726 727
            break;
        }

        cmsg->cmsg_level = tswap32(target_cmsg->cmsg_level);
        cmsg->cmsg_type = tswap32(target_cmsg->cmsg_type);
        cmsg->cmsg_len = CMSG_LEN(len);

728
        if (cmsg->cmsg_level != TARGET_SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
729 730 731 732 733 734 735 736 737 738 739 740 741 742
            gemu_log("Unsupported ancillary data: %d/%d\n", cmsg->cmsg_level, cmsg->cmsg_type);
            memcpy(data, target_data, len);
        } else {
            int *fd = (int *)data;
            int *target_fd = (int *)target_data;
            int i, numfds = len / sizeof(int);

            for (i = 0; i < numfds; i++)
                fd[i] = tswap32(target_fd[i]);
        }

        cmsg = CMSG_NXTHDR(msgh, cmsg);
        target_cmsg = TARGET_CMSG_NXTHDR(target_msgh, target_cmsg);
    }
743 744
    unlock_user(target_cmsg, target_cmsg_addr, 0);
 the_end:
B
bellard 已提交
745
    msgh->msg_controllen = space;
746
    return 0;
B
bellard 已提交
747 748
}

749
/* ??? Should this also swap msgh->name?  */
750 751
static inline abi_long host_to_target_cmsg(struct target_msghdr *target_msgh,
                                           struct msghdr *msgh)
B
bellard 已提交
752 753
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
754 755 756
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
757 758
    socklen_t space = 0;

759 760 761 762 763 764 765 766
    msg_controllen = tswapl(target_msgh->msg_controllen);
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
    target_cmsg_addr = tswapl(target_msgh->msg_control);
    target_cmsg = lock_user(VERIFY_WRITE, target_cmsg_addr, msg_controllen, 0);
    if (!target_cmsg)
        return -TARGET_EFAULT;

B
bellard 已提交
767 768 769 770 771 772 773
    while (cmsg && target_cmsg) {
        void *data = CMSG_DATA(cmsg);
        void *target_data = TARGET_CMSG_DATA(target_cmsg);

        int len = cmsg->cmsg_len - CMSG_ALIGN(sizeof (struct cmsghdr));

        space += TARGET_CMSG_SPACE(len);
774
        if (space > msg_controllen) {
B
bellard 已提交
775
            space -= TARGET_CMSG_SPACE(len);
B
bellard 已提交
776
            gemu_log("Target cmsg overflow\n");
B
bellard 已提交
777 778 779 780 781 782 783
            break;
        }

        target_cmsg->cmsg_level = tswap32(cmsg->cmsg_level);
        target_cmsg->cmsg_type = tswap32(cmsg->cmsg_type);
        target_cmsg->cmsg_len = tswapl(TARGET_CMSG_LEN(len));

784
        if (cmsg->cmsg_level != TARGET_SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797 798
            gemu_log("Unsupported ancillary data: %d/%d\n", cmsg->cmsg_level, cmsg->cmsg_type);
            memcpy(target_data, data, len);
        } else {
            int *fd = (int *)data;
            int *target_fd = (int *)target_data;
            int i, numfds = len / sizeof(int);

            for (i = 0; i < numfds; i++)
                target_fd[i] = tswap32(fd[i]);
        }

        cmsg = CMSG_NXTHDR(msgh, cmsg);
        target_cmsg = TARGET_CMSG_NXTHDR(target_msgh, target_cmsg);
    }
799 800 801 802
    unlock_user(target_cmsg, target_cmsg_addr, space);
 the_end:
    target_msgh->msg_controllen = tswapl(space);
    return 0;
B
bellard 已提交
803 804
}

805
/* do_setsockopt() Must return target values and target errnos. */
806
static abi_long do_setsockopt(int sockfd, int level, int optname,
807
                              abi_ulong optval_addr, socklen_t optlen)
B
bellard 已提交
808
{
809
    abi_long ret;
810
    int val;
811

812 813
    switch(level) {
    case SOL_TCP:
B
bellard 已提交
814 815
        /* TCP options all take an 'int' value.  */
        if (optlen < sizeof(uint32_t))
816
            return -TARGET_EINVAL;
817

818 819
        if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
820 821 822 823
        ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
        break;
    case SOL_IP:
        switch(optname) {
B
bellard 已提交
824 825
        case IP_TOS:
        case IP_TTL:
826
        case IP_HDRINCL:
B
bellard 已提交
827 828 829 830 831 832 833 834 835 836 837 838
        case IP_ROUTER_ALERT:
        case IP_RECVOPTS:
        case IP_RETOPTS:
        case IP_PKTINFO:
        case IP_MTU_DISCOVER:
        case IP_RECVERR:
        case IP_RECVTOS:
#ifdef IP_FREEBIND
        case IP_FREEBIND:
#endif
        case IP_MULTICAST_TTL:
        case IP_MULTICAST_LOOP:
839 840
            val = 0;
            if (optlen >= sizeof(uint32_t)) {
841 842
                if (get_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
843
            } else if (optlen >= 1) {
844 845
                if (get_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
846 847 848 849 850 851 852
            }
            ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
            break;
        default:
            goto unimplemented;
        }
        break;
853
    case TARGET_SOL_SOCKET:
854 855
        switch (optname) {
            /* Options with 'int' argument.  */
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
        case TARGET_SO_DEBUG:
		optname = SO_DEBUG;
		break;
        case TARGET_SO_REUSEADDR:
		optname = SO_REUSEADDR;
		break;
        case TARGET_SO_TYPE:
		optname = SO_TYPE;
		break;
        case TARGET_SO_ERROR:
		optname = SO_ERROR;
		break;
        case TARGET_SO_DONTROUTE:
		optname = SO_DONTROUTE;
		break;
        case TARGET_SO_BROADCAST:
		optname = SO_BROADCAST;
		break;
        case TARGET_SO_SNDBUF:
		optname = SO_SNDBUF;
		break;
        case TARGET_SO_RCVBUF:
		optname = SO_RCVBUF;
		break;
        case TARGET_SO_KEEPALIVE:
		optname = SO_KEEPALIVE;
		break;
        case TARGET_SO_OOBINLINE:
		optname = SO_OOBINLINE;
		break;
        case TARGET_SO_NO_CHECK:
		optname = SO_NO_CHECK;
		break;
        case TARGET_SO_PRIORITY:
		optname = SO_PRIORITY;
		break;
B
bellard 已提交
892
#ifdef SO_BSDCOMPAT
893 894 895
        case TARGET_SO_BSDCOMPAT:
		optname = SO_BSDCOMPAT;
		break;
B
bellard 已提交
896
#endif
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
        case TARGET_SO_PASSCRED:
		optname = SO_PASSCRED;
		break;
        case TARGET_SO_TIMESTAMP:
		optname = SO_TIMESTAMP;
		break;
        case TARGET_SO_RCVLOWAT:
		optname = SO_RCVLOWAT;
		break;
        case TARGET_SO_RCVTIMEO:
		optname = SO_RCVTIMEO;
		break;
        case TARGET_SO_SNDTIMEO:
		optname = SO_SNDTIMEO;
		break;
912 913 914 915
            break;
        default:
            goto unimplemented;
        }
916
	if (optlen < sizeof(uint32_t))
917
            return -TARGET_EINVAL;
918

919 920
	if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
921
	ret = get_errno(setsockopt(sockfd, SOL_SOCKET, optname, &val, sizeof(val)));
922
        break;
B
bellard 已提交
923
    default:
924 925
    unimplemented:
        gemu_log("Unsupported setsockopt level=%d optname=%d \n", level, optname);
926
        ret = -TARGET_ENOPROTOOPT;
B
bellard 已提交
927
    }
928
    return ret;
B
bellard 已提交
929 930
}

931
/* do_getsockopt() Must return target values and target errnos. */
932
static abi_long do_getsockopt(int sockfd, int level, int optname,
933
                              abi_ulong optval_addr, abi_ulong optlen)
B
bellard 已提交
934
{
935
    abi_long ret;
936
    int len, lv, val;
937 938

    switch(level) {
939 940
    case TARGET_SOL_SOCKET:
    	level = SOL_SOCKET;
941
	switch (optname) {
942 943 944 945 946
	case TARGET_SO_LINGER:
	case TARGET_SO_RCVTIMEO:
	case TARGET_SO_SNDTIMEO:
	case TARGET_SO_PEERCRED:
	case TARGET_SO_PEERNAME:
947 948 949
	    /* These don't just return a single integer */
	    goto unimplemented;
        default:
B
bellard 已提交
950 951 952 953 954 955
            goto int_case;
        }
        break;
    case SOL_TCP:
        /* TCP options all take an 'int' value.  */
    int_case:
956 957
        if (get_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
958
        if (len < 0)
959
            return -TARGET_EINVAL;
B
bellard 已提交
960 961 962 963 964 965 966
        lv = sizeof(int);
        ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
        if (ret < 0)
            return ret;
        val = tswap32(val);
        if (len > lv)
            len = lv;
967 968 969 970 971 972 973 974 975
        if (len == 4) {
            if (put_user_u32(val, optval_addr))
                return -TARGET_EFAULT;
        } else {
            if (put_user_u8(val, optval_addr))
                return -TARGET_EFAULT;
	}
        if (put_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
        break;
    case SOL_IP:
        switch(optname) {
        case IP_TOS:
        case IP_TTL:
        case IP_HDRINCL:
        case IP_ROUTER_ALERT:
        case IP_RECVOPTS:
        case IP_RETOPTS:
        case IP_PKTINFO:
        case IP_MTU_DISCOVER:
        case IP_RECVERR:
        case IP_RECVTOS:
#ifdef IP_FREEBIND
        case IP_FREEBIND:
#endif
        case IP_MULTICAST_TTL:
        case IP_MULTICAST_LOOP:
994 995
            if (get_user_u32(len, optlen))
                return -TARGET_EFAULT;
996
            if (len < 0)
997
                return -TARGET_EINVAL;
998 999 1000 1001
            lv = sizeof(int);
            ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
            if (ret < 0)
                return ret;
B
bellard 已提交
1002 1003
            if (len < sizeof(int) && len > 0 && val >= 0 && val < 255) {
                len = 1;
1004 1005 1006
                if (put_user_u32(len, optlen)
                    || put_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1007 1008 1009
            } else {
                if (len > sizeof(int))
                    len = sizeof(int);
1010 1011 1012
                if (put_user_u32(len, optlen)
                    || put_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1013
            }
1014
            break;
B
bellard 已提交
1015
        default:
1016 1017
            ret = -TARGET_ENOPROTOOPT;
            break;
1018 1019 1020 1021 1022 1023
        }
        break;
    default:
    unimplemented:
        gemu_log("getsockopt level=%d optname=%d not yet supported\n",
                 level, optname);
1024
        ret = -TARGET_EOPNOTSUPP;
1025 1026 1027
        break;
    }
    return ret;
B
bellard 已提交
1028 1029
}

1030 1031 1032 1033 1034 1035
/* FIXME
 * lock_iovec()/unlock_iovec() have a return code of 0 for success where
 * other lock functions have a return code of 0 for failure.
 */
static abi_long lock_iovec(int type, struct iovec *vec, abi_ulong target_addr,
                           int count, int copy)
1036 1037
{
    struct target_iovec *target_vec;
1038
    abi_ulong base;
1039
    int i, j;
1040

1041 1042 1043
    target_vec = lock_user(VERIFY_READ, target_addr, count * sizeof(struct target_iovec), 1);
    if (!target_vec)
        return -TARGET_EFAULT;
1044 1045 1046
    for(i = 0;i < count; i++) {
        base = tswapl(target_vec[i].iov_base);
        vec[i].iov_len = tswapl(target_vec[i].iov_len);
B
bellard 已提交
1047 1048
        if (vec[i].iov_len != 0) {
            vec[i].iov_base = lock_user(type, base, vec[i].iov_len, copy);
1049
            if (!vec[i].iov_base && vec[i].iov_len) 
B
bellard 已提交
1050 1051 1052 1053 1054
                goto fail;
        } else {
            /* zero length pointer is ignored */
            vec[i].iov_base = NULL;
        }
1055 1056 1057 1058 1059 1060 1061 1062
    }
    unlock_user (target_vec, target_addr, 0);
    return 0;
 fail:
    /* failure - unwind locks */
    for (j = 0; j < i; j++) {
        base = tswapl(target_vec[j].iov_base);
        unlock_user(vec[j].iov_base, base, 0);
1063 1064
    }
    unlock_user (target_vec, target_addr, 0);
1065
    return -TARGET_EFAULT;
1066 1067
}

1068 1069
static abi_long unlock_iovec(struct iovec *vec, abi_ulong target_addr,
                             int count, int copy)
1070 1071
{
    struct target_iovec *target_vec;
1072
    abi_ulong base;
1073 1074
    int i;

1075 1076 1077
    target_vec = lock_user(VERIFY_READ, target_addr, count * sizeof(struct target_iovec), 1);
    if (!target_vec)
        return -TARGET_EFAULT;
1078 1079 1080 1081 1082
    for(i = 0;i < count; i++) {
        base = tswapl(target_vec[i].iov_base);
        unlock_user(vec[i].iov_base, base, copy ? vec[i].iov_len : 0);
    }
    unlock_user (target_vec, target_addr, 0);
1083 1084

    return 0;
1085 1086
}

1087
/* do_socket() Must return target values and target errnos. */
1088
static abi_long do_socket(int domain, int type, int protocol)
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
{
#if defined(TARGET_MIPS)
    switch(type) {
    case TARGET_SOCK_DGRAM:
        type = SOCK_DGRAM;
        break;
    case TARGET_SOCK_STREAM:
        type = SOCK_STREAM;
        break;
    case TARGET_SOCK_RAW:
        type = SOCK_RAW;
        break;
    case TARGET_SOCK_RDM:
        type = SOCK_RDM;
        break;
    case TARGET_SOCK_SEQPACKET:
        type = SOCK_SEQPACKET;
        break;
    case TARGET_SOCK_PACKET:
        type = SOCK_PACKET;
        break;
    }
#endif
1112 1113
    if (domain == PF_NETLINK)
        return -EAFNOSUPPORT; /* do not NETLINK socket connections possible */
1114 1115 1116
    return get_errno(socket(domain, type, protocol));
}

1117
/* do_bind() Must return target values and target errnos. */
1118 1119
static abi_long do_bind(int sockfd, abi_ulong target_addr,
                        socklen_t addrlen)
1120 1121
{
    void *addr = alloca(addrlen);
1122

1123 1124 1125 1126
    target_to_host_sockaddr(addr, target_addr, addrlen);
    return get_errno(bind(sockfd, addr, addrlen));
}

1127
/* do_connect() Must return target values and target errnos. */
1128 1129
static abi_long do_connect(int sockfd, abi_ulong target_addr,
                           socklen_t addrlen)
1130 1131
{
    void *addr = alloca(addrlen);
1132

1133 1134 1135 1136
    target_to_host_sockaddr(addr, target_addr, addrlen);
    return get_errno(connect(sockfd, addr, addrlen));
}

1137
/* do_sendrecvmsg() Must return target values and target errnos. */
1138 1139
static abi_long do_sendrecvmsg(int fd, abi_ulong target_msg,
                               int flags, int send)
1140
{
1141
    abi_long ret;
1142 1143 1144 1145
    struct target_msghdr *msgp;
    struct msghdr msg;
    int count;
    struct iovec *vec;
1146
    abi_ulong target_vec;
1147

1148 1149 1150 1151 1152 1153
    /* FIXME */
    if (!lock_user_struct(send ? VERIFY_READ : VERIFY_WRITE,
                          msgp,
                          target_msg,
                          send ? 1 : 0))
        return -TARGET_EFAULT;
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
    if (msgp->msg_name) {
        msg.msg_namelen = tswap32(msgp->msg_namelen);
        msg.msg_name = alloca(msg.msg_namelen);
        target_to_host_sockaddr(msg.msg_name, tswapl(msgp->msg_name),
                                msg.msg_namelen);
    } else {
        msg.msg_name = NULL;
        msg.msg_namelen = 0;
    }
    msg.msg_controllen = 2 * tswapl(msgp->msg_controllen);
    msg.msg_control = alloca(msg.msg_controllen);
    msg.msg_flags = tswap32(msgp->msg_flags);
1166

1167 1168 1169
    count = tswapl(msgp->msg_iovlen);
    vec = alloca(count * sizeof(struct iovec));
    target_vec = tswapl(msgp->msg_iov);
1170
    lock_iovec(send ? VERIFY_READ : VERIFY_WRITE, vec, target_vec, count, send);
1171 1172
    msg.msg_iovlen = count;
    msg.msg_iov = vec;
1173

1174
    if (send) {
1175 1176 1177
        ret = target_to_host_cmsg(&msg, msgp);
        if (ret == 0)
            ret = get_errno(sendmsg(fd, &msg, flags));
1178 1179 1180
    } else {
        ret = get_errno(recvmsg(fd, &msg, flags));
        if (!is_error(ret))
1181
            ret = host_to_target_cmsg(msgp, &msg);
1182 1183
    }
    unlock_iovec(vec, target_vec, count, !send);
1184
    unlock_user_struct(msgp, target_msg, send ? 0 : 1);
1185 1186 1187
    return ret;
}

1188
/* do_accept() Must return target values and target errnos. */
1189
static abi_long do_accept(int fd, abi_ulong target_addr,
1190
                          abi_ulong target_addrlen_addr)
P
pbrook 已提交
1191
{
1192 1193
    socklen_t addrlen;
    void *addr;
1194
    abi_long ret;
P
pbrook 已提交
1195

1196 1197 1198 1199 1200
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

    addr = alloca(addrlen);

P
pbrook 已提交
1201 1202 1203
    ret = get_errno(accept(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1204 1205
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1206 1207 1208 1209
    }
    return ret;
}

1210
/* do_getpeername() Must return target values and target errnos. */
1211
static abi_long do_getpeername(int fd, abi_ulong target_addr,
1212
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
1213
{
1214 1215
    socklen_t addrlen;
    void *addr;
1216
    abi_long ret;
P
pbrook 已提交
1217

1218 1219 1220 1221 1222
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

    addr = alloca(addrlen);

P
pbrook 已提交
1223 1224 1225
    ret = get_errno(getpeername(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1226 1227
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1228 1229 1230 1231
    }
    return ret;
}

1232
/* do_getsockname() Must return target values and target errnos. */
1233
static abi_long do_getsockname(int fd, abi_ulong target_addr,
1234
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
1235
{
1236 1237
    socklen_t addrlen;
    void *addr;
1238
    abi_long ret;
P
pbrook 已提交
1239

1240 1241 1242 1243 1244
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

    addr = alloca(addrlen);

P
pbrook 已提交
1245 1246 1247
    ret = get_errno(getsockname(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1248 1249
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1250 1251 1252 1253
    }
    return ret;
}

1254
/* do_socketpair() Must return target values and target errnos. */
1255
static abi_long do_socketpair(int domain, int type, int protocol,
1256
                              abi_ulong target_tab_addr)
P
pbrook 已提交
1257 1258
{
    int tab[2];
1259
    abi_long ret;
P
pbrook 已提交
1260 1261 1262

    ret = get_errno(socketpair(domain, type, protocol, tab));
    if (!is_error(ret)) {
1263 1264 1265
        if (put_user_s32(tab[0], target_tab_addr)
            || put_user_s32(tab[1], target_tab_addr + sizeof(tab[0])))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1266 1267 1268 1269
    }
    return ret;
}

1270
/* do_sendto() Must return target values and target errnos. */
1271 1272
static abi_long do_sendto(int fd, abi_ulong msg, size_t len, int flags,
                          abi_ulong target_addr, socklen_t addrlen)
P
pbrook 已提交
1273 1274 1275
{
    void *addr;
    void *host_msg;
1276
    abi_long ret;
P
pbrook 已提交
1277

1278 1279 1280
    host_msg = lock_user(VERIFY_READ, msg, len, 1);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
    if (target_addr) {
        addr = alloca(addrlen);
        target_to_host_sockaddr(addr, target_addr, addrlen);
        ret = get_errno(sendto(fd, host_msg, len, flags, addr, addrlen));
    } else {
        ret = get_errno(send(fd, host_msg, len, flags));
    }
    unlock_user(host_msg, msg, 0);
    return ret;
}

1292
/* do_recvfrom() Must return target values and target errnos. */
1293 1294 1295
static abi_long do_recvfrom(int fd, abi_ulong msg, size_t len, int flags,
                            abi_ulong target_addr,
                            abi_ulong target_addrlen)
P
pbrook 已提交
1296 1297 1298 1299
{
    socklen_t addrlen;
    void *addr;
    void *host_msg;
1300
    abi_long ret;
P
pbrook 已提交
1301

1302 1303 1304
    host_msg = lock_user(VERIFY_WRITE, msg, len, 0);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
1305
    if (target_addr) {
1306 1307 1308 1309
        if (get_user_u32(addrlen, target_addrlen)) {
            ret = -TARGET_EFAULT;
            goto fail;
        }
P
pbrook 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318
        addr = alloca(addrlen);
        ret = get_errno(recvfrom(fd, host_msg, len, flags, addr, &addrlen));
    } else {
        addr = NULL; /* To keep compiler quiet.  */
        ret = get_errno(recv(fd, host_msg, len, flags));
    }
    if (!is_error(ret)) {
        if (target_addr) {
            host_to_target_sockaddr(target_addr, addr, addrlen);
1319 1320 1321 1322
            if (put_user_u32(addrlen, target_addrlen)) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
P
pbrook 已提交
1323 1324 1325
        }
        unlock_user(host_msg, msg, len);
    } else {
1326
fail:
P
pbrook 已提交
1327 1328 1329 1330 1331
        unlock_user(host_msg, msg, 0);
    }
    return ret;
}

1332
#ifdef TARGET_NR_socketcall
1333
/* do_socketcall() Must return target values and target errnos. */
1334
static abi_long do_socketcall(int num, abi_ulong vptr)
1335
{
1336 1337
    abi_long ret;
    const int n = sizeof(abi_ulong);
1338 1339 1340

    switch(num) {
    case SOCKOP_socket:
B
bellard 已提交
1341
	{
1342 1343 1344 1345 1346 1347 1348
            int domain, type, protocol;

            if (get_user_s32(domain, vptr)
                || get_user_s32(type, vptr + n)
                || get_user_s32(protocol, vptr + 2 * n))
                return -TARGET_EFAULT;

1349
            ret = do_socket(domain, type, protocol);
B
bellard 已提交
1350
	}
1351 1352
        break;
    case SOCKOP_bind:
B
bellard 已提交
1353
	{
1354 1355 1356 1357 1358 1359 1360 1361 1362
            int sockfd;
            abi_ulong target_addr;
            socklen_t addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(target_addr, vptr + n)
                || get_user_u32(addrlen, vptr + 2 * n))
                return -TARGET_EFAULT;

1363
            ret = do_bind(sockfd, target_addr, addrlen);
B
bellard 已提交
1364
        }
1365 1366
        break;
    case SOCKOP_connect:
B
bellard 已提交
1367
        {
1368 1369 1370 1371 1372 1373 1374 1375 1376
            int sockfd;
            abi_ulong target_addr;
            socklen_t addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(target_addr, vptr + n)
                || get_user_u32(addrlen, vptr + 2 * n))
                return -TARGET_EFAULT;

1377
            ret = do_connect(sockfd, target_addr, addrlen);
B
bellard 已提交
1378
        }
1379 1380
        break;
    case SOCKOP_listen:
B
bellard 已提交
1381
        {
1382 1383 1384 1385 1386 1387
            int sockfd, backlog;

            if (get_user_s32(sockfd, vptr)
                || get_user_s32(backlog, vptr + n))
                return -TARGET_EFAULT;

B
bellard 已提交
1388 1389
            ret = get_errno(listen(sockfd, backlog));
        }
1390 1391 1392
        break;
    case SOCKOP_accept:
        {
1393 1394 1395 1396 1397 1398 1399 1400
            int sockfd;
            abi_ulong target_addr, target_addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(target_addr, vptr + n)
                || get_user_u32(target_addrlen, vptr + 2 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1401
            ret = do_accept(sockfd, target_addr, target_addrlen);
1402 1403 1404 1405
        }
        break;
    case SOCKOP_getsockname:
        {
1406 1407 1408 1409 1410 1411 1412 1413
            int sockfd;
            abi_ulong target_addr, target_addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(target_addr, vptr + n)
                || get_user_u32(target_addrlen, vptr + 2 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1414
            ret = do_getsockname(sockfd, target_addr, target_addrlen);
1415 1416 1417 1418
        }
        break;
    case SOCKOP_getpeername:
        {
1419 1420 1421 1422 1423 1424 1425 1426
            int sockfd;
            abi_ulong target_addr, target_addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(target_addr, vptr + n)
                || get_user_u32(target_addrlen, vptr + 2 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1427
            ret = do_getpeername(sockfd, target_addr, target_addrlen);
1428 1429 1430 1431
        }
        break;
    case SOCKOP_socketpair:
        {
1432 1433 1434 1435 1436 1437 1438 1439 1440
            int domain, type, protocol;
            abi_ulong tab;

            if (get_user_s32(domain, vptr)
                || get_user_s32(type, vptr + n)
                || get_user_s32(protocol, vptr + 2 * n)
                || get_user_ual(tab, vptr + 3 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1441
            ret = do_socketpair(domain, type, protocol, tab);
1442 1443 1444
        }
        break;
    case SOCKOP_send:
B
bellard 已提交
1445
        {
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
            int sockfd;
            abi_ulong msg;
            size_t len;
            int flags;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
                || get_user_s32(flags, vptr + 3 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1457
            ret = do_sendto(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
1458
        }
1459 1460
        break;
    case SOCKOP_recv:
B
bellard 已提交
1461
        {
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
            int sockfd;
            abi_ulong msg;
            size_t len;
            int flags;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
                || get_user_s32(flags, vptr + 3 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1473
            ret = do_recvfrom(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
1474
        }
1475 1476
        break;
    case SOCKOP_sendto:
B
bellard 已提交
1477
        {
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
            int sockfd;
            abi_ulong msg;
            size_t len;
            int flags;
            abi_ulong addr;
            socklen_t addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
                || get_user_s32(flags, vptr + 3 * n)
                || get_user_ual(addr, vptr + 4 * n)
                || get_user_u32(addrlen, vptr + 5 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1493
            ret = do_sendto(sockfd, msg, len, flags, addr, addrlen);
B
bellard 已提交
1494
        }
1495 1496 1497
        break;
    case SOCKOP_recvfrom:
        {
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
            int sockfd;
            abi_ulong msg;
            size_t len;
            int flags;
            abi_ulong addr;
            socklen_t addrlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
                || get_user_s32(flags, vptr + 3 * n)
                || get_user_ual(addr, vptr + 4 * n)
                || get_user_u32(addrlen, vptr + 5 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
1513
            ret = do_recvfrom(sockfd, msg, len, flags, addr, addrlen);
1514 1515 1516
        }
        break;
    case SOCKOP_shutdown:
B
bellard 已提交
1517
        {
1518 1519 1520 1521 1522
            int sockfd, how;

            if (get_user_s32(sockfd, vptr)
                || get_user_s32(how, vptr + n))
                return -TARGET_EFAULT;
B
bellard 已提交
1523 1524 1525

            ret = get_errno(shutdown(sockfd, how));
        }
1526 1527 1528
        break;
    case SOCKOP_sendmsg:
    case SOCKOP_recvmsg:
B
bellard 已提交
1529 1530
        {
            int fd;
1531
            abi_ulong target_msg;
1532
            int flags;
B
bellard 已提交
1533

1534 1535 1536 1537
            if (get_user_s32(fd, vptr)
                || get_user_ual(target_msg, vptr + n)
                || get_user_s32(flags, vptr + 2 * n))
                return -TARGET_EFAULT;
1538

1539
            ret = do_sendrecvmsg(fd, target_msg, flags,
1540
                                 (num == SOCKOP_sendmsg));
B
bellard 已提交
1541 1542
        }
        break;
1543
    case SOCKOP_setsockopt:
B
bellard 已提交
1544
        {
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
            int sockfd;
            int level;
            int optname;
            abi_ulong optval;
            socklen_t optlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_s32(level, vptr + n)
                || get_user_s32(optname, vptr + 2 * n)
                || get_user_ual(optval, vptr + 3 * n)
                || get_user_u32(optlen, vptr + 4 * n))
                return -TARGET_EFAULT;
B
bellard 已提交
1557 1558 1559 1560

            ret = do_setsockopt(sockfd, level, optname, optval, optlen);
        }
        break;
1561
    case SOCKOP_getsockopt:
B
bellard 已提交
1562
        {
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
            int sockfd;
            int level;
            int optname;
            abi_ulong optval;
            socklen_t optlen;

            if (get_user_s32(sockfd, vptr)
                || get_user_s32(level, vptr + n)
                || get_user_s32(optname, vptr + 2 * n)
                || get_user_ual(optval, vptr + 3 * n)
                || get_user_u32(optlen, vptr + 4 * n))
                return -TARGET_EFAULT;
B
bellard 已提交
1575

1576
            ret = do_getsockopt(sockfd, level, optname, optval, optlen);
B
bellard 已提交
1577 1578
        }
        break;
1579 1580
    default:
        gemu_log("Unsupported socketcall: %d\n", num);
1581
        ret = -TARGET_ENOSYS;
1582 1583 1584 1585
        break;
    }
    return ret;
}
1586
#endif
1587

1588
#ifdef TARGET_NR_ipc
1589 1590 1591
#define N_SHM_REGIONS	32

static struct shm_region {
1592 1593
    abi_ulong	start;
    abi_ulong	size;
1594 1595
} shm_regions[N_SHM_REGIONS];

1596 1597
struct target_ipc_perm
{
1598 1599 1600 1601 1602
    abi_long __key;
    abi_ulong uid;
    abi_ulong gid;
    abi_ulong cuid;
    abi_ulong cgid;
1603 1604 1605 1606
    unsigned short int mode;
    unsigned short int __pad1;
    unsigned short int __seq;
    unsigned short int __pad2;
1607 1608
    abi_ulong __unused1;
    abi_ulong __unused2;
1609 1610 1611 1612 1613
};

struct target_semid_ds
{
  struct target_ipc_perm sem_perm;
1614 1615 1616 1617 1618 1619 1620
  abi_ulong sem_otime;
  abi_ulong __unused1;
  abi_ulong sem_ctime;
  abi_ulong __unused2;
  abi_ulong sem_nsems;
  abi_ulong __unused3;
  abi_ulong __unused4;
1621 1622
};

1623 1624
static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip,
                                               abi_ulong target_addr)
1625 1626 1627 1628
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

1629 1630
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
1631 1632 1633 1634 1635 1636 1637 1638
    target_ip=&(target_sd->sem_perm);
    host_ip->__key = tswapl(target_ip->__key);
    host_ip->uid = tswapl(target_ip->uid);
    host_ip->gid = tswapl(target_ip->gid);
    host_ip->cuid = tswapl(target_ip->cuid);
    host_ip->cgid = tswapl(target_ip->cgid);
    host_ip->mode = tswapl(target_ip->mode);
    unlock_user_struct(target_sd, target_addr, 0);
1639
    return 0;
1640 1641
}

1642 1643
static inline abi_long host_to_target_ipc_perm(abi_ulong target_addr,
                                               struct ipc_perm *host_ip)
1644 1645 1646 1647
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

1648 1649
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
1650 1651 1652 1653 1654 1655 1656 1657
    target_ip = &(target_sd->sem_perm);
    target_ip->__key = tswapl(host_ip->__key);
    target_ip->uid = tswapl(host_ip->uid);
    target_ip->gid = tswapl(host_ip->gid);
    target_ip->cuid = tswapl(host_ip->cuid);
    target_ip->cgid = tswapl(host_ip->cgid);
    target_ip->mode = tswapl(host_ip->mode);
    unlock_user_struct(target_sd, target_addr, 1);
1658
    return 0;
1659 1660
}

1661 1662
static inline abi_long target_to_host_semid_ds(struct semid_ds *host_sd,
                                               abi_ulong target_addr)
1663 1664 1665
{
    struct target_semid_ds *target_sd;

1666 1667
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
1668 1669 1670 1671 1672
    target_to_host_ipc_perm(&(host_sd->sem_perm),target_addr);
    host_sd->sem_nsems = tswapl(target_sd->sem_nsems);
    host_sd->sem_otime = tswapl(target_sd->sem_otime);
    host_sd->sem_ctime = tswapl(target_sd->sem_ctime);
    unlock_user_struct(target_sd, target_addr, 0);
1673
    return 0;
1674 1675
}

1676 1677
static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
                                               struct semid_ds *host_sd)
1678 1679 1680
{
    struct target_semid_ds *target_sd;

1681 1682
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
1683 1684 1685 1686 1687
    host_to_target_ipc_perm(target_addr,&(host_sd->sem_perm));
    target_sd->sem_nsems = tswapl(host_sd->sem_nsems);
    target_sd->sem_otime = tswapl(host_sd->sem_otime);
    target_sd->sem_ctime = tswapl(host_sd->sem_ctime);
    unlock_user_struct(target_sd, target_addr, 1);
1688
    return 0;
1689 1690
}

1691 1692
union semun {
	int val;
1693
	struct semid_ds *buf;
1694 1695 1696
	unsigned short *array;
};

1697 1698
union target_semun {
	int val;
1699
	abi_long buf;
1700 1701 1702
	unsigned short int *array;
};

1703 1704 1705 1706
static inline abi_long target_to_host_semun(int cmd,
                                            union semun *host_su,
                                            abi_ulong target_addr,
                                            struct semid_ds *ds)
1707 1708 1709 1710 1711 1712
{
    union target_semun *target_su;

    switch( cmd ) {
	case IPC_STAT:
	case IPC_SET:
1713 1714
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1715 1716 1717 1718 1719 1720
	   target_to_host_semid_ds(ds,target_su->buf);
	   host_su->buf = ds;
           unlock_user_struct(target_su, target_addr, 0);
	   break;
	case GETVAL:
	case SETVAL:
1721 1722
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1723 1724 1725 1726 1727
	   host_su->val = tswapl(target_su->val);
           unlock_user_struct(target_su, target_addr, 0);
	   break;
	case GETALL:
	case SETALL:
1728 1729
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1730 1731 1732 1733 1734 1735
	   *host_su->array = tswap16(*target_su->array);
           unlock_user_struct(target_su, target_addr, 0);
	   break;
	default:
           gemu_log("semun operation not fully supported: %d\n", (int)cmd);
    }
1736
    return 0;
1737 1738
}

1739 1740 1741 1742
static inline abi_long host_to_target_semun(int cmd,
                                            abi_ulong target_addr,
                                            union semun *host_su,
                                            struct semid_ds *ds)
1743 1744 1745 1746 1747 1748
{
    union target_semun *target_su;

    switch( cmd ) {
	case IPC_STAT:
	case IPC_SET:
1749 1750
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1751 1752 1753 1754 1755
	   host_to_target_semid_ds(target_su->buf,ds);
           unlock_user_struct(target_su, target_addr, 1);
	   break;
	case GETVAL:
	case SETVAL:
1756 1757
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1758 1759 1760 1761 1762
	   target_su->val = tswapl(host_su->val);
           unlock_user_struct(target_su, target_addr, 1);
	   break;
	case GETALL:
	case SETALL:
1763 1764
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1765 1766 1767 1768 1769 1770
	   *target_su->array = tswap16(*host_su->array);
           unlock_user_struct(target_su, target_addr, 1);
	   break;
        default:
           gemu_log("semun operation not fully supported: %d\n", (int)cmd);
    }
1771
    return 0;
1772 1773
}

1774 1775
static inline abi_long do_semctl(int first, int second, int third,
                                 abi_long ptr)
1776 1777 1778 1779
{
    union semun arg;
    struct semid_ds dsarg;
    int cmd = third&0xff;
1780
    abi_long ret = 0;
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819

    switch( cmd ) {
	case GETVAL:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
	case SETVAL:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
	case GETALL:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
	case SETALL:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
	case IPC_STAT:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
	case IPC_SET:
            target_to_host_semun(cmd,&arg,ptr,&dsarg);
            ret = get_errno(semctl(first, second, cmd, arg));
            host_to_target_semun(cmd,ptr,&arg,&dsarg);
            break;
    default:
            ret = get_errno(semctl(first, second, cmd, arg));
    }

    return ret;
}

T
ths 已提交
1820 1821 1822
struct target_msqid_ds
{
  struct target_ipc_perm msg_perm;
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
  abi_ulong msg_stime;
  abi_ulong __unused1;
  abi_ulong msg_rtime;
  abi_ulong __unused2;
  abi_ulong msg_ctime;
  abi_ulong __unused3;
  abi_ulong __msg_cbytes;
  abi_ulong msg_qnum;
  abi_ulong msg_qbytes;
  abi_ulong msg_lspid;
  abi_ulong msg_lrpid;
  abi_ulong __unused4;
  abi_ulong __unused5;
T
ths 已提交
1836 1837
};

1838 1839
static inline abi_long target_to_host_msqid_ds(struct msqid_ds *host_md,
                                               abi_ulong target_addr)
T
ths 已提交
1840 1841 1842
{
    struct target_msqid_ds *target_md;

1843 1844
    if (!lock_user_struct(VERIFY_READ, target_md, target_addr, 1))
        return -TARGET_EFAULT;
T
ths 已提交
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
    target_to_host_ipc_perm(&(host_md->msg_perm),target_addr);
    host_md->msg_stime = tswapl(target_md->msg_stime);
    host_md->msg_rtime = tswapl(target_md->msg_rtime);
    host_md->msg_ctime = tswapl(target_md->msg_ctime);
    host_md->__msg_cbytes = tswapl(target_md->__msg_cbytes);
    host_md->msg_qnum = tswapl(target_md->msg_qnum);
    host_md->msg_qbytes = tswapl(target_md->msg_qbytes);
    host_md->msg_lspid = tswapl(target_md->msg_lspid);
    host_md->msg_lrpid = tswapl(target_md->msg_lrpid);
    unlock_user_struct(target_md, target_addr, 0);
1855
    return 0;
T
ths 已提交
1856 1857
}

1858 1859
static inline abi_long host_to_target_msqid_ds(abi_ulong target_addr,
                                               struct msqid_ds *host_md)
T
ths 已提交
1860 1861 1862
{
    struct target_msqid_ds *target_md;

1863 1864
    if (!lock_user_struct(VERIFY_WRITE, target_md, target_addr, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
    host_to_target_ipc_perm(target_addr,&(host_md->msg_perm));
    target_md->msg_stime = tswapl(host_md->msg_stime);
    target_md->msg_rtime = tswapl(host_md->msg_rtime);
    target_md->msg_ctime = tswapl(host_md->msg_ctime);
    target_md->__msg_cbytes = tswapl(host_md->__msg_cbytes);
    target_md->msg_qnum = tswapl(host_md->msg_qnum);
    target_md->msg_qbytes = tswapl(host_md->msg_qbytes);
    target_md->msg_lspid = tswapl(host_md->msg_lspid);
    target_md->msg_lrpid = tswapl(host_md->msg_lrpid);
    unlock_user_struct(target_md, target_addr, 1);
1875
    return 0;
T
ths 已提交
1876 1877
}

1878
static inline abi_long do_msgctl(int first, int second, abi_long ptr)
T
ths 已提交
1879 1880 1881
{
    struct msqid_ds dsarg;
    int cmd = second&0xff;
1882
    abi_long ret = 0;
T
ths 已提交
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
    switch( cmd ) {
    case IPC_STAT:
    case IPC_SET:
        target_to_host_msqid_ds(&dsarg,ptr);
        ret = get_errno(msgctl(first, cmd, &dsarg));
        host_to_target_msqid_ds(ptr,&dsarg);
    default:
        ret = get_errno(msgctl(first, cmd, &dsarg));
    }
    return ret;
}

struct target_msgbuf {
1896
	abi_ulong mtype;
T
ths 已提交
1897 1898 1899
	char	mtext[1];
};

1900 1901
static inline abi_long do_msgsnd(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgflg)
T
ths 已提交
1902 1903 1904
{
    struct target_msgbuf *target_mb;
    struct msgbuf *host_mb;
1905
    abi_long ret = 0;
T
ths 已提交
1906

1907 1908
    if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
    host_mb = malloc(msgsz+sizeof(long));
    host_mb->mtype = tswapl(target_mb->mtype);
    memcpy(host_mb->mtext,target_mb->mtext,msgsz);
    ret = get_errno(msgsnd(msqid, host_mb, msgsz, msgflg));
    free(host_mb);
    unlock_user_struct(target_mb, msgp, 0);

    return ret;
}

1919 1920 1921
static inline abi_long do_msgrcv(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgtype,
                                 int msgflg)
T
ths 已提交
1922 1923
{
    struct target_msgbuf *target_mb;
1924
    char *target_mtext;
T
ths 已提交
1925
    struct msgbuf *host_mb;
1926
    abi_long ret = 0;
T
ths 已提交
1927

1928 1929
    if (!lock_user_struct(VERIFY_WRITE, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1930 1931
    host_mb = malloc(msgsz+sizeof(long));
    ret = get_errno(msgrcv(msqid, host_mb, msgsz, 1, msgflg));
1932 1933 1934 1935 1936 1937 1938
    if (ret > 0) {
        abi_ulong target_mtext_addr = msgp + sizeof(abi_ulong);
        target_mtext = lock_user(VERIFY_WRITE, target_mtext_addr, ret, 0);
        if (!target_mtext) {
            ret = -TARGET_EFAULT;
            goto end;
        }
T
ths 已提交
1939
    	memcpy(target_mb->mtext, host_mb->mtext, ret);
1940 1941
        unlock_user(target_mtext, target_mtext_addr, ret);
    }
T
ths 已提交
1942 1943 1944
    target_mb->mtype = tswapl(host_mb->mtype);
    free(host_mb);

1945 1946 1947
end:
    if (target_mb)
        unlock_user_struct(target_mb, msgp, 1);
T
ths 已提交
1948 1949 1950
    return ret;
}

1951
/* ??? This only works with linear mappings.  */
1952
/* do_ipc() must return target values and target errnos. */
1953 1954 1955
static abi_long do_ipc(unsigned int call, int first,
                       int second, int third,
                       abi_long ptr, abi_long fifth)
1956 1957
{
    int version;
1958
    abi_long ret = 0;
1959 1960 1961 1962 1963 1964 1965
    struct shmid_ds shm_info;
    int i;

    version = call >> 16;
    call &= 0xffff;

    switch (call) {
1966
    case IPCOP_semop:
1967
        ret = get_errno(semop(first,(struct sembuf *)g2h(ptr), second));
1968 1969 1970 1971 1972 1973 1974
        break;

    case IPCOP_semget:
        ret = get_errno(semget(first, second, third));
        break;

    case IPCOP_semctl:
1975
        ret = do_semctl(first, second, third, ptr);
1976 1977 1978
        break;

    case IPCOP_semtimedop:
1979
        gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
1980
        ret = -TARGET_ENOSYS;
1981
        break;
1982 1983 1984 1985 1986 1987

	case IPCOP_msgget:
		ret = get_errno(msgget(first, second));
		break;

	case IPCOP_msgsnd:
T
ths 已提交
1988
		ret = do_msgsnd(first, ptr, second, third);
1989 1990 1991
		break;

	case IPCOP_msgctl:
T
ths 已提交
1992
        	ret = do_msgctl(first, second, ptr);
1993 1994 1995
		break;

	case IPCOP_msgrcv:
T
ths 已提交
1996
                {
1997
                      /* XXX: this code is not correct */
T
ths 已提交
1998 1999 2000 2001 2002
                      struct ipc_kludge
                      {
                              void *__unbounded msgp;
                              long int msgtyp;
                      };
2003

2004
                      struct ipc_kludge *foo = (struct ipc_kludge *)g2h(ptr);
T
ths 已提交
2005
                      struct msgbuf *msgp = (struct msgbuf *) foo->msgp;
2006

T
ths 已提交
2007
                      ret = do_msgrcv(first, (long)msgp, second, 0, third);
2008

T
ths 已提交
2009
                }
2010 2011
		break;

2012
    case IPCOP_shmat:
2013 2014 2015 2016 2017 2018 2019
        {
            abi_ulong raddr;
            void *host_addr;
            /* SHM_* flags are the same on all linux platforms */
            host_addr = shmat(first, (void *)g2h(ptr), second);
            if (host_addr == (void *)-1) {
                ret = get_errno((long)host_addr);
2020
                break;
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
            }
            raddr = h2g((unsigned long)host_addr);
            /* find out the length of the shared memory segment */
            
            ret = get_errno(shmctl(first, IPC_STAT, &shm_info));
            if (is_error(ret)) {
                /* can't get length, bail out */
                shmdt(host_addr);
                break;
            }
            page_set_flags(raddr, raddr + shm_info.shm_segsz,
                           PAGE_VALID | PAGE_READ |
                           ((second & SHM_RDONLY)? 0: PAGE_WRITE));
            for (i = 0; i < N_SHM_REGIONS; ++i) {
                if (shm_regions[i].start == 0) {
                    shm_regions[i].start = raddr;
                    shm_regions[i].size = shm_info.shm_segsz;
                    break;
                }
            }
2041
            if (put_user_ual(raddr, third))
2042 2043 2044
                return -TARGET_EFAULT;
            ret = 0;
        }
2045 2046 2047 2048 2049 2050 2051 2052 2053
	break;
    case IPCOP_shmdt:
	for (i = 0; i < N_SHM_REGIONS; ++i) {
	    if (shm_regions[i].start == ptr) {
		shm_regions[i].start = 0;
		page_set_flags(ptr, shm_regions[i].size, 0);
		break;
	    }
	}
2054
	ret = get_errno(shmdt((void *)g2h(ptr)));
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
	break;

    case IPCOP_shmget:
	/* IPC_* flag values are the same on all linux platforms */
	ret = get_errno(shmget(first, second, third));
	break;

	/* IPC_* and SHM_* command values are the same on all linux platforms */
    case IPCOP_shmctl:
        switch(second) {
        case IPC_RMID:
        case SHM_LOCK:
        case SHM_UNLOCK:
            ret = get_errno(shmctl(first, second, NULL));
            break;
        default:
            goto unimplemented;
        }
        break;
    default:
    unimplemented:
2076
	gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
2077
	ret = -TARGET_ENOSYS;
2078 2079 2080 2081
	break;
    }
    return ret;
}
2082
#endif
2083

2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
/* kernel structure types definitions */
#define IFNAMSIZ        16

#define STRUCT(name, list...) STRUCT_ ## name,
#define STRUCT_SPECIAL(name) STRUCT_ ## name,
enum {
#include "syscall_types.h"
};
#undef STRUCT
#undef STRUCT_SPECIAL

#define STRUCT(name, list...) const argtype struct_ ## name ## _def[] = { list, TYPE_NULL };
#define STRUCT_SPECIAL(name)
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL

typedef struct IOCTLEntry {
2102 2103
    unsigned int target_cmd;
    unsigned int host_cmd;
2104 2105
    const char *name;
    int access;
B
bellard 已提交
2106
    const argtype arg_type[5];
2107 2108 2109 2110 2111 2112 2113 2114
} IOCTLEntry;

#define IOC_R 0x0001
#define IOC_W 0x0002
#define IOC_RW (IOC_R | IOC_W)

#define MAX_STRUCT_SIZE 4096

2115
IOCTLEntry ioctl_entries[] = {
2116 2117 2118 2119 2120 2121
#define IOCTL(cmd, access, types...) \
    { TARGET_ ## cmd, cmd, #cmd, access, { types } },
#include "ioctls.h"
    { 0, 0, },
};

2122
/* ??? Implement proper locking for ioctls.  */
2123
/* do_ioctl() Must return target values and target errnos. */
2124
static abi_long do_ioctl(int fd, abi_long cmd, abi_long arg)
2125 2126 2127
{
    const IOCTLEntry *ie;
    const argtype *arg_type;
2128
    abi_long ret;
2129
    uint8_t buf_temp[MAX_STRUCT_SIZE];
2130 2131
    int target_size;
    void *argptr;
2132 2133 2134 2135

    ie = ioctl_entries;
    for(;;) {
        if (ie->target_cmd == 0) {
2136
            gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
2137
            return -TARGET_ENOSYS;
2138 2139 2140 2141 2142 2143
        }
        if (ie->target_cmd == cmd)
            break;
        ie++;
    }
    arg_type = ie->arg_type;
B
bellard 已提交
2144
#if defined(DEBUG)
2145
    gemu_log("ioctl: cmd=0x%04lx (%s)\n", (long)cmd, ie->name);
B
bellard 已提交
2146
#endif
2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158
    switch(arg_type[0]) {
    case TYPE_NULL:
        /* no argument */
        ret = get_errno(ioctl(fd, ie->host_cmd));
        break;
    case TYPE_PTRVOID:
    case TYPE_INT:
        /* int argment */
        ret = get_errno(ioctl(fd, ie->host_cmd, arg));
        break;
    case TYPE_PTR:
        arg_type++;
2159
        target_size = thunk_type_size(arg_type, 0);
2160 2161 2162 2163
        switch(ie->access) {
        case IOC_R:
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
2164 2165 2166
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
2167 2168
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
2169 2170 2171
            }
            break;
        case IOC_W:
2172 2173 2174
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
2175 2176
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
2177 2178 2179 2180
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            break;
        default:
        case IOC_RW:
2181 2182 2183
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
2184 2185
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
2186 2187
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
2188 2189 2190
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
2191 2192
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
2193 2194 2195 2196 2197
            }
            break;
        }
        break;
    default:
2198 2199
        gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
                 (long)cmd, arg_type[0]);
2200
        ret = -TARGET_ENOSYS;
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
        break;
    }
    return ret;
}

bitmask_transtbl iflag_tbl[] = {
        { TARGET_IGNBRK, TARGET_IGNBRK, IGNBRK, IGNBRK },
        { TARGET_BRKINT, TARGET_BRKINT, BRKINT, BRKINT },
        { TARGET_IGNPAR, TARGET_IGNPAR, IGNPAR, IGNPAR },
        { TARGET_PARMRK, TARGET_PARMRK, PARMRK, PARMRK },
        { TARGET_INPCK, TARGET_INPCK, INPCK, INPCK },
        { TARGET_ISTRIP, TARGET_ISTRIP, ISTRIP, ISTRIP },
        { TARGET_INLCR, TARGET_INLCR, INLCR, INLCR },
        { TARGET_IGNCR, TARGET_IGNCR, IGNCR, IGNCR },
        { TARGET_ICRNL, TARGET_ICRNL, ICRNL, ICRNL },
        { TARGET_IUCLC, TARGET_IUCLC, IUCLC, IUCLC },
        { TARGET_IXON, TARGET_IXON, IXON, IXON },
        { TARGET_IXANY, TARGET_IXANY, IXANY, IXANY },
        { TARGET_IXOFF, TARGET_IXOFF, IXOFF, IXOFF },
        { TARGET_IMAXBEL, TARGET_IMAXBEL, IMAXBEL, IMAXBEL },
        { 0, 0, 0, 0 }
};

bitmask_transtbl oflag_tbl[] = {
	{ TARGET_OPOST, TARGET_OPOST, OPOST, OPOST },
	{ TARGET_OLCUC, TARGET_OLCUC, OLCUC, OLCUC },
	{ TARGET_ONLCR, TARGET_ONLCR, ONLCR, ONLCR },
	{ TARGET_OCRNL, TARGET_OCRNL, OCRNL, OCRNL },
	{ TARGET_ONOCR, TARGET_ONOCR, ONOCR, ONOCR },
	{ TARGET_ONLRET, TARGET_ONLRET, ONLRET, ONLRET },
	{ TARGET_OFILL, TARGET_OFILL, OFILL, OFILL },
	{ TARGET_OFDEL, TARGET_OFDEL, OFDEL, OFDEL },
	{ TARGET_NLDLY, TARGET_NL0, NLDLY, NL0 },
	{ TARGET_NLDLY, TARGET_NL1, NLDLY, NL1 },
	{ TARGET_CRDLY, TARGET_CR0, CRDLY, CR0 },
	{ TARGET_CRDLY, TARGET_CR1, CRDLY, CR1 },
	{ TARGET_CRDLY, TARGET_CR2, CRDLY, CR2 },
	{ TARGET_CRDLY, TARGET_CR3, CRDLY, CR3 },
	{ TARGET_TABDLY, TARGET_TAB0, TABDLY, TAB0 },
	{ TARGET_TABDLY, TARGET_TAB1, TABDLY, TAB1 },
	{ TARGET_TABDLY, TARGET_TAB2, TABDLY, TAB2 },
	{ TARGET_TABDLY, TARGET_TAB3, TABDLY, TAB3 },
	{ TARGET_BSDLY, TARGET_BS0, BSDLY, BS0 },
	{ TARGET_BSDLY, TARGET_BS1, BSDLY, BS1 },
	{ TARGET_VTDLY, TARGET_VT0, VTDLY, VT0 },
	{ TARGET_VTDLY, TARGET_VT1, VTDLY, VT1 },
	{ TARGET_FFDLY, TARGET_FF0, FFDLY, FF0 },
	{ TARGET_FFDLY, TARGET_FF1, FFDLY, FF1 },
	{ 0, 0, 0, 0 }
};

bitmask_transtbl cflag_tbl[] = {
	{ TARGET_CBAUD, TARGET_B0, CBAUD, B0 },
	{ TARGET_CBAUD, TARGET_B50, CBAUD, B50 },
	{ TARGET_CBAUD, TARGET_B75, CBAUD, B75 },
	{ TARGET_CBAUD, TARGET_B110, CBAUD, B110 },
	{ TARGET_CBAUD, TARGET_B134, CBAUD, B134 },
	{ TARGET_CBAUD, TARGET_B150, CBAUD, B150 },
	{ TARGET_CBAUD, TARGET_B200, CBAUD, B200 },
	{ TARGET_CBAUD, TARGET_B300, CBAUD, B300 },
	{ TARGET_CBAUD, TARGET_B600, CBAUD, B600 },
	{ TARGET_CBAUD, TARGET_B1200, CBAUD, B1200 },
	{ TARGET_CBAUD, TARGET_B1800, CBAUD, B1800 },
	{ TARGET_CBAUD, TARGET_B2400, CBAUD, B2400 },
	{ TARGET_CBAUD, TARGET_B4800, CBAUD, B4800 },
	{ TARGET_CBAUD, TARGET_B9600, CBAUD, B9600 },
	{ TARGET_CBAUD, TARGET_B19200, CBAUD, B19200 },
	{ TARGET_CBAUD, TARGET_B38400, CBAUD, B38400 },
	{ TARGET_CBAUD, TARGET_B57600, CBAUD, B57600 },
	{ TARGET_CBAUD, TARGET_B115200, CBAUD, B115200 },
	{ TARGET_CBAUD, TARGET_B230400, CBAUD, B230400 },
	{ TARGET_CBAUD, TARGET_B460800, CBAUD, B460800 },
	{ TARGET_CSIZE, TARGET_CS5, CSIZE, CS5 },
	{ TARGET_CSIZE, TARGET_CS6, CSIZE, CS6 },
	{ TARGET_CSIZE, TARGET_CS7, CSIZE, CS7 },
	{ TARGET_CSIZE, TARGET_CS8, CSIZE, CS8 },
	{ TARGET_CSTOPB, TARGET_CSTOPB, CSTOPB, CSTOPB },
	{ TARGET_CREAD, TARGET_CREAD, CREAD, CREAD },
	{ TARGET_PARENB, TARGET_PARENB, PARENB, PARENB },
	{ TARGET_PARODD, TARGET_PARODD, PARODD, PARODD },
	{ TARGET_HUPCL, TARGET_HUPCL, HUPCL, HUPCL },
	{ TARGET_CLOCAL, TARGET_CLOCAL, CLOCAL, CLOCAL },
	{ TARGET_CRTSCTS, TARGET_CRTSCTS, CRTSCTS, CRTSCTS },
	{ 0, 0, 0, 0 }
};

bitmask_transtbl lflag_tbl[] = {
	{ TARGET_ISIG, TARGET_ISIG, ISIG, ISIG },
	{ TARGET_ICANON, TARGET_ICANON, ICANON, ICANON },
	{ TARGET_XCASE, TARGET_XCASE, XCASE, XCASE },
	{ TARGET_ECHO, TARGET_ECHO, ECHO, ECHO },
	{ TARGET_ECHOE, TARGET_ECHOE, ECHOE, ECHOE },
	{ TARGET_ECHOK, TARGET_ECHOK, ECHOK, ECHOK },
	{ TARGET_ECHONL, TARGET_ECHONL, ECHONL, ECHONL },
	{ TARGET_NOFLSH, TARGET_NOFLSH, NOFLSH, NOFLSH },
	{ TARGET_TOSTOP, TARGET_TOSTOP, TOSTOP, TOSTOP },
	{ TARGET_ECHOCTL, TARGET_ECHOCTL, ECHOCTL, ECHOCTL },
	{ TARGET_ECHOPRT, TARGET_ECHOPRT, ECHOPRT, ECHOPRT },
	{ TARGET_ECHOKE, TARGET_ECHOKE, ECHOKE, ECHOKE },
	{ TARGET_FLUSHO, TARGET_FLUSHO, FLUSHO, FLUSHO },
	{ TARGET_PENDIN, TARGET_PENDIN, PENDIN, PENDIN },
	{ TARGET_IEXTEN, TARGET_IEXTEN, IEXTEN, IEXTEN },
	{ 0, 0, 0, 0 }
};

static void target_to_host_termios (void *dst, const void *src)
{
    struct host_termios *host = dst;
    const struct target_termios *target = src;
2310

2311
    host->c_iflag =
2312
        target_to_host_bitmask(tswap32(target->c_iflag), iflag_tbl);
2313
    host->c_oflag =
2314
        target_to_host_bitmask(tswap32(target->c_oflag), oflag_tbl);
2315
    host->c_cflag =
2316
        target_to_host_bitmask(tswap32(target->c_cflag), cflag_tbl);
2317
    host->c_lflag =
2318 2319
        target_to_host_bitmask(tswap32(target->c_lflag), lflag_tbl);
    host->c_line = target->c_line;
2320

2321 2322
    host->c_cc[VINTR] = target->c_cc[TARGET_VINTR];
    host->c_cc[VQUIT] = target->c_cc[TARGET_VQUIT];
2323
    host->c_cc[VERASE] = target->c_cc[TARGET_VERASE];
2324
    host->c_cc[VKILL] = target->c_cc[TARGET_VKILL];
2325
    host->c_cc[VEOF] = target->c_cc[TARGET_VEOF];
2326
    host->c_cc[VTIME] = target->c_cc[TARGET_VTIME];
2327
    host->c_cc[VMIN] = target->c_cc[TARGET_VMIN];
2328
    host->c_cc[VSWTC] = target->c_cc[TARGET_VSWTC];
2329
    host->c_cc[VSTART] = target->c_cc[TARGET_VSTART];
2330 2331
    host->c_cc[VSTOP] = target->c_cc[TARGET_VSTOP];
    host->c_cc[VSUSP] = target->c_cc[TARGET_VSUSP];
2332 2333 2334 2335 2336
    host->c_cc[VEOL] = target->c_cc[TARGET_VEOL];
    host->c_cc[VREPRINT] = target->c_cc[TARGET_VREPRINT];
    host->c_cc[VDISCARD] = target->c_cc[TARGET_VDISCARD];
    host->c_cc[VWERASE] = target->c_cc[TARGET_VWERASE];
    host->c_cc[VLNEXT] = target->c_cc[TARGET_VLNEXT];
2337
    host->c_cc[VEOL2] = target->c_cc[TARGET_VEOL2];
2338
}
2339

2340 2341 2342 2343 2344
static void host_to_target_termios (void *dst, const void *src)
{
    struct target_termios *target = dst;
    const struct host_termios *host = src;

2345
    target->c_iflag =
2346
        tswap32(host_to_target_bitmask(host->c_iflag, iflag_tbl));
2347
    target->c_oflag =
2348
        tswap32(host_to_target_bitmask(host->c_oflag, oflag_tbl));
2349
    target->c_cflag =
2350
        tswap32(host_to_target_bitmask(host->c_cflag, cflag_tbl));
2351
    target->c_lflag =
2352 2353
        tswap32(host_to_target_bitmask(host->c_lflag, lflag_tbl));
    target->c_line = host->c_line;
2354

2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
    target->c_cc[TARGET_VINTR] = host->c_cc[VINTR];
    target->c_cc[TARGET_VQUIT] = host->c_cc[VQUIT];
    target->c_cc[TARGET_VERASE] = host->c_cc[VERASE];
    target->c_cc[TARGET_VKILL] = host->c_cc[VKILL];
    target->c_cc[TARGET_VEOF] = host->c_cc[VEOF];
    target->c_cc[TARGET_VTIME] = host->c_cc[VTIME];
    target->c_cc[TARGET_VMIN] = host->c_cc[VMIN];
    target->c_cc[TARGET_VSWTC] = host->c_cc[VSWTC];
    target->c_cc[TARGET_VSTART] = host->c_cc[VSTART];
    target->c_cc[TARGET_VSTOP] = host->c_cc[VSTOP];
    target->c_cc[TARGET_VSUSP] = host->c_cc[VSUSP];
    target->c_cc[TARGET_VEOL] = host->c_cc[VEOL];
    target->c_cc[TARGET_VREPRINT] = host->c_cc[VREPRINT];
    target->c_cc[TARGET_VDISCARD] = host->c_cc[VDISCARD];
    target->c_cc[TARGET_VWERASE] = host->c_cc[VWERASE];
    target->c_cc[TARGET_VLNEXT] = host->c_cc[VLNEXT];
    target->c_cc[TARGET_VEOL2] = host->c_cc[VEOL2];
}

StructEntry struct_termios_def = {
    .convert = { host_to_target_termios, target_to_host_termios },
    .size = { sizeof(struct target_termios), sizeof(struct host_termios) },
    .align = { __alignof__(struct target_termios), __alignof__(struct host_termios) },
};

B
bellard 已提交
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
static bitmask_transtbl mmap_flags_tbl[] = {
	{ TARGET_MAP_SHARED, TARGET_MAP_SHARED, MAP_SHARED, MAP_SHARED },
	{ TARGET_MAP_PRIVATE, TARGET_MAP_PRIVATE, MAP_PRIVATE, MAP_PRIVATE },
	{ TARGET_MAP_FIXED, TARGET_MAP_FIXED, MAP_FIXED, MAP_FIXED },
	{ TARGET_MAP_ANONYMOUS, TARGET_MAP_ANONYMOUS, MAP_ANONYMOUS, MAP_ANONYMOUS },
	{ TARGET_MAP_GROWSDOWN, TARGET_MAP_GROWSDOWN, MAP_GROWSDOWN, MAP_GROWSDOWN },
	{ TARGET_MAP_DENYWRITE, TARGET_MAP_DENYWRITE, MAP_DENYWRITE, MAP_DENYWRITE },
	{ TARGET_MAP_EXECUTABLE, TARGET_MAP_EXECUTABLE, MAP_EXECUTABLE, MAP_EXECUTABLE },
	{ TARGET_MAP_LOCKED, TARGET_MAP_LOCKED, MAP_LOCKED, MAP_LOCKED },
	{ 0, 0, 0, 0 }
};

B
bellard 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
static bitmask_transtbl fcntl_flags_tbl[] = {
	{ TARGET_O_ACCMODE,   TARGET_O_WRONLY,    O_ACCMODE,   O_WRONLY,    },
	{ TARGET_O_ACCMODE,   TARGET_O_RDWR,      O_ACCMODE,   O_RDWR,      },
	{ TARGET_O_CREAT,     TARGET_O_CREAT,     O_CREAT,     O_CREAT,     },
	{ TARGET_O_EXCL,      TARGET_O_EXCL,      O_EXCL,      O_EXCL,      },
	{ TARGET_O_NOCTTY,    TARGET_O_NOCTTY,    O_NOCTTY,    O_NOCTTY,    },
	{ TARGET_O_TRUNC,     TARGET_O_TRUNC,     O_TRUNC,     O_TRUNC,     },
	{ TARGET_O_APPEND,    TARGET_O_APPEND,    O_APPEND,    O_APPEND,    },
	{ TARGET_O_NONBLOCK,  TARGET_O_NONBLOCK,  O_NONBLOCK,  O_NONBLOCK,  },
	{ TARGET_O_SYNC,      TARGET_O_SYNC,      O_SYNC,      O_SYNC,      },
	{ TARGET_FASYNC,      TARGET_FASYNC,      FASYNC,      FASYNC,      },
	{ TARGET_O_DIRECTORY, TARGET_O_DIRECTORY, O_DIRECTORY, O_DIRECTORY, },
	{ TARGET_O_NOFOLLOW,  TARGET_O_NOFOLLOW,  O_NOFOLLOW,  O_NOFOLLOW,  },
	{ TARGET_O_LARGEFILE, TARGET_O_LARGEFILE, O_LARGEFILE, O_LARGEFILE, },
B
bellard 已提交
2406
#if defined(O_DIRECT)
B
bellard 已提交
2407
	{ TARGET_O_DIRECT,    TARGET_O_DIRECT,    O_DIRECT,    O_DIRECT,    },
B
bellard 已提交
2408
#endif
B
bellard 已提交
2409 2410 2411
	{ 0, 0, 0, 0 }
};

2412
#if defined(TARGET_I386)
B
bellard 已提交
2413 2414 2415 2416

/* NOTE: there is really one LDT for all the threads */
uint8_t *ldt_table;

2417
static abi_long read_ldt(abi_ulong ptr, unsigned long bytecount)
B
bellard 已提交
2418 2419
{
    int size;
2420
    void *p;
B
bellard 已提交
2421 2422 2423 2424 2425 2426

    if (!ldt_table)
        return 0;
    size = TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE;
    if (size > bytecount)
        size = bytecount;
2427 2428
    p = lock_user(VERIFY_WRITE, ptr, size, 0);
    if (!p)
2429
        return -TARGET_EFAULT;
2430
    /* ??? Should this by byteswapped?  */
2431 2432
    memcpy(p, ldt_table, size);
    unlock_user(p, ptr, size);
B
bellard 已提交
2433 2434 2435 2436
    return size;
}

/* XXX: add locking support */
2437 2438
static abi_long write_ldt(CPUX86State *env,
                          abi_ulong ptr, unsigned long bytecount, int oldmode)
B
bellard 已提交
2439 2440
{
    struct target_modify_ldt_ldt_s ldt_info;
2441
    struct target_modify_ldt_ldt_s *target_ldt_info;
B
bellard 已提交
2442
    int seg_32bit, contents, read_exec_only, limit_in_pages;
B
bellard 已提交
2443
    int seg_not_present, useable, lm;
B
bellard 已提交
2444 2445 2446
    uint32_t *lp, entry_1, entry_2;

    if (bytecount != sizeof(ldt_info))
2447
        return -TARGET_EINVAL;
2448
    if (!lock_user_struct(VERIFY_READ, target_ldt_info, ptr, 1))
2449
        return -TARGET_EFAULT;
2450 2451 2452 2453 2454
    ldt_info.entry_number = tswap32(target_ldt_info->entry_number);
    ldt_info.base_addr = tswapl(target_ldt_info->base_addr);
    ldt_info.limit = tswap32(target_ldt_info->limit);
    ldt_info.flags = tswap32(target_ldt_info->flags);
    unlock_user_struct(target_ldt_info, ptr, 0);
2455

B
bellard 已提交
2456
    if (ldt_info.entry_number >= TARGET_LDT_ENTRIES)
2457
        return -TARGET_EINVAL;
B
bellard 已提交
2458 2459 2460 2461 2462 2463
    seg_32bit = ldt_info.flags & 1;
    contents = (ldt_info.flags >> 1) & 3;
    read_exec_only = (ldt_info.flags >> 3) & 1;
    limit_in_pages = (ldt_info.flags >> 4) & 1;
    seg_not_present = (ldt_info.flags >> 5) & 1;
    useable = (ldt_info.flags >> 6) & 1;
B
bellard 已提交
2464 2465 2466 2467 2468
#ifdef TARGET_ABI32
    lm = 0;
#else
    lm = (ldt_info.flags >> 7) & 1;
#endif
B
bellard 已提交
2469 2470
    if (contents == 3) {
        if (oldmode)
2471
            return -TARGET_EINVAL;
B
bellard 已提交
2472
        if (seg_not_present == 0)
2473
            return -TARGET_EINVAL;
B
bellard 已提交
2474 2475 2476 2477 2478
    }
    /* allocate the LDT */
    if (!ldt_table) {
        ldt_table = malloc(TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
        if (!ldt_table)
2479
            return -TARGET_ENOMEM;
B
bellard 已提交
2480
        memset(ldt_table, 0, TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
B
bellard 已提交
2481
        env->ldt.base = h2g((unsigned long)ldt_table);
B
bellard 已提交
2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
        env->ldt.limit = 0xffff;
    }

    /* NOTE: same code as Linux kernel */
    /* Allow LDTs to be cleared by the user. */
    if (ldt_info.base_addr == 0 && ldt_info.limit == 0) {
        if (oldmode ||
            (contents == 0		&&
             read_exec_only == 1	&&
             seg_32bit == 0		&&
             limit_in_pages == 0	&&
             seg_not_present == 1	&&
             useable == 0 )) {
            entry_1 = 0;
            entry_2 = 0;
            goto install;
        }
    }
2500

B
bellard 已提交
2501 2502 2503 2504 2505 2506 2507 2508 2509 2510
    entry_1 = ((ldt_info.base_addr & 0x0000ffff) << 16) |
        (ldt_info.limit & 0x0ffff);
    entry_2 = (ldt_info.base_addr & 0xff000000) |
        ((ldt_info.base_addr & 0x00ff0000) >> 16) |
        (ldt_info.limit & 0xf0000) |
        ((read_exec_only ^ 1) << 9) |
        (contents << 10) |
        ((seg_not_present ^ 1) << 15) |
        (seg_32bit << 22) |
        (limit_in_pages << 23) |
B
bellard 已提交
2511
        (lm << 21) |
B
bellard 已提交
2512 2513 2514
        0x7000;
    if (!oldmode)
        entry_2 |= (useable << 20);
B
bellard 已提交
2515

B
bellard 已提交
2516 2517 2518 2519 2520 2521 2522 2523 2524
    /* Install the new entry ...  */
install:
    lp = (uint32_t *)(ldt_table + (ldt_info.entry_number << 3));
    lp[0] = tswap32(entry_1);
    lp[1] = tswap32(entry_2);
    return 0;
}

/* specific and weird i386 syscalls */
2525 2526
abi_long do_modify_ldt(CPUX86State *env, int func, abi_ulong ptr, 
                       unsigned long bytecount)
B
bellard 已提交
2527
{
2528
    abi_long ret;
2529

B
bellard 已提交
2530 2531 2532 2533 2534 2535 2536 2537 2538 2539
    switch (func) {
    case 0:
        ret = read_ldt(ptr, bytecount);
        break;
    case 1:
        ret = write_ldt(env, ptr, bytecount, 1);
        break;
    case 0x11:
        ret = write_ldt(env, ptr, bytecount, 0);
        break;
2540 2541 2542
    default:
        ret = -TARGET_ENOSYS;
        break;
B
bellard 已提交
2543 2544 2545
    }
    return ret;
}
B
bellard 已提交
2546

B
bellard 已提交
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
abi_long do_set_thread_area(CPUX86State *env, abi_ulong ptr)
{
    uint64_t *gdt_table = g2h(env->gdt.base);
    struct target_modify_ldt_ldt_s ldt_info;
    struct target_modify_ldt_ldt_s *target_ldt_info;
    int seg_32bit, contents, read_exec_only, limit_in_pages;
    int seg_not_present, useable, lm;
    uint32_t *lp, entry_1, entry_2;
    int i;

    lock_user_struct(VERIFY_WRITE, target_ldt_info, ptr, 1);
    if (!target_ldt_info)
        return -TARGET_EFAULT;
    ldt_info.entry_number = tswap32(target_ldt_info->entry_number);
    ldt_info.base_addr = tswapl(target_ldt_info->base_addr);
    ldt_info.limit = tswap32(target_ldt_info->limit);
    ldt_info.flags = tswap32(target_ldt_info->flags);
    if (ldt_info.entry_number == -1) {
        for (i=TARGET_GDT_ENTRY_TLS_MIN; i<=TARGET_GDT_ENTRY_TLS_MAX; i++) {
            if (gdt_table[i] == 0) {
                ldt_info.entry_number = i;
                target_ldt_info->entry_number = tswap32(i);
                break;
            }
        }
    }
    unlock_user_struct(target_ldt_info, ptr, 1);

    if (ldt_info.entry_number < TARGET_GDT_ENTRY_TLS_MIN || 
        ldt_info.entry_number > TARGET_GDT_ENTRY_TLS_MAX)
           return -TARGET_EINVAL;
    seg_32bit = ldt_info.flags & 1;
    contents = (ldt_info.flags >> 1) & 3;
    read_exec_only = (ldt_info.flags >> 3) & 1;
    limit_in_pages = (ldt_info.flags >> 4) & 1;
    seg_not_present = (ldt_info.flags >> 5) & 1;
    useable = (ldt_info.flags >> 6) & 1;
#ifdef TARGET_ABI32
    lm = 0;
#else
    lm = (ldt_info.flags >> 7) & 1;
#endif

    if (contents == 3) {
        if (seg_not_present == 0)
            return -TARGET_EINVAL;
    }

    /* NOTE: same code as Linux kernel */
    /* Allow LDTs to be cleared by the user. */
    if (ldt_info.base_addr == 0 && ldt_info.limit == 0) {
        if ((contents == 0             &&
             read_exec_only == 1       &&
             seg_32bit == 0            &&
             limit_in_pages == 0       &&
             seg_not_present == 1      &&
             useable == 0 )) {
            entry_1 = 0;
            entry_2 = 0;
            goto install;
        }
    }

    entry_1 = ((ldt_info.base_addr & 0x0000ffff) << 16) |
        (ldt_info.limit & 0x0ffff);
    entry_2 = (ldt_info.base_addr & 0xff000000) |
        ((ldt_info.base_addr & 0x00ff0000) >> 16) |
        (ldt_info.limit & 0xf0000) |
        ((read_exec_only ^ 1) << 9) |
        (contents << 10) |
        ((seg_not_present ^ 1) << 15) |
        (seg_32bit << 22) |
        (limit_in_pages << 23) |
        (useable << 20) |
        (lm << 21) |
        0x7000;

    /* Install the new entry ...  */
install:
    lp = (uint32_t *)(gdt_table + ldt_info.entry_number);
    lp[0] = tswap32(entry_1);
    lp[1] = tswap32(entry_2);
    return 0;
}

abi_long do_get_thread_area(CPUX86State *env, abi_ulong ptr)
{
    struct target_modify_ldt_ldt_s *target_ldt_info;
    uint64_t *gdt_table = g2h(env->gdt.base);
    uint32_t base_addr, limit, flags;
    int seg_32bit, contents, read_exec_only, limit_in_pages, idx;
    int seg_not_present, useable, lm;
    uint32_t *lp, entry_1, entry_2;

    lock_user_struct(VERIFY_WRITE, target_ldt_info, ptr, 1);
    if (!target_ldt_info)
        return -TARGET_EFAULT;
    idx = tswap32(target_ldt_info->entry_number);
    if (idx < TARGET_GDT_ENTRY_TLS_MIN ||
        idx > TARGET_GDT_ENTRY_TLS_MAX) {
        unlock_user_struct(target_ldt_info, ptr, 1);
        return -TARGET_EINVAL;
    }
    lp = (uint32_t *)(gdt_table + idx);
    entry_1 = tswap32(lp[0]);
    entry_2 = tswap32(lp[1]);
    
    read_exec_only = ((entry_2 >> 9) & 1) ^ 1;
    contents = (entry_2 >> 10) & 3;
    seg_not_present = ((entry_2 >> 15) & 1) ^ 1;
    seg_32bit = (entry_2 >> 22) & 1;
    limit_in_pages = (entry_2 >> 23) & 1;
    useable = (entry_2 >> 20) & 1;
#ifdef TARGET_ABI32
    lm = 0;
#else
    lm = (entry_2 >> 21) & 1;
#endif
    flags = (seg_32bit << 0) | (contents << 1) |
        (read_exec_only << 3) | (limit_in_pages << 4) |
        (seg_not_present << 5) | (useable << 6) | (lm << 7);
    limit = (entry_1 & 0xffff) | (entry_2  & 0xf0000);
    base_addr = (entry_1 >> 16) | 
        (entry_2 & 0xff000000) | 
        ((entry_2 & 0xff) << 16);
    target_ldt_info->base_addr = tswapl(base_addr);
    target_ldt_info->limit = tswap32(limit);
    target_ldt_info->flags = tswap32(flags);
    unlock_user_struct(target_ldt_info, ptr, 1);
    return 0;
}

B
bellard 已提交
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713
#ifndef TARGET_ABI32
abi_long do_arch_prctl(CPUX86State *env, int code, abi_ulong addr)
{
    abi_long ret;
    abi_ulong val;
    int idx;
    
    switch(code) {
    case TARGET_ARCH_SET_GS:
    case TARGET_ARCH_SET_FS:
        if (code == TARGET_ARCH_SET_GS)
            idx = R_GS;
        else
            idx = R_FS;
        cpu_x86_load_seg(env, idx, 0);
        env->segs[idx].base = addr;
        break;
    case TARGET_ARCH_GET_GS:
    case TARGET_ARCH_GET_FS:
        if (code == TARGET_ARCH_GET_GS)
            idx = R_GS;
        else
            idx = R_FS;
        val = env->segs[idx].base;
        if (put_user(val, addr, abi_ulong))
            return -TARGET_EFAULT;
        break;
    default:
        ret = -TARGET_EINVAL;
        break;
    }
    return 0;
}
#endif

2714 2715
#endif /* defined(TARGET_I386) */

P
pbrook 已提交
2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757
#if defined(USE_NPTL)

#define NEW_STACK_SIZE PTHREAD_STACK_MIN

static pthread_mutex_t clone_lock = PTHREAD_MUTEX_INITIALIZER;
typedef struct {
    CPUState *env;
    pthread_mutex_t mutex;
    pthread_cond_t cond;
    pthread_t thread;
    uint32_t tid;
    abi_ulong child_tidptr;
    abi_ulong parent_tidptr;
    sigset_t sigmask;
} new_thread_info;

static void *clone_func(void *arg)
{
    new_thread_info *info = arg;
    CPUState *env;

    env = info->env;
    thread_env = env;
    info->tid = gettid();
    if (info->child_tidptr)
        put_user_u32(info->tid, info->child_tidptr);
    if (info->parent_tidptr)
        put_user_u32(info->tid, info->parent_tidptr);
    /* Enable signals.  */
    sigprocmask(SIG_SETMASK, &info->sigmask, NULL);
    /* Signal to the parent that we're ready.  */
    pthread_mutex_lock(&info->mutex);
    pthread_cond_broadcast(&info->cond);
    pthread_mutex_unlock(&info->mutex);
    /* Wait until the parent has finshed initializing the tls state.  */
    pthread_mutex_lock(&clone_lock);
    pthread_mutex_unlock(&clone_lock);
    cpu_loop(env);
    /* never exits */
    return NULL;
}
#else
B
bellard 已提交
2758 2759 2760 2761 2762 2763
/* this stack is the equivalent of the kernel stack associated with a
   thread/process */
#define NEW_STACK_SIZE 8192

static int clone_func(void *arg)
{
2764
    CPUState *env = arg;
B
bellard 已提交
2765 2766 2767 2768
    cpu_loop(env);
    /* never exits */
    return 0;
}
P
pbrook 已提交
2769
#endif
B
bellard 已提交
2770

2771 2772
/* do_fork() Must return host values and target errnos (unlike most
   do_*() functions). */
P
pbrook 已提交
2773 2774 2775
static int do_fork(CPUState *env, unsigned int flags, abi_ulong newsp,
                   abi_ulong parent_tidptr, target_ulong newtls,
                   abi_ulong child_tidptr)
B
bellard 已提交
2776 2777
{
    int ret;
B
bellard 已提交
2778
    TaskState *ts;
B
bellard 已提交
2779
    uint8_t *new_stack;
2780
    CPUState *new_env;
P
pbrook 已提交
2781 2782 2783 2784
#if defined(USE_NPTL)
    unsigned int nptl_flags;
    sigset_t sigmask;
#endif
2785

B
bellard 已提交
2786
    if (flags & CLONE_VM) {
2787
#if defined(USE_NPTL)
P
pbrook 已提交
2788 2789
        new_thread_info info;
        pthread_attr_t attr;
2790
#endif
2791
        ts = qemu_mallocz(sizeof(TaskState) + NEW_STACK_SIZE);
P
pbrook 已提交
2792
        init_task_state(ts);
B
bellard 已提交
2793
        new_stack = ts->stack;
B
bellard 已提交
2794
        /* we create a new CPU instance. */
2795
        new_env = cpu_copy(env);
2796 2797
        /* Init regs that differ from the parent.  */
        cpu_clone_regs(new_env, newsp);
B
bellard 已提交
2798
        new_env->opaque = ts;
P
pbrook 已提交
2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847
#if defined(USE_NPTL)
        nptl_flags = flags;
        flags &= ~CLONE_NPTL_FLAGS2;

        /* TODO: Implement CLONE_CHILD_CLEARTID.  */
        if (nptl_flags & CLONE_SETTLS)
            cpu_set_tls (new_env, newtls);

        /* Grab a mutex so that thread setup appears atomic.  */
        pthread_mutex_lock(&clone_lock);

        memset(&info, 0, sizeof(info));
        pthread_mutex_init(&info.mutex, NULL);
        pthread_mutex_lock(&info.mutex);
        pthread_cond_init(&info.cond, NULL);
        info.env = new_env;
        if (nptl_flags & CLONE_CHILD_SETTID)
            info.child_tidptr = child_tidptr;
        if (nptl_flags & CLONE_PARENT_SETTID)
            info.parent_tidptr = parent_tidptr;

        ret = pthread_attr_init(&attr);
        ret = pthread_attr_setstack(&attr, new_stack, NEW_STACK_SIZE);
        /* It is not safe to deliver signals until the child has finished
           initializing, so temporarily block all signals.  */
        sigfillset(&sigmask);
        sigprocmask(SIG_BLOCK, &sigmask, &info.sigmask);

        ret = pthread_create(&info.thread, &attr, clone_func, &info);

        sigprocmask(SIG_SETMASK, &info.sigmask, NULL);
        pthread_attr_destroy(&attr);
        if (ret == 0) {
            /* Wait for the child to initialize.  */
            pthread_cond_wait(&info.cond, &info.mutex);
            ret = info.tid;
            if (flags & CLONE_PARENT_SETTID)
                put_user_u32(ret, parent_tidptr);
        } else {
            ret = -1;
        }
        pthread_mutex_unlock(&info.mutex);
        pthread_cond_destroy(&info.cond);
        pthread_mutex_destroy(&info.mutex);
        pthread_mutex_unlock(&clone_lock);
#else
        if (flags & CLONE_NPTL_FLAGS2)
            return -EINVAL;
        /* This is probably going to die very quickly, but do it anyway.  */
2848
#ifdef __ia64__
B
bellard 已提交
2849
        ret = __clone2(clone_func, new_stack + NEW_STACK_SIZE, flags, new_env);
2850 2851
#else
	ret = clone(clone_func, new_stack + NEW_STACK_SIZE, flags, new_env);
P
pbrook 已提交
2852
#endif
2853
#endif
B
bellard 已提交
2854 2855
    } else {
        /* if no CLONE_VM, we consider it is a fork */
P
pbrook 已提交
2856
        if ((flags & ~(CSIGNAL | CLONE_NPTL_FLAGS2)) != 0)
B
bellard 已提交
2857
            return -EINVAL;
P
pbrook 已提交
2858
        fork_start();
B
bellard 已提交
2859
        ret = fork();
P
pbrook 已提交
2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882
#if defined(USE_NPTL)
        /* There is a race condition here.  The parent process could
           theoretically read the TID in the child process before the child
           tid is set.  This would require using either ptrace
           (not implemented) or having *_tidptr to point at a shared memory
           mapping.  We can't repeat the spinlock hack used above because
           the child process gets its own copy of the lock.  */
        if (ret == 0) {
            cpu_clone_regs(env, newsp);
            fork_end(1);
            /* Child Process.  */
            if (flags & CLONE_CHILD_SETTID)
                put_user_u32(gettid(), child_tidptr);
            if (flags & CLONE_PARENT_SETTID)
                put_user_u32(gettid(), parent_tidptr);
            ts = (TaskState *)env->opaque;
            if (flags & CLONE_SETTLS)
                cpu_set_tls (env, newtls);
            /* TODO: Implement CLONE_CHILD_CLEARTID.  */
        } else {
            fork_end(0);
        }
#else
2883 2884 2885
        if (ret == 0) {
            cpu_clone_regs(env, newsp);
        }
P
pbrook 已提交
2886
#endif
B
bellard 已提交
2887 2888 2889 2890
    }
    return ret;
}

2891
static abi_long do_fcntl(int fd, int cmd, abi_ulong arg)
B
bellard 已提交
2892 2893
{
    struct flock fl;
2894
    struct target_flock *target_fl;
2895 2896
    struct flock64 fl64;
    struct target_flock64 *target_fl64;
2897
    abi_long ret;
2898

B
bellard 已提交
2899 2900
    switch(cmd) {
    case TARGET_F_GETLK:
2901 2902
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
T
ths 已提交
2903 2904 2905 2906 2907 2908
        fl.l_type = tswap16(target_fl->l_type);
        fl.l_whence = tswap16(target_fl->l_whence);
        fl.l_start = tswapl(target_fl->l_start);
        fl.l_len = tswapl(target_fl->l_len);
        fl.l_pid = tswapl(target_fl->l_pid);
        unlock_user_struct(target_fl, arg, 0);
B
bellard 已提交
2909
        ret = get_errno(fcntl(fd, cmd, &fl));
B
bellard 已提交
2910
        if (ret == 0) {
2911 2912
            if (!lock_user_struct(VERIFY_WRITE, target_fl, arg, 0))
                return -TARGET_EFAULT;
B
bellard 已提交
2913 2914 2915 2916 2917
            target_fl->l_type = tswap16(fl.l_type);
            target_fl->l_whence = tswap16(fl.l_whence);
            target_fl->l_start = tswapl(fl.l_start);
            target_fl->l_len = tswapl(fl.l_len);
            target_fl->l_pid = tswapl(fl.l_pid);
2918
            unlock_user_struct(target_fl, arg, 1);
B
bellard 已提交
2919 2920
        }
        break;
2921

B
bellard 已提交
2922 2923
    case TARGET_F_SETLK:
    case TARGET_F_SETLKW:
2924 2925
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
B
bellard 已提交
2926 2927 2928 2929 2930
        fl.l_type = tswap16(target_fl->l_type);
        fl.l_whence = tswap16(target_fl->l_whence);
        fl.l_start = tswapl(target_fl->l_start);
        fl.l_len = tswapl(target_fl->l_len);
        fl.l_pid = tswapl(target_fl->l_pid);
2931
        unlock_user_struct(target_fl, arg, 0);
B
bellard 已提交
2932
        ret = get_errno(fcntl(fd, cmd, &fl));
B
bellard 已提交
2933
        break;
2934

B
bellard 已提交
2935
    case TARGET_F_GETLK64:
2936 2937
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
T
ths 已提交
2938 2939 2940 2941 2942 2943
        fl64.l_type = tswap16(target_fl64->l_type) >> 1;
        fl64.l_whence = tswap16(target_fl64->l_whence);
        fl64.l_start = tswapl(target_fl64->l_start);
        fl64.l_len = tswapl(target_fl64->l_len);
        fl64.l_pid = tswap16(target_fl64->l_pid);
        unlock_user_struct(target_fl64, arg, 0);
B
bellard 已提交
2944
        ret = get_errno(fcntl(fd, cmd >> 1, &fl64));
2945
        if (ret == 0) {
2946 2947
            if (!lock_user_struct(VERIFY_WRITE, target_fl64, arg, 0))
                return -TARGET_EFAULT;
2948 2949 2950 2951 2952 2953 2954
            target_fl64->l_type = tswap16(fl64.l_type) >> 1;
            target_fl64->l_whence = tswap16(fl64.l_whence);
            target_fl64->l_start = tswapl(fl64.l_start);
            target_fl64->l_len = tswapl(fl64.l_len);
            target_fl64->l_pid = tswapl(fl64.l_pid);
            unlock_user_struct(target_fl64, arg, 1);
        }
B
bellard 已提交
2955
        break;
B
bellard 已提交
2956 2957
    case TARGET_F_SETLK64:
    case TARGET_F_SETLKW64:
2958 2959
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
2960 2961 2962 2963 2964 2965
        fl64.l_type = tswap16(target_fl64->l_type) >> 1;
        fl64.l_whence = tswap16(target_fl64->l_whence);
        fl64.l_start = tswapl(target_fl64->l_start);
        fl64.l_len = tswapl(target_fl64->l_len);
        fl64.l_pid = tswap16(target_fl64->l_pid);
        unlock_user_struct(target_fl64, arg, 0);
B
bellard 已提交
2966
        ret = get_errno(fcntl(fd, cmd >> 1, &fl64));
B
bellard 已提交
2967 2968
        break;

B
bellard 已提交
2969
    case F_GETFL:
B
bellard 已提交
2970 2971 2972 2973
        ret = get_errno(fcntl(fd, cmd, arg));
        if (ret >= 0) {
            ret = host_to_target_bitmask(ret, fcntl_flags_tbl);
        }
B
bellard 已提交
2974 2975 2976
        break;

    case F_SETFL:
B
bellard 已提交
2977
        ret = get_errno(fcntl(fd, cmd, target_to_host_bitmask(arg, fcntl_flags_tbl)));
B
bellard 已提交
2978 2979
        break;

B
bellard 已提交
2980
    default:
B
bellard 已提交
2981
        ret = get_errno(fcntl(fd, cmd, arg));
B
bellard 已提交
2982 2983 2984 2985 2986
        break;
    }
    return ret;
}

2987
#ifdef USE_UID16
B
bellard 已提交
2988

2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021
static inline int high2lowuid(int uid)
{
    if (uid > 65535)
        return 65534;
    else
        return uid;
}

static inline int high2lowgid(int gid)
{
    if (gid > 65535)
        return 65534;
    else
        return gid;
}

static inline int low2highuid(int uid)
{
    if ((int16_t)uid == -1)
        return -1;
    else
        return uid;
}

static inline int low2highgid(int gid)
{
    if ((int16_t)gid == -1)
        return -1;
    else
        return gid;
}

#endif /* USE_UID16 */
B
bellard 已提交
3022

3023 3024
void syscall_init(void)
{
3025 3026 3027
    IOCTLEntry *ie;
    const argtype *arg_type;
    int size;
3028
    int i;
3029

3030 3031
#define STRUCT(name, list...) thunk_register_struct(STRUCT_ ## name, #name, struct_ ## name ## _def);
#define STRUCT_SPECIAL(name) thunk_register_struct_direct(STRUCT_ ## name, #name, &struct_ ## name ## _def);
3032 3033 3034
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL
3035 3036 3037 3038 3039 3040 3041 3042 3043

    /* we patch the ioctl size if necessary. We rely on the fact that
       no ioctl has all the bits at '1' in the size field */
    ie = ioctl_entries;
    while (ie->target_cmd != 0) {
        if (((ie->target_cmd >> TARGET_IOC_SIZESHIFT) & TARGET_IOC_SIZEMASK) ==
            TARGET_IOC_SIZEMASK) {
            arg_type = ie->arg_type;
            if (arg_type[0] != TYPE_PTR) {
3044
                fprintf(stderr, "cannot patch size for ioctl 0x%x\n",
3045 3046 3047 3048 3049
                        ie->target_cmd);
                exit(1);
            }
            arg_type++;
            size = thunk_type_size(arg_type, 0);
3050
            ie->target_cmd = (ie->target_cmd &
3051 3052 3053
                              ~(TARGET_IOC_SIZEMASK << TARGET_IOC_SIZESHIFT)) |
                (size << TARGET_IOC_SIZESHIFT);
        }
3054 3055 3056 3057 3058 3059

        /* Build target_to_host_errno_table[] table from
         * host_to_target_errno_table[]. */
        for (i=0; i < ERRNO_TABLE_SIZE; i++)
                target_to_host_errno_table[host_to_target_errno_table[i]] = i;

3060
        /* automatic consistency check if same arch */
B
bellard 已提交
3061
#if defined(__i386__) && defined(TARGET_I386) && defined(TARGET_ABI32)
3062
        if (ie->target_cmd != ie->host_cmd) {
3063
            fprintf(stderr, "ERROR: ioctl: target=0x%x host=0x%x\n",
3064 3065 3066 3067 3068
                    ie->target_cmd, ie->host_cmd);
        }
#endif
        ie++;
    }
3069
}
B
bellard 已提交
3070

3071
#if TARGET_ABI_BITS == 32
P
pbrook 已提交
3072 3073
static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
{
T
ths 已提交
3074
#ifdef TARGET_WORDS_BIGENDIAN
P
pbrook 已提交
3075 3076 3077 3078 3079
    return ((uint64_t)word0 << 32) | word1;
#else
    return ((uint64_t)word1 << 32) | word0;
#endif
}
3080
#else /* TARGET_ABI_BITS == 32 */
3081 3082 3083 3084
static inline uint64_t target_offset64(uint64_t word0, uint64_t word1)
{
    return word0;
}
3085
#endif /* TARGET_ABI_BITS != 32 */
P
pbrook 已提交
3086 3087

#ifdef TARGET_NR_truncate64
3088 3089 3090 3091
static inline abi_long target_truncate64(void *cpu_env, const char *arg1,
                                         abi_long arg2,
                                         abi_long arg3,
                                         abi_long arg4)
P
pbrook 已提交
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104
{
#ifdef TARGET_ARM
    if (((CPUARMState *)cpu_env)->eabi)
      {
        arg2 = arg3;
        arg3 = arg4;
      }
#endif
    return get_errno(truncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

#ifdef TARGET_NR_ftruncate64
3105 3106 3107 3108
static inline abi_long target_ftruncate64(void *cpu_env, abi_long arg1,
                                          abi_long arg2,
                                          abi_long arg3,
                                          abi_long arg4)
P
pbrook 已提交
3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120
{
#ifdef TARGET_ARM
    if (((CPUARMState *)cpu_env)->eabi)
      {
        arg2 = arg3;
        arg3 = arg4;
      }
#endif
    return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

3121 3122
static inline abi_long target_to_host_timespec(struct timespec *host_ts,
                                               abi_ulong target_addr)
3123 3124 3125
{
    struct target_timespec *target_ts;

3126 3127
    if (!lock_user_struct(VERIFY_READ, target_ts, target_addr, 1))
        return -TARGET_EFAULT;
3128 3129 3130
    host_ts->tv_sec = tswapl(target_ts->tv_sec);
    host_ts->tv_nsec = tswapl(target_ts->tv_nsec);
    unlock_user_struct(target_ts, target_addr, 0);
B
bellard 已提交
3131
    return 0;
3132 3133
}

3134 3135
static inline abi_long host_to_target_timespec(abi_ulong target_addr,
                                               struct timespec *host_ts)
3136 3137 3138
{
    struct target_timespec *target_ts;

3139 3140
    if (!lock_user_struct(VERIFY_WRITE, target_ts, target_addr, 0))
        return -TARGET_EFAULT;
3141 3142 3143
    target_ts->tv_sec = tswapl(host_ts->tv_sec);
    target_ts->tv_nsec = tswapl(host_ts->tv_nsec);
    unlock_user_struct(target_ts, target_addr, 1);
B
bellard 已提交
3144
    return 0;
3145 3146
}

3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185
#if defined(USE_NPTL)
/* ??? Using host futex calls even when target atomic operations
   are not really atomic probably breaks things.  However implementing
   futexes locally would make futexes shared between multiple processes
   tricky.  However they're probably useless because guest atomic
   operations won't work either.  */
int do_futex(target_ulong uaddr, int op, int val, target_ulong timeout,
             target_ulong uaddr2, int val3)
{
    struct timespec ts, *pts;

    /* ??? We assume FUTEX_* constants are the same on both host
       and target.  */
    switch (op) {
    case FUTEX_WAIT:
        if (timeout) {
            pts = &ts;
            target_to_host_timespec(pts, timeout);
        } else {
            pts = NULL;
        }
        return get_errno(sys_futex(g2h(uaddr), FUTEX_WAIT, tswap32(val),
                         pts, NULL, 0));
    case FUTEX_WAKE:
        return get_errno(sys_futex(g2h(uaddr), FUTEX_WAKE, val, NULL, NULL, 0));
    case FUTEX_FD:
        return get_errno(sys_futex(g2h(uaddr), FUTEX_FD, val, NULL, NULL, 0));
    case FUTEX_REQUEUE:
        return get_errno(sys_futex(g2h(uaddr), FUTEX_REQUEUE, val,
                         NULL, g2h(uaddr2), 0));
    case FUTEX_CMP_REQUEUE:
        return get_errno(sys_futex(g2h(uaddr), FUTEX_CMP_REQUEUE, val,
                         NULL, g2h(uaddr2), tswap32(val3)));
    default:
        return -TARGET_ENOSYS;
    }
}
#endif

P
pbrook 已提交
3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216
int get_osversion(void)
{
    static int osversion;
    struct new_utsname buf;
    const char *s;
    int i, n, tmp;
    if (osversion)
        return osversion;
    if (qemu_uname_release && *qemu_uname_release) {
        s = qemu_uname_release;
    } else {
        if (sys_uname(&buf))
            return 0;
        s = buf.release;
    }
    tmp = 0;
    for (i = 0; i < 3; i++) {
        n = 0;
        while (*s >= '0' && *s <= '9') {
            n *= 10;
            n += *s - '0';
            s++;
        }
        tmp = (tmp << 8) + n;
        if (*s == '.')
            s++;
    }
    osversion = tmp;
    return osversion;
}

3217 3218 3219
/* do_syscall() should always have a single exit point at the end so
   that actions, such as logging of syscall results, can be performed.
   All errnos that do_syscall() returns must be -TARGET_<errcode>. */
3220 3221 3222
abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
                    abi_long arg2, abi_long arg3, abi_long arg4,
                    abi_long arg5, abi_long arg6)
3223
{
3224
    abi_long ret;
3225
    struct stat st;
B
bellard 已提交
3226
    struct statfs stfs;
3227
    void *p;
3228

B
bellard 已提交
3229
#ifdef DEBUG
B
bellard 已提交
3230
    gemu_log("syscall %d", num);
B
bellard 已提交
3231
#endif
3232 3233 3234
    if(do_strace)
        print_syscall(num, arg1, arg2, arg3, arg4, arg5, arg6);

3235 3236
    switch(num) {
    case TARGET_NR_exit:
B
bellard 已提交
3237 3238 3239
#ifdef HAVE_GPROF
        _mcleanup();
#endif
3240
        gdb_exit(cpu_env, arg1);
B
bellard 已提交
3241
        /* XXX: should free thread stack and CPU env */
3242 3243 3244 3245
        _exit(arg1);
        ret = 0; /* avoid warning */
        break;
    case TARGET_NR_read:
3246 3247
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
3248 3249
        ret = get_errno(read(arg1, p, arg3));
        unlock_user(p, arg2, ret);
3250 3251
        break;
    case TARGET_NR_write:
3252 3253
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
3254 3255
        ret = get_errno(write(arg1, p, arg3));
        unlock_user(p, arg2, 0);
3256 3257
        break;
    case TARGET_NR_open:
3258 3259
        if (!(p = lock_user_string(arg1)))
            goto efault;
3260
        ret = get_errno(open(path(p),
B
bellard 已提交
3261 3262
                             target_to_host_bitmask(arg2, fcntl_flags_tbl),
                             arg3));
3263
        unlock_user(p, arg1, 0);
3264
        break;
3265 3266
#if defined(TARGET_NR_openat) && defined(__NR_openat)
    case TARGET_NR_openat:
3267 3268 3269 3270 3271 3272 3273
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_openat(arg1,
                                   path(p),
                                   target_to_host_bitmask(arg3, fcntl_flags_tbl),
                                   arg4));
        unlock_user(p, arg2, 0);
3274 3275
        break;
#endif
3276 3277 3278 3279
    case TARGET_NR_close:
        ret = get_errno(close(arg1));
        break;
    case TARGET_NR_brk:
3280
        ret = do_brk(arg1);
3281 3282
        break;
    case TARGET_NR_fork:
P
pbrook 已提交
3283
        ret = get_errno(do_fork(cpu_env, SIGCHLD, 0, 0, 0, 0));
3284
        break;
3285
#ifdef TARGET_NR_waitpid
3286 3287
    case TARGET_NR_waitpid:
        {
3288 3289
            int status;
            ret = get_errno(waitpid(arg1, &status, arg3));
3290 3291 3292
            if (!is_error(ret) && arg2
                && put_user_s32(status, arg2))
                goto efault;
3293 3294
        }
        break;
3295
#endif
P
pbrook 已提交
3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310
#ifdef TARGET_NR_waitid
    case TARGET_NR_waitid:
        {
            siginfo_t info;
            info.si_pid = 0;
            ret = get_errno(waitid(arg1, arg2, &info, arg4));
            if (!is_error(ret) && arg3 && info.si_pid != 0) {
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_siginfo_t), 0)))
                    goto efault;
                host_to_target_siginfo(p, &info);
                unlock_user(p, arg3, sizeof(target_siginfo_t));
            }
        }
        break;
#endif
3311
#ifdef TARGET_NR_creat /* not on alpha */
3312
    case TARGET_NR_creat:
3313 3314
        if (!(p = lock_user_string(arg1)))
            goto efault;
3315 3316
        ret = get_errno(creat(p, arg2));
        unlock_user(p, arg1, 0);
3317
        break;
3318
#endif
3319
    case TARGET_NR_link:
3320 3321 3322 3323
        {
            void * p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
3324 3325 3326 3327
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(link(p, p2));
3328 3329 3330
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
3331
        break;
3332 3333 3334 3335
#if defined(TARGET_NR_linkat) && defined(__NR_linkat)
    case TARGET_NR_linkat:
        {
            void * p2 = NULL;
3336 3337
            if (!arg2 || !arg4)
                goto efault;
3338 3339
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
3340
            if (!p || !p2)
3341
                ret = -TARGET_EFAULT;
3342 3343
            else
                ret = get_errno(sys_linkat(arg1, p, arg3, p2, arg5));
3344 3345
            unlock_user(p, arg2, 0);
            unlock_user(p2, arg4, 0);
3346 3347 3348
        }
        break;
#endif
3349
    case TARGET_NR_unlink:
3350 3351
        if (!(p = lock_user_string(arg1)))
            goto efault;
3352 3353
        ret = get_errno(unlink(p));
        unlock_user(p, arg1, 0);
3354
        break;
3355 3356
#if defined(TARGET_NR_unlinkat) && defined(__NR_unlinkat)
    case TARGET_NR_unlinkat:
3357 3358 3359 3360
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_unlinkat(arg1, p, arg3));
        unlock_user(p, arg2, 0);
3361
        break;
3362
#endif
3363
    case TARGET_NR_execve:
B
bellard 已提交
3364 3365
        {
            char **argp, **envp;
B
bellard 已提交
3366
            int argc, envc;
3367 3368 3369 3370
            abi_ulong gp;
            abi_ulong guest_argp;
            abi_ulong guest_envp;
            abi_ulong addr;
B
bellard 已提交
3371 3372
            char **q;

B
bellard 已提交
3373
            argc = 0;
3374
            guest_argp = arg2;
3375
            for (gp = guest_argp; gp; gp += sizeof(abi_ulong)) {
3376
                if (get_user_ual(addr, gp))
3377
                    goto efault;
3378
                if (!addr)
3379
                    break;
B
bellard 已提交
3380
                argc++;
3381
            }
B
bellard 已提交
3382
            envc = 0;
3383
            guest_envp = arg3;
3384
            for (gp = guest_envp; gp; gp += sizeof(abi_ulong)) {
3385
                if (get_user_ual(addr, gp))
3386
                    goto efault;
3387
                if (!addr)
3388
                    break;
B
bellard 已提交
3389
                envc++;
3390
            }
B
bellard 已提交
3391

B
bellard 已提交
3392 3393
            argp = alloca((argc + 1) * sizeof(void *));
            envp = alloca((envc + 1) * sizeof(void *));
B
bellard 已提交
3394

3395
            for (gp = guest_argp, q = argp; gp;
3396
                  gp += sizeof(abi_ulong), q++) {
3397 3398
                if (get_user_ual(addr, gp))
                    goto execve_efault;
3399 3400
                if (!addr)
                    break;
3401 3402
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
3403
            }
B
bellard 已提交
3404 3405
            *q = NULL;

3406
            for (gp = guest_envp, q = envp; gp;
3407
                  gp += sizeof(abi_ulong), q++) {
3408 3409
                if (get_user_ual(addr, gp))
                    goto execve_efault;
3410 3411
                if (!addr)
                    break;
3412 3413
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
3414
            }
B
bellard 已提交
3415
            *q = NULL;
B
bellard 已提交
3416

3417 3418
            if (!(p = lock_user_string(arg1)))
                goto execve_efault;
3419 3420 3421
            ret = get_errno(execve(p, argp, envp));
            unlock_user(p, arg1, 0);

3422 3423 3424 3425 3426 3427
            goto execve_end;

        execve_efault:
            ret = -TARGET_EFAULT;

        execve_end:
3428
            for (gp = guest_argp, q = argp; *q;
3429
                  gp += sizeof(abi_ulong), q++) {
3430 3431 3432
                if (get_user_ual(addr, gp)
                    || !addr)
                    break;
3433 3434 3435
                unlock_user(*q, addr, 0);
            }
            for (gp = guest_envp, q = envp; *q;
3436
                  gp += sizeof(abi_ulong), q++) {
3437 3438 3439
                if (get_user_ual(addr, gp)
                    || !addr)
                    break;
3440 3441
                unlock_user(*q, addr, 0);
            }
B
bellard 已提交
3442
        }
3443 3444
        break;
    case TARGET_NR_chdir:
3445 3446
        if (!(p = lock_user_string(arg1)))
            goto efault;
3447 3448
        ret = get_errno(chdir(p));
        unlock_user(p, arg1, 0);
3449
        break;
B
bellard 已提交
3450
#ifdef TARGET_NR_time
3451 3452
    case TARGET_NR_time:
        {
3453 3454
            time_t host_time;
            ret = get_errno(time(&host_time));
3455 3456 3457 3458
            if (!is_error(ret)
                && arg1
                && put_user_sal(host_time, arg1))
                goto efault;
3459 3460
        }
        break;
B
bellard 已提交
3461
#endif
3462
    case TARGET_NR_mknod:
3463 3464
        if (!(p = lock_user_string(arg1)))
            goto efault;
3465 3466
        ret = get_errno(mknod(p, arg2, arg3));
        unlock_user(p, arg1, 0);
3467
        break;
3468 3469
#if defined(TARGET_NR_mknodat) && defined(__NR_mknodat)
    case TARGET_NR_mknodat:
3470 3471 3472 3473
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_mknodat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
3474 3475
        break;
#endif
3476
    case TARGET_NR_chmod:
3477 3478
        if (!(p = lock_user_string(arg1)))
            goto efault;
3479 3480
        ret = get_errno(chmod(p, arg2));
        unlock_user(p, arg1, 0);
3481
        break;
3482
#ifdef TARGET_NR_break
3483 3484
    case TARGET_NR_break:
        goto unimplemented;
3485 3486
#endif
#ifdef TARGET_NR_oldstat
3487 3488
    case TARGET_NR_oldstat:
        goto unimplemented;
3489
#endif
3490 3491 3492
    case TARGET_NR_lseek:
        ret = get_errno(lseek(arg1, arg2, arg3));
        break;
3493 3494 3495
#ifdef TARGET_NR_getxpid
    case TARGET_NR_getxpid:
#else
3496
    case TARGET_NR_getpid:
3497
#endif
3498 3499 3500
        ret = get_errno(getpid());
        break;
    case TARGET_NR_mount:
3501 3502 3503 3504 3505 3506
		{
			/* need to look at the data field */
			void *p2, *p3;
			p = lock_user_string(arg1);
			p2 = lock_user_string(arg2);
			p3 = lock_user_string(arg3);
3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517
                        if (!p || !p2 || !p3)
                            ret = -TARGET_EFAULT;
                        else
                            /* FIXME - arg5 should be locked, but it isn't clear how to
                             * do that since it's not guaranteed to be a NULL-terminated
                             * string.
                             */
                            ret = get_errno(mount(p, p2, p3, (unsigned long)arg4, g2h(arg5)));
                        unlock_user(p, arg1, 0);
                        unlock_user(p2, arg2, 0);
                        unlock_user(p3, arg3, 0);
3518 3519
			break;
		}
3520
#ifdef TARGET_NR_umount
3521
    case TARGET_NR_umount:
3522 3523
        if (!(p = lock_user_string(arg1)))
            goto efault;
3524 3525
        ret = get_errno(umount(p));
        unlock_user(p, arg1, 0);
3526
        break;
3527
#endif
3528
#ifdef TARGET_NR_stime /* not on alpha */
3529 3530
    case TARGET_NR_stime:
        {
3531
            time_t host_time;
3532 3533
            if (get_user_sal(host_time, arg1))
                goto efault;
3534
            ret = get_errno(stime(&host_time));
3535 3536
        }
        break;
3537
#endif
3538 3539
    case TARGET_NR_ptrace:
        goto unimplemented;
3540
#ifdef TARGET_NR_alarm /* not on alpha */
3541 3542 3543
    case TARGET_NR_alarm:
        ret = alarm(arg1);
        break;
3544
#endif
3545
#ifdef TARGET_NR_oldfstat
3546 3547
    case TARGET_NR_oldfstat:
        goto unimplemented;
3548
#endif
3549
#ifdef TARGET_NR_pause /* not on alpha */
3550 3551 3552
    case TARGET_NR_pause:
        ret = get_errno(pause());
        break;
3553
#endif
3554
#ifdef TARGET_NR_utime
3555
    case TARGET_NR_utime:
3556
        {
3557 3558 3559
            struct utimbuf tbuf, *host_tbuf;
            struct target_utimbuf *target_tbuf;
            if (arg2) {
3560 3561
                if (!lock_user_struct(VERIFY_READ, target_tbuf, arg2, 1))
                    goto efault;
3562 3563 3564 3565
                tbuf.actime = tswapl(target_tbuf->actime);
                tbuf.modtime = tswapl(target_tbuf->modtime);
                unlock_user_struct(target_tbuf, arg2, 0);
                host_tbuf = &tbuf;
B
bellard 已提交
3566
            } else {
3567
                host_tbuf = NULL;
B
bellard 已提交
3568
            }
3569 3570
            if (!(p = lock_user_string(arg1)))
                goto efault;
3571 3572
            ret = get_errno(utime(p, host_tbuf));
            unlock_user(p, arg1, 0);
3573 3574
        }
        break;
3575
#endif
B
bellard 已提交
3576 3577 3578
    case TARGET_NR_utimes:
        {
            struct timeval *tvp, tv[2];
3579
            if (arg2) {
3580 3581 3582 3583
                if (copy_from_user_timeval(&tv[0], arg2)
                    || copy_from_user_timeval(&tv[1],
                                              arg2 + sizeof(struct target_timeval)))
                    goto efault;
B
bellard 已提交
3584 3585 3586 3587
                tvp = tv;
            } else {
                tvp = NULL;
            }
3588 3589
            if (!(p = lock_user_string(arg1)))
                goto efault;
3590 3591
            ret = get_errno(utimes(p, tvp));
            unlock_user(p, arg1, 0);
B
bellard 已提交
3592 3593
        }
        break;
3594
#ifdef TARGET_NR_stty
3595 3596
    case TARGET_NR_stty:
        goto unimplemented;
3597 3598
#endif
#ifdef TARGET_NR_gtty
3599 3600
    case TARGET_NR_gtty:
        goto unimplemented;
3601
#endif
3602
    case TARGET_NR_access:
3603 3604
        if (!(p = lock_user_string(arg1)))
            goto efault;
3605 3606
        ret = get_errno(access(p, arg2));
        unlock_user(p, arg1, 0);
3607
        break;
3608 3609
#if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
    case TARGET_NR_faccessat:
3610 3611 3612 3613
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_faccessat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
3614 3615
        break;
#endif
3616
#ifdef TARGET_NR_nice /* not on alpha */
3617 3618 3619
    case TARGET_NR_nice:
        ret = get_errno(nice(arg1));
        break;
3620
#endif
3621
#ifdef TARGET_NR_ftime
3622 3623
    case TARGET_NR_ftime:
        goto unimplemented;
3624
#endif
3625
    case TARGET_NR_sync:
B
bellard 已提交
3626 3627
        sync();
        ret = 0;
3628 3629
        break;
    case TARGET_NR_kill:
3630
        ret = get_errno(kill(arg1, target_to_host_signal(arg2)));
3631 3632
        break;
    case TARGET_NR_rename:
3633 3634 3635 3636
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
3637 3638 3639 3640
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(rename(p, p2));
3641 3642 3643
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
3644
        break;
3645 3646 3647
#if defined(TARGET_NR_renameat) && defined(__NR_renameat)
    case TARGET_NR_renameat:
        {
3648
            void *p2;
3649 3650
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
3651
            if (!p || !p2)
3652
                ret = -TARGET_EFAULT;
3653 3654
            else
                ret = get_errno(sys_renameat(arg1, p, arg3, p2));
3655 3656
            unlock_user(p2, arg4, 0);
            unlock_user(p, arg2, 0);
3657 3658 3659
        }
        break;
#endif
3660
    case TARGET_NR_mkdir:
3661 3662
        if (!(p = lock_user_string(arg1)))
            goto efault;
3663 3664
        ret = get_errno(mkdir(p, arg2));
        unlock_user(p, arg1, 0);
3665
        break;
3666 3667
#if defined(TARGET_NR_mkdirat) && defined(__NR_mkdirat)
    case TARGET_NR_mkdirat:
3668 3669 3670 3671
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_mkdirat(arg1, p, arg3));
        unlock_user(p, arg2, 0);
3672 3673
        break;
#endif
3674
    case TARGET_NR_rmdir:
3675 3676
        if (!(p = lock_user_string(arg1)))
            goto efault;
3677 3678
        ret = get_errno(rmdir(p));
        unlock_user(p, arg1, 0);
3679 3680 3681 3682 3683 3684
        break;
    case TARGET_NR_dup:
        ret = get_errno(dup(arg1));
        break;
    case TARGET_NR_pipe:
        {
3685 3686
            int host_pipe[2];
            ret = get_errno(pipe(host_pipe));
3687
            if (!is_error(ret)) {
3688
#if defined(TARGET_MIPS)
3689
                CPUMIPSState *env = (CPUMIPSState*)cpu_env;
3690
		env->active_tc.gpr[3] = host_pipe[1];
3691
		ret = host_pipe[0];
3692 3693 3694
#elif defined(TARGET_SH4)
		((CPUSH4State*)cpu_env)->gregs[1] = host_pipe[1];
		ret = host_pipe[0];
3695
#else
3696 3697 3698
                if (put_user_s32(host_pipe[0], arg1)
                    || put_user_s32(host_pipe[1], arg1 + sizeof(host_pipe[0])))
                    goto efault;
3699
#endif
3700 3701 3702 3703
            }
        }
        break;
    case TARGET_NR_times:
B
bellard 已提交
3704
        {
3705
            struct target_tms *tmsp;
B
bellard 已提交
3706 3707
            struct tms tms;
            ret = get_errno(times(&tms));
3708
            if (arg1) {
3709 3710 3711
                tmsp = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_tms), 0);
                if (!tmsp)
                    goto efault;
B
bellard 已提交
3712 3713 3714 3715
                tmsp->tms_utime = tswapl(host_to_target_clock_t(tms.tms_utime));
                tmsp->tms_stime = tswapl(host_to_target_clock_t(tms.tms_stime));
                tmsp->tms_cutime = tswapl(host_to_target_clock_t(tms.tms_cutime));
                tmsp->tms_cstime = tswapl(host_to_target_clock_t(tms.tms_cstime));
B
bellard 已提交
3716
            }
B
bellard 已提交
3717 3718
            if (!is_error(ret))
                ret = host_to_target_clock_t(ret);
B
bellard 已提交
3719 3720
        }
        break;
3721
#ifdef TARGET_NR_prof
3722 3723
    case TARGET_NR_prof:
        goto unimplemented;
3724
#endif
3725
#ifdef TARGET_NR_signal
3726 3727
    case TARGET_NR_signal:
        goto unimplemented;
3728
#endif
3729
    case TARGET_NR_acct:
3730 3731
        if (!(p = lock_user_string(arg1)))
            goto efault;
3732 3733 3734
        ret = get_errno(acct(path(p)));
        unlock_user(p, arg1, 0);
        break;
3735
#ifdef TARGET_NR_umount2 /* not on alpha */
3736
    case TARGET_NR_umount2:
3737 3738
        if (!(p = lock_user_string(arg1)))
            goto efault;
3739 3740
        ret = get_errno(umount2(p, arg2));
        unlock_user(p, arg1, 0);
3741
        break;
3742
#endif
3743
#ifdef TARGET_NR_lock
3744 3745
    case TARGET_NR_lock:
        goto unimplemented;
3746
#endif
3747 3748 3749 3750
    case TARGET_NR_ioctl:
        ret = do_ioctl(arg1, arg2, arg3);
        break;
    case TARGET_NR_fcntl:
B
bellard 已提交
3751
        ret = do_fcntl(arg1, arg2, arg3);
3752
        break;
3753
#ifdef TARGET_NR_mpx
3754 3755
    case TARGET_NR_mpx:
        goto unimplemented;
3756
#endif
3757 3758 3759
    case TARGET_NR_setpgid:
        ret = get_errno(setpgid(arg1, arg2));
        break;
3760
#ifdef TARGET_NR_ulimit
3761 3762
    case TARGET_NR_ulimit:
        goto unimplemented;
3763 3764
#endif
#ifdef TARGET_NR_oldolduname
3765 3766
    case TARGET_NR_oldolduname:
        goto unimplemented;
3767
#endif
3768 3769 3770 3771
    case TARGET_NR_umask:
        ret = get_errno(umask(arg1));
        break;
    case TARGET_NR_chroot:
3772 3773
        if (!(p = lock_user_string(arg1)))
            goto efault;
3774 3775
        ret = get_errno(chroot(p));
        unlock_user(p, arg1, 0);
3776 3777 3778 3779 3780 3781
        break;
    case TARGET_NR_ustat:
        goto unimplemented;
    case TARGET_NR_dup2:
        ret = get_errno(dup2(arg1, arg2));
        break;
3782
#ifdef TARGET_NR_getppid /* not on alpha */
3783 3784 3785
    case TARGET_NR_getppid:
        ret = get_errno(getppid());
        break;
3786
#endif
3787 3788 3789 3790 3791 3792
    case TARGET_NR_getpgrp:
        ret = get_errno(getpgrp());
        break;
    case TARGET_NR_setsid:
        ret = get_errno(setsid());
        break;
3793
#ifdef TARGET_NR_sigaction
3794 3795
    case TARGET_NR_sigaction:
        {
T
ths 已提交
3796
#if !defined(TARGET_MIPS)
3797
            struct target_old_sigaction *old_act;
B
bellard 已提交
3798
            struct target_sigaction act, oact, *pact;
3799
            if (arg2) {
3800 3801
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
B
bellard 已提交
3802 3803 3804 3805
                act._sa_handler = old_act->_sa_handler;
                target_siginitset(&act.sa_mask, old_act->sa_mask);
                act.sa_flags = old_act->sa_flags;
                act.sa_restorer = old_act->sa_restorer;
3806
                unlock_user_struct(old_act, arg2, 0);
B
bellard 已提交
3807 3808 3809 3810 3811
                pact = &act;
            } else {
                pact = NULL;
            }
            ret = get_errno(do_sigaction(arg1, pact, &oact));
3812
            if (!is_error(ret) && arg3) {
3813 3814
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
3815 3816 3817 3818 3819
                old_act->_sa_handler = oact._sa_handler;
                old_act->sa_mask = oact.sa_mask.sig[0];
                old_act->sa_flags = oact.sa_flags;
                old_act->sa_restorer = oact.sa_restorer;
                unlock_user_struct(old_act, arg3, 1);
B
bellard 已提交
3820
            }
T
ths 已提交
3821
#else
3822 3823 3824
	    struct target_sigaction act, oact, *pact, *old_act;

	    if (arg2) {
3825 3826
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838
		act._sa_handler = old_act->_sa_handler;
		target_siginitset(&act.sa_mask, old_act->sa_mask.sig[0]);
		act.sa_flags = old_act->sa_flags;
		unlock_user_struct(old_act, arg2, 0);
		pact = &act;
	    } else {
		pact = NULL;
	    }

	    ret = get_errno(do_sigaction(arg1, pact, &oact));

	    if (!is_error(ret) && arg3) {
3839 3840
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
3841 3842 3843 3844 3845 3846 3847 3848
		old_act->_sa_handler = oact._sa_handler;
		old_act->sa_flags = oact.sa_flags;
		old_act->sa_mask.sig[0] = oact.sa_mask.sig[0];
		old_act->sa_mask.sig[1] = 0;
		old_act->sa_mask.sig[2] = 0;
		old_act->sa_mask.sig[3] = 0;
		unlock_user_struct(old_act, arg3, 1);
	    }
T
ths 已提交
3849
#endif
3850 3851
        }
        break;
3852
#endif
B
bellard 已提交
3853
    case TARGET_NR_rt_sigaction:
3854 3855 3856 3857
        {
            struct target_sigaction *act;
            struct target_sigaction *oact;

3858 3859 3860 3861
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, act, arg2, 1))
                    goto efault;
            } else
3862
                act = NULL;
3863 3864 3865 3866 3867 3868
            if (arg3) {
                if (!lock_user_struct(VERIFY_WRITE, oact, arg3, 0)) {
                    ret = -TARGET_EFAULT;
                    goto rt_sigaction_fail;
                }
            } else
3869 3870
                oact = NULL;
            ret = get_errno(do_sigaction(arg1, act, oact));
3871 3872
	rt_sigaction_fail:
            if (act)
3873
                unlock_user_struct(act, arg2, 0);
3874
            if (oact)
3875 3876
                unlock_user_struct(oact, arg3, 1);
        }
B
bellard 已提交
3877
        break;
3878
#ifdef TARGET_NR_sgetmask /* not on alpha */
3879
    case TARGET_NR_sgetmask:
B
bellard 已提交
3880 3881
        {
            sigset_t cur_set;
3882
            abi_ulong target_set;
B
bellard 已提交
3883 3884 3885 3886 3887
            sigprocmask(0, NULL, &cur_set);
            host_to_target_old_sigset(&target_set, &cur_set);
            ret = target_set;
        }
        break;
3888 3889
#endif
#ifdef TARGET_NR_ssetmask /* not on alpha */
3890
    case TARGET_NR_ssetmask:
B
bellard 已提交
3891 3892
        {
            sigset_t set, oset, cur_set;
3893
            abi_ulong target_set = arg1;
B
bellard 已提交
3894 3895 3896 3897 3898 3899 3900 3901
            sigprocmask(0, NULL, &cur_set);
            target_to_host_old_sigset(&set, &target_set);
            sigorset(&set, &set, &cur_set);
            sigprocmask(SIG_SETMASK, &set, &oset);
            host_to_target_old_sigset(&target_set, &oset);
            ret = target_set;
        }
        break;
3902
#endif
3903
#ifdef TARGET_NR_sigprocmask
B
bellard 已提交
3904 3905 3906 3907
    case TARGET_NR_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
3908

3909
            if (arg2) {
B
bellard 已提交
3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920
                switch(how) {
                case TARGET_SIG_BLOCK:
                    how = SIG_BLOCK;
                    break;
                case TARGET_SIG_UNBLOCK:
                    how = SIG_UNBLOCK;
                    break;
                case TARGET_SIG_SETMASK:
                    how = SIG_SETMASK;
                    break;
                default:
3921
                    ret = -TARGET_EINVAL;
B
bellard 已提交
3922 3923
                    goto fail;
                }
3924 3925
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
                    goto efault;
3926 3927
                target_to_host_old_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
3928 3929 3930 3931 3932 3933
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(arg1, set_ptr, &oldset));
3934
            if (!is_error(ret) && arg3) {
3935 3936
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
                    goto efault;
3937 3938
                host_to_target_old_sigset(p, &oldset);
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
3939 3940 3941
            }
        }
        break;
3942
#endif
B
bellard 已提交
3943 3944 3945 3946
    case TARGET_NR_rt_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
3947

3948
            if (arg2) {
B
bellard 已提交
3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959
                switch(how) {
                case TARGET_SIG_BLOCK:
                    how = SIG_BLOCK;
                    break;
                case TARGET_SIG_UNBLOCK:
                    how = SIG_UNBLOCK;
                    break;
                case TARGET_SIG_SETMASK:
                    how = SIG_SETMASK;
                    break;
                default:
3960
                    ret = -TARGET_EINVAL;
B
bellard 已提交
3961 3962
                    goto fail;
                }
3963 3964
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
                    goto efault;
3965 3966
                target_to_host_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
3967 3968 3969 3970 3971 3972
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
3973
            if (!is_error(ret) && arg3) {
3974 3975
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
                    goto efault;
3976 3977
                host_to_target_sigset(p, &oldset);
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
3978 3979 3980
            }
        }
        break;
3981
#ifdef TARGET_NR_sigpending
B
bellard 已提交
3982 3983 3984 3985 3986
    case TARGET_NR_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
3987 3988
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
                    goto efault;
3989 3990
                host_to_target_old_sigset(p, &set);
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
3991 3992 3993
            }
        }
        break;
3994
#endif
B
bellard 已提交
3995 3996 3997 3998 3999
    case TARGET_NR_rt_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
4000 4001
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
                    goto efault;
4002 4003
                host_to_target_sigset(p, &set);
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
4004 4005 4006
            }
        }
        break;
4007
#ifdef TARGET_NR_sigsuspend
B
bellard 已提交
4008 4009 4010
    case TARGET_NR_sigsuspend:
        {
            sigset_t set;
4011 4012
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
4013 4014
            target_to_host_old_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
4015 4016 4017
            ret = get_errno(sigsuspend(&set));
        }
        break;
4018
#endif
B
bellard 已提交
4019 4020 4021
    case TARGET_NR_rt_sigsuspend:
        {
            sigset_t set;
4022 4023
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
4024 4025
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
4026 4027 4028 4029 4030 4031 4032 4033
            ret = get_errno(sigsuspend(&set));
        }
        break;
    case TARGET_NR_rt_sigtimedwait:
        {
            sigset_t set;
            struct timespec uts, *puts;
            siginfo_t uinfo;
4034

4035 4036
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
4037 4038 4039
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
            if (arg3) {
B
bellard 已提交
4040
                puts = &uts;
4041
                target_to_host_timespec(puts, arg3);
B
bellard 已提交
4042 4043 4044 4045
            } else {
                puts = NULL;
            }
            ret = get_errno(sigtimedwait(&set, &uinfo, puts));
4046
            if (!is_error(ret) && arg2) {
4047
                if (!(p = lock_user(VERIFY_WRITE, arg2, sizeof(target_siginfo_t), 0)))
4048
                    goto efault;
4049
                host_to_target_siginfo(p, &uinfo);
4050
                unlock_user(p, arg2, sizeof(target_siginfo_t));
B
bellard 已提交
4051 4052 4053 4054 4055 4056
            }
        }
        break;
    case TARGET_NR_rt_sigqueueinfo:
        {
            siginfo_t uinfo;
4057 4058
            if (!(p = lock_user(VERIFY_READ, arg3, sizeof(target_sigset_t), 1)))
                goto efault;
4059 4060
            target_to_host_siginfo(&uinfo, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
4061 4062 4063
            ret = get_errno(sys_rt_sigqueueinfo(arg1, arg2, &uinfo));
        }
        break;
4064
#ifdef TARGET_NR_sigreturn
B
bellard 已提交
4065 4066 4067 4068
    case TARGET_NR_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_sigreturn(cpu_env);
        break;
4069
#endif
B
bellard 已提交
4070 4071 4072 4073
    case TARGET_NR_rt_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_rt_sigreturn(cpu_env);
        break;
4074
    case TARGET_NR_sethostname:
4075 4076
        if (!(p = lock_user_string(arg1)))
            goto efault;
4077 4078
        ret = get_errno(sethostname(p, arg2));
        unlock_user(p, arg1, 0);
4079 4080
        break;
    case TARGET_NR_setrlimit:
B
bellard 已提交
4081 4082 4083
        {
            /* XXX: convert resource ? */
            int resource = arg1;
4084
            struct target_rlimit *target_rlim;
B
bellard 已提交
4085
            struct rlimit rlim;
4086 4087
            if (!lock_user_struct(VERIFY_READ, target_rlim, arg2, 1))
                goto efault;
B
bellard 已提交
4088 4089
            rlim.rlim_cur = tswapl(target_rlim->rlim_cur);
            rlim.rlim_max = tswapl(target_rlim->rlim_max);
4090
            unlock_user_struct(target_rlim, arg2, 0);
B
bellard 已提交
4091 4092 4093
            ret = get_errno(setrlimit(resource, &rlim));
        }
        break;
4094
    case TARGET_NR_getrlimit:
B
bellard 已提交
4095 4096 4097
        {
            /* XXX: convert resource ? */
            int resource = arg1;
4098
            struct target_rlimit *target_rlim;
B
bellard 已提交
4099
            struct rlimit rlim;
4100

B
bellard 已提交
4101 4102
            ret = get_errno(getrlimit(resource, &rlim));
            if (!is_error(ret)) {
4103 4104
                if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                    goto efault;
4105 4106 4107
                rlim.rlim_cur = tswapl(target_rlim->rlim_cur);
                rlim.rlim_max = tswapl(target_rlim->rlim_max);
                unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
4108 4109 4110
            }
        }
        break;
4111
    case TARGET_NR_getrusage:
B
bellard 已提交
4112 4113 4114 4115
        {
            struct rusage rusage;
            ret = get_errno(getrusage(arg1, &rusage));
            if (!is_error(ret)) {
4116
                host_to_target_rusage(arg2, &rusage);
B
bellard 已提交
4117 4118 4119
            }
        }
        break;
4120 4121 4122 4123 4124
    case TARGET_NR_gettimeofday:
        {
            struct timeval tv;
            ret = get_errno(gettimeofday(&tv, NULL));
            if (!is_error(ret)) {
4125 4126
                if (copy_to_user_timeval(arg1, &tv))
                    goto efault;
4127 4128 4129 4130 4131 4132
            }
        }
        break;
    case TARGET_NR_settimeofday:
        {
            struct timeval tv;
4133 4134
            if (copy_from_user_timeval(&tv, arg1))
                goto efault;
4135 4136 4137
            ret = get_errno(settimeofday(&tv, NULL));
        }
        break;
B
bellard 已提交
4138
#ifdef TARGET_NR_select
4139
    case TARGET_NR_select:
B
bellard 已提交
4140
        {
4141
            struct target_sel_arg_struct *sel;
4142
            abi_ulong inp, outp, exp, tvp;
4143 4144
            long nsel;

4145 4146
            if (!lock_user_struct(VERIFY_READ, sel, arg1, 1))
                goto efault;
4147 4148 4149 4150 4151 4152 4153
            nsel = tswapl(sel->n);
            inp = tswapl(sel->inp);
            outp = tswapl(sel->outp);
            exp = tswapl(sel->exp);
            tvp = tswapl(sel->tvp);
            unlock_user_struct(sel, arg1, 0);
            ret = do_select(nsel, inp, outp, exp, tvp);
B
bellard 已提交
4154 4155
        }
        break;
B
bellard 已提交
4156
#endif
4157
    case TARGET_NR_symlink:
4158 4159 4160 4161
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
4162 4163 4164 4165
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(symlink(p, p2));
4166 4167 4168
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
4169
        break;
4170 4171 4172
#if defined(TARGET_NR_symlinkat) && defined(__NR_symlinkat)
    case TARGET_NR_symlinkat:
        {
4173
            void *p2;
4174 4175
            p  = lock_user_string(arg1);
            p2 = lock_user_string(arg3);
4176
            if (!p || !p2)
4177
                ret = -TARGET_EFAULT;
4178 4179
            else
                ret = get_errno(sys_symlinkat(p, arg2, p2));
4180 4181
            unlock_user(p2, arg3, 0);
            unlock_user(p, arg1, 0);
4182 4183 4184
        }
        break;
#endif
4185
#ifdef TARGET_NR_oldlstat
4186 4187
    case TARGET_NR_oldlstat:
        goto unimplemented;
4188
#endif
4189
    case TARGET_NR_readlink:
4190 4191 4192
        {
            void *p2;
            p = lock_user_string(arg1);
4193 4194 4195 4196 4197
            p2 = lock_user(VERIFY_WRITE, arg2, arg3, 0);
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(readlink(path(p), p2, arg3));
4198 4199 4200
            unlock_user(p2, arg2, ret);
            unlock_user(p, arg1, 0);
        }
4201
        break;
4202 4203 4204
#if defined(TARGET_NR_readlinkat) && defined(__NR_readlinkat)
    case TARGET_NR_readlinkat:
        {
4205
            void *p2;
4206
            p  = lock_user_string(arg2);
4207 4208
            p2 = lock_user(VERIFY_WRITE, arg3, arg4, 0);
            if (!p || !p2)
4209
        	ret = -TARGET_EFAULT;
4210 4211
            else
                ret = get_errno(sys_readlinkat(arg1, path(p), p2, arg4));
4212 4213
            unlock_user(p2, arg3, ret);
            unlock_user(p, arg2, 0);
4214 4215 4216
        }
        break;
#endif
4217
#ifdef TARGET_NR_uselib
4218 4219
    case TARGET_NR_uselib:
        goto unimplemented;
4220 4221
#endif
#ifdef TARGET_NR_swapon
4222
    case TARGET_NR_swapon:
4223 4224
        if (!(p = lock_user_string(arg1)))
            goto efault;
4225 4226
        ret = get_errno(swapon(p, arg2));
        unlock_user(p, arg1, 0);
4227
        break;
4228
#endif
4229 4230
    case TARGET_NR_reboot:
        goto unimplemented;
4231
#ifdef TARGET_NR_readdir
4232 4233
    case TARGET_NR_readdir:
        goto unimplemented;
4234 4235
#endif
#ifdef TARGET_NR_mmap
4236
    case TARGET_NR_mmap:
B
bellard 已提交
4237
#if (defined(TARGET_I386) && defined(TARGET_ABI32)) || defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_CRIS)
4238
        {
4239 4240
            abi_ulong *v;
            abi_ulong v1, v2, v3, v4, v5, v6;
4241 4242
            if (!(v = lock_user(VERIFY_READ, arg1, 6 * sizeof(abi_ulong), 1)))
                goto efault;
4243 4244 4245 4246 4247 4248 4249
            v1 = tswapl(v[0]);
            v2 = tswapl(v[1]);
            v3 = tswapl(v[2]);
            v4 = tswapl(v[3]);
            v5 = tswapl(v[4]);
            v6 = tswapl(v[5]);
            unlock_user(v, arg1, 0);
4250
            ret = get_errno(target_mmap(v1, v2, v3,
B
bellard 已提交
4251 4252
                                        target_to_host_bitmask(v4, mmap_flags_tbl),
                                        v5, v6));
4253 4254
        }
#else
4255 4256
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
4257 4258
                                    arg5,
                                    arg6));
4259
#endif
B
bellard 已提交
4260
        break;
4261
#endif
B
bellard 已提交
4262
#ifdef TARGET_NR_mmap2
B
bellard 已提交
4263
    case TARGET_NR_mmap2:
P
pbrook 已提交
4264
#ifndef MMAP_SHIFT
B
bellard 已提交
4265 4266
#define MMAP_SHIFT 12
#endif
4267 4268
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
4269
                                    arg5,
B
bellard 已提交
4270
                                    arg6 << MMAP_SHIFT));
4271
        break;
B
bellard 已提交
4272
#endif
4273
    case TARGET_NR_munmap:
B
bellard 已提交
4274
        ret = get_errno(target_munmap(arg1, arg2));
4275
        break;
B
bellard 已提交
4276
    case TARGET_NR_mprotect:
B
bellard 已提交
4277
        ret = get_errno(target_mprotect(arg1, arg2, arg3));
B
bellard 已提交
4278
        break;
4279
#ifdef TARGET_NR_mremap
B
bellard 已提交
4280
    case TARGET_NR_mremap:
B
bellard 已提交
4281
        ret = get_errno(target_mremap(arg1, arg2, arg3, arg4, arg5));
B
bellard 已提交
4282
        break;
4283
#endif
4284
        /* ??? msync/mlock/munlock are broken for softmmu.  */
4285
#ifdef TARGET_NR_msync
B
bellard 已提交
4286
    case TARGET_NR_msync:
4287
        ret = get_errno(msync(g2h(arg1), arg2, arg3));
B
bellard 已提交
4288
        break;
4289 4290
#endif
#ifdef TARGET_NR_mlock
B
bellard 已提交
4291
    case TARGET_NR_mlock:
4292
        ret = get_errno(mlock(g2h(arg1), arg2));
B
bellard 已提交
4293
        break;
4294 4295
#endif
#ifdef TARGET_NR_munlock
B
bellard 已提交
4296
    case TARGET_NR_munlock:
4297
        ret = get_errno(munlock(g2h(arg1), arg2));
B
bellard 已提交
4298
        break;
4299 4300
#endif
#ifdef TARGET_NR_mlockall
B
bellard 已提交
4301 4302 4303
    case TARGET_NR_mlockall:
        ret = get_errno(mlockall(arg1));
        break;
4304 4305
#endif
#ifdef TARGET_NR_munlockall
B
bellard 已提交
4306 4307 4308
    case TARGET_NR_munlockall:
        ret = get_errno(munlockall());
        break;
4309
#endif
4310
    case TARGET_NR_truncate:
4311 4312
        if (!(p = lock_user_string(arg1)))
            goto efault;
4313 4314
        ret = get_errno(truncate(p, arg2));
        unlock_user(p, arg1, 0);
4315 4316 4317 4318 4319 4320 4321
        break;
    case TARGET_NR_ftruncate:
        ret = get_errno(ftruncate(arg1, arg2));
        break;
    case TARGET_NR_fchmod:
        ret = get_errno(fchmod(arg1, arg2));
        break;
4322 4323
#if defined(TARGET_NR_fchmodat) && defined(__NR_fchmodat)
    case TARGET_NR_fchmodat:
4324 4325 4326 4327
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_fchmodat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
4328 4329
        break;
#endif
4330
    case TARGET_NR_getpriority:
4331 4332 4333 4334
        /* libc does special remapping of the return value of
         * sys_getpriority() so it's just easiest to call
         * sys_getpriority() directly rather than through libc. */
        ret = sys_getpriority(arg1, arg2);
4335 4336 4337 4338
        break;
    case TARGET_NR_setpriority:
        ret = get_errno(setpriority(arg1, arg2, arg3));
        break;
4339
#ifdef TARGET_NR_profil
4340 4341
    case TARGET_NR_profil:
        goto unimplemented;
4342
#endif
4343
    case TARGET_NR_statfs:
4344 4345
        if (!(p = lock_user_string(arg1)))
            goto efault;
4346 4347
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
4348 4349
    convert_statfs:
        if (!is_error(ret)) {
4350
            struct target_statfs *target_stfs;
4351

4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363
            if (!lock_user_struct(VERIFY_WRITE, target_stfs, arg2, 0))
                goto efault;
            __put_user(stfs.f_type, &target_stfs->f_type);
            __put_user(stfs.f_bsize, &target_stfs->f_bsize);
            __put_user(stfs.f_blocks, &target_stfs->f_blocks);
            __put_user(stfs.f_bfree, &target_stfs->f_bfree);
            __put_user(stfs.f_bavail, &target_stfs->f_bavail);
            __put_user(stfs.f_files, &target_stfs->f_files);
            __put_user(stfs.f_ffree, &target_stfs->f_ffree);
            __put_user(stfs.f_fsid.__val[0], &target_stfs->f_fsid.val[0]);
            __put_user(stfs.f_fsid.__val[1], &target_stfs->f_fsid.val[1]);
            __put_user(stfs.f_namelen, &target_stfs->f_namelen);
4364
            unlock_user_struct(target_stfs, arg2, 1);
4365 4366 4367
        }
        break;
    case TARGET_NR_fstatfs:
B
bellard 已提交
4368
        ret = get_errno(fstatfs(arg1, &stfs));
4369
        goto convert_statfs;
B
bellard 已提交
4370 4371
#ifdef TARGET_NR_statfs64
    case TARGET_NR_statfs64:
4372 4373
        if (!(p = lock_user_string(arg1)))
            goto efault;
4374 4375
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
B
bellard 已提交
4376 4377
    convert_statfs64:
        if (!is_error(ret)) {
4378
            struct target_statfs64 *target_stfs;
4379

4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392
            if (!lock_user_struct(VERIFY_WRITE, target_stfs, arg3, 0))
                goto efault;
            __put_user(stfs.f_type, &target_stfs->f_type);
            __put_user(stfs.f_bsize, &target_stfs->f_bsize);
            __put_user(stfs.f_blocks, &target_stfs->f_blocks);
            __put_user(stfs.f_bfree, &target_stfs->f_bfree);
            __put_user(stfs.f_bavail, &target_stfs->f_bavail);
            __put_user(stfs.f_files, &target_stfs->f_files);
            __put_user(stfs.f_ffree, &target_stfs->f_ffree);
            __put_user(stfs.f_fsid.__val[0], &target_stfs->f_fsid.val[0]);
            __put_user(stfs.f_fsid.__val[1], &target_stfs->f_fsid.val[1]);
            __put_user(stfs.f_namelen, &target_stfs->f_namelen);
            unlock_user_struct(target_stfs, arg3, 1);
B
bellard 已提交
4393 4394 4395 4396 4397 4398
        }
        break;
    case TARGET_NR_fstatfs64:
        ret = get_errno(fstatfs(arg1, &stfs));
        goto convert_statfs64;
#endif
4399
#ifdef TARGET_NR_ioperm
4400 4401
    case TARGET_NR_ioperm:
        goto unimplemented;
4402
#endif
4403
#ifdef TARGET_NR_socketcall
4404
    case TARGET_NR_socketcall:
4405
        ret = do_socketcall(arg1, arg2);
4406
        break;
4407
#endif
4408 4409
#ifdef TARGET_NR_accept
    case TARGET_NR_accept:
P
pbrook 已提交
4410
        ret = do_accept(arg1, arg2, arg3);
4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424
        break;
#endif
#ifdef TARGET_NR_bind
    case TARGET_NR_bind:
        ret = do_bind(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_connect
    case TARGET_NR_connect:
        ret = do_connect(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_getpeername
    case TARGET_NR_getpeername:
P
pbrook 已提交
4425
        ret = do_getpeername(arg1, arg2, arg3);
4426 4427 4428 4429
        break;
#endif
#ifdef TARGET_NR_getsockname
    case TARGET_NR_getsockname:
P
pbrook 已提交
4430
        ret = do_getsockname(arg1, arg2, arg3);
4431 4432 4433 4434 4435 4436 4437 4438 4439
        break;
#endif
#ifdef TARGET_NR_getsockopt
    case TARGET_NR_getsockopt:
        ret = do_getsockopt(arg1, arg2, arg3, arg4, arg5);
        break;
#endif
#ifdef TARGET_NR_listen
    case TARGET_NR_listen:
P
pbrook 已提交
4440
        ret = get_errno(listen(arg1, arg2));
4441 4442 4443 4444
        break;
#endif
#ifdef TARGET_NR_recv
    case TARGET_NR_recv:
P
pbrook 已提交
4445
        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
4446 4447 4448 4449
        break;
#endif
#ifdef TARGET_NR_recvfrom
    case TARGET_NR_recvfrom:
P
pbrook 已提交
4450
        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
4451 4452 4453 4454 4455 4456 4457 4458 4459
        break;
#endif
#ifdef TARGET_NR_recvmsg
    case TARGET_NR_recvmsg:
        ret = do_sendrecvmsg(arg1, arg2, arg3, 0);
        break;
#endif
#ifdef TARGET_NR_send
    case TARGET_NR_send:
P
pbrook 已提交
4460
        ret = do_sendto(arg1, arg2, arg3, arg4, 0, 0);
4461 4462 4463 4464 4465 4466 4467 4468 4469
        break;
#endif
#ifdef TARGET_NR_sendmsg
    case TARGET_NR_sendmsg:
        ret = do_sendrecvmsg(arg1, arg2, arg3, 1);
        break;
#endif
#ifdef TARGET_NR_sendto
    case TARGET_NR_sendto:
P
pbrook 已提交
4470
        ret = do_sendto(arg1, arg2, arg3, arg4, arg5, arg6);
4471 4472 4473 4474
        break;
#endif
#ifdef TARGET_NR_shutdown
    case TARGET_NR_shutdown:
P
pbrook 已提交
4475
        ret = get_errno(shutdown(arg1, arg2));
4476 4477 4478 4479 4480 4481 4482 4483 4484
        break;
#endif
#ifdef TARGET_NR_socket
    case TARGET_NR_socket:
        ret = do_socket(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_socketpair
    case TARGET_NR_socketpair:
P
pbrook 已提交
4485
        ret = do_socketpair(arg1, arg2, arg3, arg4);
4486 4487 4488 4489 4490 4491 4492
        break;
#endif
#ifdef TARGET_NR_setsockopt
    case TARGET_NR_setsockopt:
        ret = do_setsockopt(arg1, arg2, arg3, arg4, (socklen_t) arg5);
        break;
#endif
4493

4494
    case TARGET_NR_syslog:
4495 4496
        if (!(p = lock_user_string(arg2)))
            goto efault;
4497 4498
        ret = get_errno(sys_syslog((int)arg1, p, (int)arg3));
        unlock_user(p, arg2, 0);
4499 4500
        break;

4501
    case TARGET_NR_setitimer:
B
bellard 已提交
4502 4503 4504
        {
            struct itimerval value, ovalue, *pvalue;

4505
            if (arg2) {
B
bellard 已提交
4506
                pvalue = &value;
4507 4508 4509 4510
                if (copy_from_user_timeval(&pvalue->it_interval, arg2)
                    || copy_from_user_timeval(&pvalue->it_value,
                                              arg2 + sizeof(struct target_timeval)))
                    goto efault;
B
bellard 已提交
4511 4512 4513 4514
            } else {
                pvalue = NULL;
            }
            ret = get_errno(setitimer(arg1, pvalue, &ovalue));
4515
            if (!is_error(ret) && arg3) {
4516 4517 4518 4519 4520
                if (copy_to_user_timeval(arg3,
                                         &ovalue.it_interval)
                    || copy_to_user_timeval(arg3 + sizeof(struct target_timeval),
                                            &ovalue.it_value))
                    goto efault;
B
bellard 已提交
4521 4522 4523
            }
        }
        break;
4524
    case TARGET_NR_getitimer:
B
bellard 已提交
4525 4526
        {
            struct itimerval value;
4527

B
bellard 已提交
4528
            ret = get_errno(getitimer(arg1, &value));
4529
            if (!is_error(ret) && arg2) {
4530 4531 4532 4533 4534
                if (copy_to_user_timeval(arg2,
                                         &value.it_interval)
                    || copy_to_user_timeval(arg2 + sizeof(struct target_timeval),
                                            &value.it_value))
                    goto efault;
B
bellard 已提交
4535 4536 4537
            }
        }
        break;
4538
    case TARGET_NR_stat:
4539 4540
        if (!(p = lock_user_string(arg1)))
            goto efault;
4541 4542
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
4543 4544
        goto do_stat;
    case TARGET_NR_lstat:
4545 4546
        if (!(p = lock_user_string(arg1)))
            goto efault;
4547 4548
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
4549 4550 4551 4552 4553 4554
        goto do_stat;
    case TARGET_NR_fstat:
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat:
            if (!is_error(ret)) {
4555
                struct target_stat *target_st;
4556

4557 4558
                if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                    goto efault;
B
bellard 已提交
4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571
                __put_user(st.st_dev, &target_st->st_dev);
                __put_user(st.st_ino, &target_st->st_ino);
                __put_user(st.st_mode, &target_st->st_mode);
                __put_user(st.st_uid, &target_st->st_uid);
                __put_user(st.st_gid, &target_st->st_gid);
                __put_user(st.st_nlink, &target_st->st_nlink);
                __put_user(st.st_rdev, &target_st->st_rdev);
                __put_user(st.st_size, &target_st->st_size);
                __put_user(st.st_blksize, &target_st->st_blksize);
                __put_user(st.st_blocks, &target_st->st_blocks);
                __put_user(st.st_atime, &target_st->target_st_atime);
                __put_user(st.st_mtime, &target_st->target_st_mtime);
                __put_user(st.st_ctime, &target_st->target_st_ctime);
4572
                unlock_user_struct(target_st, arg2, 1);
4573 4574 4575
            }
        }
        break;
4576
#ifdef TARGET_NR_olduname
4577 4578
    case TARGET_NR_olduname:
        goto unimplemented;
4579 4580
#endif
#ifdef TARGET_NR_iopl
4581 4582
    case TARGET_NR_iopl:
        goto unimplemented;
4583
#endif
4584 4585 4586
    case TARGET_NR_vhangup:
        ret = get_errno(vhangup());
        break;
4587
#ifdef TARGET_NR_idle
4588 4589
    case TARGET_NR_idle:
        goto unimplemented;
B
bellard 已提交
4590 4591 4592 4593 4594
#endif
#ifdef TARGET_NR_syscall
    case TARGET_NR_syscall:
    	ret = do_syscall(cpu_env,arg1 & 0xffff,arg2,arg3,arg4,arg5,arg6,0);
    	break;
4595
#endif
4596 4597 4598
    case TARGET_NR_wait4:
        {
            int status;
4599
            abi_long status_ptr = arg2;
4600
            struct rusage rusage, *rusage_ptr;
4601
            abi_ulong target_rusage = arg4;
4602 4603 4604 4605 4606 4607
            if (target_rusage)
                rusage_ptr = &rusage;
            else
                rusage_ptr = NULL;
            ret = get_errno(wait4(arg1, &status, arg3, rusage_ptr));
            if (!is_error(ret)) {
4608 4609 4610
                if (status_ptr) {
                    if (put_user_s32(status, status_ptr))
                        goto efault;
4611
                }
4612 4613
                if (target_rusage)
                    host_to_target_rusage(target_rusage, &rusage);
4614 4615 4616
            }
        }
        break;
4617
#ifdef TARGET_NR_swapoff
4618
    case TARGET_NR_swapoff:
4619 4620
        if (!(p = lock_user_string(arg1)))
            goto efault;
4621 4622
        ret = get_errno(swapoff(p));
        unlock_user(p, arg1, 0);
4623
        break;
4624
#endif
4625
    case TARGET_NR_sysinfo:
B
bellard 已提交
4626
        {
4627
            struct target_sysinfo *target_value;
B
bellard 已提交
4628 4629
            struct sysinfo value;
            ret = get_errno(sysinfo(&value));
4630
            if (!is_error(ret) && arg1)
B
bellard 已提交
4631
            {
4632 4633
                if (!lock_user_struct(VERIFY_WRITE, target_value, arg1, 0))
                    goto efault;
B
bellard 已提交
4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647
                __put_user(value.uptime, &target_value->uptime);
                __put_user(value.loads[0], &target_value->loads[0]);
                __put_user(value.loads[1], &target_value->loads[1]);
                __put_user(value.loads[2], &target_value->loads[2]);
                __put_user(value.totalram, &target_value->totalram);
                __put_user(value.freeram, &target_value->freeram);
                __put_user(value.sharedram, &target_value->sharedram);
                __put_user(value.bufferram, &target_value->bufferram);
                __put_user(value.totalswap, &target_value->totalswap);
                __put_user(value.freeswap, &target_value->freeswap);
                __put_user(value.procs, &target_value->procs);
                __put_user(value.totalhigh, &target_value->totalhigh);
                __put_user(value.freehigh, &target_value->freehigh);
                __put_user(value.mem_unit, &target_value->mem_unit);
4648
                unlock_user_struct(target_value, arg1, 1);
B
bellard 已提交
4649 4650 4651
            }
        }
        break;
4652
#ifdef TARGET_NR_ipc
4653
    case TARGET_NR_ipc:
4654 4655
	ret = do_ipc(arg1, arg2, arg3, arg4, arg5, arg6);
	break;
4656
#endif
4657 4658 4659 4660
    case TARGET_NR_fsync:
        ret = get_errno(fsync(arg1));
        break;
    case TARGET_NR_clone:
P
pbrook 已提交
4661
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg4, arg5));
B
bellard 已提交
4662
        break;
4663 4664 4665
#ifdef __NR_exit_group
        /* new thread calls */
    case TARGET_NR_exit_group:
4666
        gdb_exit(cpu_env, arg1);
4667 4668 4669
        ret = get_errno(exit_group(arg1));
        break;
#endif
4670
    case TARGET_NR_setdomainname:
4671 4672
        if (!(p = lock_user_string(arg1)))
            goto efault;
4673 4674
        ret = get_errno(setdomainname(p, arg2));
        unlock_user(p, arg1, 0);
4675 4676 4677
        break;
    case TARGET_NR_uname:
        /* no need to transcode because we use the linux syscall */
B
bellard 已提交
4678 4679
        {
            struct new_utsname * buf;
4680

4681 4682
            if (!lock_user_struct(VERIFY_WRITE, buf, arg1, 0))
                goto efault;
B
bellard 已提交
4683 4684 4685 4686 4687
            ret = get_errno(sys_uname(buf));
            if (!is_error(ret)) {
                /* Overrite the native machine name with whatever is being
                   emulated. */
                strcpy (buf->machine, UNAME_MACHINE);
4688 4689 4690
                /* Allow the user to override the reported release.  */
                if (qemu_uname_release && *qemu_uname_release)
                  strcpy (buf->release, qemu_uname_release);
B
bellard 已提交
4691
            }
4692
            unlock_user_struct(buf, arg1, 1);
B
bellard 已提交
4693
        }
4694
        break;
B
bellard 已提交
4695
#ifdef TARGET_I386
4696
    case TARGET_NR_modify_ldt:
4697
        ret = do_modify_ldt(cpu_env, arg1, arg2, arg3);
B
bellard 已提交
4698
        break;
4699
#if !defined(TARGET_X86_64)
B
bellard 已提交
4700 4701 4702
    case TARGET_NR_vm86old:
        goto unimplemented;
    case TARGET_NR_vm86:
4703
        ret = do_vm86(cpu_env, arg1, arg2);
B
bellard 已提交
4704
        break;
4705
#endif
B
bellard 已提交
4706
#endif
4707 4708
    case TARGET_NR_adjtimex:
        goto unimplemented;
4709
#ifdef TARGET_NR_create_module
4710
    case TARGET_NR_create_module:
4711
#endif
4712 4713
    case TARGET_NR_init_module:
    case TARGET_NR_delete_module:
4714
#ifdef TARGET_NR_get_kernel_syms
4715
    case TARGET_NR_get_kernel_syms:
4716
#endif
4717 4718 4719 4720 4721 4722 4723 4724 4725
        goto unimplemented;
    case TARGET_NR_quotactl:
        goto unimplemented;
    case TARGET_NR_getpgid:
        ret = get_errno(getpgid(arg1));
        break;
    case TARGET_NR_fchdir:
        ret = get_errno(fchdir(arg1));
        break;
4726
#ifdef TARGET_NR_bdflush /* not on x86_64 */
4727 4728
    case TARGET_NR_bdflush:
        goto unimplemented;
4729
#endif
4730
#ifdef TARGET_NR_sysfs
4731 4732
    case TARGET_NR_sysfs:
        goto unimplemented;
4733
#endif
4734
    case TARGET_NR_personality:
B
bellard 已提交
4735
        ret = get_errno(personality(arg1));
4736
        break;
4737
#ifdef TARGET_NR_afs_syscall
4738 4739
    case TARGET_NR_afs_syscall:
        goto unimplemented;
4740
#endif
4741
#ifdef TARGET_NR__llseek /* Not on alpha */
4742 4743
    case TARGET_NR__llseek:
        {
B
bellard 已提交
4744 4745
#if defined (__x86_64__)
            ret = get_errno(lseek(arg1, ((uint64_t )arg2 << 32) | arg3, arg5));
4746 4747
            if (put_user_s64(ret, arg4))
                goto efault;
B
bellard 已提交
4748
#else
4749 4750
            int64_t res;
            ret = get_errno(_llseek(arg1, arg2, arg3, &res, arg5));
4751 4752
            if (put_user_s64(res, arg4))
                goto efault;
B
bellard 已提交
4753
#endif
4754 4755
        }
        break;
4756
#endif
4757
    case TARGET_NR_getdents:
4758
#if TARGET_ABI_BITS != 32
4759
        goto unimplemented;
4760
#elif TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
B
bellard 已提交
4761
        {
4762
            struct target_dirent *target_dirp;
B
bellard 已提交
4763
            struct dirent *dirp;
4764
            abi_long count = arg3;
B
bellard 已提交
4765 4766

	    dirp = malloc(count);
4767
	    if (!dirp) {
4768
                ret = -TARGET_ENOMEM;
4769 4770
                goto fail;
            }
4771

B
bellard 已提交
4772 4773 4774 4775 4776 4777 4778 4779 4780 4781
            ret = get_errno(sys_getdents(arg1, dirp, count));
            if (!is_error(ret)) {
                struct dirent *de;
		struct target_dirent *tde;
                int len = ret;
                int reclen, treclen;
		int count1, tnamelen;

		count1 = 0;
                de = dirp;
4782 4783
                if (!(target_dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                    goto efault;
B
bellard 已提交
4784 4785 4786
		tde = target_dirp;
                while (len > 0) {
                    reclen = de->d_reclen;
4787
		    treclen = reclen - (2 * (sizeof(long) - sizeof(abi_long)));
B
bellard 已提交
4788 4789 4790
                    tde->d_reclen = tswap16(treclen);
                    tde->d_ino = tswapl(de->d_ino);
                    tde->d_off = tswapl(de->d_off);
4791
		    tnamelen = treclen - (2 * sizeof(abi_long) + 2);
B
bellard 已提交
4792 4793
		    if (tnamelen > 256)
                        tnamelen = 256;
B
bellard 已提交
4794
                    /* XXX: may not be correct */
B
bellard 已提交
4795 4796 4797
		    strncpy(tde->d_name, de->d_name, tnamelen);
                    de = (struct dirent *)((char *)de + reclen);
                    len -= reclen;
J
j_mayer 已提交
4798
                    tde = (struct target_dirent *)((char *)tde + treclen);
B
bellard 已提交
4799 4800 4801
		    count1 += treclen;
                }
		ret = count1;
4802
                unlock_user(target_dirp, arg2, ret);
B
bellard 已提交
4803 4804 4805 4806
            }
	    free(dirp);
        }
#else
4807
        {
4808
            struct dirent *dirp;
4809
            abi_long count = arg3;
B
bellard 已提交
4810

4811 4812
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
4813
            ret = get_errno(sys_getdents(arg1, dirp, count));
4814 4815 4816 4817 4818 4819
            if (!is_error(ret)) {
                struct dirent *de;
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
4820
                    reclen = de->d_reclen;
4821 4822
                    if (reclen > len)
                        break;
B
bellard 已提交
4823
                    de->d_reclen = tswap16(reclen);
4824 4825 4826 4827 4828 4829
                    tswapls(&de->d_ino);
                    tswapls(&de->d_off);
                    de = (struct dirent *)((char *)de + reclen);
                    len -= reclen;
                }
            }
4830
            unlock_user(dirp, arg2, ret);
4831
        }
B
bellard 已提交
4832
#endif
4833
        break;
T
ths 已提交
4834
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
4835 4836
    case TARGET_NR_getdents64:
        {
4837
            struct dirent64 *dirp;
4838
            abi_long count = arg3;
4839 4840
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
4841 4842 4843 4844 4845 4846 4847
            ret = get_errno(sys_getdents64(arg1, dirp, count));
            if (!is_error(ret)) {
                struct dirent64 *de;
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
4848
                    reclen = de->d_reclen;
B
bellard 已提交
4849 4850
                    if (reclen > len)
                        break;
B
bellard 已提交
4851
                    de->d_reclen = tswap16(reclen);
B
bellard 已提交
4852 4853
                    tswap64s((uint64_t *)&de->d_ino);
                    tswap64s((uint64_t *)&de->d_off);
B
bellard 已提交
4854 4855 4856 4857
                    de = (struct dirent64 *)((char *)de + reclen);
                    len -= reclen;
                }
            }
4858
            unlock_user(dirp, arg2, ret);
B
bellard 已提交
4859 4860
        }
        break;
4861
#endif /* TARGET_NR_getdents64 */
4862
#ifdef TARGET_NR__newselect
4863
    case TARGET_NR__newselect:
4864
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
4865
        break;
4866 4867
#endif
#ifdef TARGET_NR_poll
B
bellard 已提交
4868 4869
    case TARGET_NR_poll:
        {
4870
            struct target_pollfd *target_pfd;
B
bellard 已提交
4871 4872 4873
            unsigned int nfds = arg2;
            int timeout = arg3;
            struct pollfd *pfd;
B
bellard 已提交
4874
            unsigned int i;
B
bellard 已提交
4875

4876 4877 4878
            target_pfd = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_pollfd) * nfds, 1);
            if (!target_pfd)
                goto efault;
B
bellard 已提交
4879 4880
            pfd = alloca(sizeof(struct pollfd) * nfds);
            for(i = 0; i < nfds; i++) {
B
bellard 已提交
4881 4882
                pfd[i].fd = tswap32(target_pfd[i].fd);
                pfd[i].events = tswap16(target_pfd[i].events);
B
bellard 已提交
4883 4884 4885 4886
            }
            ret = get_errno(poll(pfd, nfds, timeout));
            if (!is_error(ret)) {
                for(i = 0; i < nfds; i++) {
B
bellard 已提交
4887
                    target_pfd[i].revents = tswap16(pfd[i].revents);
B
bellard 已提交
4888
                }
4889 4890
                ret += nfds * (sizeof(struct target_pollfd)
                               - sizeof(struct pollfd));
B
bellard 已提交
4891
            }
4892
            unlock_user(target_pfd, arg1, ret);
B
bellard 已提交
4893 4894
        }
        break;
4895
#endif
4896
    case TARGET_NR_flock:
B
bellard 已提交
4897 4898 4899
        /* NOTE: the flock constant seems to be the same for every
           Linux platform */
        ret = get_errno(flock(arg1, arg2));
4900 4901 4902 4903 4904 4905 4906
        break;
    case TARGET_NR_readv:
        {
            int count = arg3;
            struct iovec *vec;

            vec = alloca(count * sizeof(struct iovec));
B
bellard 已提交
4907 4908
            if (lock_iovec(VERIFY_WRITE, vec, arg2, count, 0) < 0)
                goto efault;
4909
            ret = get_errno(readv(arg1, vec, count));
4910
            unlock_iovec(vec, arg2, count, 1);
4911 4912 4913 4914 4915 4916 4917 4918
        }
        break;
    case TARGET_NR_writev:
        {
            int count = arg3;
            struct iovec *vec;

            vec = alloca(count * sizeof(struct iovec));
B
bellard 已提交
4919 4920
            if (lock_iovec(VERIFY_READ, vec, arg2, count, 1) < 0)
                goto efault;
4921
            ret = get_errno(writev(arg1, vec, count));
4922
            unlock_iovec(vec, arg2, count, 0);
4923 4924 4925 4926 4927
        }
        break;
    case TARGET_NR_getsid:
        ret = get_errno(getsid(arg1));
        break;
4928
#if defined(TARGET_NR_fdatasync) /* Not on alpha (osf_datasync ?) */
4929
    case TARGET_NR_fdatasync:
B
bellard 已提交
4930 4931
        ret = get_errno(fdatasync(arg1));
        break;
4932
#endif
4933
    case TARGET_NR__sysctl:
4934
        /* We don't implement this, but ENOTDIR is always a safe
B
bellard 已提交
4935
           return value. */
4936 4937
        ret = -TARGET_ENOTDIR;
        break;
4938
    case TARGET_NR_sched_setparam:
B
bellard 已提交
4939
        {
4940
            struct sched_param *target_schp;
B
bellard 已提交
4941
            struct sched_param schp;
4942

4943 4944
            if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1))
                goto efault;
B
bellard 已提交
4945
            schp.sched_priority = tswap32(target_schp->sched_priority);
4946
            unlock_user_struct(target_schp, arg2, 0);
B
bellard 已提交
4947 4948 4949
            ret = get_errno(sched_setparam(arg1, &schp));
        }
        break;
4950
    case TARGET_NR_sched_getparam:
B
bellard 已提交
4951
        {
4952
            struct sched_param *target_schp;
B
bellard 已提交
4953 4954 4955
            struct sched_param schp;
            ret = get_errno(sched_getparam(arg1, &schp));
            if (!is_error(ret)) {
4956 4957
                if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0))
                    goto efault;
B
bellard 已提交
4958
                target_schp->sched_priority = tswap32(schp.sched_priority);
4959
                unlock_user_struct(target_schp, arg2, 1);
B
bellard 已提交
4960 4961 4962
            }
        }
        break;
4963
    case TARGET_NR_sched_setscheduler:
B
bellard 已提交
4964
        {
4965
            struct sched_param *target_schp;
B
bellard 已提交
4966
            struct sched_param schp;
4967 4968
            if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1))
                goto efault;
B
bellard 已提交
4969
            schp.sched_priority = tswap32(target_schp->sched_priority);
4970
            unlock_user_struct(target_schp, arg3, 0);
B
bellard 已提交
4971 4972 4973
            ret = get_errno(sched_setscheduler(arg1, arg2, &schp));
        }
        break;
4974
    case TARGET_NR_sched_getscheduler:
B
bellard 已提交
4975 4976
        ret = get_errno(sched_getscheduler(arg1));
        break;
4977 4978 4979 4980
    case TARGET_NR_sched_yield:
        ret = get_errno(sched_yield());
        break;
    case TARGET_NR_sched_get_priority_max:
B
bellard 已提交
4981 4982
        ret = get_errno(sched_get_priority_max(arg1));
        break;
4983
    case TARGET_NR_sched_get_priority_min:
B
bellard 已提交
4984 4985
        ret = get_errno(sched_get_priority_min(arg1));
        break;
4986
    case TARGET_NR_sched_rr_get_interval:
B
bellard 已提交
4987 4988 4989 4990
        {
            struct timespec ts;
            ret = get_errno(sched_rr_get_interval(arg1, &ts));
            if (!is_error(ret)) {
4991
                host_to_target_timespec(arg2, &ts);
B
bellard 已提交
4992 4993 4994
            }
        }
        break;
4995
    case TARGET_NR_nanosleep:
B
bellard 已提交
4996 4997
        {
            struct timespec req, rem;
4998
            target_to_host_timespec(&req, arg1);
B
bellard 已提交
4999
            ret = get_errno(nanosleep(&req, &rem));
5000 5001
            if (is_error(ret) && arg2) {
                host_to_target_timespec(arg2, &rem);
B
bellard 已提交
5002 5003 5004
            }
        }
        break;
5005
#ifdef TARGET_NR_query_module
5006
    case TARGET_NR_query_module:
B
bellard 已提交
5007
        goto unimplemented;
5008 5009
#endif
#ifdef TARGET_NR_nfsservctl
5010
    case TARGET_NR_nfsservctl:
B
bellard 已提交
5011
        goto unimplemented;
5012
#endif
5013
    case TARGET_NR_prctl:
5014 5015 5016 5017 5018 5019
        switch (arg1)
            {
            case PR_GET_PDEATHSIG:
                {
                    int deathsig;
                    ret = get_errno(prctl(arg1, &deathsig, arg3, arg4, arg5));
5020 5021 5022
                    if (!is_error(ret) && arg2
                        && put_user_ual(deathsig, arg2))
                        goto efault;
5023 5024 5025 5026 5027 5028
                }
                break;
            default:
                ret = get_errno(prctl(arg1, arg2, arg3, arg4, arg5));
                break;
            }
5029
        break;
B
bellard 已提交
5030 5031 5032 5033 5034 5035 5036 5037 5038
#ifdef TARGET_NR_arch_prctl
    case TARGET_NR_arch_prctl:
#if defined(TARGET_I386) && !defined(TARGET_ABI32)
        ret = do_arch_prctl(cpu_env, arg1, arg2);
        break;
#else
        goto unimplemented;
#endif
#endif
5039
#ifdef TARGET_NR_pread
5040
    case TARGET_NR_pread:
5041 5042
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
5043 5044
        ret = get_errno(pread(arg1, p, arg3, arg4));
        unlock_user(p, arg2, ret);
5045
        break;
5046
    case TARGET_NR_pwrite:
5047 5048
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
5049 5050
        ret = get_errno(pwrite(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
5051
        break;
A
aurel32 已提交
5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065
#endif
#ifdef TARGET_NR_pread64
    case TARGET_NR_pread64:
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
        ret = get_errno(pread64(arg1, p, arg3, target_offset64(arg4, arg5)));
        unlock_user(p, arg2, ret);
        break;
    case TARGET_NR_pwrite64:
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
        ret = get_errno(pwrite64(arg1, p, arg3, target_offset64(arg4, arg5)));
        unlock_user(p, arg2, 0);
        break;
5066
#endif
5067
    case TARGET_NR_getcwd:
5068 5069
        if (!(p = lock_user(VERIFY_WRITE, arg1, arg2, 0)))
            goto efault;
5070 5071
        ret = get_errno(sys_getcwd1(p, arg2));
        unlock_user(p, arg1, ret);
5072 5073
        break;
    case TARGET_NR_capget:
B
bellard 已提交
5074
        goto unimplemented;
5075
    case TARGET_NR_capset:
B
bellard 已提交
5076
        goto unimplemented;
5077
    case TARGET_NR_sigaltstack:
5078 5079
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) || \
    defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_ALPHA)
5080
        ret = do_sigaltstack(arg1, arg2, get_sp_from_cpustate((CPUState *)cpu_env));
5081 5082
        break;
#else
B
bellard 已提交
5083
        goto unimplemented;
5084
#endif
5085
    case TARGET_NR_sendfile:
B
bellard 已提交
5086
        goto unimplemented;
5087
#ifdef TARGET_NR_getpmsg
5088
    case TARGET_NR_getpmsg:
B
bellard 已提交
5089
        goto unimplemented;
5090 5091
#endif
#ifdef TARGET_NR_putpmsg
5092
    case TARGET_NR_putpmsg:
B
bellard 已提交
5093
        goto unimplemented;
5094
#endif
B
bellard 已提交
5095
#ifdef TARGET_NR_vfork
5096
    case TARGET_NR_vfork:
P
pbrook 已提交
5097 5098
        ret = get_errno(do_fork(cpu_env, CLONE_VFORK | CLONE_VM | SIGCHLD,
                        0, 0, 0, 0));
5099
        break;
B
bellard 已提交
5100
#endif
5101
#ifdef TARGET_NR_ugetrlimit
5102
    case TARGET_NR_ugetrlimit:
B
bellard 已提交
5103 5104 5105 5106
    {
	struct rlimit rlim;
	ret = get_errno(getrlimit(arg1, &rlim));
	if (!is_error(ret)) {
5107
	    struct target_rlimit *target_rlim;
5108 5109
            if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                goto efault;
B
bellard 已提交
5110 5111
	    target_rlim->rlim_cur = tswapl(rlim.rlim_cur);
	    target_rlim->rlim_max = tswapl(rlim.rlim_max);
5112
            unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
5113 5114 5115
	}
	break;
    }
5116
#endif
B
bellard 已提交
5117
#ifdef TARGET_NR_truncate64
5118
    case TARGET_NR_truncate64:
5119 5120
        if (!(p = lock_user_string(arg1)))
            goto efault;
5121 5122
	ret = target_truncate64(cpu_env, p, arg2, arg3, arg4);
        unlock_user(p, arg1, 0);
B
bellard 已提交
5123
	break;
B
bellard 已提交
5124 5125
#endif
#ifdef TARGET_NR_ftruncate64
5126
    case TARGET_NR_ftruncate64:
P
pbrook 已提交
5127
	ret = target_ftruncate64(cpu_env, arg1, arg2, arg3, arg4);
B
bellard 已提交
5128
	break;
B
bellard 已提交
5129 5130
#endif
#ifdef TARGET_NR_stat64
5131
    case TARGET_NR_stat64:
5132 5133
        if (!(p = lock_user_string(arg1)))
            goto efault;
5134 5135
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
B
bellard 已提交
5136
        goto do_stat64;
B
bellard 已提交
5137 5138
#endif
#ifdef TARGET_NR_lstat64
5139
    case TARGET_NR_lstat64:
5140 5141
        if (!(p = lock_user_string(arg1)))
            goto efault;
5142 5143
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
B
bellard 已提交
5144
        goto do_stat64;
B
bellard 已提交
5145 5146
#endif
#ifdef TARGET_NR_fstat64
5147
    case TARGET_NR_fstat64:
B
bellard 已提交
5148 5149 5150 5151
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat64:
            if (!is_error(ret)) {
P
pbrook 已提交
5152 5153
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
5154
                    struct target_eabi_stat64 *target_st;
5155 5156 5157

                    if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                        goto efault;
P
pbrook 已提交
5158
                    memset(target_st, 0, sizeof(struct target_eabi_stat64));
5159 5160
                    __put_user(st.st_dev, &target_st->st_dev);
                    __put_user(st.st_ino, &target_st->st_ino);
P
pbrook 已提交
5161
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175
                    __put_user(st.st_ino, &target_st->__st_ino);
#endif
                    __put_user(st.st_mode, &target_st->st_mode);
                    __put_user(st.st_nlink, &target_st->st_nlink);
                    __put_user(st.st_uid, &target_st->st_uid);
                    __put_user(st.st_gid, &target_st->st_gid);
                    __put_user(st.st_rdev, &target_st->st_rdev);
                    __put_user(st.st_size, &target_st->st_size);
                    __put_user(st.st_blksize, &target_st->st_blksize);
                    __put_user(st.st_blocks, &target_st->st_blocks);
                    __put_user(st.st_atime, &target_st->target_st_atime);
                    __put_user(st.st_mtime, &target_st->target_st_mtime);
                    __put_user(st.st_ctime, &target_st->target_st_ctime);
                    unlock_user_struct(target_st, arg2, 1);
P
pbrook 已提交
5176 5177 5178
                } else
#endif
                {
5179
                    struct target_stat64 *target_st;
5180 5181 5182

                    if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                        goto efault;
P
pbrook 已提交
5183
                    memset(target_st, 0, sizeof(struct target_stat64));
5184 5185
                    __put_user(st.st_dev, &target_st->st_dev);
                    __put_user(st.st_ino, &target_st->st_ino);
5186
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
5187
                    __put_user(st.st_ino, &target_st->__st_ino);
P
pbrook 已提交
5188
#endif
5189 5190 5191 5192 5193
                    __put_user(st.st_mode, &target_st->st_mode);
                    __put_user(st.st_nlink, &target_st->st_nlink);
                    __put_user(st.st_uid, &target_st->st_uid);
                    __put_user(st.st_gid, &target_st->st_gid);
                    __put_user(st.st_rdev, &target_st->st_rdev);
P
pbrook 已提交
5194
                    /* XXX: better use of kernel struct */
5195 5196 5197 5198 5199 5200 5201
                    __put_user(st.st_size, &target_st->st_size);
                    __put_user(st.st_blksize, &target_st->st_blksize);
                    __put_user(st.st_blocks, &target_st->st_blocks);
                    __put_user(st.st_atime, &target_st->target_st_atime);
                    __put_user(st.st_mtime, &target_st->target_st_mtime);
                    __put_user(st.st_ctime, &target_st->target_st_ctime);
                    unlock_user_struct(target_st, arg2, 1);
P
pbrook 已提交
5202
                }
B
bellard 已提交
5203 5204 5205
            }
        }
        break;
B
bellard 已提交
5206
#endif
5207 5208
#ifdef USE_UID16
    case TARGET_NR_lchown:
5209 5210
        if (!(p = lock_user_string(arg1)))
            goto efault;
5211 5212
        ret = get_errno(lchown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234
        break;
    case TARGET_NR_getuid:
        ret = get_errno(high2lowuid(getuid()));
        break;
    case TARGET_NR_getgid:
        ret = get_errno(high2lowgid(getgid()));
        break;
    case TARGET_NR_geteuid:
        ret = get_errno(high2lowuid(geteuid()));
        break;
    case TARGET_NR_getegid:
        ret = get_errno(high2lowgid(getegid()));
        break;
    case TARGET_NR_setreuid:
        ret = get_errno(setreuid(low2highuid(arg1), low2highuid(arg2)));
        break;
    case TARGET_NR_setregid:
        ret = get_errno(setregid(low2highgid(arg1), low2highgid(arg2)));
        break;
    case TARGET_NR_getgroups:
        {
            int gidsetsize = arg1;
5235
            uint16_t *target_grouplist;
5236 5237 5238 5239 5240 5241
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
            if (!is_error(ret)) {
5242 5243 5244
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 2, 0);
                if (!target_grouplist)
                    goto efault;
5245 5246
                for(i = 0;i < gidsetsize; i++)
                    target_grouplist[i] = tswap16(grouplist[i]);
5247
                unlock_user(target_grouplist, arg2, gidsetsize * 2);
5248 5249 5250 5251 5252 5253
            }
        }
        break;
    case TARGET_NR_setgroups:
        {
            int gidsetsize = arg1;
5254
            uint16_t *target_grouplist;
5255 5256 5257 5258
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
5259 5260 5261 5262 5263
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 2, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
5264 5265
            for(i = 0;i < gidsetsize; i++)
                grouplist[i] = tswap16(target_grouplist[i]);
5266
            unlock_user(target_grouplist, arg2, 0);
5267 5268 5269 5270 5271 5272
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
    case TARGET_NR_fchown:
        ret = get_errno(fchown(arg1, low2highuid(arg2), low2highgid(arg3)));
        break;
5273 5274
#if defined(TARGET_NR_fchownat) && defined(__NR_fchownat)
    case TARGET_NR_fchownat:
5275 5276 5277 5278
        if (!(p = lock_user_string(arg2))) 
            goto efault;
        ret = get_errno(sys_fchownat(arg1, p, low2highuid(arg3), low2highgid(arg4), arg5));
        unlock_user(p, arg2, 0);
5279 5280
        break;
#endif
5281 5282
#ifdef TARGET_NR_setresuid
    case TARGET_NR_setresuid:
5283 5284
        ret = get_errno(setresuid(low2highuid(arg1),
                                  low2highuid(arg2),
5285 5286 5287 5288 5289 5290
                                  low2highuid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresuid
    case TARGET_NR_getresuid:
        {
5291
            uid_t ruid, euid, suid;
5292 5293
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
5294 5295 5296 5297
                if (put_user_u16(high2lowuid(ruid), arg1)
                    || put_user_u16(high2lowuid(euid), arg2)
                    || put_user_u16(high2lowuid(suid), arg3))
                    goto efault;
5298 5299 5300 5301 5302 5303
            }
        }
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_setresgid:
5304 5305
        ret = get_errno(setresgid(low2highgid(arg1),
                                  low2highgid(arg2),
5306 5307 5308 5309 5310 5311
                                  low2highgid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_getresgid:
        {
5312
            gid_t rgid, egid, sgid;
5313 5314
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
5315 5316 5317 5318
                if (put_user_u16(high2lowgid(rgid), arg1)
                    || put_user_u16(high2lowgid(egid), arg2)
                    || put_user_u16(high2lowgid(sgid), arg3))
                    goto efault;
5319 5320 5321 5322 5323
            }
        }
        break;
#endif
    case TARGET_NR_chown:
5324 5325
        if (!(p = lock_user_string(arg1)))
            goto efault;
5326 5327
        ret = get_errno(chown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342
        break;
    case TARGET_NR_setuid:
        ret = get_errno(setuid(low2highuid(arg1)));
        break;
    case TARGET_NR_setgid:
        ret = get_errno(setgid(low2highgid(arg1)));
        break;
    case TARGET_NR_setfsuid:
        ret = get_errno(setfsuid(arg1));
        break;
    case TARGET_NR_setfsgid:
        ret = get_errno(setfsgid(arg1));
        break;
#endif /* USE_UID16 */

B
bellard 已提交
5343
#ifdef TARGET_NR_lchown32
5344
    case TARGET_NR_lchown32:
5345 5346
        if (!(p = lock_user_string(arg1)))
            goto efault;
5347 5348
        ret = get_errno(lchown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
5349
        break;
B
bellard 已提交
5350 5351
#endif
#ifdef TARGET_NR_getuid32
5352
    case TARGET_NR_getuid32:
B
bellard 已提交
5353 5354
        ret = get_errno(getuid());
        break;
B
bellard 已提交
5355 5356
#endif
#ifdef TARGET_NR_getgid32
5357
    case TARGET_NR_getgid32:
B
bellard 已提交
5358 5359
        ret = get_errno(getgid());
        break;
B
bellard 已提交
5360 5361
#endif
#ifdef TARGET_NR_geteuid32
5362
    case TARGET_NR_geteuid32:
B
bellard 已提交
5363 5364
        ret = get_errno(geteuid());
        break;
B
bellard 已提交
5365 5366
#endif
#ifdef TARGET_NR_getegid32
5367
    case TARGET_NR_getegid32:
B
bellard 已提交
5368 5369
        ret = get_errno(getegid());
        break;
B
bellard 已提交
5370 5371
#endif
#ifdef TARGET_NR_setreuid32
5372
    case TARGET_NR_setreuid32:
B
bellard 已提交
5373 5374
        ret = get_errno(setreuid(arg1, arg2));
        break;
B
bellard 已提交
5375 5376
#endif
#ifdef TARGET_NR_setregid32
5377
    case TARGET_NR_setregid32:
B
bellard 已提交
5378 5379
        ret = get_errno(setregid(arg1, arg2));
        break;
B
bellard 已提交
5380 5381
#endif
#ifdef TARGET_NR_getgroups32
5382
    case TARGET_NR_getgroups32:
B
bellard 已提交
5383 5384
        {
            int gidsetsize = arg1;
5385
            uint32_t *target_grouplist;
B
bellard 已提交
5386 5387 5388 5389 5390 5391
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
            if (!is_error(ret)) {
5392 5393 5394 5395 5396
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 4, 0);
                if (!target_grouplist) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
B
bellard 已提交
5397
                for(i = 0;i < gidsetsize; i++)
5398 5399
                    target_grouplist[i] = tswap32(grouplist[i]);
                unlock_user(target_grouplist, arg2, gidsetsize * 4);
B
bellard 已提交
5400 5401 5402
            }
        }
        break;
B
bellard 已提交
5403 5404
#endif
#ifdef TARGET_NR_setgroups32
5405
    case TARGET_NR_setgroups32:
B
bellard 已提交
5406 5407
        {
            int gidsetsize = arg1;
5408
            uint32_t *target_grouplist;
B
bellard 已提交
5409 5410
            gid_t *grouplist;
            int i;
5411

B
bellard 已提交
5412
            grouplist = alloca(gidsetsize * sizeof(gid_t));
5413 5414 5415 5416 5417
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 4, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
B
bellard 已提交
5418
            for(i = 0;i < gidsetsize; i++)
5419 5420
                grouplist[i] = tswap32(target_grouplist[i]);
            unlock_user(target_grouplist, arg2, 0);
B
bellard 已提交
5421 5422 5423
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
B
bellard 已提交
5424 5425
#endif
#ifdef TARGET_NR_fchown32
5426
    case TARGET_NR_fchown32:
B
bellard 已提交
5427 5428
        ret = get_errno(fchown(arg1, arg2, arg3));
        break;
B
bellard 已提交
5429 5430
#endif
#ifdef TARGET_NR_setresuid32
5431
    case TARGET_NR_setresuid32:
B
bellard 已提交
5432 5433
        ret = get_errno(setresuid(arg1, arg2, arg3));
        break;
B
bellard 已提交
5434 5435
#endif
#ifdef TARGET_NR_getresuid32
5436
    case TARGET_NR_getresuid32:
B
bellard 已提交
5437
        {
5438
            uid_t ruid, euid, suid;
B
bellard 已提交
5439 5440
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
5441 5442 5443 5444
                if (put_user_u32(ruid, arg1)
                    || put_user_u32(euid, arg2)
                    || put_user_u32(suid, arg3))
                    goto efault;
B
bellard 已提交
5445 5446 5447
            }
        }
        break;
B
bellard 已提交
5448 5449
#endif
#ifdef TARGET_NR_setresgid32
5450
    case TARGET_NR_setresgid32:
B
bellard 已提交
5451 5452
        ret = get_errno(setresgid(arg1, arg2, arg3));
        break;
B
bellard 已提交
5453 5454
#endif
#ifdef TARGET_NR_getresgid32
5455
    case TARGET_NR_getresgid32:
B
bellard 已提交
5456
        {
5457
            gid_t rgid, egid, sgid;
B
bellard 已提交
5458 5459
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
5460 5461 5462 5463
                if (put_user_u32(rgid, arg1)
                    || put_user_u32(egid, arg2)
                    || put_user_u32(sgid, arg3))
                    goto efault;
B
bellard 已提交
5464 5465 5466
            }
        }
        break;
B
bellard 已提交
5467 5468
#endif
#ifdef TARGET_NR_chown32
5469
    case TARGET_NR_chown32:
5470 5471
        if (!(p = lock_user_string(arg1)))
            goto efault;
5472 5473
        ret = get_errno(chown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
5474
        break;
B
bellard 已提交
5475 5476
#endif
#ifdef TARGET_NR_setuid32
5477
    case TARGET_NR_setuid32:
B
bellard 已提交
5478 5479
        ret = get_errno(setuid(arg1));
        break;
B
bellard 已提交
5480 5481
#endif
#ifdef TARGET_NR_setgid32
5482
    case TARGET_NR_setgid32:
B
bellard 已提交
5483 5484
        ret = get_errno(setgid(arg1));
        break;
B
bellard 已提交
5485 5486
#endif
#ifdef TARGET_NR_setfsuid32
5487
    case TARGET_NR_setfsuid32:
B
bellard 已提交
5488 5489
        ret = get_errno(setfsuid(arg1));
        break;
B
bellard 已提交
5490 5491
#endif
#ifdef TARGET_NR_setfsgid32
5492
    case TARGET_NR_setfsgid32:
B
bellard 已提交
5493 5494
        ret = get_errno(setfsgid(arg1));
        break;
B
bellard 已提交
5495
#endif
5496

5497
    case TARGET_NR_pivot_root:
B
bellard 已提交
5498
        goto unimplemented;
B
bellard 已提交
5499
#ifdef TARGET_NR_mincore
5500
    case TARGET_NR_mincore:
B
bellard 已提交
5501
        goto unimplemented;
B
bellard 已提交
5502 5503
#endif
#ifdef TARGET_NR_madvise
5504
    case TARGET_NR_madvise:
5505 5506 5507 5508 5509 5510
        /* A straight passthrough may not be safe because qemu sometimes
           turns private flie-backed mappings into anonymous mappings.
           This will break MADV_DONTNEED.
           This is a hint, so ignoring and returning success is ok.  */
        ret = get_errno(0);
        break;
B
bellard 已提交
5511
#endif
5512
#if TARGET_ABI_BITS == 32
5513
    case TARGET_NR_fcntl64:
B
bellard 已提交
5514
    {
T
ths 已提交
5515
	int cmd;
B
bellard 已提交
5516
	struct flock64 fl;
5517
	struct target_flock64 *target_fl;
P
pbrook 已提交
5518
#ifdef TARGET_ARM
5519
	struct target_eabi_flock64 *target_efl;
P
pbrook 已提交
5520
#endif
B
bellard 已提交
5521

T
ths 已提交
5522 5523 5524
        switch(arg2){
        case TARGET_F_GETLK64:
            cmd = F_GETLK64;
5525
            break;
T
ths 已提交
5526 5527
        case TARGET_F_SETLK64:
            cmd = F_SETLK64;
5528
            break;
T
ths 已提交
5529 5530
        case TARGET_F_SETLKW64:
            cmd = F_SETLK64;
5531
            break;
T
ths 已提交
5532 5533
        default:
            cmd = arg2;
5534
            break;
T
ths 已提交
5535 5536
        }

B
bellard 已提交
5537
        switch(arg2) {
T
ths 已提交
5538
        case TARGET_F_GETLK64:
T
ths 已提交
5539 5540
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
5541 5542
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
T
ths 已提交
5543 5544 5545 5546 5547 5548 5549 5550 5551
                fl.l_type = tswap16(target_efl->l_type);
                fl.l_whence = tswap16(target_efl->l_whence);
                fl.l_start = tswap64(target_efl->l_start);
                fl.l_len = tswap64(target_efl->l_len);
                fl.l_pid = tswapl(target_efl->l_pid);
                unlock_user_struct(target_efl, arg3, 0);
            } else
#endif
            {
B
bellard 已提交
5552 5553
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
T
ths 已提交
5554 5555 5556 5557 5558 5559 5560
                fl.l_type = tswap16(target_fl->l_type);
                fl.l_whence = tswap16(target_fl->l_whence);
                fl.l_start = tswap64(target_fl->l_start);
                fl.l_len = tswap64(target_fl->l_len);
                fl.l_pid = tswapl(target_fl->l_pid);
                unlock_user_struct(target_fl, arg3, 0);
            }
T
ths 已提交
5561
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
5562
	    if (ret == 0) {
P
pbrook 已提交
5563 5564
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
5565 5566
                    if (!lock_user_struct(VERIFY_WRITE, target_efl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
5567 5568 5569 5570 5571
                    target_efl->l_type = tswap16(fl.l_type);
                    target_efl->l_whence = tswap16(fl.l_whence);
                    target_efl->l_start = tswap64(fl.l_start);
                    target_efl->l_len = tswap64(fl.l_len);
                    target_efl->l_pid = tswapl(fl.l_pid);
5572
                    unlock_user_struct(target_efl, arg3, 1);
P
pbrook 已提交
5573 5574 5575
                } else
#endif
                {
B
bellard 已提交
5576 5577
                    if (!lock_user_struct(VERIFY_WRITE, target_fl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
5578 5579 5580 5581 5582
                    target_fl->l_type = tswap16(fl.l_type);
                    target_fl->l_whence = tswap16(fl.l_whence);
                    target_fl->l_start = tswap64(fl.l_start);
                    target_fl->l_len = tswap64(fl.l_len);
                    target_fl->l_pid = tswapl(fl.l_pid);
5583
                    unlock_user_struct(target_fl, arg3, 1);
P
pbrook 已提交
5584
                }
B
bellard 已提交
5585 5586 5587
	    }
	    break;

T
ths 已提交
5588 5589
        case TARGET_F_SETLK64:
        case TARGET_F_SETLKW64:
P
pbrook 已提交
5590 5591
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
5592 5593
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
5594 5595 5596 5597 5598
                fl.l_type = tswap16(target_efl->l_type);
                fl.l_whence = tswap16(target_efl->l_whence);
                fl.l_start = tswap64(target_efl->l_start);
                fl.l_len = tswap64(target_efl->l_len);
                fl.l_pid = tswapl(target_efl->l_pid);
5599
                unlock_user_struct(target_efl, arg3, 0);
P
pbrook 已提交
5600 5601 5602
            } else
#endif
            {
B
bellard 已提交
5603 5604
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
5605 5606 5607 5608 5609
                fl.l_type = tswap16(target_fl->l_type);
                fl.l_whence = tswap16(target_fl->l_whence);
                fl.l_start = tswap64(target_fl->l_start);
                fl.l_len = tswap64(target_fl->l_len);
                fl.l_pid = tswapl(target_fl->l_pid);
5610
                unlock_user_struct(target_fl, arg3, 0);
P
pbrook 已提交
5611
            }
T
ths 已提交
5612
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
5613
	    break;
B
bellard 已提交
5614
        default:
B
bellard 已提交
5615
            ret = do_fcntl(arg1, cmd, arg3);
B
bellard 已提交
5616 5617
            break;
        }
B
bellard 已提交
5618 5619
	break;
    }
B
bellard 已提交
5620
#endif
5621 5622 5623 5624 5625 5626
#ifdef TARGET_NR_cacheflush
    case TARGET_NR_cacheflush:
        /* self-modifying code is handled automatically, so nothing needed */
        ret = 0;
        break;
#endif
5627
#ifdef TARGET_NR_security
5628 5629
    case TARGET_NR_security:
        goto unimplemented;
B
bellard 已提交
5630 5631 5632 5633 5634
#endif
#ifdef TARGET_NR_getpagesize
    case TARGET_NR_getpagesize:
        ret = TARGET_PAGE_SIZE;
        break;
5635
#endif
5636 5637 5638
    case TARGET_NR_gettid:
        ret = get_errno(gettid());
        break;
5639
#ifdef TARGET_NR_readahead
5640
    case TARGET_NR_readahead:
B
bellard 已提交
5641
        goto unimplemented;
5642
#endif
5643
#ifdef TARGET_NR_setxattr
5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655
    case TARGET_NR_setxattr:
    case TARGET_NR_lsetxattr:
    case TARGET_NR_fsetxattr:
    case TARGET_NR_getxattr:
    case TARGET_NR_lgetxattr:
    case TARGET_NR_fgetxattr:
    case TARGET_NR_listxattr:
    case TARGET_NR_llistxattr:
    case TARGET_NR_flistxattr:
    case TARGET_NR_removexattr:
    case TARGET_NR_lremovexattr:
    case TARGET_NR_fremovexattr:
B
bellard 已提交
5656
        goto unimplemented_nowarn;
5657 5658
#endif
#ifdef TARGET_NR_set_thread_area
B
bellard 已提交
5659
    case TARGET_NR_set_thread_area:
B
bellard 已提交
5660
#if defined(TARGET_MIPS)
5661 5662 5663
      ((CPUMIPSState *) cpu_env)->tls_value = arg1;
      ret = 0;
      break;
B
bellard 已提交
5664 5665 5666
#elif defined(TARGET_I386) && defined(TARGET_ABI32)
      ret = do_set_thread_area(cpu_env, arg1);
      break;
5667 5668 5669 5670 5671
#else
      goto unimplemented_nowarn;
#endif
#endif
#ifdef TARGET_NR_get_thread_area
B
bellard 已提交
5672
    case TARGET_NR_get_thread_area:
B
bellard 已提交
5673 5674 5675
#if defined(TARGET_I386) && defined(TARGET_ABI32)
        ret = do_get_thread_area(cpu_env, arg1);
#else
B
bellard 已提交
5676
        goto unimplemented_nowarn;
B
bellard 已提交
5677
#endif
B
bellard 已提交
5678
#endif
B
bellard 已提交
5679 5680 5681
#ifdef TARGET_NR_getdomainname
    case TARGET_NR_getdomainname:
        goto unimplemented_nowarn;
5682
#endif
5683

5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705
#ifdef TARGET_NR_clock_gettime
    case TARGET_NR_clock_gettime:
    {
        struct timespec ts;
        ret = get_errno(clock_gettime(arg1, &ts));
        if (!is_error(ret)) {
            host_to_target_timespec(arg2, &ts);
        }
        break;
    }
#endif
#ifdef TARGET_NR_clock_getres
    case TARGET_NR_clock_getres:
    {
        struct timespec ts;
        ret = get_errno(clock_getres(arg1, &ts));
        if (!is_error(ret)) {
            host_to_target_timespec(arg2, &ts);
        }
        break;
    }
#endif
P
pbrook 已提交
5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716
#ifdef TARGET_NR_clock_nanosleep
    case TARGET_NR_clock_nanosleep:
    {
        struct timespec ts;
        target_to_host_timespec(&ts, arg3);
        ret = get_errno(clock_nanosleep(arg1, arg2, &ts, arg4 ? &ts : NULL));
        if (arg4)
            host_to_target_timespec(arg4, &ts);
        break;
    }
#endif
5717

5718 5719
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
    case TARGET_NR_set_tid_address:
5720 5721
        ret = get_errno(set_tid_address((int *)g2h(arg1)));
        break;
5722 5723
#endif

T
ths 已提交
5724
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
5725
    case TARGET_NR_tkill:
5726
        ret = get_errno(sys_tkill((int)arg1, target_to_host_signal(arg2)));
T
ths 已提交
5727 5728 5729
        break;
#endif

T
ths 已提交
5730
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
5731
    case TARGET_NR_tgkill:
5732 5733
	ret = get_errno(sys_tgkill((int)arg1, (int)arg2,
                        target_to_host_signal(arg3)));
T
ths 已提交
5734 5735 5736
	break;
#endif

5737 5738 5739 5740 5741
#ifdef TARGET_NR_set_robust_list
    case TARGET_NR_set_robust_list:
	goto unimplemented_nowarn;
#endif

5742 5743 5744 5745 5746 5747 5748 5749 5750
#if defined(TARGET_NR_utimensat) && defined(__NR_utimensat)
    case TARGET_NR_utimensat:
        {
            struct timespec ts[2];
            target_to_host_timespec(ts, arg3);
            target_to_host_timespec(ts+1, arg3+sizeof(struct target_timespec));
            if (!arg2)
                ret = get_errno(sys_utimensat(arg1, NULL, ts, arg4));
            else {
5751
                if (!(p = lock_user_string(arg2))) {
5752
                    ret = -TARGET_EFAULT;
5753 5754 5755 5756
                    goto fail;
                }
                ret = get_errno(sys_utimensat(arg1, path(p), ts, arg4));
                unlock_user(p, arg2, 0);
5757 5758 5759 5760
            }
        }
	break;
#endif
5761 5762 5763 5764 5765
#if defined(USE_NPTL)
    case TARGET_NR_futex:
        ret = do_futex(arg1, arg2, arg3, arg4, arg5, arg6);
        break;
#endif
5766

5767 5768
    default:
    unimplemented:
B
bellard 已提交
5769
        gemu_log("qemu: Unsupported syscall: %d\n", num);
5770
#if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
B
bellard 已提交
5771
    unimplemented_nowarn:
B
bellard 已提交
5772
#endif
5773
        ret = -TARGET_ENOSYS;
5774 5775
        break;
    }
5776
fail:
B
bellard 已提交
5777 5778 5779
#ifdef DEBUG
    gemu_log(" = %ld\n", ret);
#endif
5780 5781
    if(do_strace)
        print_syscall_ret(num, ret);
5782
    return ret;
5783 5784 5785
efault:
    ret = -TARGET_EFAULT;
    goto fail;
5786
}