syscall.c 162.3 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 <sys/types.h>
T
ths 已提交
31 32
#include <sys/ipc.h>
#include <sys/msg.h>
33 34 35 36
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/mount.h>
37
#include <sys/prctl.h>
38 39 40 41 42 43 44
#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 已提交
45
#include <sys/poll.h>
B
bellard 已提交
46
#include <sys/times.h>
47
#include <sys/shm.h>
48
#include <sys/sem.h>
B
bellard 已提交
49
#include <sys/statfs.h>
50
#include <utime.h>
B
bellard 已提交
51
#include <sys/sysinfo.h>
B
bellard 已提交
52
//#include <sys/user.h>
53
#include <netinet/ip.h>
B
bellard 已提交
54
#include <netinet/tcp.h>
55 56 57 58

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

#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 已提交
69
#include <linux/dirent.h>
B
bellard 已提交
70
#include <linux/kd.h>
71

B
bellard 已提交
72
#include "qemu.h"
73

B
bellard 已提交
74
//#define DEBUG
75

P
pbrook 已提交
76
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_SPARC) \
77
    || defined(TARGET_M68K) || defined(TARGET_SH4) || defined(TARGET_CRIS)
78 79 80 81
/* 16 bit uid wrappers emulation */
#define USE_UID16
#endif

B
bellard 已提交
82 83 84 85
//#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])

86 87 88 89 90 91 92

#undef _syscall0
#undef _syscall1
#undef _syscall2
#undef _syscall3
#undef _syscall4
#undef _syscall5
B
bellard 已提交
93
#undef _syscall6
94

B
bellard 已提交
95 96 97 98 99
#define _syscall0(type,name)		\
type name (void)			\
{					\
	return syscall(__NR_##name);	\
}
100

B
bellard 已提交
101 102 103 104
#define _syscall1(type,name,type1,arg1)		\
type name (type1 arg1)				\
{						\
	return syscall(__NR_##name, arg1);	\
105 106
}

B
bellard 已提交
107 108 109 110
#define _syscall2(type,name,type1,arg1,type2,arg2)	\
type name (type1 arg1,type2 arg2)			\
{							\
	return syscall(__NR_##name, arg1, arg2);	\
111 112
}

B
bellard 已提交
113 114 115 116
#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);		\
117 118
}

B
bellard 已提交
119 120 121 122
#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);			\
123 124
}

B
bellard 已提交
125 126 127 128 129
#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);		\
130 131
}

B
bellard 已提交
132 133 134 135 136 137

#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);	\
138
}
B
bellard 已提交
139

140

141
#define __NR_sys_uname __NR_uname
142
#define __NR_sys_faccessat __NR_faccessat
143
#define __NR_sys_fchmodat __NR_fchmodat
144
#define __NR_sys_fchownat __NR_fchownat
B
bellard 已提交
145 146
#define __NR_sys_getcwd1 __NR_getcwd
#define __NR_sys_getdents __NR_getdents
B
bellard 已提交
147
#define __NR_sys_getdents64 __NR_getdents64
148
#define __NR_sys_getpriority __NR_getpriority
149
#define __NR_sys_linkat __NR_linkat
150
#define __NR_sys_mkdirat __NR_mkdirat
151
#define __NR_sys_mknodat __NR_mknodat
152
#define __NR_sys_openat __NR_openat
153
#define __NR_sys_readlinkat __NR_readlinkat
154
#define __NR_sys_renameat __NR_renameat
B
bellard 已提交
155
#define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo
156
#define __NR_sys_symlinkat __NR_symlinkat
157
#define __NR_sys_syslog __NR_syslog
T
ths 已提交
158
#define __NR_sys_tgkill __NR_tgkill
T
ths 已提交
159
#define __NR_sys_tkill __NR_tkill
160
#define __NR_sys_unlinkat __NR_unlinkat
161
#define __NR_sys_utimensat __NR_utimensat
162

163
#if defined(__alpha__) || defined (__ia64__) || defined(__x86_64__)
B
bellard 已提交
164 165 166
#define __NR__llseek __NR_lseek
#endif

B
bellard 已提交
167
#ifdef __NR_gettid
168
_syscall0(int, gettid)
B
bellard 已提交
169
#else
170 171
/* This is a replacement for the host gettid() and must return a host
   errno. */
B
bellard 已提交
172 173 174 175
static int gettid(void) {
    return -ENOSYS;
}
#endif
176
_syscall1(int,sys_uname,struct new_utsname *,buf)
177 178 179
#if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
_syscall4(int,sys_faccessat,int,dirfd,const char *,pathname,int,mode,int,flags)
#endif
180 181 182 183
#if defined(TARGET_NR_fchmodat) && defined(__NR_fchmodat)
_syscall4(int,sys_fchmodat,int,dirfd,const char *,pathname,
          mode_t,mode,int,flags)
#endif
184 185 186 187
#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 已提交
188 189
_syscall2(int,sys_getcwd1,char *,buf,size_t,size)
_syscall3(int, sys_getdents, uint, fd, struct dirent *, dirp, uint, count);
T
ths 已提交
190
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
191
_syscall3(int, sys_getdents64, uint, fd, struct dirent64 *, dirp, uint, count);
T
ths 已提交
192
#endif
193
_syscall2(int, sys_getpriority, int, which, int, who);
194 195
_syscall5(int, _llseek,  uint,  fd, ulong, hi, ulong, lo,
          loff_t *, res, uint, wh);
196 197 198 199
#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
200 201 202
#if defined(TARGET_NR_mkdirat) && defined(__NR_mkdirat)
_syscall3(int,sys_mkdirat,int,dirfd,const char *,pathname,mode_t,mode)
#endif
203 204 205 206
#if defined(TARGET_NR_mknodat) && defined(__NR_mknodat)
_syscall4(int,sys_mknodat,int,dirfd,const char *,pathname,
          mode_t,mode,dev_t,dev)
#endif
207 208 209
#if defined(TARGET_NR_openat) && defined(__NR_openat)
_syscall4(int,sys_openat,int,dirfd,const char *,pathname,int,flags,mode_t,mode)
#endif
210 211 212 213
#if defined(TARGET_NR_readlinkat) && defined(__NR_readlinkat)
_syscall4(int,sys_readlinkat,int,dirfd,const char *,pathname,
          char *,buf,size_t,bufsize)
#endif
214 215 216 217
#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 已提交
218
_syscall3(int,sys_rt_sigqueueinfo,int,pid,int,sig,siginfo_t *,uinfo)
219
#if defined(TARGET_NR_symlinkat) && defined(__NR_symlinkat)
220 221 222
_syscall3(int,sys_symlinkat,const char *,oldpath,
          int,newdirfd,const char *,newpath)
#endif
223
_syscall3(int,sys_syslog,int,type,char*,bufp,int,len)
T
ths 已提交
224
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
225
_syscall3(int,sys_tgkill,int,tgid,int,pid,int,sig)
T
ths 已提交
226
#endif
T
ths 已提交
227
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
228 229
_syscall2(int,sys_tkill,int,tid,int,sig)
#endif
230 231 232
#ifdef __NR_exit_group
_syscall1(int,exit_group,int,error_code)
#endif
233 234 235
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
_syscall1(int,set_tid_address,int *,tidptr)
#endif
236 237 238
#if defined(TARGET_NR_unlinkat) && defined(__NR_unlinkat)
_syscall3(int,sys_unlinkat,int,dirfd,const char *,pathname,int,flags)
#endif
239 240 241 242
#if defined(TARGET_NR_utimensat) && defined(__NR_utimensat)
_syscall4(int,sys_utimensat,int,dirfd,const char *,pathname,
          const struct timespec *,tsp,int,flags)
#endif
B
bellard 已提交
243 244

extern int personality(int);
B
bellard 已提交
245 246 247
extern int flock(int, int);
extern int setfsuid(int);
extern int setfsgid(int);
B
bellard 已提交
248 249 250 251
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 已提交
252
extern int setgroups(int, gid_t *);
253

254 255 256 257 258 259 260
#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] = {
};

261
/*
T
ths 已提交
262
 * This list is the union of errno values overridden in asm-<arch>/errno.h
263 264
 * minus the errnos that are not actually generic to all archs.
 */
265
static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 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
    [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 已提交
353
#ifdef ENOKEY
354
    [ENOKEY]		= TARGET_ENOKEY,
T
ths 已提交
355 356
#endif
#ifdef EKEYEXPIRED
357
    [EKEYEXPIRED]	= TARGET_EKEYEXPIRED,
T
ths 已提交
358 359
#endif
#ifdef EKEYREVOKED
360
    [EKEYREVOKED]	= TARGET_EKEYREVOKED,
T
ths 已提交
361 362
#endif
#ifdef EKEYREJECTED
363
    [EKEYREJECTED]	= TARGET_EKEYREJECTED,
T
ths 已提交
364 365
#endif
#ifdef EOWNERDEAD
366
    [EOWNERDEAD]	= TARGET_EOWNERDEAD,
T
ths 已提交
367 368
#endif
#ifdef ENOTRECOVERABLE
369
    [ENOTRECOVERABLE]	= TARGET_ENOTRECOVERABLE,
T
ths 已提交
370
#endif
371
};
372 373 374 375 376 377 378 379

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;
}

380 381 382 383 384 385 386
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;
}

387
static inline abi_long get_errno(abi_long ret)
388 389
{
    if (ret == -1)
390
        return -host_to_target_errno(errno);
391 392 393 394
    else
        return ret;
}

395
static inline int is_error(abi_long ret)
396
{
397
    return (abi_ulong)ret >= (abi_ulong)(-4096);
398 399
}

400 401 402 403 404
char *target_strerror(int err)
{
    return strerror(target_to_host_errno(err));
}

405 406
static abi_ulong target_brk;
static abi_ulong target_original_brk;
407

408
void target_set_brk(abi_ulong new_brk)
409
{
410
    target_original_brk = target_brk = HOST_PAGE_ALIGN(new_brk);
411 412
}

413
/* do_brk() must return target values and target errnos. */
414
abi_long do_brk(abi_ulong new_brk)
415
{
416 417
    abi_ulong brk_page;
    abi_long mapped_addr;
418 419 420
    int	new_alloc_size;

    if (!new_brk)
421
        return target_brk;
422
    if (new_brk < target_original_brk)
423
        return -TARGET_ENOMEM;
424

425
    brk_page = HOST_PAGE_ALIGN(target_brk);
426 427 428 429

    /* If the new brk is less than this, set it and we're done... */
    if (new_brk < brk_page) {
	target_brk = new_brk;
430
    	return target_brk;
431 432 433
    }

    /* We need to allocate more memory after the brk... */
B
bellard 已提交
434
    new_alloc_size = HOST_PAGE_ALIGN(new_brk - brk_page + 1);
435
    mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size,
B
bellard 已提交
436 437
                                        PROT_READ|PROT_WRITE,
                                        MAP_ANON|MAP_FIXED|MAP_PRIVATE, 0, 0));
438 439 440 441
    if (is_error(mapped_addr)) {
	return mapped_addr;
    } else {
	target_brk = new_brk;
442
    	return target_brk;
443 444 445
    }
}

446
static inline fd_set *target_to_host_fds(fd_set *fds,
447
                                         abi_long *target_fds, int n)
448
{
B
bellard 已提交
449
#if !defined(BSWAP_NEEDED) && !defined(WORDS_BIGENDIAN)
450 451 452 453 454 455
    return (fd_set *)target_fds;
#else
    int i, b;
    if (target_fds) {
        FD_ZERO(fds);
        for(i = 0;i < n; i++) {
456 457
            b = (tswapl(target_fds[i / TARGET_ABI_BITS]) >>
                 (i & (TARGET_ABI_BITS - 1))) & 1;
458 459 460 461 462 463 464 465 466 467
            if (b)
                FD_SET(i, fds);
        }
        return fds;
    } else {
        return NULL;
    }
#endif
}

468
static inline void host_to_target_fds(abi_long *target_fds,
469 470
                                      fd_set *fds, int n)
{
B
bellard 已提交
471
#if !defined(BSWAP_NEEDED) && !defined(WORDS_BIGENDIAN)
472 473 474
    /* nothing to do */
#else
    int i, nw, j, k;
475
    abi_long v;
476 477

    if (target_fds) {
478
        nw = (n + TARGET_ABI_BITS - 1) / TARGET_ABI_BITS;
479 480 481
        k = 0;
        for(i = 0;i < nw; i++) {
            v = 0;
482
            for(j = 0; j < TARGET_ABI_BITS; j++) {
483 484 485 486 487 488 489 490 491
                v |= ((FD_ISSET(k, fds) != 0) << j);
                k++;
            }
            target_fds[i] = tswapl(v);
        }
    }
#endif
}

B
bellard 已提交
492 493 494 495 496 497
#if defined(__alpha__)
#define HOST_HZ 1024
#else
#define HOST_HZ 100
#endif

498
static inline abi_long host_to_target_clock_t(long ticks)
B
bellard 已提交
499 500 501 502 503 504 505 506
{
#if HOST_HZ == TARGET_HZ
    return ticks;
#else
    return ((int64_t)ticks * TARGET_HZ) / HOST_HZ;
#endif
}

507 508
static inline abi_long host_to_target_rusage(abi_ulong target_addr,
                                             const struct rusage *rusage)
B
bellard 已提交
509
{
510 511
    struct target_rusage *target_rusage;

512 513
    if (!lock_user_struct(VERIFY_WRITE, target_rusage, target_addr, 0))
        return -TARGET_EFAULT;
B
bellard 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
    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);
532
    unlock_user_struct(target_rusage, target_addr, 1);
533 534

    return 0;
B
bellard 已提交
535 536
}

537 538
static inline abi_long target_to_host_timeval(struct timeval *tv,
                                              abi_ulong target_addr)
539
{
540 541
    struct target_timeval *target_tv;

542 543
    if (!lock_user_struct(VERIFY_READ, target_tv, target_addr, 1))
        return -TARGET_EFAULT;
B
bellard 已提交
544 545
    tv->tv_sec = tswapl(target_tv->tv_sec);
    tv->tv_usec = tswapl(target_tv->tv_usec);
546
    unlock_user_struct(target_tv, target_addr, 0);
547 548

    return 0;
549 550
}

551 552
static inline abi_long host_to_target_timeval(abi_ulong target_addr,
                                              const struct timeval *tv)
553
{
554 555
    struct target_timeval *target_tv;

556 557
    if (!lock_user_struct(VERIFY_WRITE, target_tv, target_addr, 0))
        return -TARGET_EFAULT;
B
bellard 已提交
558 559
    target_tv->tv_sec = tswapl(tv->tv_sec);
    target_tv->tv_usec = tswapl(tv->tv_usec);
560
    unlock_user_struct(target_tv, target_addr, 1);
561 562

    return 0;
563 564 565
}


566
/* do_select() must return target values and target errnos. */
567 568 569
static abi_long do_select(int n,
                          abi_ulong rfd_p, abi_ulong wfd_p,
                          abi_ulong efd_p, abi_ulong target_tv)
570 571 572
{
    fd_set rfds, wfds, efds;
    fd_set *rfds_ptr, *wfds_ptr, *efds_ptr;
573
    abi_long *target_rfds, *target_wfds, *target_efds;
574
    struct timeval tv, *tv_ptr;
575
    abi_long ret;
576
    int ok;
577

578
    if (rfd_p) {
579 580 581 582 583
        target_rfds = lock_user(VERIFY_WRITE, rfd_p, sizeof(abi_long) * n, 1);
        if (!target_rfds) {
            ret = -TARGET_EFAULT;
            goto end;
        }
584 585 586 587 588 589
        rfds_ptr = target_to_host_fds(&rfds, target_rfds, n);
    } else {
        target_rfds = NULL;
        rfds_ptr = NULL;
    }
    if (wfd_p) {
590 591 592 593 594
        target_wfds = lock_user(VERIFY_WRITE, wfd_p, sizeof(abi_long) * n, 1);
        if (!target_wfds) {
            ret = -TARGET_EFAULT;
            goto end;
        }
595 596 597 598 599 600
        wfds_ptr = target_to_host_fds(&wfds, target_wfds, n);
    } else {
        target_wfds = NULL;
        wfds_ptr = NULL;
    }
    if (efd_p) {
601 602 603 604 605
        target_efds = lock_user(VERIFY_WRITE, efd_p, sizeof(abi_long) * n, 1);
        if (!target_efds) {
            ret = -TARGET_EFAULT;
            goto end;
        }
606 607 608 609 610
        efds_ptr = target_to_host_fds(&efds, target_efds, n);
    } else {
        target_efds = NULL;
        efds_ptr = NULL;
    }
611

612
    if (target_tv) {
B
bellard 已提交
613
        target_to_host_timeval(&tv, target_tv);
614 615 616 617 618
        tv_ptr = &tv;
    } else {
        tv_ptr = NULL;
    }
    ret = get_errno(select(n, rfds_ptr, wfds_ptr, efds_ptr, tv_ptr));
619 620 621
    ok = !is_error(ret);

    if (ok) {
622 623 624 625 626
        host_to_target_fds(target_rfds, rfds_ptr, n);
        host_to_target_fds(target_wfds, wfds_ptr, n);
        host_to_target_fds(target_efds, efds_ptr, n);

        if (target_tv) {
B
bellard 已提交
627
            host_to_target_timeval(target_tv, &tv);
628 629
        }
    }
630 631 632 633 634

end:
    unlock_user(target_rfds, rfd_p, ok ? sizeof(abi_long) * n : 0);
    unlock_user(target_wfds, wfd_p, ok ? sizeof(abi_long) * n : 0);
    unlock_user(target_efds, efd_p, ok ? sizeof(abi_long) * n : 0);
635

636 637 638
    return ret;
}

639 640 641
static inline abi_long target_to_host_sockaddr(struct sockaddr *addr,
                                               abi_ulong target_addr,
                                               socklen_t len)
B
bellard 已提交
642
{
643 644
    struct target_sockaddr *target_saddr;

645 646 647
    target_saddr = lock_user(VERIFY_READ, target_addr, len, 1);
    if (!target_saddr)
        return -TARGET_EFAULT;
648 649 650
    memcpy(addr, target_saddr, len);
    addr->sa_family = tswap16(target_saddr->sa_family);
    unlock_user(target_saddr, target_addr, 0);
651 652

    return 0;
B
bellard 已提交
653 654
}

655 656 657
static inline abi_long host_to_target_sockaddr(abi_ulong target_addr,
                                               struct sockaddr *addr,
                                               socklen_t len)
B
bellard 已提交
658
{
659 660
    struct target_sockaddr *target_saddr;

661 662 663
    target_saddr = lock_user(VERIFY_WRITE, target_addr, len, 0);
    if (!target_saddr)
        return -TARGET_EFAULT;
664 665 666
    memcpy(target_saddr, addr, len);
    target_saddr->sa_family = tswap16(addr->sa_family);
    unlock_user(target_saddr, target_addr, len);
667 668

    return 0;
B
bellard 已提交
669 670
}

671
/* ??? Should this also swap msgh->name?  */
B
bellard 已提交
672 673 674 675 676 677 678 679 680 681 682
static inline void target_to_host_cmsg(struct msghdr *msgh,
                                       struct target_msghdr *target_msgh)
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
    struct target_cmsghdr *target_cmsg = TARGET_CMSG_FIRSTHDR(target_msgh);
    socklen_t space = 0;

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

683
        int len = tswapl(target_cmsg->cmsg_len)
B
bellard 已提交
684 685 686 687 688
                  - TARGET_CMSG_ALIGN(sizeof (struct target_cmsghdr));

        space += CMSG_SPACE(len);
        if (space > msgh->msg_controllen) {
            space -= CMSG_SPACE(len);
B
bellard 已提交
689
            gemu_log("Host cmsg overflow\n");
B
bellard 已提交
690 691 692 693 694 695 696
            break;
        }

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

697
        if (cmsg->cmsg_level != TARGET_SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
            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);
    }

    msgh->msg_controllen = space;
}

716
/* ??? Should this also swap msgh->name?  */
B
bellard 已提交
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
static inline void host_to_target_cmsg(struct target_msghdr *target_msgh,
                                       struct msghdr *msgh)
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
    struct target_cmsghdr *target_cmsg = TARGET_CMSG_FIRSTHDR(target_msgh);
    socklen_t space = 0;

    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);
        if (space > tswapl(target_msgh->msg_controllen)) {
            space -= TARGET_CMSG_SPACE(len);
B
bellard 已提交
733
            gemu_log("Target cmsg overflow\n");
B
bellard 已提交
734 735 736 737 738 739 740
            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));

741
        if (cmsg->cmsg_level != TARGET_SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
            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);
    }

    msgh->msg_controllen = tswapl(space);
}

760
/* do_setsockopt() Must return target values and target errnos. */
761 762
static abi_long do_setsockopt(int sockfd, int level, int optname,
                              abi_ulong optval, socklen_t optlen)
B
bellard 已提交
763
{
764
    abi_long ret;
765
    int val;
766

767 768
    switch(level) {
    case SOL_TCP:
B
bellard 已提交
769 770
        /* TCP options all take an 'int' value.  */
        if (optlen < sizeof(uint32_t))
771
            return -TARGET_EINVAL;
772

773
        val = tget32(optval);
774 775 776 777
        ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
        break;
    case SOL_IP:
        switch(optname) {
B
bellard 已提交
778 779
        case IP_TOS:
        case IP_TTL:
780
        case IP_HDRINCL:
B
bellard 已提交
781 782 783 784 785 786 787 788 789 790 791 792
        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:
793 794
            val = 0;
            if (optlen >= sizeof(uint32_t)) {
795
                val = tget32(optval);
796
            } else if (optlen >= 1) {
797
                val = tget8(optval);
798 799 800 801 802 803 804
            }
            ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
            break;
        default:
            goto unimplemented;
        }
        break;
805
    case TARGET_SOL_SOCKET:
806 807
        switch (optname) {
            /* Options with 'int' argument.  */
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
        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 已提交
844
#ifdef SO_BSDCOMPAT
845 846 847
        case TARGET_SO_BSDCOMPAT:
		optname = SO_BSDCOMPAT;
		break;
B
bellard 已提交
848
#endif
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
        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;
864 865 866 867
            break;
        default:
            goto unimplemented;
        }
868
	if (optlen < sizeof(uint32_t))
869
	return -TARGET_EINVAL;
870 871 872

	val = tget32(optval);
	ret = get_errno(setsockopt(sockfd, SOL_SOCKET, optname, &val, sizeof(val)));
873
        break;
B
bellard 已提交
874
    default:
875 876
    unimplemented:
        gemu_log("Unsupported setsockopt level=%d optname=%d \n", level, optname);
877
        ret = -TARGET_ENOSYS;
B
bellard 已提交
878
    }
879
    return ret;
B
bellard 已提交
880 881
}

882
/* do_getsockopt() Must return target values and target errnos. */
883 884
static abi_long do_getsockopt(int sockfd, int level, int optname,
                              abi_ulong optval, abi_ulong optlen)
B
bellard 已提交
885
{
886
    abi_long ret;
887
    int len, lv, val;
888 889

    switch(level) {
890 891
    case TARGET_SOL_SOCKET:
    	level = SOL_SOCKET;
892
	switch (optname) {
893 894 895 896 897
	case TARGET_SO_LINGER:
	case TARGET_SO_RCVTIMEO:
	case TARGET_SO_SNDTIMEO:
	case TARGET_SO_PEERCRED:
	case TARGET_SO_PEERNAME:
898 899 900
	    /* These don't just return a single integer */
	    goto unimplemented;
        default:
B
bellard 已提交
901 902 903 904 905 906
            goto int_case;
        }
        break;
    case SOL_TCP:
        /* TCP options all take an 'int' value.  */
    int_case:
907
        len = tget32(optlen);
B
bellard 已提交
908
        if (len < 0)
909
            return -TARGET_EINVAL;
B
bellard 已提交
910 911 912 913 914 915 916
        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;
917 918 919 920 921
        if (len == 4)
            tput32(optval, val);
        else
            tput8(optval, val);
        tput32(optlen, len);
B
bellard 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
        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:
940
            len = tget32(optlen);
941
            if (len < 0)
942
                return -TARGET_EINVAL;
943 944 945 946
            lv = sizeof(int);
            ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
            if (ret < 0)
                return ret;
B
bellard 已提交
947 948
            if (len < sizeof(int) && len > 0 && val >= 0 && val < 255) {
                len = 1;
949 950
                tput32(optlen, len);
                tput8(optval, val);
B
bellard 已提交
951 952 953
            } else {
                if (len > sizeof(int))
                    len = sizeof(int);
954 955
                tput32(optlen, len);
                tput32(optval, val);
B
bellard 已提交
956
            }
957
            break;
B
bellard 已提交
958 959
        default:
            goto unimplemented;
960 961 962 963 964 965
        }
        break;
    default:
    unimplemented:
        gemu_log("getsockopt level=%d optname=%d not yet supported\n",
                 level, optname);
966
        ret = -TARGET_ENOSYS;
967 968 969
        break;
    }
    return ret;
B
bellard 已提交
970 971
}

972 973 974 975 976 977
/* 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)
978 979
{
    struct target_iovec *target_vec;
980
    abi_ulong base;
981
    int i, j;
982

983 984 985
    target_vec = lock_user(VERIFY_READ, target_addr, count * sizeof(struct target_iovec), 1);
    if (!target_vec)
        return -TARGET_EFAULT;
986 987 988
    for(i = 0;i < count; i++) {
        base = tswapl(target_vec[i].iov_base);
        vec[i].iov_len = tswapl(target_vec[i].iov_len);
989 990 991 992 993 994 995 996 997 998 999
        vec[i].iov_base = lock_user(type, base, vec[i].iov_len, copy);
	if (!vec[i].iov_base) 
            goto fail;
    }
    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);
1000 1001
    }
    unlock_user (target_vec, target_addr, 0);
1002
    return -TARGET_EFAULT;
1003 1004
}

1005 1006
static abi_long unlock_iovec(struct iovec *vec, abi_ulong target_addr,
                             int count, int copy)
1007 1008
{
    struct target_iovec *target_vec;
1009
    abi_ulong base;
1010 1011
    int i;

1012 1013 1014
    target_vec = lock_user(VERIFY_READ, target_addr, count * sizeof(struct target_iovec), 1);
    if (!target_vec)
        return -TARGET_EFAULT;
1015 1016 1017 1018 1019
    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);
1020 1021

    return 0;
1022 1023
}

1024
/* do_socket() Must return target values and target errnos. */
1025
static abi_long do_socket(int domain, int type, int protocol)
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
{
#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
1049 1050
    if (domain == PF_NETLINK)
        return -EAFNOSUPPORT; /* do not NETLINK socket connections possible */
1051 1052 1053
    return get_errno(socket(domain, type, protocol));
}

1054
/* do_bind() Must return target values and target errnos. */
1055 1056
static abi_long do_bind(int sockfd, abi_ulong target_addr,
                        socklen_t addrlen)
1057 1058
{
    void *addr = alloca(addrlen);
1059

1060 1061 1062 1063
    target_to_host_sockaddr(addr, target_addr, addrlen);
    return get_errno(bind(sockfd, addr, addrlen));
}

1064
/* do_connect() Must return target values and target errnos. */
1065 1066
static abi_long do_connect(int sockfd, abi_ulong target_addr,
                           socklen_t addrlen)
1067 1068
{
    void *addr = alloca(addrlen);
1069

1070 1071 1072 1073
    target_to_host_sockaddr(addr, target_addr, addrlen);
    return get_errno(connect(sockfd, addr, addrlen));
}

1074
/* do_sendrecvmsg() Must return target values and target errnos. */
1075 1076
static abi_long do_sendrecvmsg(int fd, abi_ulong target_msg,
                               int flags, int send)
1077
{
1078
    abi_long ret;
1079 1080 1081 1082
    struct target_msghdr *msgp;
    struct msghdr msg;
    int count;
    struct iovec *vec;
1083
    abi_ulong target_vec;
1084

1085 1086 1087 1088 1089 1090
    /* FIXME */
    if (!lock_user_struct(send ? VERIFY_READ : VERIFY_WRITE,
                          msgp,
                          target_msg,
                          send ? 1 : 0))
        return -TARGET_EFAULT;
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
    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);
1103

1104 1105 1106
    count = tswapl(msgp->msg_iovlen);
    vec = alloca(count * sizeof(struct iovec));
    target_vec = tswapl(msgp->msg_iov);
1107
    lock_iovec(send ? VERIFY_READ : VERIFY_WRITE, vec, target_vec, count, send);
1108 1109
    msg.msg_iovlen = count;
    msg.msg_iov = vec;
1110

1111 1112 1113 1114 1115 1116 1117 1118 1119
    if (send) {
        target_to_host_cmsg(&msg, msgp);
        ret = get_errno(sendmsg(fd, &msg, flags));
    } else {
        ret = get_errno(recvmsg(fd, &msg, flags));
        if (!is_error(ret))
            host_to_target_cmsg(msgp, &msg);
    }
    unlock_iovec(vec, target_vec, count, !send);
1120
    unlock_user_struct(msgp, target_msg, send ? 0 : 1);
1121 1122 1123
    return ret;
}

1124
/* do_accept() Must return target values and target errnos. */
1125 1126
static abi_long do_accept(int fd, abi_ulong target_addr,
                          abi_ulong target_addrlen)
P
pbrook 已提交
1127 1128
{
    socklen_t addrlen = tget32(target_addrlen);
T
ths 已提交
1129
    void *addr = alloca(addrlen);
1130
    abi_long ret;
P
pbrook 已提交
1131 1132 1133 1134 1135 1136 1137 1138 1139

    ret = get_errno(accept(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
        tput32(target_addrlen, addrlen);
    }
    return ret;
}

1140
/* do_getpeername() Must return target values and target errnos. */
1141 1142
static abi_long do_getpeername(int fd, abi_ulong target_addr,
                               abi_ulong target_addrlen)
P
pbrook 已提交
1143 1144
{
    socklen_t addrlen = tget32(target_addrlen);
1145
    void *addr = alloca(addrlen);
1146
    abi_long ret;
P
pbrook 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155

    ret = get_errno(getpeername(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
        tput32(target_addrlen, addrlen);
    }
    return ret;
}

1156
/* do_getsockname() Must return target values and target errnos. */
1157 1158
static abi_long do_getsockname(int fd, abi_ulong target_addr,
                               abi_ulong target_addrlen)
P
pbrook 已提交
1159 1160
{
    socklen_t addrlen = tget32(target_addrlen);
1161
    void *addr = alloca(addrlen);
1162
    abi_long ret;
P
pbrook 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171

    ret = get_errno(getsockname(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
        tput32(target_addrlen, addrlen);
    }
    return ret;
}

1172
/* do_socketpair() Must return target values and target errnos. */
1173 1174
static abi_long do_socketpair(int domain, int type, int protocol,
                              abi_ulong target_tab)
P
pbrook 已提交
1175 1176
{
    int tab[2];
1177
    abi_long ret;
P
pbrook 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186

    ret = get_errno(socketpair(domain, type, protocol, tab));
    if (!is_error(ret)) {
        tput32(target_tab, tab[0]);
        tput32(target_tab + 4, tab[1]);
    }
    return ret;
}

1187
/* do_sendto() Must return target values and target errnos. */
1188 1189
static abi_long do_sendto(int fd, abi_ulong msg, size_t len, int flags,
                          abi_ulong target_addr, socklen_t addrlen)
P
pbrook 已提交
1190 1191 1192
{
    void *addr;
    void *host_msg;
1193
    abi_long ret;
P
pbrook 已提交
1194

1195 1196 1197
    host_msg = lock_user(VERIFY_READ, msg, len, 1);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
    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;
}

1209
/* do_recvfrom() Must return target values and target errnos. */
1210 1211 1212
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 已提交
1213 1214 1215 1216
{
    socklen_t addrlen;
    void *addr;
    void *host_msg;
1217
    abi_long ret;
P
pbrook 已提交
1218

1219 1220 1221
    host_msg = lock_user(VERIFY_WRITE, msg, len, 0);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
    if (target_addr) {
        addrlen = tget32(target_addrlen);
        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);
            tput32(target_addrlen, addrlen);
        }
        unlock_user(host_msg, msg, len);
    } else {
        unlock_user(host_msg, msg, 0);
    }
    return ret;
}

1242
#ifdef TARGET_NR_socketcall
1243
/* do_socketcall() Must return target values and target errnos. */
1244
static abi_long do_socketcall(int num, abi_ulong vptr)
1245
{
1246 1247
    abi_long ret;
    const int n = sizeof(abi_ulong);
1248 1249 1250

    switch(num) {
    case SOCKOP_socket:
B
bellard 已提交
1251
	{
1252 1253 1254
            int domain = tgetl(vptr);
            int type = tgetl(vptr + n);
            int protocol = tgetl(vptr + 2 * n);
1255
            ret = do_socket(domain, type, protocol);
B
bellard 已提交
1256
	}
1257 1258
        break;
    case SOCKOP_bind:
B
bellard 已提交
1259
	{
1260
            int sockfd = tgetl(vptr);
1261
            abi_ulong target_addr = tgetl(vptr + n);
1262
            socklen_t addrlen = tgetl(vptr + 2 * n);
1263
            ret = do_bind(sockfd, target_addr, addrlen);
B
bellard 已提交
1264
        }
1265 1266
        break;
    case SOCKOP_connect:
B
bellard 已提交
1267
        {
1268
            int sockfd = tgetl(vptr);
1269
            abi_ulong target_addr = tgetl(vptr + n);
1270
            socklen_t addrlen = tgetl(vptr + 2 * n);
1271
            ret = do_connect(sockfd, target_addr, addrlen);
B
bellard 已提交
1272
        }
1273 1274
        break;
    case SOCKOP_listen:
B
bellard 已提交
1275
        {
1276 1277
            int sockfd = tgetl(vptr);
            int backlog = tgetl(vptr + n);
B
bellard 已提交
1278 1279
            ret = get_errno(listen(sockfd, backlog));
        }
1280 1281 1282
        break;
    case SOCKOP_accept:
        {
1283
            int sockfd = tgetl(vptr);
1284 1285
            abi_ulong target_addr = tgetl(vptr + n);
            abi_ulong target_addrlen = tgetl(vptr + 2 * n);
P
pbrook 已提交
1286
            ret = do_accept(sockfd, target_addr, target_addrlen);
1287 1288 1289 1290
        }
        break;
    case SOCKOP_getsockname:
        {
1291
            int sockfd = tgetl(vptr);
1292 1293
            abi_ulong target_addr = tgetl(vptr + n);
            abi_ulong target_addrlen = tgetl(vptr + 2 * n);
P
pbrook 已提交
1294
            ret = do_getsockname(sockfd, target_addr, target_addrlen);
1295 1296 1297 1298
        }
        break;
    case SOCKOP_getpeername:
        {
1299
            int sockfd = tgetl(vptr);
1300 1301
            abi_ulong target_addr = tgetl(vptr + n);
            abi_ulong target_addrlen = tgetl(vptr + 2 * n);
P
pbrook 已提交
1302
            ret = do_getpeername(sockfd, target_addr, target_addrlen);
1303 1304 1305 1306
        }
        break;
    case SOCKOP_socketpair:
        {
1307 1308 1309
            int domain = tgetl(vptr);
            int type = tgetl(vptr + n);
            int protocol = tgetl(vptr + 2 * n);
1310
            abi_ulong tab = tgetl(vptr + 3 * n);
P
pbrook 已提交
1311
            ret = do_socketpair(domain, type, protocol, tab);
1312 1313 1314
        }
        break;
    case SOCKOP_send:
B
bellard 已提交
1315
        {
1316
            int sockfd = tgetl(vptr);
1317
            abi_ulong msg = tgetl(vptr + n);
1318 1319
            size_t len = tgetl(vptr + 2 * n);
            int flags = tgetl(vptr + 3 * n);
P
pbrook 已提交
1320
            ret = do_sendto(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
1321
        }
1322 1323
        break;
    case SOCKOP_recv:
B
bellard 已提交
1324
        {
1325
            int sockfd = tgetl(vptr);
1326
            abi_ulong msg = tgetl(vptr + n);
1327 1328
            size_t len = tgetl(vptr + 2 * n);
            int flags = tgetl(vptr + 3 * n);
P
pbrook 已提交
1329
            ret = do_recvfrom(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
1330
        }
1331 1332
        break;
    case SOCKOP_sendto:
B
bellard 已提交
1333
        {
1334
            int sockfd = tgetl(vptr);
1335
            abi_ulong msg = tgetl(vptr + n);
1336 1337
            size_t len = tgetl(vptr + 2 * n);
            int flags = tgetl(vptr + 3 * n);
1338
            abi_ulong addr = tgetl(vptr + 4 * n);
1339
            socklen_t addrlen = tgetl(vptr + 5 * n);
P
pbrook 已提交
1340
            ret = do_sendto(sockfd, msg, len, flags, addr, addrlen);
B
bellard 已提交
1341
        }
1342 1343 1344
        break;
    case SOCKOP_recvfrom:
        {
1345
            int sockfd = tgetl(vptr);
1346
            abi_ulong msg = tgetl(vptr + n);
1347 1348
            size_t len = tgetl(vptr + 2 * n);
            int flags = tgetl(vptr + 3 * n);
1349 1350
            abi_ulong addr = tgetl(vptr + 4 * n);
            abi_ulong addrlen = tgetl(vptr + 5 * n);
P
pbrook 已提交
1351
            ret = do_recvfrom(sockfd, msg, len, flags, addr, addrlen);
1352 1353 1354
        }
        break;
    case SOCKOP_shutdown:
B
bellard 已提交
1355
        {
1356 1357
            int sockfd = tgetl(vptr);
            int how = tgetl(vptr + n);
B
bellard 已提交
1358 1359 1360

            ret = get_errno(shutdown(sockfd, how));
        }
1361 1362 1363
        break;
    case SOCKOP_sendmsg:
    case SOCKOP_recvmsg:
B
bellard 已提交
1364 1365
        {
            int fd;
1366
            abi_ulong target_msg;
1367
            int flags;
B
bellard 已提交
1368

1369
            fd = tgetl(vptr);
1370
            target_msg = tgetl(vptr + n);
1371
            flags = tgetl(vptr + 2 * n);
1372

1373
            ret = do_sendrecvmsg(fd, target_msg, flags,
1374
                                 (num == SOCKOP_sendmsg));
B
bellard 已提交
1375 1376
        }
        break;
1377
    case SOCKOP_setsockopt:
B
bellard 已提交
1378
        {
1379 1380 1381
            int sockfd = tgetl(vptr);
            int level = tgetl(vptr + n);
            int optname = tgetl(vptr + 2 * n);
1382
            abi_ulong optval = tgetl(vptr + 3 * n);
1383
            socklen_t optlen = tgetl(vptr + 4 * n);
B
bellard 已提交
1384 1385 1386 1387

            ret = do_setsockopt(sockfd, level, optname, optval, optlen);
        }
        break;
1388
    case SOCKOP_getsockopt:
B
bellard 已提交
1389
        {
1390 1391 1392
            int sockfd = tgetl(vptr);
            int level = tgetl(vptr + n);
            int optname = tgetl(vptr + 2 * n);
1393 1394
            abi_ulong optval = tgetl(vptr + 3 * n);
            abi_ulong poptlen = tgetl(vptr + 4 * n);
B
bellard 已提交
1395

1396
            ret = do_getsockopt(sockfd, level, optname, optval, poptlen);
B
bellard 已提交
1397 1398
        }
        break;
1399 1400
    default:
        gemu_log("Unsupported socketcall: %d\n", num);
1401
        ret = -TARGET_ENOSYS;
1402 1403 1404 1405
        break;
    }
    return ret;
}
1406
#endif
1407

1408
#ifdef TARGET_NR_ipc
1409 1410 1411 1412 1413 1414 1415
#define N_SHM_REGIONS	32

static struct shm_region {
    uint32_t	start;
    uint32_t	size;
} shm_regions[N_SHM_REGIONS];

1416 1417
struct target_ipc_perm
{
1418 1419 1420 1421 1422
    abi_long __key;
    abi_ulong uid;
    abi_ulong gid;
    abi_ulong cuid;
    abi_ulong cgid;
1423 1424 1425 1426
    unsigned short int mode;
    unsigned short int __pad1;
    unsigned short int __seq;
    unsigned short int __pad2;
1427 1428
    abi_ulong __unused1;
    abi_ulong __unused2;
1429 1430 1431 1432 1433
};

struct target_semid_ds
{
  struct target_ipc_perm sem_perm;
1434 1435 1436 1437 1438 1439 1440
  abi_ulong sem_otime;
  abi_ulong __unused1;
  abi_ulong sem_ctime;
  abi_ulong __unused2;
  abi_ulong sem_nsems;
  abi_ulong __unused3;
  abi_ulong __unused4;
1441 1442
};

1443 1444
static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip,
                                               abi_ulong target_addr)
1445 1446 1447 1448
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

1449 1450
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
1451 1452 1453 1454 1455 1456 1457 1458
    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);
1459
    return 0;
1460 1461
}

1462 1463
static inline abi_long host_to_target_ipc_perm(abi_ulong target_addr,
                                               struct ipc_perm *host_ip)
1464 1465 1466 1467
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

1468 1469
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
1470 1471 1472 1473 1474 1475 1476 1477
    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);
1478
    return 0;
1479 1480
}

1481 1482
static inline abi_long target_to_host_semid_ds(struct semid_ds *host_sd,
                                               abi_ulong target_addr)
1483 1484 1485
{
    struct target_semid_ds *target_sd;

1486 1487
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
1488 1489 1490 1491 1492
    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);
1493
    return 0;
1494 1495
}

1496 1497
static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
                                               struct semid_ds *host_sd)
1498 1499 1500
{
    struct target_semid_ds *target_sd;

1501 1502
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
1503 1504 1505 1506 1507
    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);
1508
    return 0;
1509 1510
}

1511 1512
union semun {
	int val;
1513
	struct semid_ds *buf;
1514 1515 1516
	unsigned short *array;
};

1517 1518
union target_semun {
	int val;
1519
	abi_long buf;
1520 1521 1522
	unsigned short int *array;
};

1523 1524 1525 1526
static inline abi_long target_to_host_semun(int cmd,
                                            union semun *host_su,
                                            abi_ulong target_addr,
                                            struct semid_ds *ds)
1527 1528 1529 1530 1531 1532
{
    union target_semun *target_su;

    switch( cmd ) {
	case IPC_STAT:
	case IPC_SET:
1533 1534
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1535 1536 1537 1538 1539 1540
	   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:
1541 1542
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1543 1544 1545 1546 1547
	   host_su->val = tswapl(target_su->val);
           unlock_user_struct(target_su, target_addr, 0);
	   break;
	case GETALL:
	case SETALL:
1548 1549
           if (!lock_user_struct(VERIFY_READ, target_su, target_addr, 1))
               return -TARGET_EFAULT;
1550 1551 1552 1553 1554 1555
	   *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);
    }
1556
    return 0;
1557 1558
}

1559 1560 1561 1562
static inline abi_long host_to_target_semun(int cmd,
                                            abi_ulong target_addr,
                                            union semun *host_su,
                                            struct semid_ds *ds)
1563 1564 1565 1566 1567 1568
{
    union target_semun *target_su;

    switch( cmd ) {
	case IPC_STAT:
	case IPC_SET:
1569 1570
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1571 1572 1573 1574 1575
	   host_to_target_semid_ds(target_su->buf,ds);
           unlock_user_struct(target_su, target_addr, 1);
	   break;
	case GETVAL:
	case SETVAL:
1576 1577
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1578 1579 1580 1581 1582
	   target_su->val = tswapl(host_su->val);
           unlock_user_struct(target_su, target_addr, 1);
	   break;
	case GETALL:
	case SETALL:
1583 1584
           if (lock_user_struct(VERIFY_WRITE, target_su, target_addr, 0))
               return -TARGET_EFAULT;
1585 1586 1587 1588 1589 1590
	   *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);
    }
1591
    return 0;
1592 1593
}

1594 1595
static inline abi_long do_semctl(int first, int second, int third,
                                 abi_long ptr)
1596 1597 1598 1599
{
    union semun arg;
    struct semid_ds dsarg;
    int cmd = third&0xff;
1600
    abi_long ret = 0;
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639

    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 已提交
1640 1641 1642
struct target_msqid_ds
{
  struct target_ipc_perm msg_perm;
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655
  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 已提交
1656 1657
};

1658 1659
static inline abi_long target_to_host_msqid_ds(struct msqid_ds *host_md,
                                               abi_ulong target_addr)
T
ths 已提交
1660 1661 1662
{
    struct target_msqid_ds *target_md;

1663 1664
    if (!lock_user_struct(VERIFY_READ, target_md, target_addr, 1))
        return -TARGET_EFAULT;
T
ths 已提交
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
    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);
1675
    return 0;
T
ths 已提交
1676 1677
}

1678 1679
static inline abi_long host_to_target_msqid_ds(abi_ulong target_addr,
                                               struct msqid_ds *host_md)
T
ths 已提交
1680 1681 1682
{
    struct target_msqid_ds *target_md;

1683 1684
    if (!lock_user_struct(VERIFY_WRITE, target_md, target_addr, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
    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);
1695
    return 0;
T
ths 已提交
1696 1697
}

1698
static inline abi_long do_msgctl(int first, int second, abi_long ptr)
T
ths 已提交
1699 1700 1701
{
    struct msqid_ds dsarg;
    int cmd = second&0xff;
1702
    abi_long ret = 0;
T
ths 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
    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 {
1716
	abi_ulong mtype;
T
ths 已提交
1717 1718 1719
	char	mtext[1];
};

1720 1721
static inline abi_long do_msgsnd(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgflg)
T
ths 已提交
1722 1723 1724
{
    struct target_msgbuf *target_mb;
    struct msgbuf *host_mb;
1725
    abi_long ret = 0;
T
ths 已提交
1726

1727 1728
    if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
    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;
}

1739 1740 1741
static inline abi_long do_msgrcv(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgtype,
                                 int msgflg)
T
ths 已提交
1742 1743
{
    struct target_msgbuf *target_mb;
1744
    char *target_mtext;
T
ths 已提交
1745
    struct msgbuf *host_mb;
1746
    abi_long ret = 0;
T
ths 已提交
1747

1748 1749
    if (!lock_user_struct(VERIFY_WRITE, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
1750 1751
    host_mb = malloc(msgsz+sizeof(long));
    ret = get_errno(msgrcv(msqid, host_mb, msgsz, 1, msgflg));
1752 1753 1754 1755 1756 1757 1758
    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 已提交
1759
    	memcpy(target_mb->mtext, host_mb->mtext, ret);
1760 1761
        unlock_user(target_mtext, target_mtext_addr, ret);
    }
T
ths 已提交
1762 1763 1764
    target_mb->mtype = tswapl(host_mb->mtype);
    free(host_mb);

1765 1766 1767
end:
    if (target_mb)
        unlock_user_struct(target_mb, msgp, 1);
T
ths 已提交
1768 1769 1770
    return ret;
}

1771
/* ??? This only works with linear mappings.  */
1772
/* do_ipc() must return target values and target errnos. */
1773 1774 1775
static abi_long do_ipc(unsigned int call, int first,
                       int second, int third,
                       abi_long ptr, abi_long fifth)
1776 1777
{
    int version;
1778
    abi_long ret = 0;
1779 1780 1781 1782 1783 1784 1785 1786
    unsigned long raddr;
    struct shmid_ds shm_info;
    int i;

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

    switch (call) {
1787
    case IPCOP_semop:
1788
        ret = get_errno(semop(first,(struct sembuf *)g2h(ptr), second));
1789 1790 1791 1792 1793 1794 1795
        break;

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

    case IPCOP_semctl:
1796
        ret = do_semctl(first, second, third, ptr);
1797 1798 1799
        break;

    case IPCOP_semtimedop:
1800
        gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
1801
        ret = -TARGET_ENOSYS;
1802
        break;
1803 1804 1805 1806 1807 1808

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

	case IPCOP_msgsnd:
T
ths 已提交
1809
		ret = do_msgsnd(first, ptr, second, third);
1810 1811 1812
		break;

	case IPCOP_msgctl:
T
ths 已提交
1813
        	ret = do_msgctl(first, second, ptr);
1814 1815 1816
		break;

	case IPCOP_msgrcv:
T
ths 已提交
1817
                {
1818
                      /* XXX: this code is not correct */
T
ths 已提交
1819 1820 1821 1822 1823
                      struct ipc_kludge
                      {
                              void *__unbounded msgp;
                              long int msgtyp;
                      };
1824

1825
                      struct ipc_kludge *foo = (struct ipc_kludge *)g2h(ptr);
T
ths 已提交
1826
                      struct msgbuf *msgp = (struct msgbuf *) foo->msgp;
1827

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

T
ths 已提交
1830
                }
1831 1832
		break;

1833 1834 1835 1836 1837 1838 1839
    case IPCOP_shmat:
	/* SHM_* flags are the same on all linux platforms */
	ret = get_errno((long) shmat(first, (void *) ptr, second));
        if (is_error(ret))
            break;
        raddr = ret;
	/* find out the length of the shared memory segment */
1840

1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856
        ret = get_errno(shmctl(first, IPC_STAT, &shm_info));
        if (is_error(ret)) {
            /* can't get length, bail out */
            shmdt((void *) raddr);
	    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;
	    }
	}
1857
        if (put_user(raddr, third, abi_ulong))
1858
            return -TARGET_EFAULT;
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
        ret = 0;
	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;
	    }
	}
	ret = get_errno(shmdt((void *) ptr));
	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:
1891
	gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
1892
	ret = -TARGET_ENOSYS;
1893 1894 1895 1896
	break;
    }
    return ret;
}
1897
#endif
1898

1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
/* 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 {
1917 1918
    unsigned int target_cmd;
    unsigned int host_cmd;
1919 1920
    const char *name;
    int access;
B
bellard 已提交
1921
    const argtype arg_type[5];
1922 1923 1924 1925 1926 1927 1928 1929
} IOCTLEntry;

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

#define MAX_STRUCT_SIZE 4096

1930
IOCTLEntry ioctl_entries[] = {
1931 1932 1933 1934 1935 1936
#define IOCTL(cmd, access, types...) \
    { TARGET_ ## cmd, cmd, #cmd, access, { types } },
#include "ioctls.h"
    { 0, 0, },
};

1937
/* ??? Implement proper locking for ioctls.  */
1938
/* do_ioctl() Must return target values and target errnos. */
1939
static abi_long do_ioctl(int fd, abi_long cmd, abi_long arg)
1940 1941 1942
{
    const IOCTLEntry *ie;
    const argtype *arg_type;
1943
    abi_long ret;
1944
    uint8_t buf_temp[MAX_STRUCT_SIZE];
1945 1946
    int target_size;
    void *argptr;
1947 1948 1949 1950

    ie = ioctl_entries;
    for(;;) {
        if (ie->target_cmd == 0) {
1951
            gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
1952
            return -TARGET_ENOSYS;
1953 1954 1955 1956 1957 1958
        }
        if (ie->target_cmd == cmd)
            break;
        ie++;
    }
    arg_type = ie->arg_type;
B
bellard 已提交
1959
#if defined(DEBUG)
1960
    gemu_log("ioctl: cmd=0x%04lx (%s)\n", (long)cmd, ie->name);
B
bellard 已提交
1961
#endif
1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
    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++;
1974
        target_size = thunk_type_size(arg_type, 0);
1975 1976 1977 1978
        switch(ie->access) {
        case IOC_R:
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
1979 1980 1981
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
1982 1983
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
1984 1985 1986
            }
            break;
        case IOC_W:
1987 1988 1989
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
1990 1991
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
1992 1993 1994 1995
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            break;
        default:
        case IOC_RW:
1996 1997 1998
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
1999 2000
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
2001 2002
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
2003 2004 2005
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
2006 2007
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
2008 2009 2010 2011 2012
            }
            break;
        }
        break;
    default:
2013 2014
        gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
                 (long)cmd, arg_type[0]);
2015
        ret = -TARGET_ENOSYS;
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
        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;
2125

2126
    host->c_iflag =
2127
        target_to_host_bitmask(tswap32(target->c_iflag), iflag_tbl);
2128
    host->c_oflag =
2129
        target_to_host_bitmask(tswap32(target->c_oflag), oflag_tbl);
2130
    host->c_cflag =
2131
        target_to_host_bitmask(tswap32(target->c_cflag), cflag_tbl);
2132
    host->c_lflag =
2133 2134
        target_to_host_bitmask(tswap32(target->c_lflag), lflag_tbl);
    host->c_line = target->c_line;
2135

2136 2137
    host->c_cc[VINTR] = target->c_cc[TARGET_VINTR];
    host->c_cc[VQUIT] = target->c_cc[TARGET_VQUIT];
2138
    host->c_cc[VERASE] = target->c_cc[TARGET_VERASE];
2139
    host->c_cc[VKILL] = target->c_cc[TARGET_VKILL];
2140
    host->c_cc[VEOF] = target->c_cc[TARGET_VEOF];
2141
    host->c_cc[VTIME] = target->c_cc[TARGET_VTIME];
2142
    host->c_cc[VMIN] = target->c_cc[TARGET_VMIN];
2143
    host->c_cc[VSWTC] = target->c_cc[TARGET_VSWTC];
2144
    host->c_cc[VSTART] = target->c_cc[TARGET_VSTART];
2145 2146
    host->c_cc[VSTOP] = target->c_cc[TARGET_VSTOP];
    host->c_cc[VSUSP] = target->c_cc[TARGET_VSUSP];
2147 2148 2149 2150 2151
    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];
2152
    host->c_cc[VEOL2] = target->c_cc[TARGET_VEOL2];
2153
}
2154

2155 2156 2157 2158 2159
static void host_to_target_termios (void *dst, const void *src)
{
    struct target_termios *target = dst;
    const struct host_termios *host = src;

2160
    target->c_iflag =
2161
        tswap32(host_to_target_bitmask(host->c_iflag, iflag_tbl));
2162
    target->c_oflag =
2163
        tswap32(host_to_target_bitmask(host->c_oflag, oflag_tbl));
2164
    target->c_cflag =
2165
        tswap32(host_to_target_bitmask(host->c_cflag, cflag_tbl));
2166
    target->c_lflag =
2167 2168
        tswap32(host_to_target_bitmask(host->c_lflag, lflag_tbl));
    target->c_line = host->c_line;
2169

2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194
    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 已提交
2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206
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 已提交
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
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 已提交
2221
#if defined(O_DIRECT)
B
bellard 已提交
2222
	{ TARGET_O_DIRECT,    TARGET_O_DIRECT,    O_DIRECT,    O_DIRECT,    },
B
bellard 已提交
2223
#endif
B
bellard 已提交
2224 2225 2226
	{ 0, 0, 0, 0 }
};

2227
#if defined(TARGET_I386)
B
bellard 已提交
2228 2229 2230 2231

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

2232
static int read_ldt(abi_ulong ptr, unsigned long bytecount)
B
bellard 已提交
2233 2234
{
    int size;
2235
    void *p;
B
bellard 已提交
2236 2237 2238 2239 2240 2241

    if (!ldt_table)
        return 0;
    size = TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE;
    if (size > bytecount)
        size = bytecount;
2242 2243 2244 2245
    p = lock_user(VERIFY_WRITE, ptr, size, 0);
    if (!p)
        return -EFAULT;
    /* ??? Should this by byteswapped?  */
2246 2247
    memcpy(p, ldt_table, size);
    unlock_user(p, ptr, size);
B
bellard 已提交
2248 2249 2250 2251
    return size;
}

/* XXX: add locking support */
2252
/* write_ldt() returns host errnos */
2253
static int write_ldt(CPUX86State *env,
2254
                     abi_ulong ptr, unsigned long bytecount, int oldmode)
B
bellard 已提交
2255 2256
{
    struct target_modify_ldt_ldt_s ldt_info;
2257
    struct target_modify_ldt_ldt_s *target_ldt_info;
B
bellard 已提交
2258 2259 2260 2261 2262 2263
    int seg_32bit, contents, read_exec_only, limit_in_pages;
    int seg_not_present, useable;
    uint32_t *lp, entry_1, entry_2;

    if (bytecount != sizeof(ldt_info))
        return -EINVAL;
2264 2265
    if (!lock_user_struct(VERIFY_READ, target_ldt_info, ptr, 1))
        return -EFAULT;
2266 2267 2268 2269 2270
    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);
2271

B
bellard 已提交
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
    if (ldt_info.entry_number >= TARGET_LDT_ENTRIES)
        return -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;

    if (contents == 3) {
        if (oldmode)
            return -EINVAL;
        if (seg_not_present == 0)
            return -EINVAL;
    }
    /* allocate the LDT */
    if (!ldt_table) {
        ldt_table = malloc(TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
        if (!ldt_table)
            return -ENOMEM;
        memset(ldt_table, 0, TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
2293
        env->ldt.base = h2g(ldt_table);
B
bellard 已提交
2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311
        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;
        }
    }
2312

B
bellard 已提交
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
    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) |
        0x7000;
    if (!oldmode)
        entry_2 |= (useable << 20);
B
bellard 已提交
2326

B
bellard 已提交
2327 2328 2329 2330 2331 2332 2333 2334 2335
    /* 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 */
2336 2337
/* do_modify_ldt() returns host errnos (it is inconsistent with the
   other do_*() functions which return target errnos). */
2338
int do_modify_ldt(CPUX86State *env, int func, abi_ulong ptr, unsigned long bytecount)
B
bellard 已提交
2339 2340
{
    int ret = -ENOSYS;
2341

B
bellard 已提交
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
    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;
    }
    return ret;
}
B
bellard 已提交
2355

2356 2357
#endif /* defined(TARGET_I386) */

B
bellard 已提交
2358 2359 2360 2361 2362 2363
/* 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)
{
2364
    CPUState *env = arg;
B
bellard 已提交
2365 2366 2367 2368 2369
    cpu_loop(env);
    /* never exits */
    return 0;
}

2370 2371
/* do_fork() Must return host values and target errnos (unlike most
   do_*() functions). */
2372
int do_fork(CPUState *env, unsigned int flags, abi_ulong newsp)
B
bellard 已提交
2373 2374
{
    int ret;
B
bellard 已提交
2375
    TaskState *ts;
B
bellard 已提交
2376
    uint8_t *new_stack;
2377
    CPUState *new_env;
2378

B
bellard 已提交
2379
    if (flags & CLONE_VM) {
B
bellard 已提交
2380 2381 2382 2383 2384 2385 2386
        ts = malloc(sizeof(TaskState) + NEW_STACK_SIZE);
        memset(ts, 0, sizeof(TaskState));
        new_stack = ts->stack;
        ts->used = 1;
        /* add in task state list */
        ts->next = first_task_state;
        first_task_state = ts;
B
bellard 已提交
2387
        /* we create a new CPU instance. */
2388
        new_env = cpu_copy(env);
2389 2390 2391
#if defined(TARGET_I386)
        if (!newsp)
            newsp = env->regs[R_ESP];
B
bellard 已提交
2392 2393
        new_env->regs[R_ESP] = newsp;
        new_env->regs[R_EAX] = 0;
2394 2395 2396 2397 2398
#elif defined(TARGET_ARM)
        if (!newsp)
            newsp = env->regs[13];
        new_env->regs[13] = newsp;
        new_env->regs[0] = 0;
2399
#elif defined(TARGET_SPARC)
B
bellard 已提交
2400 2401 2402 2403 2404
        if (!newsp)
            newsp = env->regwptr[22];
        new_env->regwptr[22] = newsp;
        new_env->regwptr[0] = 0;
	/* XXXXX */
2405
        printf ("HELPME: %s:%d\n", __FILE__, __LINE__);
P
pbrook 已提交
2406 2407 2408 2409 2410 2411
#elif defined(TARGET_M68K)
        if (!newsp)
            newsp = env->aregs[7];
        new_env->aregs[7] = newsp;
        new_env->dregs[0] = 0;
        /* ??? is this sufficient?  */
B
bellard 已提交
2412
#elif defined(TARGET_MIPS)
T
ths 已提交
2413
        if (!newsp)
2414 2415
            newsp = env->gpr[29][env->current_tc];
        new_env->gpr[29][env->current_tc] = newsp;
2416 2417 2418 2419
#elif defined(TARGET_PPC)
        if (!newsp)
            newsp = env->gpr[1];
        new_env->gpr[1] = newsp;
2420
        {
2421 2422 2423 2424
            int i;
            for (i = 7; i < 32; i++)
                new_env->gpr[i] = 0;
        }
B
bellard 已提交
2425 2426 2427 2428 2429
#elif defined(TARGET_SH4)
	if (!newsp)
	  newsp = env->gregs[15];
	new_env->gregs[15] = newsp;
	/* XXXXX */
2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
#elif defined(TARGET_ALPHA)
       if (!newsp)
         newsp = env->ir[30];
       new_env->ir[30] = newsp;
        /* ? */
        {
            int i;
            for (i = 7; i < 30; i++)
                new_env->ir[i] = 0;
        }
2440 2441 2442 2443
#elif defined(TARGET_CRIS)
	if (!newsp)
	  newsp = env->regs[14];
	new_env->regs[14] = newsp;
2444 2445 2446
#else
#error unsupported target CPU
#endif
B
bellard 已提交
2447
        new_env->opaque = ts;
2448
#ifdef __ia64__
B
bellard 已提交
2449
        ret = __clone2(clone_func, new_stack + NEW_STACK_SIZE, flags, new_env);
2450 2451 2452
#else
	ret = clone(clone_func, new_stack + NEW_STACK_SIZE, flags, new_env);
#endif
B
bellard 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461
    } else {
        /* if no CLONE_VM, we consider it is a fork */
        if ((flags & ~CSIGNAL) != 0)
            return -EINVAL;
        ret = fork();
    }
    return ret;
}

2462
static abi_long do_fcntl(int fd, int cmd, abi_ulong arg)
B
bellard 已提交
2463 2464
{
    struct flock fl;
2465
    struct target_flock *target_fl;
2466 2467
    struct flock64 fl64;
    struct target_flock64 *target_fl64;
2468
    abi_long ret;
2469

B
bellard 已提交
2470 2471
    switch(cmd) {
    case TARGET_F_GETLK:
2472 2473
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
T
ths 已提交
2474 2475 2476 2477 2478 2479
        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 已提交
2480 2481
        ret = fcntl(fd, cmd, &fl);
        if (ret == 0) {
2482 2483
            if (!lock_user_struct(VERIFY_WRITE, target_fl, arg, 0))
                return -TARGET_EFAULT;
B
bellard 已提交
2484 2485 2486 2487 2488
            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);
2489
            unlock_user_struct(target_fl, arg, 1);
B
bellard 已提交
2490 2491
        }
        break;
2492

B
bellard 已提交
2493 2494
    case TARGET_F_SETLK:
    case TARGET_F_SETLKW:
2495 2496
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
B
bellard 已提交
2497 2498 2499 2500 2501
        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);
2502
        unlock_user_struct(target_fl, arg, 0);
B
bellard 已提交
2503 2504
        ret = fcntl(fd, cmd, &fl);
        break;
2505

B
bellard 已提交
2506
    case TARGET_F_GETLK64:
2507 2508
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
T
ths 已提交
2509 2510 2511 2512 2513 2514
        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);
2515 2516
        ret = fcntl(fd, cmd >> 1, &fl64);
        if (ret == 0) {
2517 2518
            if (!lock_user_struct(VERIFY_WRITE, target_fl64, arg, 0))
                return -TARGET_EFAULT;
2519 2520 2521 2522 2523 2524 2525 2526
            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);
        }
		break;
B
bellard 已提交
2527 2528
    case TARGET_F_SETLK64:
    case TARGET_F_SETLKW64:
2529 2530
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
2531 2532 2533 2534 2535 2536
        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);
2537
        ret = fcntl(fd, cmd >> 1, &fl64);
B
bellard 已提交
2538 2539
        break;

B
bellard 已提交
2540 2541 2542 2543 2544 2545 2546 2547 2548
    case F_GETFL:
        ret = fcntl(fd, cmd, arg);
        ret = host_to_target_bitmask(ret, fcntl_flags_tbl);
        break;

    case F_SETFL:
        ret = fcntl(fd, cmd, target_to_host_bitmask(arg, fcntl_flags_tbl));
        break;

B
bellard 已提交
2549 2550 2551 2552 2553 2554 2555
    default:
        ret = fcntl(fd, cmd, arg);
        break;
    }
    return ret;
}

2556
#ifdef USE_UID16
B
bellard 已提交
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
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 已提交
2591

2592 2593
void syscall_init(void)
{
2594 2595 2596
    IOCTLEntry *ie;
    const argtype *arg_type;
    int size;
2597
    int i;
2598

2599 2600
#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);
2601 2602 2603
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL
2604 2605 2606 2607 2608 2609 2610 2611 2612

    /* 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) {
2613
                fprintf(stderr, "cannot patch size for ioctl 0x%x\n",
2614 2615 2616 2617 2618
                        ie->target_cmd);
                exit(1);
            }
            arg_type++;
            size = thunk_type_size(arg_type, 0);
2619
            ie->target_cmd = (ie->target_cmd &
2620 2621 2622
                              ~(TARGET_IOC_SIZEMASK << TARGET_IOC_SIZESHIFT)) |
                (size << TARGET_IOC_SIZESHIFT);
        }
2623 2624 2625 2626 2627 2628

        /* 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;

2629 2630 2631
        /* automatic consistency check if same arch */
#if defined(__i386__) && defined(TARGET_I386)
        if (ie->target_cmd != ie->host_cmd) {
2632
            fprintf(stderr, "ERROR: ioctl: target=0x%x host=0x%x\n",
2633 2634 2635 2636 2637
                    ie->target_cmd, ie->host_cmd);
        }
#endif
        ie++;
    }
2638
}
B
bellard 已提交
2639

2640
#if TARGET_ABI_BITS == 32
P
pbrook 已提交
2641 2642 2643 2644 2645 2646 2647 2648
static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
{
#ifdef TARGET_WORDS_BIG_ENDIAN
    return ((uint64_t)word0 << 32) | word1;
#else
    return ((uint64_t)word1 << 32) | word0;
#endif
}
2649
#else /* TARGET_ABI_BITS == 32 */
2650 2651 2652 2653
static inline uint64_t target_offset64(uint64_t word0, uint64_t word1)
{
    return word0;
}
2654
#endif /* TARGET_ABI_BITS != 32 */
P
pbrook 已提交
2655 2656

#ifdef TARGET_NR_truncate64
2657 2658 2659 2660
static inline abi_long target_truncate64(void *cpu_env, const char *arg1,
                                         abi_long arg2,
                                         abi_long arg3,
                                         abi_long arg4)
P
pbrook 已提交
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673
{
#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
2674 2675 2676 2677
static inline abi_long target_ftruncate64(void *cpu_env, abi_long arg1,
                                          abi_long arg2,
                                          abi_long arg3,
                                          abi_long arg4)
P
pbrook 已提交
2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
{
#ifdef TARGET_ARM
    if (((CPUARMState *)cpu_env)->eabi)
      {
        arg2 = arg3;
        arg3 = arg4;
      }
#endif
    return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

2690 2691
static inline abi_long target_to_host_timespec(struct timespec *host_ts,
                                               abi_ulong target_addr)
2692 2693 2694
{
    struct target_timespec *target_ts;

2695 2696
    if (!lock_user_struct(VERIFY_READ, target_ts, target_addr, 1))
        return -TARGET_EFAULT;
2697 2698 2699 2700 2701
    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);
}

2702 2703
static inline abi_long host_to_target_timespec(abi_ulong target_addr,
                                               struct timespec *host_ts)
2704 2705 2706
{
    struct target_timespec *target_ts;

2707 2708
    if (!lock_user_struct(VERIFY_WRITE, target_ts, target_addr, 0))
        return -TARGET_EFAULT;
2709 2710 2711 2712 2713
    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);
}

2714 2715 2716
/* 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>. */
2717 2718 2719
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)
2720
{
2721
    abi_long ret;
2722
    struct stat st;
B
bellard 已提交
2723
    struct statfs stfs;
2724
    void *p;
2725

B
bellard 已提交
2726
#ifdef DEBUG
B
bellard 已提交
2727
    gemu_log("syscall %d", num);
B
bellard 已提交
2728
#endif
2729 2730 2731
    if(do_strace)
        print_syscall(num, arg1, arg2, arg3, arg4, arg5, arg6);

2732 2733
    switch(num) {
    case TARGET_NR_exit:
B
bellard 已提交
2734 2735 2736
#ifdef HAVE_GPROF
        _mcleanup();
#endif
2737
        gdb_exit(cpu_env, arg1);
B
bellard 已提交
2738
        /* XXX: should free thread stack and CPU env */
2739 2740 2741 2742
        _exit(arg1);
        ret = 0; /* avoid warning */
        break;
    case TARGET_NR_read:
2743
        page_unprotect_range(arg2, arg3);
2744 2745
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
2746 2747
        ret = get_errno(read(arg1, p, arg3));
        unlock_user(p, arg2, ret);
2748 2749
        break;
    case TARGET_NR_write:
2750 2751
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
2752 2753
        ret = get_errno(write(arg1, p, arg3));
        unlock_user(p, arg2, 0);
2754 2755
        break;
    case TARGET_NR_open:
2756 2757 2758 2759
        if (!(p = lock_user_string(arg1))) {
            return -TARGET_EFAULT;
            goto fail;
        }
2760
        ret = get_errno(open(path(p),
B
bellard 已提交
2761 2762
                             target_to_host_bitmask(arg2, fcntl_flags_tbl),
                             arg3));
2763
        unlock_user(p, arg1, 0);
2764
        break;
2765 2766
#if defined(TARGET_NR_openat) && defined(__NR_openat)
    case TARGET_NR_openat:
2767 2768 2769 2770 2771 2772 2773
        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);
2774 2775
        break;
#endif
2776 2777 2778 2779
    case TARGET_NR_close:
        ret = get_errno(close(arg1));
        break;
    case TARGET_NR_brk:
2780
        ret = do_brk(arg1);
2781 2782
        break;
    case TARGET_NR_fork:
B
bellard 已提交
2783
        ret = get_errno(do_fork(cpu_env, SIGCHLD, 0));
2784
        break;
2785
#ifdef TARGET_NR_waitpid
2786 2787
    case TARGET_NR_waitpid:
        {
2788 2789 2790 2791
            int status;
            ret = get_errno(waitpid(arg1, &status, arg3));
            if (!is_error(ret) && arg2)
                tput32(arg2, status);
2792 2793
        }
        break;
2794
#endif
2795
#ifdef TARGET_NR_creat /* not on alpha */
2796
    case TARGET_NR_creat:
2797 2798
        if (!(p = lock_user_string(arg1)))
            goto efault;
2799 2800
        ret = get_errno(creat(p, arg2));
        unlock_user(p, arg1, 0);
2801
        break;
2802
#endif
2803
    case TARGET_NR_link:
2804 2805 2806 2807
        {
            void * p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
2808 2809 2810 2811
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(link(p, p2));
2812 2813 2814
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
2815
        break;
2816 2817 2818 2819
#if defined(TARGET_NR_linkat) && defined(__NR_linkat)
    case TARGET_NR_linkat:
        {
            void * p2 = NULL;
2820 2821
            if (!arg2 || !arg4)
                goto efault;
2822 2823
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
2824
            if (!p || !p2)
2825
                ret = -TARGET_EFAULT;
2826 2827
            else
                ret = get_errno(sys_linkat(arg1, p, arg3, p2, arg5));
2828 2829
            unlock_user(p, arg2, 0);
            unlock_user(p2, arg4, 0);
2830 2831 2832
        }
        break;
#endif
2833
    case TARGET_NR_unlink:
2834 2835
        if (!(p = lock_user_string(arg1)))
            goto efault;
2836 2837
        ret = get_errno(unlink(p));
        unlock_user(p, arg1, 0);
2838
        break;
2839 2840
#if defined(TARGET_NR_unlinkat) && defined(__NR_unlinkat)
    case TARGET_NR_unlinkat:
2841 2842 2843 2844
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_unlinkat(arg1, p, arg3));
        unlock_user(p, arg2, 0);
2845
#endif
2846
    case TARGET_NR_execve:
B
bellard 已提交
2847 2848
        {
            char **argp, **envp;
B
bellard 已提交
2849
            int argc, envc;
2850 2851 2852 2853
            abi_ulong gp;
            abi_ulong guest_argp;
            abi_ulong guest_envp;
            abi_ulong addr;
B
bellard 已提交
2854 2855
            char **q;

B
bellard 已提交
2856
            argc = 0;
2857 2858
            guest_argp = arg2;
            for (gp = guest_argp; tgetl(gp); gp++)
B
bellard 已提交
2859
                argc++;
B
bellard 已提交
2860
            envc = 0;
2861 2862
            guest_envp = arg3;
            for (gp = guest_envp; tgetl(gp); gp++)
B
bellard 已提交
2863 2864
                envc++;

B
bellard 已提交
2865 2866
            argp = alloca((argc + 1) * sizeof(void *));
            envp = alloca((envc + 1) * sizeof(void *));
B
bellard 已提交
2867

2868
            for (gp = guest_argp, q = argp; ;
2869
                  gp += sizeof(abi_ulong), q++) {
2870 2871 2872
                addr = tgetl(gp);
                if (!addr)
                    break;
2873 2874 2875 2876
                if (!(*q = lock_user_string(addr))) {
                    ret = -TARGET_EFAULT;
                    goto execve_fail;
                }
2877
            }
B
bellard 已提交
2878 2879
            *q = NULL;

2880
            for (gp = guest_envp, q = envp; ;
2881
                  gp += sizeof(abi_ulong), q++) {
2882 2883 2884
                addr = tgetl(gp);
                if (!addr)
                    break;
2885 2886 2887 2888
                if (!(*q = lock_user_string(addr))) {
                    ret = -TARGET_EFAULT;
                    goto execve_fail;
                }
2889
            }
B
bellard 已提交
2890
            *q = NULL;
B
bellard 已提交
2891

2892 2893 2894 2895
            if (!(p = lock_user_string(arg1))) {
                ret = -TARGET_EFAULT;
                goto execve_fail;
            }
2896 2897 2898
            ret = get_errno(execve(p, argp, envp));
            unlock_user(p, arg1, 0);

2899
        execve_fail:
2900
            for (gp = guest_argp, q = argp; *q;
2901
                  gp += sizeof(abi_ulong), q++) {
2902 2903 2904 2905
                addr = tgetl(gp);
                unlock_user(*q, addr, 0);
            }
            for (gp = guest_envp, q = envp; *q;
2906
                  gp += sizeof(abi_ulong), q++) {
2907 2908 2909
                addr = tgetl(gp);
                unlock_user(*q, addr, 0);
            }
B
bellard 已提交
2910
        }
2911 2912
        break;
    case TARGET_NR_chdir:
2913 2914
        if (!(p = lock_user_string(arg1)))
            goto efault;
2915 2916
        ret = get_errno(chdir(p));
        unlock_user(p, arg1, 0);
2917
        break;
B
bellard 已提交
2918
#ifdef TARGET_NR_time
2919 2920
    case TARGET_NR_time:
        {
2921 2922 2923 2924
            time_t host_time;
            ret = get_errno(time(&host_time));
            if (!is_error(ret) && arg1)
                tputl(arg1, host_time);
2925 2926
        }
        break;
B
bellard 已提交
2927
#endif
2928
    case TARGET_NR_mknod:
2929 2930
        if (!(p = lock_user_string(arg1)))
            goto efault;
2931 2932
        ret = get_errno(mknod(p, arg2, arg3));
        unlock_user(p, arg1, 0);
2933
        break;
2934 2935
#if defined(TARGET_NR_mknodat) && defined(__NR_mknodat)
    case TARGET_NR_mknodat:
2936 2937 2938 2939
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_mknodat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
2940 2941
        break;
#endif
2942
    case TARGET_NR_chmod:
2943 2944
        if (!(p = lock_user_string(arg1)))
            goto efault;
2945 2946
        ret = get_errno(chmod(p, arg2));
        unlock_user(p, arg1, 0);
2947
        break;
2948
#ifdef TARGET_NR_break
2949 2950
    case TARGET_NR_break:
        goto unimplemented;
2951 2952
#endif
#ifdef TARGET_NR_oldstat
2953 2954
    case TARGET_NR_oldstat:
        goto unimplemented;
2955
#endif
2956 2957 2958
    case TARGET_NR_lseek:
        ret = get_errno(lseek(arg1, arg2, arg3));
        break;
2959 2960 2961
#ifdef TARGET_NR_getxpid
    case TARGET_NR_getxpid:
#else
2962
    case TARGET_NR_getpid:
2963
#endif
2964 2965 2966
        ret = get_errno(getpid());
        break;
    case TARGET_NR_mount:
2967 2968 2969 2970 2971 2972
		{
			/* 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);
2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983
                        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);
2984 2985
			break;
		}
2986
#ifdef TARGET_NR_umount
2987
    case TARGET_NR_umount:
2988 2989
        if (!(p = lock_user_string(arg1)))
            goto efault;
2990 2991
        ret = get_errno(umount(p));
        unlock_user(p, arg1, 0);
2992
        break;
2993
#endif
2994
#ifdef TARGET_NR_stime /* not on alpha */
2995 2996
    case TARGET_NR_stime:
        {
2997 2998 2999
            time_t host_time;
            host_time = tgetl(arg1);
            ret = get_errno(stime(&host_time));
3000 3001
        }
        break;
3002
#endif
3003 3004
    case TARGET_NR_ptrace:
        goto unimplemented;
3005
#ifdef TARGET_NR_alarm /* not on alpha */
3006 3007 3008
    case TARGET_NR_alarm:
        ret = alarm(arg1);
        break;
3009
#endif
3010
#ifdef TARGET_NR_oldfstat
3011 3012
    case TARGET_NR_oldfstat:
        goto unimplemented;
3013
#endif
3014
#ifdef TARGET_NR_pause /* not on alpha */
3015 3016 3017
    case TARGET_NR_pause:
        ret = get_errno(pause());
        break;
3018
#endif
3019
#ifdef TARGET_NR_utime
3020
    case TARGET_NR_utime:
3021
        {
3022 3023 3024
            struct utimbuf tbuf, *host_tbuf;
            struct target_utimbuf *target_tbuf;
            if (arg2) {
3025 3026
                if (!lock_user_struct(VERIFY_READ, target_tbuf, arg2, 1))
                    goto efault;
3027 3028 3029 3030
                tbuf.actime = tswapl(target_tbuf->actime);
                tbuf.modtime = tswapl(target_tbuf->modtime);
                unlock_user_struct(target_tbuf, arg2, 0);
                host_tbuf = &tbuf;
B
bellard 已提交
3031
            } else {
3032
                host_tbuf = NULL;
B
bellard 已提交
3033
            }
3034 3035
            if (!(p = lock_user_string(arg1)))
                goto efault;
3036 3037
            ret = get_errno(utime(p, host_tbuf));
            unlock_user(p, arg1, 0);
3038 3039
        }
        break;
3040
#endif
B
bellard 已提交
3041 3042 3043
    case TARGET_NR_utimes:
        {
            struct timeval *tvp, tv[2];
3044 3045 3046 3047
            if (arg2) {
                target_to_host_timeval(&tv[0], arg2);
                target_to_host_timeval(&tv[1],
                    arg2 + sizeof (struct target_timeval));
B
bellard 已提交
3048 3049 3050 3051
                tvp = tv;
            } else {
                tvp = NULL;
            }
3052 3053
            if (!(p = lock_user_string(arg1)))
                goto efault;
3054 3055
            ret = get_errno(utimes(p, tvp));
            unlock_user(p, arg1, 0);
B
bellard 已提交
3056 3057
        }
        break;
3058
#ifdef TARGET_NR_stty
3059 3060
    case TARGET_NR_stty:
        goto unimplemented;
3061 3062
#endif
#ifdef TARGET_NR_gtty
3063 3064
    case TARGET_NR_gtty:
        goto unimplemented;
3065
#endif
3066
    case TARGET_NR_access:
3067 3068
        if (!(p = lock_user_string(arg1)))
            goto efault;
3069 3070
        ret = get_errno(access(p, arg2));
        unlock_user(p, arg1, 0);
3071
        break;
3072 3073
#if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
    case TARGET_NR_faccessat:
3074 3075 3076 3077
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_faccessat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
3078 3079
        break;
#endif
3080
#ifdef TARGET_NR_nice /* not on alpha */
3081 3082 3083
    case TARGET_NR_nice:
        ret = get_errno(nice(arg1));
        break;
3084
#endif
3085
#ifdef TARGET_NR_ftime
3086 3087
    case TARGET_NR_ftime:
        goto unimplemented;
3088
#endif
3089
    case TARGET_NR_sync:
B
bellard 已提交
3090 3091
        sync();
        ret = 0;
3092 3093 3094 3095 3096
        break;
    case TARGET_NR_kill:
        ret = get_errno(kill(arg1, arg2));
        break;
    case TARGET_NR_rename:
3097 3098 3099 3100
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
3101 3102 3103 3104
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(rename(p, p2));
3105 3106 3107
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
3108
        break;
3109 3110 3111
#if defined(TARGET_NR_renameat) && defined(__NR_renameat)
    case TARGET_NR_renameat:
        {
3112
            void *p2;
3113 3114
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
3115
            if (!p || !p2)
3116
                ret = -TARGET_EFAULT;
3117 3118
            else
                ret = get_errno(sys_renameat(arg1, p, arg3, p2));
3119 3120
            unlock_user(p2, arg4, 0);
            unlock_user(p, arg2, 0);
3121 3122 3123
        }
        break;
#endif
3124
    case TARGET_NR_mkdir:
3125 3126
        if (!(p = lock_user_string(arg1)))
            goto efault;
3127 3128
        ret = get_errno(mkdir(p, arg2));
        unlock_user(p, arg1, 0);
3129
        break;
3130 3131
#if defined(TARGET_NR_mkdirat) && defined(__NR_mkdirat)
    case TARGET_NR_mkdirat:
3132 3133 3134 3135
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_mkdirat(arg1, p, arg3));
        unlock_user(p, arg2, 0);
3136 3137
        break;
#endif
3138
    case TARGET_NR_rmdir:
3139 3140
        if (!(p = lock_user_string(arg1)))
            goto efault;
3141 3142
        ret = get_errno(rmdir(p));
        unlock_user(p, arg1, 0);
3143 3144 3145 3146 3147 3148
        break;
    case TARGET_NR_dup:
        ret = get_errno(dup(arg1));
        break;
    case TARGET_NR_pipe:
        {
3149 3150
            int host_pipe[2];
            ret = get_errno(pipe(host_pipe));
3151
            if (!is_error(ret)) {
3152
#if defined(TARGET_MIPS)
3153 3154
                CPUMIPSState *env = (CPUMIPSState*)cpu_env;
		env->gpr[3][env->current_tc] = host_pipe[1];
3155 3156
		ret = host_pipe[0];
#else
3157 3158
                tput32(arg1, host_pipe[0]);
                tput32(arg1 + 4, host_pipe[1]);
3159
#endif
3160 3161 3162 3163
            }
        }
        break;
    case TARGET_NR_times:
B
bellard 已提交
3164
        {
3165
            struct target_tms *tmsp;
B
bellard 已提交
3166 3167
            struct tms tms;
            ret = get_errno(times(&tms));
3168
            if (arg1) {
3169 3170 3171
                tmsp = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_tms), 0);
                if (!tmsp)
                    goto efault;
B
bellard 已提交
3172 3173 3174 3175
                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 已提交
3176
            }
B
bellard 已提交
3177 3178
            if (!is_error(ret))
                ret = host_to_target_clock_t(ret);
B
bellard 已提交
3179 3180
        }
        break;
3181
#ifdef TARGET_NR_prof
3182 3183
    case TARGET_NR_prof:
        goto unimplemented;
3184
#endif
3185
#ifdef TARGET_NR_signal
3186 3187
    case TARGET_NR_signal:
        goto unimplemented;
3188
#endif
3189
    case TARGET_NR_acct:
3190 3191
        if (!(p = lock_user_string(arg1)))
            goto efault;
3192 3193 3194
        ret = get_errno(acct(path(p)));
        unlock_user(p, arg1, 0);
        break;
3195
#ifdef TARGET_NR_umount2 /* not on alpha */
3196
    case TARGET_NR_umount2:
3197 3198
        if (!(p = lock_user_string(arg1)))
            goto efault;
3199 3200
        ret = get_errno(umount2(p, arg2));
        unlock_user(p, arg1, 0);
3201
        break;
3202
#endif
3203
#ifdef TARGET_NR_lock
3204 3205
    case TARGET_NR_lock:
        goto unimplemented;
3206
#endif
3207 3208 3209 3210
    case TARGET_NR_ioctl:
        ret = do_ioctl(arg1, arg2, arg3);
        break;
    case TARGET_NR_fcntl:
B
bellard 已提交
3211
        ret = get_errno(do_fcntl(arg1, arg2, arg3));
3212
        break;
3213
#ifdef TARGET_NR_mpx
3214 3215
    case TARGET_NR_mpx:
        goto unimplemented;
3216
#endif
3217 3218 3219
    case TARGET_NR_setpgid:
        ret = get_errno(setpgid(arg1, arg2));
        break;
3220
#ifdef TARGET_NR_ulimit
3221 3222
    case TARGET_NR_ulimit:
        goto unimplemented;
3223 3224
#endif
#ifdef TARGET_NR_oldolduname
3225 3226
    case TARGET_NR_oldolduname:
        goto unimplemented;
3227
#endif
3228 3229 3230 3231
    case TARGET_NR_umask:
        ret = get_errno(umask(arg1));
        break;
    case TARGET_NR_chroot:
3232 3233
        if (!(p = lock_user_string(arg1)))
            goto efault;
3234 3235
        ret = get_errno(chroot(p));
        unlock_user(p, arg1, 0);
3236 3237 3238 3239 3240 3241
        break;
    case TARGET_NR_ustat:
        goto unimplemented;
    case TARGET_NR_dup2:
        ret = get_errno(dup2(arg1, arg2));
        break;
3242
#ifdef TARGET_NR_getppid /* not on alpha */
3243 3244 3245
    case TARGET_NR_getppid:
        ret = get_errno(getppid());
        break;
3246
#endif
3247 3248 3249 3250 3251 3252
    case TARGET_NR_getpgrp:
        ret = get_errno(getpgrp());
        break;
    case TARGET_NR_setsid:
        ret = get_errno(setsid());
        break;
3253
#ifdef TARGET_NR_sigaction
3254 3255
    case TARGET_NR_sigaction:
        {
T
ths 已提交
3256
#if !defined(TARGET_MIPS)
3257
            struct target_old_sigaction *old_act;
B
bellard 已提交
3258
            struct target_sigaction act, oact, *pact;
3259
            if (arg2) {
3260 3261
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
B
bellard 已提交
3262 3263 3264 3265
                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;
3266
                unlock_user_struct(old_act, arg2, 0);
B
bellard 已提交
3267 3268 3269 3270 3271
                pact = &act;
            } else {
                pact = NULL;
            }
            ret = get_errno(do_sigaction(arg1, pact, &oact));
3272
            if (!is_error(ret) && arg3) {
3273 3274
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
3275 3276 3277 3278 3279
                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 已提交
3280
            }
T
ths 已提交
3281
#else
3282 3283 3284
	    struct target_sigaction act, oact, *pact, *old_act;

	    if (arg2) {
3285 3286
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298
		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) {
3299 3300
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
3301 3302 3303 3304 3305 3306 3307 3308
		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 已提交
3309
#endif
3310 3311
        }
        break;
3312
#endif
B
bellard 已提交
3313
    case TARGET_NR_rt_sigaction:
3314 3315 3316 3317
        {
            struct target_sigaction *act;
            struct target_sigaction *oact;

3318 3319 3320 3321
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, act, arg2, 1))
                    goto efault;
            } else
3322
                act = NULL;
3323 3324 3325 3326 3327 3328
            if (arg3) {
                if (!lock_user_struct(VERIFY_WRITE, oact, arg3, 0)) {
                    ret = -TARGET_EFAULT;
                    goto rt_sigaction_fail;
                }
            } else
3329 3330
                oact = NULL;
            ret = get_errno(do_sigaction(arg1, act, oact));
3331 3332
	rt_sigaction_fail:
            if (act)
3333
                unlock_user_struct(act, arg2, 0);
3334
            if (oact)
3335 3336
                unlock_user_struct(oact, arg3, 1);
        }
B
bellard 已提交
3337
        break;
3338
#ifdef TARGET_NR_sgetmask /* not on alpha */
3339
    case TARGET_NR_sgetmask:
B
bellard 已提交
3340 3341
        {
            sigset_t cur_set;
3342
            abi_ulong target_set;
B
bellard 已提交
3343 3344 3345 3346 3347
            sigprocmask(0, NULL, &cur_set);
            host_to_target_old_sigset(&target_set, &cur_set);
            ret = target_set;
        }
        break;
3348 3349
#endif
#ifdef TARGET_NR_ssetmask /* not on alpha */
3350
    case TARGET_NR_ssetmask:
B
bellard 已提交
3351 3352
        {
            sigset_t set, oset, cur_set;
3353
            abi_ulong target_set = arg1;
B
bellard 已提交
3354 3355 3356 3357 3358 3359 3360 3361
            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;
3362
#endif
3363
#ifdef TARGET_NR_sigprocmask
B
bellard 已提交
3364 3365 3366 3367
    case TARGET_NR_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
3368

3369
            if (arg2) {
B
bellard 已提交
3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380
                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:
3381
                    ret = -TARGET_EINVAL;
B
bellard 已提交
3382 3383
                    goto fail;
                }
3384 3385
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
                    goto efault;
3386 3387
                target_to_host_old_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
3388 3389 3390 3391 3392 3393
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(arg1, set_ptr, &oldset));
3394
            if (!is_error(ret) && arg3) {
3395 3396
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
                    goto efault;
3397 3398
                host_to_target_old_sigset(p, &oldset);
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
3399 3400 3401
            }
        }
        break;
3402
#endif
B
bellard 已提交
3403 3404 3405 3406
    case TARGET_NR_rt_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
3407

3408
            if (arg2) {
B
bellard 已提交
3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419
                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:
3420
                    ret = -TARGET_EINVAL;
B
bellard 已提交
3421 3422
                    goto fail;
                }
3423 3424
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
                    goto efault;
3425 3426
                target_to_host_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
3427 3428 3429 3430 3431 3432
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
3433
            if (!is_error(ret) && arg3) {
3434 3435
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
                    goto efault;
3436 3437
                host_to_target_sigset(p, &oldset);
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
3438 3439 3440
            }
        }
        break;
3441
#ifdef TARGET_NR_sigpending
B
bellard 已提交
3442 3443 3444 3445 3446
    case TARGET_NR_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
3447 3448
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
                    goto efault;
3449 3450
                host_to_target_old_sigset(p, &set);
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
3451 3452 3453
            }
        }
        break;
3454
#endif
B
bellard 已提交
3455 3456 3457 3458 3459
    case TARGET_NR_rt_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
3460 3461
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
                    goto efault;
3462 3463
                host_to_target_sigset(p, &set);
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
3464 3465 3466
            }
        }
        break;
3467
#ifdef TARGET_NR_sigsuspend
B
bellard 已提交
3468 3469 3470
    case TARGET_NR_sigsuspend:
        {
            sigset_t set;
3471 3472
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
3473 3474
            target_to_host_old_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
3475 3476 3477
            ret = get_errno(sigsuspend(&set));
        }
        break;
3478
#endif
B
bellard 已提交
3479 3480 3481
    case TARGET_NR_rt_sigsuspend:
        {
            sigset_t set;
3482 3483
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
3484 3485
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
3486 3487 3488 3489 3490 3491 3492 3493
            ret = get_errno(sigsuspend(&set));
        }
        break;
    case TARGET_NR_rt_sigtimedwait:
        {
            sigset_t set;
            struct timespec uts, *puts;
            siginfo_t uinfo;
3494

3495 3496
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
                goto efault;
3497 3498 3499
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
            if (arg3) {
B
bellard 已提交
3500
                puts = &uts;
3501
                target_to_host_timespec(puts, arg3);
B
bellard 已提交
3502 3503 3504 3505
            } else {
                puts = NULL;
            }
            ret = get_errno(sigtimedwait(&set, &uinfo, puts));
3506
            if (!is_error(ret) && arg2) {
3507 3508
                if (!(p = lock_user(VERIFY_WRITE, arg2, sizeof(target_sigset_t), 0)))
                    goto efault;
3509 3510
                host_to_target_siginfo(p, &uinfo);
                unlock_user(p, arg2, sizeof(target_sigset_t));
B
bellard 已提交
3511 3512 3513 3514 3515 3516
            }
        }
        break;
    case TARGET_NR_rt_sigqueueinfo:
        {
            siginfo_t uinfo;
3517 3518
            if (!(p = lock_user(VERIFY_READ, arg3, sizeof(target_sigset_t), 1)))
                goto efault;
3519 3520
            target_to_host_siginfo(&uinfo, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
3521 3522 3523
            ret = get_errno(sys_rt_sigqueueinfo(arg1, arg2, &uinfo));
        }
        break;
3524
#ifdef TARGET_NR_sigreturn
B
bellard 已提交
3525 3526 3527 3528
    case TARGET_NR_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_sigreturn(cpu_env);
        break;
3529
#endif
B
bellard 已提交
3530 3531 3532 3533
    case TARGET_NR_rt_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_rt_sigreturn(cpu_env);
        break;
3534
    case TARGET_NR_sethostname:
3535 3536
        if (!(p = lock_user_string(arg1)))
            goto efault;
3537 3538
        ret = get_errno(sethostname(p, arg2));
        unlock_user(p, arg1, 0);
3539 3540
        break;
    case TARGET_NR_setrlimit:
B
bellard 已提交
3541 3542 3543
        {
            /* XXX: convert resource ? */
            int resource = arg1;
3544
            struct target_rlimit *target_rlim;
B
bellard 已提交
3545
            struct rlimit rlim;
3546 3547
            if (!lock_user_struct(VERIFY_READ, target_rlim, arg2, 1))
                goto efault;
B
bellard 已提交
3548 3549
            rlim.rlim_cur = tswapl(target_rlim->rlim_cur);
            rlim.rlim_max = tswapl(target_rlim->rlim_max);
3550
            unlock_user_struct(target_rlim, arg2, 0);
B
bellard 已提交
3551 3552 3553
            ret = get_errno(setrlimit(resource, &rlim));
        }
        break;
3554
    case TARGET_NR_getrlimit:
B
bellard 已提交
3555 3556 3557
        {
            /* XXX: convert resource ? */
            int resource = arg1;
3558
            struct target_rlimit *target_rlim;
B
bellard 已提交
3559
            struct rlimit rlim;
3560

B
bellard 已提交
3561 3562
            ret = get_errno(getrlimit(resource, &rlim));
            if (!is_error(ret)) {
3563 3564
                if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                    goto efault;
3565 3566 3567
                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 已提交
3568 3569 3570
            }
        }
        break;
3571
    case TARGET_NR_getrusage:
B
bellard 已提交
3572 3573 3574 3575
        {
            struct rusage rusage;
            ret = get_errno(getrusage(arg1, &rusage));
            if (!is_error(ret)) {
3576
                host_to_target_rusage(arg2, &rusage);
B
bellard 已提交
3577 3578 3579
            }
        }
        break;
3580 3581 3582 3583 3584
    case TARGET_NR_gettimeofday:
        {
            struct timeval tv;
            ret = get_errno(gettimeofday(&tv, NULL));
            if (!is_error(ret)) {
3585
                host_to_target_timeval(arg1, &tv);
3586 3587 3588 3589 3590 3591
            }
        }
        break;
    case TARGET_NR_settimeofday:
        {
            struct timeval tv;
3592
            target_to_host_timeval(&tv, arg1);
3593 3594 3595
            ret = get_errno(settimeofday(&tv, NULL));
        }
        break;
B
bellard 已提交
3596
#ifdef TARGET_NR_select
3597
    case TARGET_NR_select:
B
bellard 已提交
3598
        {
3599
            struct target_sel_arg_struct *sel;
3600
            abi_ulong inp, outp, exp, tvp;
3601 3602
            long nsel;

3603 3604
            if (!lock_user_struct(VERIFY_READ, sel, arg1, 1))
                goto efault;
3605 3606 3607 3608 3609 3610 3611
            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 已提交
3612 3613
        }
        break;
B
bellard 已提交
3614
#endif
3615
    case TARGET_NR_symlink:
3616 3617 3618 3619
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
3620 3621 3622 3623
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(symlink(p, p2));
3624 3625 3626
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
3627
        break;
3628 3629 3630
#if defined(TARGET_NR_symlinkat) && defined(__NR_symlinkat)
    case TARGET_NR_symlinkat:
        {
3631
            void *p2;
3632 3633
            p  = lock_user_string(arg1);
            p2 = lock_user_string(arg3);
3634
            if (!p || !p2)
3635
                ret = -TARGET_EFAULT;
3636 3637
            else
                ret = get_errno(sys_symlinkat(p, arg2, p2));
3638 3639
            unlock_user(p2, arg3, 0);
            unlock_user(p, arg1, 0);
3640 3641 3642
        }
        break;
#endif
3643
#ifdef TARGET_NR_oldlstat
3644 3645
    case TARGET_NR_oldlstat:
        goto unimplemented;
3646
#endif
3647
    case TARGET_NR_readlink:
3648 3649 3650
        {
            void *p2;
            p = lock_user_string(arg1);
3651 3652 3653 3654 3655
            p2 = lock_user(VERIFY_WRITE, arg2, arg3, 0);
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(readlink(path(p), p2, arg3));
3656 3657 3658
            unlock_user(p2, arg2, ret);
            unlock_user(p, arg1, 0);
        }
3659
        break;
3660 3661 3662
#if defined(TARGET_NR_readlinkat) && defined(__NR_readlinkat)
    case TARGET_NR_readlinkat:
        {
3663
            void *p2;
3664
            p  = lock_user_string(arg2);
3665 3666
            p2 = lock_user(VERIFY_WRITE, arg3, arg4, 0);
            if (!p || !p2)
3667
        	ret = -TARGET_EFAULT;
3668 3669
            else
                ret = get_errno(sys_readlinkat(arg1, path(p), p2, arg4));
3670 3671
            unlock_user(p2, arg3, ret);
            unlock_user(p, arg2, 0);
3672 3673 3674
        }
        break;
#endif
3675
#ifdef TARGET_NR_uselib
3676 3677
    case TARGET_NR_uselib:
        goto unimplemented;
3678 3679
#endif
#ifdef TARGET_NR_swapon
3680
    case TARGET_NR_swapon:
3681 3682
        if (!(p = lock_user_string(arg1)))
            goto efault;
3683 3684
        ret = get_errno(swapon(p, arg2));
        unlock_user(p, arg1, 0);
3685
        break;
3686
#endif
3687 3688
    case TARGET_NR_reboot:
        goto unimplemented;
3689
#ifdef TARGET_NR_readdir
3690 3691
    case TARGET_NR_readdir:
        goto unimplemented;
3692 3693
#endif
#ifdef TARGET_NR_mmap
3694
    case TARGET_NR_mmap:
3695
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_CRIS)
3696
        {
3697 3698
            abi_ulong *v;
            abi_ulong v1, v2, v3, v4, v5, v6;
3699 3700
            if (!(v = lock_user(VERIFY_READ, arg1, 6 * sizeof(abi_ulong), 1)))
                goto efault;
3701 3702 3703 3704 3705 3706 3707
            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);
3708
            ret = get_errno(target_mmap(v1, v2, v3,
B
bellard 已提交
3709 3710
                                        target_to_host_bitmask(v4, mmap_flags_tbl),
                                        v5, v6));
3711 3712
        }
#else
3713 3714
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
3715 3716
                                    arg5,
                                    arg6));
3717
#endif
B
bellard 已提交
3718
        break;
3719
#endif
B
bellard 已提交
3720
#ifdef TARGET_NR_mmap2
B
bellard 已提交
3721
    case TARGET_NR_mmap2:
T
ths 已提交
3722
#if defined(TARGET_SPARC) || defined(TARGET_MIPS)
B
bellard 已提交
3723 3724 3725 3726
#define MMAP_SHIFT 12
#else
#define MMAP_SHIFT TARGET_PAGE_BITS
#endif
3727 3728
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
3729
                                    arg5,
B
bellard 已提交
3730
                                    arg6 << MMAP_SHIFT));
3731
        break;
B
bellard 已提交
3732
#endif
3733
    case TARGET_NR_munmap:
B
bellard 已提交
3734
        ret = get_errno(target_munmap(arg1, arg2));
3735
        break;
B
bellard 已提交
3736
    case TARGET_NR_mprotect:
B
bellard 已提交
3737
        ret = get_errno(target_mprotect(arg1, arg2, arg3));
B
bellard 已提交
3738
        break;
3739
#ifdef TARGET_NR_mremap
B
bellard 已提交
3740
    case TARGET_NR_mremap:
B
bellard 已提交
3741
        ret = get_errno(target_mremap(arg1, arg2, arg3, arg4, arg5));
B
bellard 已提交
3742
        break;
3743
#endif
3744
        /* ??? msync/mlock/munlock are broken for softmmu.  */
3745
#ifdef TARGET_NR_msync
B
bellard 已提交
3746
    case TARGET_NR_msync:
3747
        ret = get_errno(msync(g2h(arg1), arg2, arg3));
B
bellard 已提交
3748
        break;
3749 3750
#endif
#ifdef TARGET_NR_mlock
B
bellard 已提交
3751
    case TARGET_NR_mlock:
3752
        ret = get_errno(mlock(g2h(arg1), arg2));
B
bellard 已提交
3753
        break;
3754 3755
#endif
#ifdef TARGET_NR_munlock
B
bellard 已提交
3756
    case TARGET_NR_munlock:
3757
        ret = get_errno(munlock(g2h(arg1), arg2));
B
bellard 已提交
3758
        break;
3759 3760
#endif
#ifdef TARGET_NR_mlockall
B
bellard 已提交
3761 3762 3763
    case TARGET_NR_mlockall:
        ret = get_errno(mlockall(arg1));
        break;
3764 3765
#endif
#ifdef TARGET_NR_munlockall
B
bellard 已提交
3766 3767 3768
    case TARGET_NR_munlockall:
        ret = get_errno(munlockall());
        break;
3769
#endif
3770
    case TARGET_NR_truncate:
3771 3772
        if (!(p = lock_user_string(arg1)))
            goto efault;
3773 3774
        ret = get_errno(truncate(p, arg2));
        unlock_user(p, arg1, 0);
3775 3776 3777 3778 3779 3780 3781
        break;
    case TARGET_NR_ftruncate:
        ret = get_errno(ftruncate(arg1, arg2));
        break;
    case TARGET_NR_fchmod:
        ret = get_errno(fchmod(arg1, arg2));
        break;
3782 3783
#if defined(TARGET_NR_fchmodat) && defined(__NR_fchmodat)
    case TARGET_NR_fchmodat:
3784 3785 3786 3787
        if (!(p = lock_user_string(arg2)))
            goto efault;
        ret = get_errno(sys_fchmodat(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
3788 3789
        break;
#endif
3790
    case TARGET_NR_getpriority:
3791 3792 3793 3794
        /* 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);
3795 3796 3797 3798
        break;
    case TARGET_NR_setpriority:
        ret = get_errno(setpriority(arg1, arg2, arg3));
        break;
3799
#ifdef TARGET_NR_profil
3800 3801
    case TARGET_NR_profil:
        goto unimplemented;
3802
#endif
3803
    case TARGET_NR_statfs:
3804 3805
        if (!(p = lock_user_string(arg1)))
            goto efault;
3806 3807
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
3808 3809
    convert_statfs:
        if (!is_error(ret)) {
3810
            struct target_statfs *target_stfs;
3811

3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823
            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);
3824
            unlock_user_struct(target_stfs, arg2, 1);
3825 3826 3827
        }
        break;
    case TARGET_NR_fstatfs:
B
bellard 已提交
3828
        ret = get_errno(fstatfs(arg1, &stfs));
3829
        goto convert_statfs;
B
bellard 已提交
3830 3831
#ifdef TARGET_NR_statfs64
    case TARGET_NR_statfs64:
3832 3833
        if (!(p = lock_user_string(arg1)))
            goto efault;
3834 3835
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
B
bellard 已提交
3836 3837
    convert_statfs64:
        if (!is_error(ret)) {
3838
            struct target_statfs64 *target_stfs;
3839

3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852
            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 已提交
3853 3854 3855 3856 3857 3858
        }
        break;
    case TARGET_NR_fstatfs64:
        ret = get_errno(fstatfs(arg1, &stfs));
        goto convert_statfs64;
#endif
3859
#ifdef TARGET_NR_ioperm
3860 3861
    case TARGET_NR_ioperm:
        goto unimplemented;
3862
#endif
3863
#ifdef TARGET_NR_socketcall
3864
    case TARGET_NR_socketcall:
3865
        ret = do_socketcall(arg1, arg2);
3866
        break;
3867
#endif
3868 3869
#ifdef TARGET_NR_accept
    case TARGET_NR_accept:
P
pbrook 已提交
3870
        ret = do_accept(arg1, arg2, arg3);
3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884
        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 已提交
3885
        ret = do_getpeername(arg1, arg2, arg3);
3886 3887 3888 3889
        break;
#endif
#ifdef TARGET_NR_getsockname
    case TARGET_NR_getsockname:
P
pbrook 已提交
3890
        ret = do_getsockname(arg1, arg2, arg3);
3891 3892 3893 3894 3895 3896 3897 3898 3899
        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 已提交
3900
        ret = get_errno(listen(arg1, arg2));
3901 3902 3903 3904
        break;
#endif
#ifdef TARGET_NR_recv
    case TARGET_NR_recv:
P
pbrook 已提交
3905
        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
3906 3907 3908 3909
        break;
#endif
#ifdef TARGET_NR_recvfrom
    case TARGET_NR_recvfrom:
P
pbrook 已提交
3910
        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
3911 3912 3913 3914 3915 3916 3917 3918 3919
        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 已提交
3920
        ret = do_sendto(arg1, arg2, arg3, arg4, 0, 0);
3921 3922 3923 3924 3925 3926 3927 3928 3929
        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 已提交
3930
        ret = do_sendto(arg1, arg2, arg3, arg4, arg5, arg6);
3931 3932 3933 3934
        break;
#endif
#ifdef TARGET_NR_shutdown
    case TARGET_NR_shutdown:
P
pbrook 已提交
3935
        ret = get_errno(shutdown(arg1, arg2));
3936 3937 3938 3939 3940 3941 3942 3943 3944
        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 已提交
3945
        ret = do_socketpair(arg1, arg2, arg3, arg4);
3946 3947 3948 3949 3950 3951 3952
        break;
#endif
#ifdef TARGET_NR_setsockopt
    case TARGET_NR_setsockopt:
        ret = do_setsockopt(arg1, arg2, arg3, arg4, (socklen_t) arg5);
        break;
#endif
3953

3954
    case TARGET_NR_syslog:
3955 3956
        if (!(p = lock_user_string(arg2)))
            goto efault;
3957 3958
        ret = get_errno(sys_syslog((int)arg1, p, (int)arg3));
        unlock_user(p, arg2, 0);
3959 3960
        break;

3961
    case TARGET_NR_setitimer:
B
bellard 已提交
3962 3963 3964
        {
            struct itimerval value, ovalue, *pvalue;

3965
            if (arg2) {
B
bellard 已提交
3966
                pvalue = &value;
3967
                target_to_host_timeval(&pvalue->it_interval,
3968
                                       arg2);
3969
                target_to_host_timeval(&pvalue->it_value,
3970
                                       arg2 + sizeof(struct target_timeval));
B
bellard 已提交
3971 3972 3973 3974
            } else {
                pvalue = NULL;
            }
            ret = get_errno(setitimer(arg1, pvalue, &ovalue));
3975 3976
            if (!is_error(ret) && arg3) {
                host_to_target_timeval(arg3,
B
bellard 已提交
3977
                                       &ovalue.it_interval);
3978
                host_to_target_timeval(arg3 + sizeof(struct target_timeval),
B
bellard 已提交
3979 3980 3981 3982
                                       &ovalue.it_value);
            }
        }
        break;
3983
    case TARGET_NR_getitimer:
B
bellard 已提交
3984 3985
        {
            struct itimerval value;
3986

B
bellard 已提交
3987
            ret = get_errno(getitimer(arg1, &value));
3988 3989
            if (!is_error(ret) && arg2) {
                host_to_target_timeval(arg2,
B
bellard 已提交
3990
                                       &value.it_interval);
3991
                host_to_target_timeval(arg2 + sizeof(struct target_timeval),
B
bellard 已提交
3992 3993 3994 3995
                                       &value.it_value);
            }
        }
        break;
3996
    case TARGET_NR_stat:
3997 3998
        if (!(p = lock_user_string(arg1)))
            goto efault;
3999 4000
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
4001 4002
        goto do_stat;
    case TARGET_NR_lstat:
4003 4004
        if (!(p = lock_user_string(arg1)))
            goto efault;
4005 4006
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
4007 4008 4009 4010 4011 4012
        goto do_stat;
    case TARGET_NR_fstat:
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat:
            if (!is_error(ret)) {
4013
                struct target_stat *target_st;
4014

4015 4016
                if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                    goto efault;
4017
#if defined(TARGET_MIPS) || (defined(TARGET_SPARC64) && !defined(TARGET_ABI32))
4018 4019
                target_st->st_dev = tswap32(st.st_dev);
#else
4020
                target_st->st_dev = tswap16(st.st_dev);
4021
#endif
4022
                target_st->st_ino = tswapl(st.st_ino);
4023
#if defined(TARGET_PPC) || defined(TARGET_MIPS)
4024 4025 4026
                target_st->st_mode = tswapl(st.st_mode); /* XXX: check this */
                target_st->st_uid = tswap32(st.st_uid);
                target_st->st_gid = tswap32(st.st_gid);
4027
#elif defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
B
blueswir1 已提交
4028 4029 4030
                target_st->st_mode = tswap32(st.st_mode);
                target_st->st_uid = tswap32(st.st_uid);
                target_st->st_gid = tswap32(st.st_gid);
4031
#else
4032
                target_st->st_mode = tswap16(st.st_mode);
4033 4034
                target_st->st_uid = tswap16(st.st_uid);
                target_st->st_gid = tswap16(st.st_gid);
4035
#endif
4036 4037 4038 4039
#if defined(TARGET_MIPS)
		/* If this is the same on PPC, then just merge w/ the above ifdef */
                target_st->st_nlink = tswapl(st.st_nlink);
                target_st->st_rdev = tswapl(st.st_rdev);
4040
#elif defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
B
blueswir1 已提交
4041 4042
                target_st->st_nlink = tswap32(st.st_nlink);
                target_st->st_rdev = tswap32(st.st_rdev);
4043
#else
4044
                target_st->st_nlink = tswap16(st.st_nlink);
4045
                target_st->st_rdev = tswap16(st.st_rdev);
4046
#endif
4047 4048 4049
                target_st->st_size = tswapl(st.st_size);
                target_st->st_blksize = tswapl(st.st_blksize);
                target_st->st_blocks = tswapl(st.st_blocks);
B
bellard 已提交
4050 4051 4052
                target_st->target_st_atime = tswapl(st.st_atime);
                target_st->target_st_mtime = tswapl(st.st_mtime);
                target_st->target_st_ctime = tswapl(st.st_ctime);
4053
                unlock_user_struct(target_st, arg2, 1);
4054 4055 4056
            }
        }
        break;
4057
#ifdef TARGET_NR_olduname
4058 4059
    case TARGET_NR_olduname:
        goto unimplemented;
4060 4061
#endif
#ifdef TARGET_NR_iopl
4062 4063
    case TARGET_NR_iopl:
        goto unimplemented;
4064
#endif
4065 4066 4067
    case TARGET_NR_vhangup:
        ret = get_errno(vhangup());
        break;
4068
#ifdef TARGET_NR_idle
4069 4070
    case TARGET_NR_idle:
        goto unimplemented;
B
bellard 已提交
4071 4072 4073 4074 4075
#endif
#ifdef TARGET_NR_syscall
    case TARGET_NR_syscall:
    	ret = do_syscall(cpu_env,arg1 & 0xffff,arg2,arg3,arg4,arg5,arg6,0);
    	break;
4076
#endif
4077 4078 4079
    case TARGET_NR_wait4:
        {
            int status;
4080
            abi_long status_ptr = arg2;
4081
            struct rusage rusage, *rusage_ptr;
4082
            abi_ulong target_rusage = arg4;
4083 4084 4085 4086 4087 4088 4089
            if (target_rusage)
                rusage_ptr = &rusage;
            else
                rusage_ptr = NULL;
            ret = get_errno(wait4(arg1, &status, arg3, rusage_ptr));
            if (!is_error(ret)) {
                if (status_ptr)
4090
                    tputl(status_ptr, status);
4091
                if (target_rusage) {
B
bellard 已提交
4092
                    host_to_target_rusage(target_rusage, &rusage);
4093 4094 4095 4096
                }
            }
        }
        break;
4097
#ifdef TARGET_NR_swapoff
4098
    case TARGET_NR_swapoff:
4099 4100
        if (!(p = lock_user_string(arg1)))
            goto efault;
4101 4102
        ret = get_errno(swapoff(p));
        unlock_user(p, arg1, 0);
4103
        break;
4104
#endif
4105
    case TARGET_NR_sysinfo:
B
bellard 已提交
4106
        {
4107
            struct target_sysinfo *target_value;
B
bellard 已提交
4108 4109
            struct sysinfo value;
            ret = get_errno(sysinfo(&value));
4110
            if (!is_error(ret) && arg1)
B
bellard 已提交
4111
            {
4112 4113
                if (!lock_user_struct(VERIFY_WRITE, target_value, arg1, 0))
                    goto efault;
B
bellard 已提交
4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127
                __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);
4128
                unlock_user_struct(target_value, arg1, 1);
B
bellard 已提交
4129 4130 4131
            }
        }
        break;
4132
#ifdef TARGET_NR_ipc
4133
    case TARGET_NR_ipc:
4134 4135
	ret = do_ipc(arg1, arg2, arg3, arg4, arg5, arg6);
	break;
4136
#endif
4137 4138 4139 4140
    case TARGET_NR_fsync:
        ret = get_errno(fsync(arg1));
        break;
    case TARGET_NR_clone:
B
bellard 已提交
4141 4142
        ret = get_errno(do_fork(cpu_env, arg1, arg2));
        break;
4143 4144 4145
#ifdef __NR_exit_group
        /* new thread calls */
    case TARGET_NR_exit_group:
4146
        gdb_exit(cpu_env, arg1);
4147 4148 4149
        ret = get_errno(exit_group(arg1));
        break;
#endif
4150
    case TARGET_NR_setdomainname:
4151 4152
        if (!(p = lock_user_string(arg1)))
            goto efault;
4153 4154
        ret = get_errno(setdomainname(p, arg2));
        unlock_user(p, arg1, 0);
4155 4156 4157
        break;
    case TARGET_NR_uname:
        /* no need to transcode because we use the linux syscall */
B
bellard 已提交
4158 4159
        {
            struct new_utsname * buf;
4160

4161 4162
            if (!lock_user_struct(VERIFY_WRITE, buf, arg1, 0))
                goto efault;
B
bellard 已提交
4163 4164 4165 4166 4167
            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);
4168 4169 4170
                /* Allow the user to override the reported release.  */
                if (qemu_uname_release && *qemu_uname_release)
                  strcpy (buf->release, qemu_uname_release);
B
bellard 已提交
4171
            }
4172
            unlock_user_struct(buf, arg1, 1);
B
bellard 已提交
4173
        }
4174
        break;
B
bellard 已提交
4175
#ifdef TARGET_I386
4176
    case TARGET_NR_modify_ldt:
4177
        ret = get_errno(do_modify_ldt(cpu_env, arg1, arg2, arg3));
B
bellard 已提交
4178
        break;
4179
#if !defined(TARGET_X86_64)
B
bellard 已提交
4180 4181 4182
    case TARGET_NR_vm86old:
        goto unimplemented;
    case TARGET_NR_vm86:
4183
        ret = do_vm86(cpu_env, arg1, arg2);
B
bellard 已提交
4184
        break;
4185
#endif
B
bellard 已提交
4186
#endif
4187 4188
    case TARGET_NR_adjtimex:
        goto unimplemented;
4189
#ifdef TARGET_NR_create_module
4190
    case TARGET_NR_create_module:
4191
#endif
4192 4193
    case TARGET_NR_init_module:
    case TARGET_NR_delete_module:
4194
#ifdef TARGET_NR_get_kernel_syms
4195
    case TARGET_NR_get_kernel_syms:
4196
#endif
4197 4198 4199 4200 4201 4202 4203 4204 4205
        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;
4206
#ifdef TARGET_NR_bdflush /* not on x86_64 */
4207 4208
    case TARGET_NR_bdflush:
        goto unimplemented;
4209
#endif
4210
#ifdef TARGET_NR_sysfs
4211 4212
    case TARGET_NR_sysfs:
        goto unimplemented;
4213
#endif
4214
    case TARGET_NR_personality:
B
bellard 已提交
4215
        ret = get_errno(personality(arg1));
4216
        break;
4217
#ifdef TARGET_NR_afs_syscall
4218 4219
    case TARGET_NR_afs_syscall:
        goto unimplemented;
4220
#endif
4221
#ifdef TARGET_NR__llseek /* Not on alpha */
4222 4223
    case TARGET_NR__llseek:
        {
B
bellard 已提交
4224 4225
#if defined (__x86_64__)
            ret = get_errno(lseek(arg1, ((uint64_t )arg2 << 32) | arg3, arg5));
4226
            tput64(arg4, ret);
B
bellard 已提交
4227
#else
4228 4229
            int64_t res;
            ret = get_errno(_llseek(arg1, arg2, arg3, &res, arg5));
4230
            tput64(arg4, res);
B
bellard 已提交
4231
#endif
4232 4233
        }
        break;
4234
#endif
4235
    case TARGET_NR_getdents:
4236
#if TARGET_ABI_BITS != 32
4237
        goto unimplemented;
B
bellard 已提交
4238
#warning not supported
4239
#elif TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
B
bellard 已提交
4240
        {
4241
            struct target_dirent *target_dirp;
B
bellard 已提交
4242
            struct dirent *dirp;
4243
            abi_long count = arg3;
B
bellard 已提交
4244 4245

	    dirp = malloc(count);
4246
	    if (!dirp) {
4247
                ret = -TARGET_ENOMEM;
4248 4249
                goto fail;
            }
4250

B
bellard 已提交
4251 4252 4253 4254 4255 4256 4257 4258 4259 4260
            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;
4261 4262
                if (!(target_dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                    goto efault;
B
bellard 已提交
4263 4264 4265
		tde = target_dirp;
                while (len > 0) {
                    reclen = de->d_reclen;
4266
		    treclen = reclen - (2 * (sizeof(long) - sizeof(abi_long)));
B
bellard 已提交
4267 4268 4269
                    tde->d_reclen = tswap16(treclen);
                    tde->d_ino = tswapl(de->d_ino);
                    tde->d_off = tswapl(de->d_off);
4270
		    tnamelen = treclen - (2 * sizeof(abi_long) + 2);
B
bellard 已提交
4271 4272
		    if (tnamelen > 256)
                        tnamelen = 256;
B
bellard 已提交
4273
                    /* XXX: may not be correct */
B
bellard 已提交
4274 4275 4276
		    strncpy(tde->d_name, de->d_name, tnamelen);
                    de = (struct dirent *)((char *)de + reclen);
                    len -= reclen;
J
j_mayer 已提交
4277
                    tde = (struct target_dirent *)((char *)tde + treclen);
B
bellard 已提交
4278 4279 4280
		    count1 += treclen;
                }
		ret = count1;
4281
                unlock_user(target_dirp, arg2, ret);
B
bellard 已提交
4282 4283 4284 4285
            }
	    free(dirp);
        }
#else
4286
        {
4287
            struct dirent *dirp;
4288
            abi_long count = arg3;
B
bellard 已提交
4289

4290 4291
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
4292
            ret = get_errno(sys_getdents(arg1, dirp, count));
4293 4294 4295 4296 4297 4298
            if (!is_error(ret)) {
                struct dirent *de;
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
4299
                    reclen = de->d_reclen;
4300 4301
                    if (reclen > len)
                        break;
B
bellard 已提交
4302
                    de->d_reclen = tswap16(reclen);
4303 4304 4305 4306 4307 4308
                    tswapls(&de->d_ino);
                    tswapls(&de->d_off);
                    de = (struct dirent *)((char *)de + reclen);
                    len -= reclen;
                }
            }
4309
            unlock_user(dirp, arg2, ret);
4310
        }
B
bellard 已提交
4311
#endif
4312
        break;
T
ths 已提交
4313
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
4314 4315
    case TARGET_NR_getdents64:
        {
4316
            struct dirent64 *dirp;
4317
            abi_long count = arg3;
4318 4319
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
4320 4321 4322 4323 4324 4325 4326
            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 已提交
4327
                    reclen = de->d_reclen;
B
bellard 已提交
4328 4329
                    if (reclen > len)
                        break;
B
bellard 已提交
4330
                    de->d_reclen = tswap16(reclen);
B
bellard 已提交
4331 4332 4333 4334 4335 4336
                    tswap64s(&de->d_ino);
                    tswap64s(&de->d_off);
                    de = (struct dirent64 *)((char *)de + reclen);
                    len -= reclen;
                }
            }
4337
            unlock_user(dirp, arg2, ret);
B
bellard 已提交
4338 4339
        }
        break;
4340
#endif /* TARGET_NR_getdents64 */
4341
#ifdef TARGET_NR__newselect
4342
    case TARGET_NR__newselect:
4343
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
4344
        break;
4345 4346
#endif
#ifdef TARGET_NR_poll
B
bellard 已提交
4347 4348
    case TARGET_NR_poll:
        {
4349
            struct target_pollfd *target_pfd;
B
bellard 已提交
4350 4351 4352
            unsigned int nfds = arg2;
            int timeout = arg3;
            struct pollfd *pfd;
B
bellard 已提交
4353
            unsigned int i;
B
bellard 已提交
4354

4355 4356 4357
            target_pfd = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_pollfd) * nfds, 1);
            if (!target_pfd)
                goto efault;
B
bellard 已提交
4358 4359
            pfd = alloca(sizeof(struct pollfd) * nfds);
            for(i = 0; i < nfds; i++) {
B
bellard 已提交
4360 4361
                pfd[i].fd = tswap32(target_pfd[i].fd);
                pfd[i].events = tswap16(target_pfd[i].events);
B
bellard 已提交
4362 4363 4364 4365
            }
            ret = get_errno(poll(pfd, nfds, timeout));
            if (!is_error(ret)) {
                for(i = 0; i < nfds; i++) {
B
bellard 已提交
4366
                    target_pfd[i].revents = tswap16(pfd[i].revents);
B
bellard 已提交
4367
                }
4368 4369
                ret += nfds * (sizeof(struct target_pollfd)
                               - sizeof(struct pollfd));
B
bellard 已提交
4370
            }
4371
            unlock_user(target_pfd, arg1, ret);
B
bellard 已提交
4372 4373
        }
        break;
4374
#endif
4375
    case TARGET_NR_flock:
B
bellard 已提交
4376 4377 4378
        /* NOTE: the flock constant seems to be the same for every
           Linux platform */
        ret = get_errno(flock(arg1, arg2));
4379 4380 4381 4382 4383 4384 4385
        break;
    case TARGET_NR_readv:
        {
            int count = arg3;
            struct iovec *vec;

            vec = alloca(count * sizeof(struct iovec));
4386
            lock_iovec(VERIFY_WRITE, vec, arg2, count, 0);
4387
            ret = get_errno(readv(arg1, vec, count));
4388
            unlock_iovec(vec, arg2, count, 1);
4389 4390 4391 4392 4393 4394 4395 4396
        }
        break;
    case TARGET_NR_writev:
        {
            int count = arg3;
            struct iovec *vec;

            vec = alloca(count * sizeof(struct iovec));
4397
            lock_iovec(VERIFY_READ, vec, arg2, count, 1);
4398
            ret = get_errno(writev(arg1, vec, count));
4399
            unlock_iovec(vec, arg2, count, 0);
4400 4401 4402 4403 4404
        }
        break;
    case TARGET_NR_getsid:
        ret = get_errno(getsid(arg1));
        break;
4405
#if defined(TARGET_NR_fdatasync) /* Not on alpha (osf_datasync ?) */
4406
    case TARGET_NR_fdatasync:
B
bellard 已提交
4407 4408
        ret = get_errno(fdatasync(arg1));
        break;
4409
#endif
4410
    case TARGET_NR__sysctl:
4411
        /* We don't implement this, but ENOTDIR is always a safe
B
bellard 已提交
4412
           return value. */
4413 4414
        ret = -TARGET_ENOTDIR;
        break;
4415
    case TARGET_NR_sched_setparam:
B
bellard 已提交
4416
        {
4417
            struct sched_param *target_schp;
B
bellard 已提交
4418
            struct sched_param schp;
4419

4420 4421
            if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1))
                goto efault;
B
bellard 已提交
4422
            schp.sched_priority = tswap32(target_schp->sched_priority);
4423
            unlock_user_struct(target_schp, arg2, 0);
B
bellard 已提交
4424 4425 4426
            ret = get_errno(sched_setparam(arg1, &schp));
        }
        break;
4427
    case TARGET_NR_sched_getparam:
B
bellard 已提交
4428
        {
4429
            struct sched_param *target_schp;
B
bellard 已提交
4430 4431 4432
            struct sched_param schp;
            ret = get_errno(sched_getparam(arg1, &schp));
            if (!is_error(ret)) {
4433 4434
                if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0))
                    goto efault;
B
bellard 已提交
4435
                target_schp->sched_priority = tswap32(schp.sched_priority);
4436
                unlock_user_struct(target_schp, arg2, 1);
B
bellard 已提交
4437 4438 4439
            }
        }
        break;
4440
    case TARGET_NR_sched_setscheduler:
B
bellard 已提交
4441
        {
4442
            struct sched_param *target_schp;
B
bellard 已提交
4443
            struct sched_param schp;
4444 4445
            if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1))
                goto efault;
B
bellard 已提交
4446
            schp.sched_priority = tswap32(target_schp->sched_priority);
4447
            unlock_user_struct(target_schp, arg3, 0);
B
bellard 已提交
4448 4449 4450
            ret = get_errno(sched_setscheduler(arg1, arg2, &schp));
        }
        break;
4451
    case TARGET_NR_sched_getscheduler:
B
bellard 已提交
4452 4453
        ret = get_errno(sched_getscheduler(arg1));
        break;
4454 4455 4456 4457
    case TARGET_NR_sched_yield:
        ret = get_errno(sched_yield());
        break;
    case TARGET_NR_sched_get_priority_max:
B
bellard 已提交
4458 4459
        ret = get_errno(sched_get_priority_max(arg1));
        break;
4460
    case TARGET_NR_sched_get_priority_min:
B
bellard 已提交
4461 4462
        ret = get_errno(sched_get_priority_min(arg1));
        break;
4463
    case TARGET_NR_sched_rr_get_interval:
B
bellard 已提交
4464 4465 4466 4467
        {
            struct timespec ts;
            ret = get_errno(sched_rr_get_interval(arg1, &ts));
            if (!is_error(ret)) {
4468
                host_to_target_timespec(arg2, &ts);
B
bellard 已提交
4469 4470 4471
            }
        }
        break;
4472
    case TARGET_NR_nanosleep:
B
bellard 已提交
4473 4474
        {
            struct timespec req, rem;
4475
            target_to_host_timespec(&req, arg1);
B
bellard 已提交
4476
            ret = get_errno(nanosleep(&req, &rem));
4477 4478
            if (is_error(ret) && arg2) {
                host_to_target_timespec(arg2, &rem);
B
bellard 已提交
4479 4480 4481
            }
        }
        break;
4482
#ifdef TARGET_NR_query_module
4483
    case TARGET_NR_query_module:
B
bellard 已提交
4484
        goto unimplemented;
4485 4486
#endif
#ifdef TARGET_NR_nfsservctl
4487
    case TARGET_NR_nfsservctl:
B
bellard 已提交
4488
        goto unimplemented;
4489
#endif
4490
    case TARGET_NR_prctl:
4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504
        switch (arg1)
            {
            case PR_GET_PDEATHSIG:
                {
                    int deathsig;
                    ret = get_errno(prctl(arg1, &deathsig, arg3, arg4, arg5));
                    if (!is_error(ret) && arg2)
                        tput32(arg2, deathsig);
                }
                break;
            default:
                ret = get_errno(prctl(arg1, arg2, arg3, arg4, arg5));
                break;
            }
4505
        break;
4506
#ifdef TARGET_NR_pread
4507
    case TARGET_NR_pread:
4508
        page_unprotect_range(arg2, arg3);
4509 4510
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
4511 4512
        ret = get_errno(pread(arg1, p, arg3, arg4));
        unlock_user(p, arg2, ret);
4513
        break;
4514
    case TARGET_NR_pwrite:
4515 4516
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
4517 4518
        ret = get_errno(pwrite(arg1, p, arg3, arg4));
        unlock_user(p, arg2, 0);
4519
        break;
4520
#endif
4521
    case TARGET_NR_getcwd:
4522 4523
        if (!(p = lock_user(VERIFY_WRITE, arg1, arg2, 0)))
            goto efault;
4524 4525
        ret = get_errno(sys_getcwd1(p, arg2));
        unlock_user(p, arg1, ret);
4526 4527
        break;
    case TARGET_NR_capget:
B
bellard 已提交
4528
        goto unimplemented;
4529
    case TARGET_NR_capset:
B
bellard 已提交
4530
        goto unimplemented;
4531
    case TARGET_NR_sigaltstack:
4532 4533
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) || \
    defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_ALPHA)
4534
        ret = do_sigaltstack(arg1, arg2, get_sp_from_cpustate((CPUState *)cpu_env));
4535 4536
        break;
#else
B
bellard 已提交
4537
        goto unimplemented;
4538
#endif
4539
    case TARGET_NR_sendfile:
B
bellard 已提交
4540
        goto unimplemented;
4541
#ifdef TARGET_NR_getpmsg
4542
    case TARGET_NR_getpmsg:
B
bellard 已提交
4543
        goto unimplemented;
4544 4545
#endif
#ifdef TARGET_NR_putpmsg
4546
    case TARGET_NR_putpmsg:
B
bellard 已提交
4547
        goto unimplemented;
4548
#endif
B
bellard 已提交
4549
#ifdef TARGET_NR_vfork
4550
    case TARGET_NR_vfork:
B
bellard 已提交
4551
        ret = get_errno(do_fork(cpu_env, CLONE_VFORK | CLONE_VM | SIGCHLD, 0));
4552
        break;
B
bellard 已提交
4553
#endif
4554
#ifdef TARGET_NR_ugetrlimit
4555
    case TARGET_NR_ugetrlimit:
B
bellard 已提交
4556 4557 4558 4559
    {
	struct rlimit rlim;
	ret = get_errno(getrlimit(arg1, &rlim));
	if (!is_error(ret)) {
4560
	    struct target_rlimit *target_rlim;
4561 4562
            if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                goto efault;
B
bellard 已提交
4563 4564
	    target_rlim->rlim_cur = tswapl(rlim.rlim_cur);
	    target_rlim->rlim_max = tswapl(rlim.rlim_max);
4565
            unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
4566 4567 4568
	}
	break;
    }
4569
#endif
B
bellard 已提交
4570
#ifdef TARGET_NR_truncate64
4571
    case TARGET_NR_truncate64:
4572 4573
        if (!(p = lock_user_string(arg1)))
            goto efault;
4574 4575
	ret = target_truncate64(cpu_env, p, arg2, arg3, arg4);
        unlock_user(p, arg1, 0);
B
bellard 已提交
4576
	break;
B
bellard 已提交
4577 4578
#endif
#ifdef TARGET_NR_ftruncate64
4579
    case TARGET_NR_ftruncate64:
P
pbrook 已提交
4580
	ret = target_ftruncate64(cpu_env, arg1, arg2, arg3, arg4);
B
bellard 已提交
4581
	break;
B
bellard 已提交
4582 4583
#endif
#ifdef TARGET_NR_stat64
4584
    case TARGET_NR_stat64:
4585 4586
        if (!(p = lock_user_string(arg1)))
            goto efault;
4587 4588
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
B
bellard 已提交
4589
        goto do_stat64;
B
bellard 已提交
4590 4591
#endif
#ifdef TARGET_NR_lstat64
4592
    case TARGET_NR_lstat64:
4593 4594
        if (!(p = lock_user_string(arg1)))
            goto efault;
4595 4596
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
B
bellard 已提交
4597
        goto do_stat64;
B
bellard 已提交
4598 4599
#endif
#ifdef TARGET_NR_fstat64
4600
    case TARGET_NR_fstat64:
B
bellard 已提交
4601 4602 4603 4604
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat64:
            if (!is_error(ret)) {
P
pbrook 已提交
4605 4606
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
4607
                    struct target_eabi_stat64 *target_st;
4608 4609 4610

                    if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                        goto efault;
P
pbrook 已提交
4611
                    memset(target_st, 0, sizeof(struct target_eabi_stat64));
4612 4613
                    __put_user(st.st_dev, &target_st->st_dev);
                    __put_user(st.st_ino, &target_st->st_ino);
P
pbrook 已提交
4614
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628
                    __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 已提交
4629 4630 4631
                } else
#endif
                {
4632
                    struct target_stat64 *target_st;
4633 4634 4635

                    if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                        goto efault;
P
pbrook 已提交
4636
                    memset(target_st, 0, sizeof(struct target_stat64));
4637 4638
                    __put_user(st.st_dev, &target_st->st_dev);
                    __put_user(st.st_ino, &target_st->st_ino);
4639
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
4640
                    __put_user(st.st_ino, &target_st->__st_ino);
P
pbrook 已提交
4641
#endif
4642 4643 4644 4645 4646
                    __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 已提交
4647
                    /* XXX: better use of kernel struct */
4648 4649 4650 4651 4652 4653 4654
                    __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 已提交
4655
                }
B
bellard 已提交
4656 4657 4658
            }
        }
        break;
B
bellard 已提交
4659
#endif
4660 4661
#ifdef USE_UID16
    case TARGET_NR_lchown:
4662 4663
        if (!(p = lock_user_string(arg1)))
            goto efault;
4664 4665
        ret = get_errno(lchown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687
        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;
4688
            uint16_t *target_grouplist;
4689 4690 4691 4692 4693 4694
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
            if (!is_error(ret)) {
4695 4696 4697
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 2, 0);
                if (!target_grouplist)
                    goto efault;
4698 4699
                for(i = 0;i < gidsetsize; i++)
                    target_grouplist[i] = tswap16(grouplist[i]);
4700
                unlock_user(target_grouplist, arg2, gidsetsize * 2);
4701 4702 4703 4704 4705 4706
            }
        }
        break;
    case TARGET_NR_setgroups:
        {
            int gidsetsize = arg1;
4707
            uint16_t *target_grouplist;
4708 4709 4710 4711
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
4712 4713 4714 4715 4716
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 2, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
4717 4718
            for(i = 0;i < gidsetsize; i++)
                grouplist[i] = tswap16(target_grouplist[i]);
4719
            unlock_user(target_grouplist, arg2, 0);
4720 4721 4722 4723 4724 4725
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
    case TARGET_NR_fchown:
        ret = get_errno(fchown(arg1, low2highuid(arg2), low2highgid(arg3)));
        break;
4726 4727
#if defined(TARGET_NR_fchownat) && defined(__NR_fchownat)
    case TARGET_NR_fchownat:
4728 4729 4730 4731
        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);
4732 4733
        break;
#endif
4734 4735
#ifdef TARGET_NR_setresuid
    case TARGET_NR_setresuid:
4736 4737
        ret = get_errno(setresuid(low2highuid(arg1),
                                  low2highuid(arg2),
4738 4739 4740 4741 4742 4743
                                  low2highuid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresuid
    case TARGET_NR_getresuid:
        {
4744
            uid_t ruid, euid, suid;
4745 4746
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
4747 4748 4749
                tput16(arg1, tswap16(high2lowuid(ruid)));
                tput16(arg2, tswap16(high2lowuid(euid)));
                tput16(arg3, tswap16(high2lowuid(suid)));
4750 4751 4752 4753 4754 4755
            }
        }
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_setresgid:
4756 4757
        ret = get_errno(setresgid(low2highgid(arg1),
                                  low2highgid(arg2),
4758 4759 4760 4761 4762 4763
                                  low2highgid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_getresgid:
        {
4764
            gid_t rgid, egid, sgid;
4765 4766
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
4767 4768 4769
                tput16(arg1, tswap16(high2lowgid(rgid)));
                tput16(arg2, tswap16(high2lowgid(egid)));
                tput16(arg3, tswap16(high2lowgid(sgid)));
4770 4771 4772 4773 4774
            }
        }
        break;
#endif
    case TARGET_NR_chown:
4775 4776
        if (!(p = lock_user_string(arg1)))
            goto efault;
4777 4778
        ret = get_errno(chown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793
        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 已提交
4794
#ifdef TARGET_NR_lchown32
4795
    case TARGET_NR_lchown32:
4796 4797
        if (!(p = lock_user_string(arg1)))
            goto efault;
4798 4799
        ret = get_errno(lchown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
4800
        break;
B
bellard 已提交
4801 4802
#endif
#ifdef TARGET_NR_getuid32
4803
    case TARGET_NR_getuid32:
B
bellard 已提交
4804 4805
        ret = get_errno(getuid());
        break;
B
bellard 已提交
4806 4807
#endif
#ifdef TARGET_NR_getgid32
4808
    case TARGET_NR_getgid32:
B
bellard 已提交
4809 4810
        ret = get_errno(getgid());
        break;
B
bellard 已提交
4811 4812
#endif
#ifdef TARGET_NR_geteuid32
4813
    case TARGET_NR_geteuid32:
B
bellard 已提交
4814 4815
        ret = get_errno(geteuid());
        break;
B
bellard 已提交
4816 4817
#endif
#ifdef TARGET_NR_getegid32
4818
    case TARGET_NR_getegid32:
B
bellard 已提交
4819 4820
        ret = get_errno(getegid());
        break;
B
bellard 已提交
4821 4822
#endif
#ifdef TARGET_NR_setreuid32
4823
    case TARGET_NR_setreuid32:
B
bellard 已提交
4824 4825
        ret = get_errno(setreuid(arg1, arg2));
        break;
B
bellard 已提交
4826 4827
#endif
#ifdef TARGET_NR_setregid32
4828
    case TARGET_NR_setregid32:
B
bellard 已提交
4829 4830
        ret = get_errno(setregid(arg1, arg2));
        break;
B
bellard 已提交
4831 4832
#endif
#ifdef TARGET_NR_getgroups32
4833
    case TARGET_NR_getgroups32:
B
bellard 已提交
4834 4835
        {
            int gidsetsize = arg1;
4836
            uint32_t *target_grouplist;
B
bellard 已提交
4837 4838 4839 4840 4841 4842
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
            if (!is_error(ret)) {
4843 4844 4845 4846 4847
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 4, 0);
                if (!target_grouplist) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
B
bellard 已提交
4848
                for(i = 0;i < gidsetsize; i++)
4849 4850
                    target_grouplist[i] = tswap32(grouplist[i]);
                unlock_user(target_grouplist, arg2, gidsetsize * 4);
B
bellard 已提交
4851 4852 4853
            }
        }
        break;
B
bellard 已提交
4854 4855
#endif
#ifdef TARGET_NR_setgroups32
4856
    case TARGET_NR_setgroups32:
B
bellard 已提交
4857 4858
        {
            int gidsetsize = arg1;
4859
            uint32_t *target_grouplist;
B
bellard 已提交
4860 4861
            gid_t *grouplist;
            int i;
4862

B
bellard 已提交
4863
            grouplist = alloca(gidsetsize * sizeof(gid_t));
4864 4865 4866 4867 4868
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 4, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
B
bellard 已提交
4869
            for(i = 0;i < gidsetsize; i++)
4870 4871
                grouplist[i] = tswap32(target_grouplist[i]);
            unlock_user(target_grouplist, arg2, 0);
B
bellard 已提交
4872 4873 4874
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
B
bellard 已提交
4875 4876
#endif
#ifdef TARGET_NR_fchown32
4877
    case TARGET_NR_fchown32:
B
bellard 已提交
4878 4879
        ret = get_errno(fchown(arg1, arg2, arg3));
        break;
B
bellard 已提交
4880 4881
#endif
#ifdef TARGET_NR_setresuid32
4882
    case TARGET_NR_setresuid32:
B
bellard 已提交
4883 4884
        ret = get_errno(setresuid(arg1, arg2, arg3));
        break;
B
bellard 已提交
4885 4886
#endif
#ifdef TARGET_NR_getresuid32
4887
    case TARGET_NR_getresuid32:
B
bellard 已提交
4888
        {
4889
            uid_t ruid, euid, suid;
B
bellard 已提交
4890 4891
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
4892 4893 4894
                tput32(arg1, tswap32(ruid));
                tput32(arg2, tswap32(euid));
                tput32(arg3, tswap32(suid));
B
bellard 已提交
4895 4896 4897
            }
        }
        break;
B
bellard 已提交
4898 4899
#endif
#ifdef TARGET_NR_setresgid32
4900
    case TARGET_NR_setresgid32:
B
bellard 已提交
4901 4902
        ret = get_errno(setresgid(arg1, arg2, arg3));
        break;
B
bellard 已提交
4903 4904
#endif
#ifdef TARGET_NR_getresgid32
4905
    case TARGET_NR_getresgid32:
B
bellard 已提交
4906
        {
4907
            gid_t rgid, egid, sgid;
B
bellard 已提交
4908 4909
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
4910 4911 4912
                tput32(arg1, tswap32(rgid));
                tput32(arg2, tswap32(egid));
                tput32(arg3, tswap32(sgid));
B
bellard 已提交
4913 4914 4915
            }
        }
        break;
B
bellard 已提交
4916 4917
#endif
#ifdef TARGET_NR_chown32
4918
    case TARGET_NR_chown32:
4919 4920
        if (!(p = lock_user_string(arg1)))
            goto efault;
4921 4922
        ret = get_errno(chown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
4923
        break;
B
bellard 已提交
4924 4925
#endif
#ifdef TARGET_NR_setuid32
4926
    case TARGET_NR_setuid32:
B
bellard 已提交
4927 4928
        ret = get_errno(setuid(arg1));
        break;
B
bellard 已提交
4929 4930
#endif
#ifdef TARGET_NR_setgid32
4931
    case TARGET_NR_setgid32:
B
bellard 已提交
4932 4933
        ret = get_errno(setgid(arg1));
        break;
B
bellard 已提交
4934 4935
#endif
#ifdef TARGET_NR_setfsuid32
4936
    case TARGET_NR_setfsuid32:
B
bellard 已提交
4937 4938
        ret = get_errno(setfsuid(arg1));
        break;
B
bellard 已提交
4939 4940
#endif
#ifdef TARGET_NR_setfsgid32
4941
    case TARGET_NR_setfsgid32:
B
bellard 已提交
4942 4943
        ret = get_errno(setfsgid(arg1));
        break;
B
bellard 已提交
4944
#endif
4945

4946
    case TARGET_NR_pivot_root:
B
bellard 已提交
4947
        goto unimplemented;
B
bellard 已提交
4948
#ifdef TARGET_NR_mincore
4949
    case TARGET_NR_mincore:
B
bellard 已提交
4950
        goto unimplemented;
B
bellard 已提交
4951 4952
#endif
#ifdef TARGET_NR_madvise
4953
    case TARGET_NR_madvise:
4954 4955 4956 4957 4958 4959
        /* 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 已提交
4960
#endif
4961
#if TARGET_ABI_BITS == 32
4962
    case TARGET_NR_fcntl64:
B
bellard 已提交
4963
    {
T
ths 已提交
4964
	int cmd;
B
bellard 已提交
4965
	struct flock64 fl;
4966
	struct target_flock64 *target_fl;
P
pbrook 已提交
4967
#ifdef TARGET_ARM
4968
	struct target_eabi_flock64 *target_efl;
P
pbrook 已提交
4969
#endif
B
bellard 已提交
4970

T
ths 已提交
4971 4972 4973
        switch(arg2){
        case TARGET_F_GETLK64:
            cmd = F_GETLK64;
4974
            break;
T
ths 已提交
4975 4976
        case TARGET_F_SETLK64:
            cmd = F_SETLK64;
4977
            break;
T
ths 已提交
4978 4979
        case TARGET_F_SETLKW64:
            cmd = F_SETLK64;
4980
            break;
T
ths 已提交
4981 4982
        default:
            cmd = arg2;
4983
            break;
T
ths 已提交
4984 4985
        }

B
bellard 已提交
4986
        switch(arg2) {
T
ths 已提交
4987
        case TARGET_F_GETLK64:
T
ths 已提交
4988 4989
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
4990 4991 4992 4993
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
T
ths 已提交
4994 4995 4996 4997 4998 4999 5000 5001 5002
                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
            {
5003 5004 5005 5006
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
T
ths 已提交
5007 5008 5009 5010 5011 5012 5013
                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 已提交
5014
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
5015
	    if (ret == 0) {
P
pbrook 已提交
5016 5017
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
5018 5019 5020 5021
                    if (!lock_user_struct(VERIFY_WRITE, target_efl, arg3, 0)) {
                        ret = -TARGET_EFAULT;
                        goto fail;
                    }
P
pbrook 已提交
5022 5023 5024 5025 5026
                    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);
5027
                    unlock_user_struct(target_efl, arg3, 1);
P
pbrook 已提交
5028 5029 5030
                } else
#endif
                {
5031 5032 5033 5034
                    if (!lock_user_struct(VERIFY_WRITE, target_fl, arg3, 0)) {
                        ret = -TARGET_EFAULT;
                        goto fail;
                    }
P
pbrook 已提交
5035 5036 5037 5038 5039
                    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);
5040
                    unlock_user_struct(target_fl, arg3, 1);
P
pbrook 已提交
5041
                }
B
bellard 已提交
5042 5043 5044
	    }
	    break;

T
ths 已提交
5045 5046
        case TARGET_F_SETLK64:
        case TARGET_F_SETLKW64:
P
pbrook 已提交
5047 5048
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
5049 5050 5051 5052
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
P
pbrook 已提交
5053 5054 5055 5056 5057
                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);
5058
                unlock_user_struct(target_efl, arg3, 0);
P
pbrook 已提交
5059 5060 5061
            } else
#endif
            {
5062 5063 5064 5065
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
P
pbrook 已提交
5066 5067 5068 5069 5070
                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);
5071
                unlock_user_struct(target_fl, arg3, 0);
P
pbrook 已提交
5072
            }
T
ths 已提交
5073
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
5074
	    break;
B
bellard 已提交
5075
        default:
T
ths 已提交
5076
            ret = get_errno(do_fcntl(arg1, cmd, arg3));
B
bellard 已提交
5077 5078
            break;
        }
B
bellard 已提交
5079 5080
	break;
    }
B
bellard 已提交
5081
#endif
5082 5083 5084 5085 5086 5087
#ifdef TARGET_NR_cacheflush
    case TARGET_NR_cacheflush:
        /* self-modifying code is handled automatically, so nothing needed */
        ret = 0;
        break;
#endif
5088
#ifdef TARGET_NR_security
5089 5090
    case TARGET_NR_security:
        goto unimplemented;
B
bellard 已提交
5091 5092 5093 5094 5095
#endif
#ifdef TARGET_NR_getpagesize
    case TARGET_NR_getpagesize:
        ret = TARGET_PAGE_SIZE;
        break;
5096
#endif
5097 5098 5099
    case TARGET_NR_gettid:
        ret = get_errno(gettid());
        break;
5100
#ifdef TARGET_NR_readahead
5101
    case TARGET_NR_readahead:
B
bellard 已提交
5102
        goto unimplemented;
5103
#endif
5104
#ifdef TARGET_NR_setxattr
5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116
    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 已提交
5117
        goto unimplemented_nowarn;
5118 5119
#endif
#ifdef TARGET_NR_set_thread_area
B
bellard 已提交
5120
    case TARGET_NR_set_thread_area:
5121 5122 5123 5124 5125 5126 5127 5128 5129
#ifdef TARGET_MIPS
      ((CPUMIPSState *) cpu_env)->tls_value = arg1;
      ret = 0;
      break;
#else
      goto unimplemented_nowarn;
#endif
#endif
#ifdef TARGET_NR_get_thread_area
B
bellard 已提交
5130 5131
    case TARGET_NR_get_thread_area:
        goto unimplemented_nowarn;
B
bellard 已提交
5132 5133 5134 5135
#endif
#ifdef TARGET_NR_getdomainname
    case TARGET_NR_getdomainname:
        goto unimplemented_nowarn;
5136
#endif
5137

5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160
#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

5161 5162
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
    case TARGET_NR_set_tid_address:
5163 5164
        ret = get_errno(set_tid_address((int *)g2h(arg1)));
        break;
5165 5166
#endif

T
ths 已提交
5167
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
5168 5169 5170 5171 5172
    case TARGET_NR_tkill:
        ret = get_errno(sys_tkill((int)arg1, (int)arg2));
        break;
#endif

T
ths 已提交
5173
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
5174 5175 5176 5177 5178
    case TARGET_NR_tgkill:
	ret = get_errno(sys_tgkill((int)arg1, (int)arg2, (int)arg3));
	break;
#endif

5179 5180 5181 5182 5183
#ifdef TARGET_NR_set_robust_list
    case TARGET_NR_set_robust_list:
	goto unimplemented_nowarn;
#endif

5184 5185 5186 5187 5188 5189 5190 5191 5192
#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 {
5193
                if (!(p = lock_user_string(arg2))) {
5194
                    ret = -TARGET_EFAULT;
5195 5196 5197 5198
                    goto fail;
                }
                ret = get_errno(sys_utimensat(arg1, path(p), ts, arg4));
                unlock_user(p, arg2, 0);
5199 5200 5201 5202 5203
            }
        }
	break;
#endif

5204 5205
    default:
    unimplemented:
B
bellard 已提交
5206
        gemu_log("qemu: Unsupported syscall: %d\n", num);
5207
#if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
B
bellard 已提交
5208
    unimplemented_nowarn:
B
bellard 已提交
5209
#endif
5210
        ret = -TARGET_ENOSYS;
5211 5212
        break;
    }
5213
fail:
B
bellard 已提交
5214 5215 5216
#ifdef DEBUG
    gemu_log(" = %ld\n", ret);
#endif
5217 5218
    if(do_strace)
        print_syscall_ret(num, ret);
5219
    return ret;
5220 5221 5222
efault:
    ret = -TARGET_EFAULT;
    goto fail;
5223
}