syscall.c 286.1 KB
Newer Older
1 2
/*
 *  Linux syscalls
3
 *
4 5 6 7 8 9 10 11 12 13 14 15 16
 *  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
17
 *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18
 */
19
#define _ATFILE_SOURCE
20 21 22
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
B
bellard 已提交
23
#include <string.h>
24 25 26 27 28
#include <elf.h>
#include <endian.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
B
bellard 已提交
29
#include <time.h>
30
#include <limits.h>
31
#include <grp.h>
32
#include <sys/types.h>
T
ths 已提交
33 34
#include <sys/ipc.h>
#include <sys/msg.h>
35 36 37 38
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/mount.h>
39 40 41
#include <sys/file.h>
#include <sys/fsuid.h>
#include <sys/personality.h>
42
#include <sys/prctl.h>
43 44 45 46 47
#include <sys/resource.h>
#include <sys/mman.h>
#include <sys/swap.h>
#include <signal.h>
#include <sched.h>
48 49 50 51
#ifdef __ia64__
int __clone2(int (*fn)(void *), void *child_stack_base,
             size_t stack_size, int flags, void *arg, ...);
#endif
52
#include <sys/socket.h>
53
#include <sys/un.h>
54
#include <sys/uio.h>
B
bellard 已提交
55
#include <sys/poll.h>
B
bellard 已提交
56
#include <sys/times.h>
57
#include <sys/shm.h>
58
#include <sys/sem.h>
B
bellard 已提交
59
#include <sys/statfs.h>
60
#include <utime.h>
B
bellard 已提交
61
#include <sys/sysinfo.h>
62
#include <sys/utsname.h>
B
bellard 已提交
63
//#include <sys/user.h>
64
#include <netinet/ip.h>
B
bellard 已提交
65
#include <netinet/tcp.h>
66
#include <linux/wireless.h>
67
#include <linux/icmp.h>
68
#include "qemu-common.h"
69
#ifdef TARGET_GPROF
A
aurel32 已提交
70 71
#include <sys/gmon.h>
#endif
R
Riku Voipio 已提交
72 73 74
#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
#endif
75 76 77
#ifdef CONFIG_EPOLL
#include <sys/epoll.h>
#endif
78
#ifdef CONFIG_ATTR
79
#include "qemu/xattr.h"
80
#endif
81 82 83
#ifdef CONFIG_SENDFILE
#include <sys/sendfile.h>
#endif
84 85 86 87

#define termios host_termios
#define winsize host_winsize
#define termio host_termio
B
bellard 已提交
88 89 90
#define sgttyb host_sgttyb /* same as target */
#define tchars host_tchars /* same as target */
#define ltchars host_ltchars /* same as target */
91 92 93 94 95 96 97

#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 已提交
98
#include <linux/kd.h>
99
#include <linux/mtio.h>
M
Martin Mohring 已提交
100
#include <linux/fs.h>
101
#if defined(CONFIG_FIEMAP)
102
#include <linux/fiemap.h>
103
#endif
U
Ulrich Hecht 已提交
104 105
#include <linux/fb.h>
#include <linux/vt.h>
106
#include <linux/dm-ioctl.h>
L
Laurent Vivier 已提交
107
#include <linux/reboot.h>
108
#include <linux/route.h>
109
#include <linux/filter.h>
110
#include <linux/blkpg.h>
111
#include "linux_loop.h"
112
#include "cpu-uname.h"
113

B
bellard 已提交
114
#include "qemu.h"
115

P
pbrook 已提交
116 117
#define CLONE_NPTL_FLAGS2 (CLONE_SETTLS | \
    CLONE_PARENT_SETTID | CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID)
P
pbrook 已提交
118

B
bellard 已提交
119
//#define DEBUG
120

B
bellard 已提交
121
//#include <linux/msdos_fs.h>
A
aurel32 已提交
122 123
#define	VFAT_IOCTL_READDIR_BOTH		_IOR('r', 1, struct linux_dirent [2])
#define	VFAT_IOCTL_READDIR_SHORT	_IOR('r', 2, struct linux_dirent [2])
B
bellard 已提交
124

125 126 127 128 129 130 131

#undef _syscall0
#undef _syscall1
#undef _syscall2
#undef _syscall3
#undef _syscall4
#undef _syscall5
B
bellard 已提交
132
#undef _syscall6
133

B
bellard 已提交
134
#define _syscall0(type,name)		\
135
static type name (void)			\
B
bellard 已提交
136 137 138
{					\
	return syscall(__NR_##name);	\
}
139

B
bellard 已提交
140
#define _syscall1(type,name,type1,arg1)		\
141
static type name (type1 arg1)			\
B
bellard 已提交
142 143
{						\
	return syscall(__NR_##name, arg1);	\
144 145
}

B
bellard 已提交
146
#define _syscall2(type,name,type1,arg1,type2,arg2)	\
147
static type name (type1 arg1,type2 arg2)		\
B
bellard 已提交
148 149
{							\
	return syscall(__NR_##name, arg1, arg2);	\
150 151
}

B
bellard 已提交
152
#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3)	\
153
static type name (type1 arg1,type2 arg2,type3 arg3)		\
B
bellard 已提交
154 155
{								\
	return syscall(__NR_##name, arg1, arg2, arg3);		\
156 157
}

B
bellard 已提交
158
#define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4)	\
159
static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4)			\
B
bellard 已提交
160 161
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4);			\
162 163
}

B
bellard 已提交
164 165
#define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,	\
		  type5,arg5)							\
166
static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5)	\
B
bellard 已提交
167 168
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5);		\
169 170
}

B
bellard 已提交
171 172 173

#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,	\
		  type5,arg5,type6,arg6)					\
174 175
static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5,	\
                  type6 arg6)							\
B
bellard 已提交
176 177
{										\
	return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5, arg6);	\
178
}
B
bellard 已提交
179

180

181
#define __NR_sys_uname __NR_uname
B
bellard 已提交
182 183
#define __NR_sys_getcwd1 __NR_getcwd
#define __NR_sys_getdents __NR_getdents
B
bellard 已提交
184
#define __NR_sys_getdents64 __NR_getdents64
185
#define __NR_sys_getpriority __NR_getpriority
B
bellard 已提交
186
#define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo
187
#define __NR_sys_syslog __NR_syslog
T
ths 已提交
188
#define __NR_sys_tgkill __NR_tgkill
T
ths 已提交
189
#define __NR_sys_tkill __NR_tkill
190
#define __NR_sys_futex __NR_futex
A
aurel32 已提交
191 192 193
#define __NR_sys_inotify_init __NR_inotify_init
#define __NR_sys_inotify_add_watch __NR_inotify_add_watch
#define __NR_sys_inotify_rm_watch __NR_inotify_rm_watch
194

195 196
#if defined(__alpha__) || defined (__ia64__) || defined(__x86_64__) || \
    defined(__s390x__)
B
bellard 已提交
197 198 199
#define __NR__llseek __NR_lseek
#endif

B
bellard 已提交
200
#ifdef __NR_gettid
201
_syscall0(int, gettid)
B
bellard 已提交
202
#else
203 204
/* This is a replacement for the host gettid() and must return a host
   errno. */
B
bellard 已提交
205 206 207 208
static int gettid(void) {
    return -ENOSYS;
}
#endif
209
#ifdef __NR_getdents
210
_syscall3(int, sys_getdents, uint, fd, struct linux_dirent *, dirp, uint, count);
211 212 213
#endif
#if !defined(__NR_getdents) || \
    (defined(TARGET_NR_getdents64) && defined(__NR_getdents64))
214 215
_syscall3(int, sys_getdents64, uint, fd, struct linux_dirent64 *, dirp, uint, count);
#endif
R
Richard Henderson 已提交
216
#if defined(TARGET_NR__llseek) && defined(__NR_llseek)
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
_syscall5(int, _llseek,  uint,  fd, ulong, hi, ulong, lo,
          loff_t *, res, uint, wh);
#endif
_syscall3(int,sys_rt_sigqueueinfo,int,pid,int,sig,siginfo_t *,uinfo)
_syscall3(int,sys_syslog,int,type,char*,bufp,int,len)
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
_syscall3(int,sys_tgkill,int,tgid,int,pid,int,sig)
#endif
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
_syscall2(int,sys_tkill,int,tid,int,sig)
#endif
#ifdef __NR_exit_group
_syscall1(int,exit_group,int,error_code)
#endif
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
_syscall1(int,set_tid_address,int *,tidptr)
#endif
#if defined(TARGET_NR_futex) && defined(__NR_futex)
_syscall6(int,sys_futex,int *,uaddr,int,op,int,val,
          const struct timespec *,timeout,int *,uaddr2,int,val3)
#endif
238 239 240 241 242 243
#define __NR_sys_sched_getaffinity __NR_sched_getaffinity
_syscall3(int, sys_sched_getaffinity, pid_t, pid, unsigned int, len,
          unsigned long *, user_mask_ptr);
#define __NR_sys_sched_setaffinity __NR_sched_setaffinity
_syscall3(int, sys_sched_setaffinity, pid_t, pid, unsigned int, len,
          unsigned long *, user_mask_ptr);
244 245
_syscall4(int, reboot, int, magic1, int, magic2, unsigned int, cmd,
          void *, arg);
246 247 248 249 250 251 252 253 254 255

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,  },
256
  { TARGET_O_SYNC,      TARGET_O_DSYNC,     O_SYNC,      O_DSYNC,     },
257 258 259 260 261 262
  { 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,  },
#if defined(O_DIRECT)
  { TARGET_O_DIRECT,    TARGET_O_DIRECT,    O_DIRECT,    O_DIRECT,    },
263 264 265 266 267 268 269 270 271 272 273 274 275
#endif
#if defined(O_NOATIME)
  { TARGET_O_NOATIME,   TARGET_O_NOATIME,   O_NOATIME,   O_NOATIME    },
#endif
#if defined(O_CLOEXEC)
  { TARGET_O_CLOEXEC,   TARGET_O_CLOEXEC,   O_CLOEXEC,   O_CLOEXEC    },
#endif
#if defined(O_PATH)
  { TARGET_O_PATH,      TARGET_O_PATH,      O_PATH,      O_PATH       },
#endif
  /* Don't terminate the list prematurely on 64-bit host+guest.  */
#if TARGET_O_LARGEFILE != 0 || O_LARGEFILE != 0
  { TARGET_O_LARGEFILE, TARGET_O_LARGEFILE, O_LARGEFILE, O_LARGEFILE, },
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
#endif
  { 0, 0, 0, 0 }
};

#define COPY_UTSNAME_FIELD(dest, src) \
  do { \
      /* __NEW_UTS_LEN doesn't include terminating null */ \
      (void) strncpy((dest), (src), __NEW_UTS_LEN); \
      (dest)[__NEW_UTS_LEN] = '\0'; \
  } while (0)

static int sys_uname(struct new_utsname *buf)
{
  struct utsname uts_buf;

  if (uname(&uts_buf) < 0)
      return (-1);

  /*
   * Just in case these have some differences, we
   * translate utsname to new_utsname (which is the
   * struct linux kernel uses).
   */

300
  memset(buf, 0, sizeof(*buf));
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  COPY_UTSNAME_FIELD(buf->sysname, uts_buf.sysname);
  COPY_UTSNAME_FIELD(buf->nodename, uts_buf.nodename);
  COPY_UTSNAME_FIELD(buf->release, uts_buf.release);
  COPY_UTSNAME_FIELD(buf->version, uts_buf.version);
  COPY_UTSNAME_FIELD(buf->machine, uts_buf.machine);
#ifdef _GNU_SOURCE
  COPY_UTSNAME_FIELD(buf->domainname, uts_buf.domainname);
#endif
  return (0);

#undef COPY_UTSNAME_FIELD
}

static int sys_getcwd1(char *buf, size_t size)
{
  if (getcwd(buf, size) == NULL) {
      /* getcwd() sets errno */
      return (-1);
  }
A
aurel32 已提交
320
  return strlen(buf)+1;
321 322 323
}

#ifdef TARGET_NR_openat
A
Alexander Graf 已提交
324
static int sys_openat(int dirfd, const char *pathname, int flags, mode_t mode)
325 326 327 328 329 330 331 332 333 334 335
{
  /*
   * open(2) has extra parameter 'mode' when called with
   * flag O_CREAT.
   */
  if ((flags & O_CREAT) != 0) {
      return (openat(dirfd, pathname, flags, mode));
  }
  return (openat(dirfd, pathname, flags));
}
#endif
R
Riku Voipio 已提交
336

337
#ifdef TARGET_NR_utimensat
R
Riku Voipio 已提交
338 339 340 341 342 343 344 345 346
#ifdef CONFIG_UTIMENSAT
static int sys_utimensat(int dirfd, const char *pathname,
    const struct timespec times[2], int flags)
{
    if (pathname == NULL)
        return futimens(dirfd, times);
    else
        return utimensat(dirfd, pathname, times, flags);
}
347 348
#elif defined(__NR_utimensat)
#define __NR_sys_utimensat __NR_utimensat
349 350
_syscall4(int,sys_utimensat,int,dirfd,const char *,pathname,
          const struct timespec *,tsp,int,flags)
351 352 353 354 355 356 357
#else
static int sys_utimensat(int dirfd, const char *pathname,
                         const struct timespec times[2], int flags)
{
    errno = ENOSYS;
    return -1;
}
358
#endif
359
#endif /* TARGET_NR_utimensat */
360 361

#ifdef CONFIG_INOTIFY
A
aurel32 已提交
362
#include <sys/inotify.h>
363

A
aurel32 已提交
364
#if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
365 366 367 368
static int sys_inotify_init(void)
{
  return (inotify_init());
}
A
aurel32 已提交
369 370
#endif
#if defined(TARGET_NR_inotify_add_watch) && defined(__NR_inotify_add_watch)
371 372 373 374
static int sys_inotify_add_watch(int fd,const char *pathname, int32_t mask)
{
  return (inotify_add_watch(fd, pathname, mask));
}
A
aurel32 已提交
375 376
#endif
#if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
377 378
static int sys_inotify_rm_watch(int fd, int32_t wd)
{
A
aurel32 已提交
379
  return (inotify_rm_watch(fd, wd));
380
}
381
#endif
382 383 384 385 386 387 388 389
#ifdef CONFIG_INOTIFY1
#if defined(TARGET_NR_inotify_init1) && defined(__NR_inotify_init1)
static int sys_inotify_init1(int flags)
{
  return (inotify_init1(flags));
}
#endif
#endif
390 391 392
#else
/* Userspace can usually survive runtime without inotify */
#undef TARGET_NR_inotify_init
393
#undef TARGET_NR_inotify_init1
394 395 396 397
#undef TARGET_NR_inotify_add_watch
#undef TARGET_NR_inotify_rm_watch
#endif /* CONFIG_INOTIFY  */

398 399 400 401 402 403 404 405 406
#if defined(TARGET_NR_ppoll)
#ifndef __NR_ppoll
# define __NR_ppoll -1
#endif
#define __NR_sys_ppoll __NR_ppoll
_syscall5(int, sys_ppoll, struct pollfd *, fds, nfds_t, nfds,
          struct timespec *, timeout, const __sigset_t *, sigmask,
          size_t, sigsetsize)
#endif
B
bellard 已提交
407

408 409 410 411 412 413 414 415 416
#if defined(TARGET_NR_pselect6)
#ifndef __NR_pselect6
# define __NR_pselect6 -1
#endif
#define __NR_sys_pselect6 __NR_pselect6
_syscall6(int, sys_pselect6, int, nfds, fd_set *, readfds, fd_set *, writefds,
          fd_set *, exceptfds, struct timespec *, timeout, void *, sig);
#endif

417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
#if defined(TARGET_NR_prlimit64)
#ifndef __NR_prlimit64
# define __NR_prlimit64 -1
#endif
#define __NR_sys_prlimit64 __NR_prlimit64
/* The glibc rlimit structure may not be that used by the underlying syscall */
struct host_rlimit64 {
    uint64_t rlim_cur;
    uint64_t rlim_max;
};
_syscall4(int, sys_prlimit64, pid_t, pid, int, resource,
          const struct host_rlimit64 *, new_limit,
          struct host_rlimit64 *, old_limit)
#endif

432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

#if defined(TARGET_NR_timer_create)
/* Maxiumum of 32 active POSIX timers allowed at any one time. */
static timer_t g_posix_timers[32] = { 0, } ;

static inline int next_free_host_timer(void)
{
    int k ;
    /* FIXME: Does finding the next free slot require a lock? */
    for (k = 0; k < ARRAY_SIZE(g_posix_timers); k++) {
        if (g_posix_timers[k] == 0) {
            g_posix_timers[k] = (timer_t) 1;
            return k;
        }
    }
    return -1;
}
#endif

451
/* ARM EABI and MIPS expect 64bit types aligned even on pairs or registers */
452
#ifdef TARGET_ARM
453 454 455 456 457
static inline int regpairs_aligned(void *cpu_env) {
    return ((((CPUARMState *)cpu_env)->eabi) == 1) ;
}
#elif defined(TARGET_MIPS)
static inline int regpairs_aligned(void *cpu_env) { return 1; }
458 459 460 461 462
#elif defined(TARGET_PPC) && !defined(TARGET_PPC64)
/* SysV AVI for PPC32 expects 64bit parameters to be passed on odd/even pairs
 * of registers which translates to the same as ARM/MIPS, because we start with
 * r3 as arg1 */
static inline int regpairs_aligned(void *cpu_env) { return 1; }
463 464 465 466
#else
static inline int regpairs_aligned(void *cpu_env) { return 0; }
#endif

467 468 469 470 471 472 473
#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] = {
};

474
/*
T
ths 已提交
475
 * This list is the union of errno values overridden in asm-<arch>/errno.h
476 477
 * minus the errnos that are not actually generic to all archs.
 */
478
static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
    [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 已提交
566
#ifdef ENOKEY
567
    [ENOKEY]		= TARGET_ENOKEY,
T
ths 已提交
568 569
#endif
#ifdef EKEYEXPIRED
570
    [EKEYEXPIRED]	= TARGET_EKEYEXPIRED,
T
ths 已提交
571 572
#endif
#ifdef EKEYREVOKED
573
    [EKEYREVOKED]	= TARGET_EKEYREVOKED,
T
ths 已提交
574 575
#endif
#ifdef EKEYREJECTED
576
    [EKEYREJECTED]	= TARGET_EKEYREJECTED,
T
ths 已提交
577 578
#endif
#ifdef EOWNERDEAD
579
    [EOWNERDEAD]	= TARGET_EOWNERDEAD,
T
ths 已提交
580 581
#endif
#ifdef ENOTRECOVERABLE
582
    [ENOTRECOVERABLE]	= TARGET_ENOTRECOVERABLE,
T
ths 已提交
583
#endif
584
};
585 586 587 588 589 590 591 592

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

593 594 595 596 597 598 599
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;
}

600
static inline abi_long get_errno(abi_long ret)
601 602
{
    if (ret == -1)
603
        return -host_to_target_errno(errno);
604 605 606 607
    else
        return ret;
}

608
static inline int is_error(abi_long ret)
609
{
610
    return (abi_ulong)ret >= (abi_ulong)(-4096);
611 612
}

613 614
char *target_strerror(int err)
{
615 616 617
    if ((err >= ERRNO_TABLE_SIZE) || (err < 0)) {
        return NULL;
    }
618 619 620
    return strerror(target_to_host_errno(err));
}

621 622
static abi_ulong target_brk;
static abi_ulong target_original_brk;
623
static abi_ulong brk_page;
624

625
void target_set_brk(abi_ulong new_brk)
626
{
627
    target_original_brk = target_brk = HOST_PAGE_ALIGN(new_brk);
628
    brk_page = HOST_PAGE_ALIGN(target_brk);
629 630
}

631 632 633
//#define DEBUGF_BRK(message, args...) do { fprintf(stderr, (message), ## args); } while (0)
#define DEBUGF_BRK(message, args...)

634
/* do_brk() must return target values and target errnos. */
635
abi_long do_brk(abi_ulong new_brk)
636
{
637
    abi_long mapped_addr;
638 639
    int	new_alloc_size;

P
Paul Brook 已提交
640
    DEBUGF_BRK("do_brk(" TARGET_ABI_FMT_lx ") -> ", new_brk);
641 642

    if (!new_brk) {
P
Paul Brook 已提交
643
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (!new_brk)\n", target_brk);
644
        return target_brk;
645 646
    }
    if (new_brk < target_original_brk) {
P
Paul Brook 已提交
647 648
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk < target_original_brk)\n",
                   target_brk);
649
        return target_brk;
650
    }
651

652 653 654 655 656 657 658 659
    /* If the new brk is less than the highest page reserved to the
     * target heap allocation, set it and we're almost done...  */
    if (new_brk <= brk_page) {
        /* Heap contents are initialized to zero, as for anonymous
         * mapped pages.  */
        if (new_brk > target_brk) {
            memset(g2h(target_brk), 0, new_brk - target_brk);
        }
660
	target_brk = new_brk;
P
Paul Brook 已提交
661
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk <= brk_page)\n", target_brk);
662
    	return target_brk;
663 664
    }

665 666 667 668 669 670
    /* We need to allocate more memory after the brk... Note that
     * we don't use MAP_FIXED because that will map over the top of
     * any existing mapping (like the one with the host libc or qemu
     * itself); instead we treat "mapped but at wrong address" as
     * a failure and unmap again.
     */
671
    new_alloc_size = HOST_PAGE_ALIGN(new_brk - brk_page);
672
    mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size,
B
bellard 已提交
673
                                        PROT_READ|PROT_WRITE,
674 675 676
                                        MAP_ANON|MAP_PRIVATE, 0, 0));

    if (mapped_addr == brk_page) {
677 678 679 680 681 682 683 684 685
        /* Heap contents are initialized to zero, as for anonymous
         * mapped pages.  Technically the new pages are already
         * initialized to zero since they *are* anonymous mapped
         * pages, however we have to take care with the contents that
         * come from the remaining part of the previous page: it may
         * contains garbage data due to a previous heap usage (grown
         * then shrunken).  */
        memset(g2h(target_brk), 0, brk_page - target_brk);

686
        target_brk = new_brk;
687
        brk_page = HOST_PAGE_ALIGN(target_brk);
P
Paul Brook 已提交
688 689
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr == brk_page)\n",
            target_brk);
690 691 692 693 694 695 696
        return target_brk;
    } else if (mapped_addr != -1) {
        /* Mapped but at wrong address, meaning there wasn't actually
         * enough space for this brk.
         */
        target_munmap(mapped_addr, new_alloc_size);
        mapped_addr = -1;
P
Paul Brook 已提交
697
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr != -1)\n", target_brk);
698 699
    }
    else {
P
Paul Brook 已提交
700
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (otherwise)\n", target_brk);
701
    }
702

703 704 705
#if defined(TARGET_ALPHA)
    /* We (partially) emulate OSF/1 on Alpha, which requires we
       return a proper errno, not an unchanged brk value.  */
706
    return -TARGET_ENOMEM;
707
#endif
708
    /* For everything else, return the previous break. */
709
    return target_brk;
710 711
}

712 713 714
static inline abi_long copy_from_user_fdset(fd_set *fds,
                                            abi_ulong target_fds_addr,
                                            int n)
715
{
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
    int i, nw, j, k;
    abi_ulong b, *target_fds;

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

    FD_ZERO(fds);
    k = 0;
    for (i = 0; i < nw; i++) {
        /* grab the abi_ulong */
        __get_user(b, &target_fds[i]);
        for (j = 0; j < TARGET_ABI_BITS; j++) {
            /* check the bit inside the abi_ulong */
            if ((b >> j) & 1)
                FD_SET(k, fds);
            k++;
736 737
        }
    }
738 739 740 741

    unlock_user(target_fds, target_fds_addr, 0);

    return 0;
742 743
}

744 745 746 747 748 749 750 751 752 753 754 755 756 757
static inline abi_ulong copy_from_user_fdset_ptr(fd_set *fds, fd_set **fds_ptr,
                                                 abi_ulong target_fds_addr,
                                                 int n)
{
    if (target_fds_addr) {
        if (copy_from_user_fdset(fds, target_fds_addr, n))
            return -TARGET_EFAULT;
        *fds_ptr = fds;
    } else {
        *fds_ptr = NULL;
    }
    return 0;
}

758 759 760
static inline abi_long copy_to_user_fdset(abi_ulong target_fds_addr,
                                          const fd_set *fds,
                                          int n)
761 762
{
    int i, nw, j, k;
763
    abi_long v;
764
    abi_ulong *target_fds;
765

766 767 768 769 770 771 772 773 774 775 776
    nw = (n + TARGET_ABI_BITS - 1) / TARGET_ABI_BITS;
    if (!(target_fds = lock_user(VERIFY_WRITE,
                                 target_fds_addr,
                                 sizeof(abi_ulong) * nw,
                                 0)))
        return -TARGET_EFAULT;

    k = 0;
    for (i = 0; i < nw; i++) {
        v = 0;
        for (j = 0; j < TARGET_ABI_BITS; j++) {
777
            v |= ((abi_ulong)(FD_ISSET(k, fds) != 0) << j);
778
            k++;
779
        }
780
        __put_user(v, &target_fds[i]);
781
    }
782 783 784 785

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

    return 0;
786 787
}

B
bellard 已提交
788 789 790 791 792 793
#if defined(__alpha__)
#define HOST_HZ 1024
#else
#define HOST_HZ 100
#endif

794
static inline abi_long host_to_target_clock_t(long ticks)
B
bellard 已提交
795 796 797 798 799 800 801 802
{
#if HOST_HZ == TARGET_HZ
    return ticks;
#else
    return ((int64_t)ticks * TARGET_HZ) / HOST_HZ;
#endif
}

803 804
static inline abi_long host_to_target_rusage(abi_ulong target_addr,
                                             const struct rusage *rusage)
B
bellard 已提交
805
{
806 807
    struct target_rusage *target_rusage;

808 809
    if (!lock_user_struct(VERIFY_WRITE, target_rusage, target_addr, 0))
        return -TARGET_EFAULT;
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
    target_rusage->ru_utime.tv_sec = tswapal(rusage->ru_utime.tv_sec);
    target_rusage->ru_utime.tv_usec = tswapal(rusage->ru_utime.tv_usec);
    target_rusage->ru_stime.tv_sec = tswapal(rusage->ru_stime.tv_sec);
    target_rusage->ru_stime.tv_usec = tswapal(rusage->ru_stime.tv_usec);
    target_rusage->ru_maxrss = tswapal(rusage->ru_maxrss);
    target_rusage->ru_ixrss = tswapal(rusage->ru_ixrss);
    target_rusage->ru_idrss = tswapal(rusage->ru_idrss);
    target_rusage->ru_isrss = tswapal(rusage->ru_isrss);
    target_rusage->ru_minflt = tswapal(rusage->ru_minflt);
    target_rusage->ru_majflt = tswapal(rusage->ru_majflt);
    target_rusage->ru_nswap = tswapal(rusage->ru_nswap);
    target_rusage->ru_inblock = tswapal(rusage->ru_inblock);
    target_rusage->ru_oublock = tswapal(rusage->ru_oublock);
    target_rusage->ru_msgsnd = tswapal(rusage->ru_msgsnd);
    target_rusage->ru_msgrcv = tswapal(rusage->ru_msgrcv);
    target_rusage->ru_nsignals = tswapal(rusage->ru_nsignals);
    target_rusage->ru_nvcsw = tswapal(rusage->ru_nvcsw);
    target_rusage->ru_nivcsw = tswapal(rusage->ru_nivcsw);
828
    unlock_user_struct(target_rusage, target_addr, 1);
829 830

    return 0;
B
bellard 已提交
831 832
}

833
static inline rlim_t target_to_host_rlim(abi_ulong target_rlim)
834
{
835
    abi_ulong target_rlim_swap;
836 837
    rlim_t result;
    
838 839 840 841 842 843 844
    target_rlim_swap = tswapal(target_rlim);
    if (target_rlim_swap == TARGET_RLIM_INFINITY)
        return RLIM_INFINITY;

    result = target_rlim_swap;
    if (target_rlim_swap != (rlim_t)result)
        return RLIM_INFINITY;
845 846
    
    return result;
847 848
}

849
static inline abi_ulong host_to_target_rlim(rlim_t rlim)
850
{
851 852
    abi_ulong target_rlim_swap;
    abi_ulong result;
853
    
854
    if (rlim == RLIM_INFINITY || rlim != (abi_long)rlim)
855
        target_rlim_swap = TARGET_RLIM_INFINITY;
856
    else
857
        target_rlim_swap = rlim;
858
    result = tswapal(target_rlim_swap);
859 860
    
    return result;
861 862
}

863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
static inline int target_to_host_resource(int code)
{
    switch (code) {
    case TARGET_RLIMIT_AS:
        return RLIMIT_AS;
    case TARGET_RLIMIT_CORE:
        return RLIMIT_CORE;
    case TARGET_RLIMIT_CPU:
        return RLIMIT_CPU;
    case TARGET_RLIMIT_DATA:
        return RLIMIT_DATA;
    case TARGET_RLIMIT_FSIZE:
        return RLIMIT_FSIZE;
    case TARGET_RLIMIT_LOCKS:
        return RLIMIT_LOCKS;
    case TARGET_RLIMIT_MEMLOCK:
        return RLIMIT_MEMLOCK;
    case TARGET_RLIMIT_MSGQUEUE:
        return RLIMIT_MSGQUEUE;
    case TARGET_RLIMIT_NICE:
        return RLIMIT_NICE;
    case TARGET_RLIMIT_NOFILE:
        return RLIMIT_NOFILE;
    case TARGET_RLIMIT_NPROC:
        return RLIMIT_NPROC;
    case TARGET_RLIMIT_RSS:
        return RLIMIT_RSS;
    case TARGET_RLIMIT_RTPRIO:
        return RLIMIT_RTPRIO;
    case TARGET_RLIMIT_SIGPENDING:
        return RLIMIT_SIGPENDING;
    case TARGET_RLIMIT_STACK:
        return RLIMIT_STACK;
    default:
        return code;
    }
}

901 902
static inline abi_long copy_from_user_timeval(struct timeval *tv,
                                              abi_ulong target_tv_addr)
903
{
904 905
    struct target_timeval *target_tv;

906
    if (!lock_user_struct(VERIFY_READ, target_tv, target_tv_addr, 1))
907
        return -TARGET_EFAULT;
908 909 910 911 912

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

    unlock_user_struct(target_tv, target_tv_addr, 0);
913 914

    return 0;
915 916
}

917 918
static inline abi_long copy_to_user_timeval(abi_ulong target_tv_addr,
                                            const struct timeval *tv)
919
{
920 921
    struct target_timeval *target_tv;

922
    if (!lock_user_struct(VERIFY_WRITE, target_tv, target_tv_addr, 0))
923
        return -TARGET_EFAULT;
924 925 926 927 928

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

    unlock_user_struct(target_tv, target_tv_addr, 1);
929 930

    return 0;
931 932
}

933 934 935
#if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
#include <mqueue.h>

936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
static inline abi_long copy_from_user_mq_attr(struct mq_attr *attr,
                                              abi_ulong target_mq_attr_addr)
{
    struct target_mq_attr *target_mq_attr;

    if (!lock_user_struct(VERIFY_READ, target_mq_attr,
                          target_mq_attr_addr, 1))
        return -TARGET_EFAULT;

    __get_user(attr->mq_flags, &target_mq_attr->mq_flags);
    __get_user(attr->mq_maxmsg, &target_mq_attr->mq_maxmsg);
    __get_user(attr->mq_msgsize, &target_mq_attr->mq_msgsize);
    __get_user(attr->mq_curmsgs, &target_mq_attr->mq_curmsgs);

    unlock_user_struct(target_mq_attr, target_mq_attr_addr, 0);

    return 0;
}

static inline abi_long copy_to_user_mq_attr(abi_ulong target_mq_attr_addr,
                                            const struct mq_attr *attr)
{
    struct target_mq_attr *target_mq_attr;

    if (!lock_user_struct(VERIFY_WRITE, target_mq_attr,
                          target_mq_attr_addr, 0))
        return -TARGET_EFAULT;

    __put_user(attr->mq_flags, &target_mq_attr->mq_flags);
    __put_user(attr->mq_maxmsg, &target_mq_attr->mq_maxmsg);
    __put_user(attr->mq_msgsize, &target_mq_attr->mq_msgsize);
    __put_user(attr->mq_curmsgs, &target_mq_attr->mq_curmsgs);

    unlock_user_struct(target_mq_attr, target_mq_attr_addr, 1);

    return 0;
}
973
#endif
974

975
#if defined(TARGET_NR_select) || defined(TARGET_NR__newselect)
976
/* do_select() must return target values and target errnos. */
977
static abi_long do_select(int n,
978 979
                          abi_ulong rfd_addr, abi_ulong wfd_addr,
                          abi_ulong efd_addr, abi_ulong target_tv_addr)
980 981 982 983
{
    fd_set rfds, wfds, efds;
    fd_set *rfds_ptr, *wfds_ptr, *efds_ptr;
    struct timeval tv, *tv_ptr;
984
    abi_long ret;
985

986 987 988
    ret = copy_from_user_fdset_ptr(&rfds, &rfds_ptr, rfd_addr, n);
    if (ret) {
        return ret;
989
    }
990 991 992
    ret = copy_from_user_fdset_ptr(&wfds, &wfds_ptr, wfd_addr, n);
    if (ret) {
        return ret;
993
    }
994 995 996
    ret = copy_from_user_fdset_ptr(&efds, &efds_ptr, efd_addr, n);
    if (ret) {
        return ret;
997
    }
998

999
    if (target_tv_addr) {
1000 1001
        if (copy_from_user_timeval(&tv, target_tv_addr))
            return -TARGET_EFAULT;
1002 1003 1004 1005
        tv_ptr = &tv;
    } else {
        tv_ptr = NULL;
    }
1006

1007
    ret = get_errno(select(n, rfds_ptr, wfds_ptr, efds_ptr, tv_ptr));
1008

1009 1010 1011 1012 1013 1014 1015
    if (!is_error(ret)) {
        if (rfd_addr && copy_to_user_fdset(rfd_addr, &rfds, n))
            return -TARGET_EFAULT;
        if (wfd_addr && copy_to_user_fdset(wfd_addr, &wfds, n))
            return -TARGET_EFAULT;
        if (efd_addr && copy_to_user_fdset(efd_addr, &efds, n))
            return -TARGET_EFAULT;
1016

1017 1018
        if (target_tv_addr && copy_to_user_timeval(target_tv_addr, &tv))
            return -TARGET_EFAULT;
1019
    }
1020

1021 1022
    return ret;
}
1023
#endif
1024

R
Riku Voipio 已提交
1025 1026 1027 1028 1029 1030 1031 1032 1033
static abi_long do_pipe2(int host_pipe[], int flags)
{
#ifdef CONFIG_PIPE2
    return pipe2(host_pipe, flags);
#else
    return -ENOSYS;
#endif
}

1034 1035
static abi_long do_pipe(void *cpu_env, abi_ulong pipedes,
                        int flags, int is_pipe2)
R
Riku Voipio 已提交
1036 1037 1038 1039 1040 1041 1042
{
    int host_pipe[2];
    abi_long ret;
    ret = flags ? do_pipe2(host_pipe, flags) : pipe(host_pipe);

    if (is_error(ret))
        return get_errno(ret);
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053

    /* Several targets have special calling conventions for the original
       pipe syscall, but didn't replicate this into the pipe2 syscall.  */
    if (!is_pipe2) {
#if defined(TARGET_ALPHA)
        ((CPUAlphaState *)cpu_env)->ir[IR_A4] = host_pipe[1];
        return host_pipe[0];
#elif defined(TARGET_MIPS)
        ((CPUMIPSState*)cpu_env)->active_tc.gpr[3] = host_pipe[1];
        return host_pipe[0];
#elif defined(TARGET_SH4)
1054
        ((CPUSH4State*)cpu_env)->gregs[1] = host_pipe[1];
1055
        return host_pipe[0];
1056 1057 1058
#elif defined(TARGET_SPARC)
        ((CPUSPARCState*)cpu_env)->regwptr[1] = host_pipe[1];
        return host_pipe[0];
1059
#endif
1060 1061
    }

R
Riku Voipio 已提交
1062 1063 1064 1065 1066 1067
    if (put_user_s32(host_pipe[0], pipedes)
        || put_user_s32(host_pipe[1], pipedes + sizeof(host_pipe[0])))
        return -TARGET_EFAULT;
    return get_errno(ret);
}

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
static inline abi_long target_to_host_ip_mreq(struct ip_mreqn *mreqn,
                                              abi_ulong target_addr,
                                              socklen_t len)
{
    struct target_ip_mreqn *target_smreqn;

    target_smreqn = lock_user(VERIFY_READ, target_addr, len, 1);
    if (!target_smreqn)
        return -TARGET_EFAULT;
    mreqn->imr_multiaddr.s_addr = target_smreqn->imr_multiaddr.s_addr;
    mreqn->imr_address.s_addr = target_smreqn->imr_address.s_addr;
    if (len == sizeof(struct target_ip_mreqn))
1080
        mreqn->imr_ifindex = tswapal(target_smreqn->imr_ifindex);
1081 1082 1083 1084 1085
    unlock_user(target_smreqn, target_addr, 0);

    return 0;
}

1086 1087 1088
static inline abi_long target_to_host_sockaddr(struct sockaddr *addr,
                                               abi_ulong target_addr,
                                               socklen_t len)
B
bellard 已提交
1089
{
1090 1091
    const socklen_t unix_maxlen = sizeof (struct sockaddr_un);
    sa_family_t sa_family;
1092 1093
    struct target_sockaddr *target_saddr;

1094 1095 1096
    target_saddr = lock_user(VERIFY_READ, target_addr, len, 1);
    if (!target_saddr)
        return -TARGET_EFAULT;
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118

    sa_family = tswap16(target_saddr->sa_family);

    /* Oops. The caller might send a incomplete sun_path; sun_path
     * must be terminated by \0 (see the manual page), but
     * unfortunately it is quite common to specify sockaddr_un
     * length as "strlen(x->sun_path)" while it should be
     * "strlen(...) + 1". We'll fix that here if needed.
     * Linux kernel has a similar feature.
     */

    if (sa_family == AF_UNIX) {
        if (len < unix_maxlen && len > 0) {
            char *cp = (char*)target_saddr;

            if ( cp[len-1] && !cp[len] )
                len++;
        }
        if (len > unix_maxlen)
            len = unix_maxlen;
    }

1119
    memcpy(addr, target_saddr, len);
1120
    addr->sa_family = sa_family;
1121
    unlock_user(target_saddr, target_addr, 0);
1122 1123

    return 0;
B
bellard 已提交
1124 1125
}

1126 1127 1128
static inline abi_long host_to_target_sockaddr(abi_ulong target_addr,
                                               struct sockaddr *addr,
                                               socklen_t len)
B
bellard 已提交
1129
{
1130 1131
    struct target_sockaddr *target_saddr;

1132 1133 1134
    target_saddr = lock_user(VERIFY_WRITE, target_addr, len, 0);
    if (!target_saddr)
        return -TARGET_EFAULT;
1135 1136 1137
    memcpy(target_saddr, addr, len);
    target_saddr->sa_family = tswap16(addr->sa_family);
    unlock_user(target_saddr, target_addr, len);
1138 1139

    return 0;
B
bellard 已提交
1140 1141
}

1142 1143
static inline abi_long target_to_host_cmsg(struct msghdr *msgh,
                                           struct target_msghdr *target_msgh)
B
bellard 已提交
1144 1145
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
1146 1147 1148
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
1149
    socklen_t space = 0;
1150
    
1151
    msg_controllen = tswapal(target_msgh->msg_controllen);
1152 1153
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
1154
    target_cmsg_addr = tswapal(target_msgh->msg_control);
1155 1156 1157
    target_cmsg = lock_user(VERIFY_READ, target_cmsg_addr, msg_controllen, 1);
    if (!target_cmsg)
        return -TARGET_EFAULT;
B
bellard 已提交
1158 1159 1160 1161 1162

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

1163
        int len = tswapal(target_cmsg->cmsg_len)
B
bellard 已提交
1164 1165 1166 1167 1168
                  - TARGET_CMSG_ALIGN(sizeof (struct target_cmsghdr));

        space += CMSG_SPACE(len);
        if (space > msgh->msg_controllen) {
            space -= CMSG_SPACE(len);
B
bellard 已提交
1169
            gemu_log("Host cmsg overflow\n");
B
bellard 已提交
1170 1171 1172
            break;
        }

1173 1174 1175 1176 1177
        if (tswap32(target_cmsg->cmsg_level) == TARGET_SOL_SOCKET) {
            cmsg->cmsg_level = SOL_SOCKET;
        } else {
            cmsg->cmsg_level = tswap32(target_cmsg->cmsg_level);
        }
B
bellard 已提交
1178 1179 1180
        cmsg->cmsg_type = tswap32(target_cmsg->cmsg_type);
        cmsg->cmsg_len = CMSG_LEN(len);

1181
        if (cmsg->cmsg_level != SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
            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);
    }
1196 1197
    unlock_user(target_cmsg, target_cmsg_addr, 0);
 the_end:
B
bellard 已提交
1198
    msgh->msg_controllen = space;
1199
    return 0;
B
bellard 已提交
1200 1201
}

1202 1203
static inline abi_long host_to_target_cmsg(struct target_msghdr *target_msgh,
                                           struct msghdr *msgh)
B
bellard 已提交
1204 1205
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
1206 1207 1208
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
1209 1210
    socklen_t space = 0;

1211
    msg_controllen = tswapal(target_msgh->msg_controllen);
1212 1213
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
1214
    target_cmsg_addr = tswapal(target_msgh->msg_control);
1215 1216 1217 1218
    target_cmsg = lock_user(VERIFY_WRITE, target_cmsg_addr, msg_controllen, 0);
    if (!target_cmsg)
        return -TARGET_EFAULT;

B
bellard 已提交
1219 1220 1221 1222 1223 1224 1225
    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);
1226
        if (space > msg_controllen) {
B
bellard 已提交
1227
            space -= TARGET_CMSG_SPACE(len);
B
bellard 已提交
1228
            gemu_log("Target cmsg overflow\n");
B
bellard 已提交
1229 1230 1231
            break;
        }

1232 1233 1234 1235 1236
        if (cmsg->cmsg_level == SOL_SOCKET) {
            target_cmsg->cmsg_level = tswap32(TARGET_SOL_SOCKET);
        } else {
            target_cmsg->cmsg_level = tswap32(cmsg->cmsg_level);
        }
B
bellard 已提交
1237
        target_cmsg->cmsg_type = tswap32(cmsg->cmsg_type);
1238
        target_cmsg->cmsg_len = tswapal(TARGET_CMSG_LEN(len));
B
bellard 已提交
1239

1240
        if ((cmsg->cmsg_level == SOL_SOCKET) &&
1241
                                (cmsg->cmsg_type == SCM_RIGHTS)) {
B
bellard 已提交
1242 1243 1244 1245 1246 1247
            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]);
1248
        } else if ((cmsg->cmsg_level == SOL_SOCKET) &&
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
                                (cmsg->cmsg_type == SO_TIMESTAMP) &&
                                (len == sizeof(struct timeval))) {
            /* copy struct timeval to target */
            struct timeval *tv = (struct timeval *)data;
            struct target_timeval *target_tv =
                                        (struct target_timeval *)target_data;

            target_tv->tv_sec = tswapal(tv->tv_sec);
            target_tv->tv_usec = tswapal(tv->tv_usec);
        } else {
            gemu_log("Unsupported ancillary data: %d/%d\n",
                                        cmsg->cmsg_level, cmsg->cmsg_type);
            memcpy(target_data, data, len);
B
bellard 已提交
1262 1263 1264 1265 1266
        }

        cmsg = CMSG_NXTHDR(msgh, cmsg);
        target_cmsg = TARGET_CMSG_NXTHDR(target_msgh, target_cmsg);
    }
1267 1268
    unlock_user(target_cmsg, target_cmsg_addr, space);
 the_end:
1269
    target_msgh->msg_controllen = tswapal(space);
1270
    return 0;
B
bellard 已提交
1271 1272
}

1273
/* do_setsockopt() Must return target values and target errnos. */
1274
static abi_long do_setsockopt(int sockfd, int level, int optname,
1275
                              abi_ulong optval_addr, socklen_t optlen)
B
bellard 已提交
1276
{
1277
    abi_long ret;
1278
    int val;
1279
    struct ip_mreqn *ip_mreq;
1280
    struct ip_mreq_source *ip_mreq_source;
1281

1282 1283
    switch(level) {
    case SOL_TCP:
B
bellard 已提交
1284 1285
        /* TCP options all take an 'int' value.  */
        if (optlen < sizeof(uint32_t))
1286
            return -TARGET_EINVAL;
1287

1288 1289
        if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
1290 1291 1292 1293
        ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
        break;
    case SOL_IP:
        switch(optname) {
B
bellard 已提交
1294 1295
        case IP_TOS:
        case IP_TTL:
1296
        case IP_HDRINCL:
B
bellard 已提交
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
        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:
1309 1310
            val = 0;
            if (optlen >= sizeof(uint32_t)) {
1311 1312
                if (get_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
1313
            } else if (optlen >= 1) {
1314 1315
                if (get_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
1316 1317 1318
            }
            ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
            break;
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
        case IP_ADD_MEMBERSHIP:
        case IP_DROP_MEMBERSHIP:
            if (optlen < sizeof (struct target_ip_mreq) ||
                optlen > sizeof (struct target_ip_mreqn))
                return -TARGET_EINVAL;

            ip_mreq = (struct ip_mreqn *) alloca(optlen);
            target_to_host_ip_mreq(ip_mreq, optval_addr, optlen);
            ret = get_errno(setsockopt(sockfd, level, optname, ip_mreq, optlen));
            break;

1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
        case IP_BLOCK_SOURCE:
        case IP_UNBLOCK_SOURCE:
        case IP_ADD_SOURCE_MEMBERSHIP:
        case IP_DROP_SOURCE_MEMBERSHIP:
            if (optlen != sizeof (struct target_ip_mreq_source))
                return -TARGET_EINVAL;

            ip_mreq_source = lock_user(VERIFY_READ, optval_addr, optlen, 1);
            ret = get_errno(setsockopt(sockfd, level, optname, ip_mreq_source, optlen));
            unlock_user (ip_mreq_source, optval_addr, 0);
            break;

1342 1343 1344 1345
        default:
            goto unimplemented;
        }
        break;
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
    case SOL_IPV6:
        switch (optname) {
        case IPV6_MTU_DISCOVER:
        case IPV6_MTU:
        case IPV6_V6ONLY:
        case IPV6_RECVPKTINFO:
            val = 0;
            if (optlen < sizeof(uint32_t)) {
                return -TARGET_EINVAL;
            }
            if (get_user_u32(val, optval_addr)) {
                return -TARGET_EFAULT;
            }
            ret = get_errno(setsockopt(sockfd, level, optname,
                                       &val, sizeof(val)));
            break;
        default:
            goto unimplemented;
        }
        break;
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
    case SOL_RAW:
        switch (optname) {
        case ICMP_FILTER:
            /* struct icmp_filter takes an u32 value */
            if (optlen < sizeof(uint32_t)) {
                return -TARGET_EINVAL;
            }

            if (get_user_u32(val, optval_addr)) {
                return -TARGET_EFAULT;
            }
            ret = get_errno(setsockopt(sockfd, level, optname,
                                       &val, sizeof(val)));
            break;

1381 1382 1383 1384
        default:
            goto unimplemented;
        }
        break;
1385
    case TARGET_SOL_SOCKET:
1386
        switch (optname) {
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408
        case TARGET_SO_RCVTIMEO:
        {
                struct timeval tv;

                optname = SO_RCVTIMEO;

set_timeout:
                if (optlen != sizeof(struct target_timeval)) {
                    return -TARGET_EINVAL;
                }

                if (copy_from_user_timeval(&tv, optval_addr)) {
                    return -TARGET_EFAULT;
                }

                ret = get_errno(setsockopt(sockfd, SOL_SOCKET, optname,
                                &tv, sizeof(tv)));
                return ret;
        }
        case TARGET_SO_SNDTIMEO:
                optname = SO_SNDTIMEO;
                goto set_timeout;
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
        case TARGET_SO_ATTACH_FILTER:
        {
                struct target_sock_fprog *tfprog;
                struct target_sock_filter *tfilter;
                struct sock_fprog fprog;
                struct sock_filter *filter;
                int i;

                if (optlen != sizeof(*tfprog)) {
                    return -TARGET_EINVAL;
                }
                if (!lock_user_struct(VERIFY_READ, tfprog, optval_addr, 0)) {
                    return -TARGET_EFAULT;
                }
                if (!lock_user_struct(VERIFY_READ, tfilter,
                                      tswapal(tfprog->filter), 0)) {
                    unlock_user_struct(tfprog, optval_addr, 1);
                    return -TARGET_EFAULT;
                }

                fprog.len = tswap16(tfprog->len);
                filter = malloc(fprog.len * sizeof(*filter));
                if (filter == NULL) {
                    unlock_user_struct(tfilter, tfprog->filter, 1);
                    unlock_user_struct(tfprog, optval_addr, 1);
                    return -TARGET_ENOMEM;
                }
                for (i = 0; i < fprog.len; i++) {
                    filter[i].code = tswap16(tfilter[i].code);
                    filter[i].jt = tfilter[i].jt;
                    filter[i].jf = tfilter[i].jf;
                    filter[i].k = tswap32(tfilter[i].k);
                }
                fprog.filter = filter;

                ret = get_errno(setsockopt(sockfd, SOL_SOCKET,
                                SO_ATTACH_FILTER, &fprog, sizeof(fprog)));
                free(filter);

                unlock_user_struct(tfilter, tfprog->filter, 1);
                unlock_user_struct(tfprog, optval_addr, 1);
                return ret;
        }
1452
            /* Options with 'int' argument.  */
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
        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 已提交
1489
#ifdef SO_BSDCOMPAT
1490 1491 1492
        case TARGET_SO_BSDCOMPAT:
		optname = SO_BSDCOMPAT;
		break;
B
bellard 已提交
1493
#endif
1494 1495 1496 1497 1498 1499 1500 1501 1502
        case TARGET_SO_PASSCRED:
		optname = SO_PASSCRED;
		break;
        case TARGET_SO_TIMESTAMP:
		optname = SO_TIMESTAMP;
		break;
        case TARGET_SO_RCVLOWAT:
		optname = SO_RCVLOWAT;
		break;
1503 1504 1505 1506
            break;
        default:
            goto unimplemented;
        }
1507
	if (optlen < sizeof(uint32_t))
1508
            return -TARGET_EINVAL;
1509

1510 1511
	if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
1512
	ret = get_errno(setsockopt(sockfd, SOL_SOCKET, optname, &val, sizeof(val)));
1513
        break;
B
bellard 已提交
1514
    default:
1515
    unimplemented:
1516
        gemu_log("Unsupported setsockopt level=%d optname=%d\n", level, optname);
1517
        ret = -TARGET_ENOPROTOOPT;
B
bellard 已提交
1518
    }
1519
    return ret;
B
bellard 已提交
1520 1521
}

1522
/* do_getsockopt() Must return target values and target errnos. */
1523
static abi_long do_getsockopt(int sockfd, int level, int optname,
1524
                              abi_ulong optval_addr, abi_ulong optlen)
B
bellard 已提交
1525
{
1526
    abi_long ret;
1527 1528
    int len, val;
    socklen_t lv;
1529 1530

    switch(level) {
1531
    case TARGET_SOL_SOCKET:
1532 1533 1534 1535 1536 1537 1538 1539
        level = SOL_SOCKET;
        switch (optname) {
        /* These don't just return a single integer */
        case TARGET_SO_LINGER:
        case TARGET_SO_RCVTIMEO:
        case TARGET_SO_SNDTIMEO:
        case TARGET_SO_PEERNAME:
            goto unimplemented;
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
        case TARGET_SO_PEERCRED: {
            struct ucred cr;
            socklen_t crlen;
            struct target_ucred *tcr;

            if (get_user_u32(len, optlen)) {
                return -TARGET_EFAULT;
            }
            if (len < 0) {
                return -TARGET_EINVAL;
            }

            crlen = sizeof(cr);
            ret = get_errno(getsockopt(sockfd, level, SO_PEERCRED,
                                       &cr, &crlen));
            if (ret < 0) {
                return ret;
            }
            if (len > crlen) {
                len = crlen;
            }
            if (!lock_user_struct(VERIFY_WRITE, tcr, optval_addr, 0)) {
                return -TARGET_EFAULT;
            }
            __put_user(cr.pid, &tcr->pid);
            __put_user(cr.uid, &tcr->uid);
            __put_user(cr.gid, &tcr->gid);
            unlock_user_struct(tcr, optval_addr, 1);
            if (put_user_u32(len, optlen)) {
                return -TARGET_EFAULT;
            }
            break;
        }
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
        /* Options with 'int' argument.  */
        case TARGET_SO_DEBUG:
            optname = SO_DEBUG;
            goto int_case;
        case TARGET_SO_REUSEADDR:
            optname = SO_REUSEADDR;
            goto int_case;
        case TARGET_SO_TYPE:
            optname = SO_TYPE;
            goto int_case;
        case TARGET_SO_ERROR:
            optname = SO_ERROR;
            goto int_case;
        case TARGET_SO_DONTROUTE:
            optname = SO_DONTROUTE;
            goto int_case;
        case TARGET_SO_BROADCAST:
            optname = SO_BROADCAST;
            goto int_case;
        case TARGET_SO_SNDBUF:
            optname = SO_SNDBUF;
            goto int_case;
        case TARGET_SO_RCVBUF:
            optname = SO_RCVBUF;
            goto int_case;
        case TARGET_SO_KEEPALIVE:
            optname = SO_KEEPALIVE;
            goto int_case;
        case TARGET_SO_OOBINLINE:
            optname = SO_OOBINLINE;
            goto int_case;
        case TARGET_SO_NO_CHECK:
            optname = SO_NO_CHECK;
            goto int_case;
        case TARGET_SO_PRIORITY:
            optname = SO_PRIORITY;
            goto int_case;
#ifdef SO_BSDCOMPAT
        case TARGET_SO_BSDCOMPAT:
            optname = SO_BSDCOMPAT;
            goto int_case;
#endif
        case TARGET_SO_PASSCRED:
            optname = SO_PASSCRED;
            goto int_case;
        case TARGET_SO_TIMESTAMP:
            optname = SO_TIMESTAMP;
            goto int_case;
        case TARGET_SO_RCVLOWAT:
            optname = SO_RCVLOWAT;
            goto int_case;
1624
        default:
B
bellard 已提交
1625 1626 1627 1628 1629 1630
            goto int_case;
        }
        break;
    case SOL_TCP:
        /* TCP options all take an 'int' value.  */
    int_case:
1631 1632
        if (get_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
1633
        if (len < 0)
1634
            return -TARGET_EINVAL;
1635
        lv = sizeof(lv);
B
bellard 已提交
1636 1637 1638 1639 1640
        ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
        if (ret < 0)
            return ret;
        if (len > lv)
            len = lv;
1641 1642 1643 1644 1645 1646
        if (len == 4) {
            if (put_user_u32(val, optval_addr))
                return -TARGET_EFAULT;
        } else {
            if (put_user_u8(val, optval_addr))
                return -TARGET_EFAULT;
1647
        }
1648 1649
        if (put_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
        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:
1668 1669
            if (get_user_u32(len, optlen))
                return -TARGET_EFAULT;
1670
            if (len < 0)
1671
                return -TARGET_EINVAL;
1672
            lv = sizeof(lv);
1673 1674 1675
            ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
            if (ret < 0)
                return ret;
B
bellard 已提交
1676 1677
            if (len < sizeof(int) && len > 0 && val >= 0 && val < 255) {
                len = 1;
1678 1679 1680
                if (put_user_u32(len, optlen)
                    || put_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1681 1682 1683
            } else {
                if (len > sizeof(int))
                    len = sizeof(int);
1684 1685 1686
                if (put_user_u32(len, optlen)
                    || put_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1687
            }
1688
            break;
B
bellard 已提交
1689
        default:
1690 1691
            ret = -TARGET_ENOPROTOOPT;
            break;
1692 1693 1694 1695 1696 1697
        }
        break;
    default:
    unimplemented:
        gemu_log("getsockopt level=%d optname=%d not yet supported\n",
                 level, optname);
1698
        ret = -TARGET_EOPNOTSUPP;
1699 1700 1701
        break;
    }
    return ret;
B
bellard 已提交
1702 1703
}

1704 1705
static struct iovec *lock_iovec(int type, abi_ulong target_addr,
                                int count, int copy)
1706 1707
{
    struct target_iovec *target_vec;
1708 1709
    struct iovec *vec;
    abi_ulong total_len, max_len;
1710
    int i;
1711
    int err = 0;
1712

1713 1714 1715 1716
    if (count == 0) {
        errno = 0;
        return NULL;
    }
1717
    if (count < 0 || count > IOV_MAX) {
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
        errno = EINVAL;
        return NULL;
    }

    vec = calloc(count, sizeof(struct iovec));
    if (vec == NULL) {
        errno = ENOMEM;
        return NULL;
    }

    target_vec = lock_user(VERIFY_READ, target_addr,
                           count * sizeof(struct target_iovec), 1);
    if (target_vec == NULL) {
1731
        err = EFAULT;
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
        goto fail2;
    }

    /* ??? If host page size > target page size, this will result in a
       value larger than what we can actually support.  */
    max_len = 0x7fffffff & TARGET_PAGE_MASK;
    total_len = 0;

    for (i = 0; i < count; i++) {
        abi_ulong base = tswapal(target_vec[i].iov_base);
        abi_long len = tswapal(target_vec[i].iov_len);

        if (len < 0) {
1745
            err = EINVAL;
1746 1747 1748 1749
            goto fail;
        } else if (len == 0) {
            /* Zero length pointer is ignored.  */
            vec[i].iov_base = 0;
B
bellard 已提交
1750
        } else {
1751 1752
            vec[i].iov_base = lock_user(type, base, len, copy);
            if (!vec[i].iov_base) {
1753
                err = EFAULT;
1754 1755 1756 1757 1758
                goto fail;
            }
            if (len > max_len - total_len) {
                len = max_len - total_len;
            }
B
bellard 已提交
1759
        }
1760 1761
        vec[i].iov_len = len;
        total_len += len;
1762
    }
1763 1764 1765 1766 1767 1768

    unlock_user(target_vec, target_addr, 0);
    return vec;

 fail:
    unlock_user(target_vec, target_addr, 0);
1769 1770 1771
 fail2:
    free(vec);
    errno = err;
1772
    return NULL;
1773 1774
}

1775 1776
static void unlock_iovec(struct iovec *vec, abi_ulong target_addr,
                         int count, int copy)
1777 1778 1779 1780
{
    struct target_iovec *target_vec;
    int i;

1781 1782 1783 1784 1785 1786 1787 1788 1789
    target_vec = lock_user(VERIFY_READ, target_addr,
                           count * sizeof(struct target_iovec), 1);
    if (target_vec) {
        for (i = 0; i < count; i++) {
            abi_ulong base = tswapal(target_vec[i].iov_base);
            abi_long len = tswapal(target_vec[i].iov_base);
            if (len < 0) {
                break;
            }
1790 1791
            unlock_user(vec[i].iov_base, base, copy ? vec[i].iov_len : 0);
        }
1792
        unlock_user(target_vec, target_addr, 0);
1793
    }
1794

1795
    free(vec);
1796 1797
}

1798
static inline int target_to_host_sock_type(int *type)
1799
{
1800 1801 1802 1803
    int host_type = 0;
    int target_type = *type;

    switch (target_type & TARGET_SOCK_TYPE_MASK) {
1804
    case TARGET_SOCK_DGRAM:
1805
        host_type = SOCK_DGRAM;
1806 1807
        break;
    case TARGET_SOCK_STREAM:
1808
        host_type = SOCK_STREAM;
1809
        break;
1810 1811
    default:
        host_type = target_type & TARGET_SOCK_TYPE_MASK;
1812 1813
        break;
    }
1814
    if (target_type & TARGET_SOCK_CLOEXEC) {
1815
#if defined(SOCK_CLOEXEC)
1816
        host_type |= SOCK_CLOEXEC;
1817 1818 1819
#else
        return -TARGET_EINVAL;
#endif
1820 1821
    }
    if (target_type & TARGET_SOCK_NONBLOCK) {
1822
#if defined(SOCK_NONBLOCK)
1823
        host_type |= SOCK_NONBLOCK;
1824 1825 1826
#elif !defined(O_NONBLOCK)
        return -TARGET_EINVAL;
#endif
1827 1828
    }
    *type = host_type;
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
    return 0;
}

/* Try to emulate socket type flags after socket creation.  */
static int sock_flags_fixup(int fd, int target_type)
{
#if !defined(SOCK_NONBLOCK) && defined(O_NONBLOCK)
    if (target_type & TARGET_SOCK_NONBLOCK) {
        int flags = fcntl(fd, F_GETFL);
        if (fcntl(fd, F_SETFL, O_NONBLOCK | flags) == -1) {
            close(fd);
            return -TARGET_EINVAL;
        }
    }
#endif
    return fd;
1845 1846 1847 1848 1849
}

/* do_socket() Must return target values and target errnos. */
static abi_long do_socket(int domain, int type, int protocol)
{
1850 1851 1852 1853 1854 1855 1856
    int target_type = type;
    int ret;

    ret = target_to_host_sock_type(&type);
    if (ret) {
        return ret;
    }
1857

1858 1859
    if (domain == PF_NETLINK)
        return -EAFNOSUPPORT; /* do not NETLINK socket connections possible */
1860 1861 1862 1863 1864
    ret = get_errno(socket(domain, type, protocol));
    if (ret >= 0) {
        ret = sock_flags_fixup(ret, target_type);
    }
    return ret;
1865 1866
}

1867
/* do_bind() Must return target values and target errnos. */
1868 1869
static abi_long do_bind(int sockfd, abi_ulong target_addr,
                        socklen_t addrlen)
1870
{
1871
    void *addr;
1872
    abi_long ret;
1873

1874
    if ((int)addrlen < 0) {
1875
        return -TARGET_EINVAL;
1876
    }
1877

1878
    addr = alloca(addrlen+1);
1879

1880 1881 1882 1883
    ret = target_to_host_sockaddr(addr, target_addr, addrlen);
    if (ret)
        return ret;

1884 1885 1886
    return get_errno(bind(sockfd, addr, addrlen));
}

1887
/* do_connect() Must return target values and target errnos. */
1888 1889
static abi_long do_connect(int sockfd, abi_ulong target_addr,
                           socklen_t addrlen)
1890
{
1891
    void *addr;
1892
    abi_long ret;
1893

1894
    if ((int)addrlen < 0) {
1895
        return -TARGET_EINVAL;
1896
    }
1897 1898

    addr = alloca(addrlen);
1899

1900 1901 1902 1903
    ret = target_to_host_sockaddr(addr, target_addr, addrlen);
    if (ret)
        return ret;

1904 1905 1906
    return get_errno(connect(sockfd, addr, addrlen));
}

1907
/* do_sendrecvmsg() Must return target values and target errnos. */
1908 1909
static abi_long do_sendrecvmsg(int fd, abi_ulong target_msg,
                               int flags, int send)
1910
{
1911
    abi_long ret, len;
1912 1913 1914 1915
    struct target_msghdr *msgp;
    struct msghdr msg;
    int count;
    struct iovec *vec;
1916
    abi_ulong target_vec;
1917

1918 1919 1920 1921 1922 1923
    /* FIXME */
    if (!lock_user_struct(send ? VERIFY_READ : VERIFY_WRITE,
                          msgp,
                          target_msg,
                          send ? 1 : 0))
        return -TARGET_EFAULT;
1924 1925 1926
    if (msgp->msg_name) {
        msg.msg_namelen = tswap32(msgp->msg_namelen);
        msg.msg_name = alloca(msg.msg_namelen);
1927
        ret = target_to_host_sockaddr(msg.msg_name, tswapal(msgp->msg_name),
1928
                                msg.msg_namelen);
1929
        if (ret) {
1930
            goto out2;
1931
        }
1932 1933 1934 1935
    } else {
        msg.msg_name = NULL;
        msg.msg_namelen = 0;
    }
1936
    msg.msg_controllen = 2 * tswapal(msgp->msg_controllen);
1937 1938
    msg.msg_control = alloca(msg.msg_controllen);
    msg.msg_flags = tswap32(msgp->msg_flags);
1939

1940 1941
    count = tswapal(msgp->msg_iovlen);
    target_vec = tswapal(msgp->msg_iov);
1942 1943 1944 1945 1946 1947
    vec = lock_iovec(send ? VERIFY_READ : VERIFY_WRITE,
                     target_vec, count, send);
    if (vec == NULL) {
        ret = -host_to_target_errno(errno);
        goto out2;
    }
1948 1949
    msg.msg_iovlen = count;
    msg.msg_iov = vec;
1950

1951
    if (send) {
1952 1953 1954
        ret = target_to_host_cmsg(&msg, msgp);
        if (ret == 0)
            ret = get_errno(sendmsg(fd, &msg, flags));
1955 1956
    } else {
        ret = get_errno(recvmsg(fd, &msg, flags));
1957 1958
        if (!is_error(ret)) {
            len = ret;
1959
            ret = host_to_target_cmsg(msgp, &msg);
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
            if (!is_error(ret)) {
                msgp->msg_namelen = tswap32(msg.msg_namelen);
                if (msg.msg_name != NULL) {
                    ret = host_to_target_sockaddr(tswapal(msgp->msg_name),
                                    msg.msg_name, msg.msg_namelen);
                    if (ret) {
                        goto out;
                    }
                }

1970
                ret = len;
1971
            }
1972
        }
1973
    }
1974 1975

out:
1976
    unlock_iovec(vec, target_vec, count, !send);
1977
out2:
1978
    unlock_user_struct(msgp, target_msg, send ? 0 : 1);
1979 1980 1981
    return ret;
}

P
Peter Maydell 已提交
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
/* If we don't have a system accept4() then just call accept.
 * The callsites to do_accept4() will ensure that they don't
 * pass a non-zero flags argument in this config.
 */
#ifndef CONFIG_ACCEPT4
static inline int accept4(int sockfd, struct sockaddr *addr,
                          socklen_t *addrlen, int flags)
{
    assert(flags == 0);
    return accept(sockfd, addr, addrlen);
}
#endif

/* do_accept4() Must return target values and target errnos. */
static abi_long do_accept4(int fd, abi_ulong target_addr,
                           abi_ulong target_addrlen_addr, int flags)
P
pbrook 已提交
1998
{
1999 2000
    socklen_t addrlen;
    void *addr;
2001
    abi_long ret;
P
pbrook 已提交
2002

P
Peter Maydell 已提交
2003 2004 2005
    if (target_addr == 0) {
        return get_errno(accept4(fd, NULL, NULL, flags));
    }
2006 2007

    /* linux returns EINVAL if addrlen pointer is invalid */
2008
    if (get_user_u32(addrlen, target_addrlen_addr))
2009
        return -TARGET_EINVAL;
2010

2011
    if ((int)addrlen < 0) {
2012
        return -TARGET_EINVAL;
2013
    }
2014

2015 2016 2017
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EINVAL;

2018 2019
    addr = alloca(addrlen);

P
Peter Maydell 已提交
2020
    ret = get_errno(accept4(fd, addr, &addrlen, flags));
P
pbrook 已提交
2021 2022
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
2023 2024
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
2025 2026 2027 2028
    }
    return ret;
}

2029
/* do_getpeername() Must return target values and target errnos. */
2030
static abi_long do_getpeername(int fd, abi_ulong target_addr,
2031
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
2032
{
2033 2034
    socklen_t addrlen;
    void *addr;
2035
    abi_long ret;
P
pbrook 已提交
2036

2037 2038 2039
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

2040
    if ((int)addrlen < 0) {
2041
        return -TARGET_EINVAL;
2042
    }
2043

2044 2045 2046
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EFAULT;

2047 2048
    addr = alloca(addrlen);

P
pbrook 已提交
2049 2050 2051
    ret = get_errno(getpeername(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
2052 2053
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
2054 2055 2056 2057
    }
    return ret;
}

2058
/* do_getsockname() Must return target values and target errnos. */
2059
static abi_long do_getsockname(int fd, abi_ulong target_addr,
2060
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
2061
{
2062 2063
    socklen_t addrlen;
    void *addr;
2064
    abi_long ret;
P
pbrook 已提交
2065

2066 2067 2068
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

2069
    if ((int)addrlen < 0) {
2070
        return -TARGET_EINVAL;
2071
    }
2072

2073 2074 2075
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EFAULT;

2076 2077
    addr = alloca(addrlen);

P
pbrook 已提交
2078 2079 2080
    ret = get_errno(getsockname(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
2081 2082
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
2083 2084 2085 2086
    }
    return ret;
}

2087
/* do_socketpair() Must return target values and target errnos. */
2088
static abi_long do_socketpair(int domain, int type, int protocol,
2089
                              abi_ulong target_tab_addr)
P
pbrook 已提交
2090 2091
{
    int tab[2];
2092
    abi_long ret;
P
pbrook 已提交
2093

2094 2095
    target_to_host_sock_type(&type);

P
pbrook 已提交
2096 2097
    ret = get_errno(socketpair(domain, type, protocol, tab));
    if (!is_error(ret)) {
2098 2099 2100
        if (put_user_s32(tab[0], target_tab_addr)
            || put_user_s32(tab[1], target_tab_addr + sizeof(tab[0])))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
2101 2102 2103 2104
    }
    return ret;
}

2105
/* do_sendto() Must return target values and target errnos. */
2106 2107
static abi_long do_sendto(int fd, abi_ulong msg, size_t len, int flags,
                          abi_ulong target_addr, socklen_t addrlen)
P
pbrook 已提交
2108 2109 2110
{
    void *addr;
    void *host_msg;
2111
    abi_long ret;
P
pbrook 已提交
2112

2113
    if ((int)addrlen < 0) {
2114
        return -TARGET_EINVAL;
2115
    }
2116

2117 2118 2119
    host_msg = lock_user(VERIFY_READ, msg, len, 1);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
2120 2121
    if (target_addr) {
        addr = alloca(addrlen);
2122 2123 2124 2125 2126
        ret = target_to_host_sockaddr(addr, target_addr, addrlen);
        if (ret) {
            unlock_user(host_msg, msg, 0);
            return ret;
        }
P
pbrook 已提交
2127 2128 2129 2130 2131 2132 2133 2134
        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;
}

2135
/* do_recvfrom() Must return target values and target errnos. */
2136 2137 2138
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 已提交
2139 2140 2141 2142
{
    socklen_t addrlen;
    void *addr;
    void *host_msg;
2143
    abi_long ret;
P
pbrook 已提交
2144

2145 2146 2147
    host_msg = lock_user(VERIFY_WRITE, msg, len, 0);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
2148
    if (target_addr) {
2149 2150 2151 2152
        if (get_user_u32(addrlen, target_addrlen)) {
            ret = -TARGET_EFAULT;
            goto fail;
        }
2153
        if ((int)addrlen < 0) {
2154 2155 2156
            ret = -TARGET_EINVAL;
            goto fail;
        }
P
pbrook 已提交
2157 2158 2159 2160
        addr = alloca(addrlen);
        ret = get_errno(recvfrom(fd, host_msg, len, flags, addr, &addrlen));
    } else {
        addr = NULL; /* To keep compiler quiet.  */
B
Blue Swirl 已提交
2161
        ret = get_errno(qemu_recv(fd, host_msg, len, flags));
P
pbrook 已提交
2162 2163 2164 2165
    }
    if (!is_error(ret)) {
        if (target_addr) {
            host_to_target_sockaddr(target_addr, addr, addrlen);
2166 2167 2168 2169
            if (put_user_u32(addrlen, target_addrlen)) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
P
pbrook 已提交
2170 2171 2172
        }
        unlock_user(host_msg, msg, len);
    } else {
2173
fail:
P
pbrook 已提交
2174 2175 2176 2177 2178
        unlock_user(host_msg, msg, 0);
    }
    return ret;
}

2179
#ifdef TARGET_NR_socketcall
2180
/* do_socketcall() Must return target values and target errnos. */
2181
static abi_long do_socketcall(int num, abi_ulong vptr)
2182
{
2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
    static const unsigned ac[] = { /* number of arguments per call */
        [SOCKOP_socket] = 3,      /* domain, type, protocol */
        [SOCKOP_bind] = 3,        /* sockfd, addr, addrlen */
        [SOCKOP_connect] = 3,     /* sockfd, addr, addrlen */
        [SOCKOP_listen] = 2,      /* sockfd, backlog */
        [SOCKOP_accept] = 3,      /* sockfd, addr, addrlen */
        [SOCKOP_accept4] = 4,     /* sockfd, addr, addrlen, flags */
        [SOCKOP_getsockname] = 3, /* sockfd, addr, addrlen */
        [SOCKOP_getpeername] = 3, /* sockfd, addr, addrlen */
        [SOCKOP_socketpair] = 4,  /* domain, type, protocol, tab */
        [SOCKOP_send] = 4,        /* sockfd, msg, len, flags */
        [SOCKOP_recv] = 4,        /* sockfd, msg, len, flags */
        [SOCKOP_sendto] = 6,      /* sockfd, msg, len, flags, addr, addrlen */
        [SOCKOP_recvfrom] = 6,    /* sockfd, msg, len, flags, addr, addrlen */
        [SOCKOP_shutdown] = 2,    /* sockfd, how */
        [SOCKOP_sendmsg] = 3,     /* sockfd, msg, flags */
        [SOCKOP_recvmsg] = 3,     /* sockfd, msg, flags */
        [SOCKOP_setsockopt] = 5,  /* sockfd, level, optname, optval, optlen */
        [SOCKOP_getsockopt] = 5,  /* sockfd, level, optname, optval, optlen */
    };
    abi_long a[6]; /* max 6 args */

    /* first, collect the arguments in a[] according to ac[] */
    if (num >= 0 && num < ARRAY_SIZE(ac)) {
        unsigned i;
        assert(ARRAY_SIZE(a) >= ac[num]); /* ensure we have space for args */
        for (i = 0; i < ac[num]; ++i) {
            if (get_user_ual(a[i], vptr + i * sizeof(abi_long)) != 0) {
2211 2212
                return -TARGET_EFAULT;
            }
2213
        }
2214
    }
B
bellard 已提交
2215

2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253
    /* now when we have the args, actually handle the call */
    switch (num) {
    case SOCKOP_socket: /* domain, type, protocol */
        return do_socket(a[0], a[1], a[2]);
    case SOCKOP_bind: /* sockfd, addr, addrlen */
        return do_bind(a[0], a[1], a[2]);
    case SOCKOP_connect: /* sockfd, addr, addrlen */
        return do_connect(a[0], a[1], a[2]);
    case SOCKOP_listen: /* sockfd, backlog */
        return get_errno(listen(a[0], a[1]));
    case SOCKOP_accept: /* sockfd, addr, addrlen */
        return do_accept4(a[0], a[1], a[2], 0);
    case SOCKOP_accept4: /* sockfd, addr, addrlen, flags */
        return do_accept4(a[0], a[1], a[2], a[3]);
    case SOCKOP_getsockname: /* sockfd, addr, addrlen */
        return do_getsockname(a[0], a[1], a[2]);
    case SOCKOP_getpeername: /* sockfd, addr, addrlen */
        return do_getpeername(a[0], a[1], a[2]);
    case SOCKOP_socketpair: /* domain, type, protocol, tab */
        return do_socketpair(a[0], a[1], a[2], a[3]);
    case SOCKOP_send: /* sockfd, msg, len, flags */
        return do_sendto(a[0], a[1], a[2], a[3], 0, 0);
    case SOCKOP_recv: /* sockfd, msg, len, flags */
        return do_recvfrom(a[0], a[1], a[2], a[3], 0, 0);
    case SOCKOP_sendto: /* sockfd, msg, len, flags, addr, addrlen */
        return do_sendto(a[0], a[1], a[2], a[3], a[4], a[5]);
    case SOCKOP_recvfrom: /* sockfd, msg, len, flags, addr, addrlen */
        return do_recvfrom(a[0], a[1], a[2], a[3], a[4], a[5]);
    case SOCKOP_shutdown: /* sockfd, how */
        return get_errno(shutdown(a[0], a[1]));
    case SOCKOP_sendmsg: /* sockfd, msg, flags */
        return do_sendrecvmsg(a[0], a[1], a[2], 1);
    case SOCKOP_recvmsg: /* sockfd, msg, flags */
        return do_sendrecvmsg(a[0], a[1], a[2], 0);
    case SOCKOP_setsockopt: /* sockfd, level, optname, optval, optlen */
        return do_setsockopt(a[0], a[1], a[2], a[3], a[4]);
    case SOCKOP_getsockopt: /* sockfd, level, optname, optval, optlen */
        return do_getsockopt(a[0], a[1], a[2], a[3], a[4]);
2254 2255
    default:
        gemu_log("Unsupported socketcall: %d\n", num);
2256
        return -TARGET_ENOSYS;
2257 2258
    }
}
2259
#endif
2260

2261 2262 2263
#define N_SHM_REGIONS	32

static struct shm_region {
2264 2265
    abi_ulong	start;
    abi_ulong	size;
2266 2267
} shm_regions[N_SHM_REGIONS];

2268 2269 2270
struct target_semid_ds
{
  struct target_ipc_perm sem_perm;
2271 2272 2273 2274 2275 2276 2277
  abi_ulong sem_otime;
  abi_ulong __unused1;
  abi_ulong sem_ctime;
  abi_ulong __unused2;
  abi_ulong sem_nsems;
  abi_ulong __unused3;
  abi_ulong __unused4;
2278 2279
};

2280 2281
static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip,
                                               abi_ulong target_addr)
2282 2283 2284 2285
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

2286 2287
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
2288
    target_ip = &(target_sd->sem_perm);
2289 2290 2291 2292 2293 2294 2295 2296
    host_ip->__key = tswap32(target_ip->__key);
    host_ip->uid = tswap32(target_ip->uid);
    host_ip->gid = tswap32(target_ip->gid);
    host_ip->cuid = tswap32(target_ip->cuid);
    host_ip->cgid = tswap32(target_ip->cgid);
#if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_PPC)
    host_ip->mode = tswap32(target_ip->mode);
#else
2297
    host_ip->mode = tswap16(target_ip->mode);
2298 2299 2300 2301 2302 2303
#endif
#if defined(TARGET_PPC)
    host_ip->__seq = tswap32(target_ip->__seq);
#else
    host_ip->__seq = tswap16(target_ip->__seq);
#endif
2304
    unlock_user_struct(target_sd, target_addr, 0);
2305
    return 0;
2306 2307
}

2308 2309
static inline abi_long host_to_target_ipc_perm(abi_ulong target_addr,
                                               struct ipc_perm *host_ip)
2310 2311 2312 2313
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

2314 2315
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
2316
    target_ip = &(target_sd->sem_perm);
2317 2318 2319 2320 2321 2322 2323 2324
    target_ip->__key = tswap32(host_ip->__key);
    target_ip->uid = tswap32(host_ip->uid);
    target_ip->gid = tswap32(host_ip->gid);
    target_ip->cuid = tswap32(host_ip->cuid);
    target_ip->cgid = tswap32(host_ip->cgid);
#if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_PPC)
    target_ip->mode = tswap32(host_ip->mode);
#else
2325
    target_ip->mode = tswap16(host_ip->mode);
2326 2327 2328 2329 2330 2331
#endif
#if defined(TARGET_PPC)
    target_ip->__seq = tswap32(host_ip->__seq);
#else
    target_ip->__seq = tswap16(host_ip->__seq);
#endif
2332
    unlock_user_struct(target_sd, target_addr, 1);
2333
    return 0;
2334 2335
}

2336 2337
static inline abi_long target_to_host_semid_ds(struct semid_ds *host_sd,
                                               abi_ulong target_addr)
2338 2339 2340
{
    struct target_semid_ds *target_sd;

2341 2342
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
2343 2344
    if (target_to_host_ipc_perm(&(host_sd->sem_perm),target_addr))
        return -TARGET_EFAULT;
2345 2346 2347
    host_sd->sem_nsems = tswapal(target_sd->sem_nsems);
    host_sd->sem_otime = tswapal(target_sd->sem_otime);
    host_sd->sem_ctime = tswapal(target_sd->sem_ctime);
2348
    unlock_user_struct(target_sd, target_addr, 0);
2349
    return 0;
2350 2351
}

2352 2353
static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
                                               struct semid_ds *host_sd)
2354 2355 2356
{
    struct target_semid_ds *target_sd;

2357 2358
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
2359
    if (host_to_target_ipc_perm(target_addr,&(host_sd->sem_perm)))
2360
        return -TARGET_EFAULT;
2361 2362 2363
    target_sd->sem_nsems = tswapal(host_sd->sem_nsems);
    target_sd->sem_otime = tswapal(host_sd->sem_otime);
    target_sd->sem_ctime = tswapal(host_sd->sem_ctime);
2364
    unlock_user_struct(target_sd, target_addr, 1);
2365
    return 0;
2366 2367
}

2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
struct target_seminfo {
    int semmap;
    int semmni;
    int semmns;
    int semmnu;
    int semmsl;
    int semopm;
    int semume;
    int semusz;
    int semvmx;
    int semaem;
};

static inline abi_long host_to_target_seminfo(abi_ulong target_addr,
                                              struct seminfo *host_seminfo)
{
    struct target_seminfo *target_seminfo;
    if (!lock_user_struct(VERIFY_WRITE, target_seminfo, target_addr, 0))
        return -TARGET_EFAULT;
    __put_user(host_seminfo->semmap, &target_seminfo->semmap);
    __put_user(host_seminfo->semmni, &target_seminfo->semmni);
    __put_user(host_seminfo->semmns, &target_seminfo->semmns);
    __put_user(host_seminfo->semmnu, &target_seminfo->semmnu);
    __put_user(host_seminfo->semmsl, &target_seminfo->semmsl);
    __put_user(host_seminfo->semopm, &target_seminfo->semopm);
    __put_user(host_seminfo->semume, &target_seminfo->semume);
    __put_user(host_seminfo->semusz, &target_seminfo->semusz);
    __put_user(host_seminfo->semvmx, &target_seminfo->semvmx);
    __put_user(host_seminfo->semaem, &target_seminfo->semaem);
    unlock_user_struct(target_seminfo, target_addr, 1);
    return 0;
}

2401 2402
union semun {
	int val;
2403
	struct semid_ds *buf;
2404
	unsigned short *array;
2405
	struct seminfo *__buf;
2406 2407
};

2408 2409
union target_semun {
	int val;
2410 2411 2412
	abi_ulong buf;
	abi_ulong array;
	abi_ulong __buf;
2413 2414
};

2415 2416
static inline abi_long target_to_host_semarray(int semid, unsigned short **host_array,
                                               abi_ulong target_addr)
2417
{
2418 2419 2420 2421 2422
    int nsems;
    unsigned short *array;
    union semun semun;
    struct semid_ds semid_ds;
    int i, ret;
2423

2424 2425 2426 2427 2428 2429 2430 2431 2432
    semun.buf = &semid_ds;

    ret = semctl(semid, 0, IPC_STAT, semun);
    if (ret == -1)
        return get_errno(ret);

    nsems = semid_ds.sem_nsems;

    *host_array = malloc(nsems*sizeof(unsigned short));
2433 2434 2435
    if (!*host_array) {
        return -TARGET_ENOMEM;
    }
2436 2437
    array = lock_user(VERIFY_READ, target_addr,
                      nsems*sizeof(unsigned short), 1);
2438 2439
    if (!array) {
        free(*host_array);
2440
        return -TARGET_EFAULT;
2441
    }
2442 2443 2444

    for(i=0; i<nsems; i++) {
        __get_user((*host_array)[i], &array[i]);
2445
    }
2446 2447
    unlock_user(array, target_addr, 0);

2448
    return 0;
2449 2450
}

2451 2452
static inline abi_long host_to_target_semarray(int semid, abi_ulong target_addr,
                                               unsigned short **host_array)
2453
{
2454 2455 2456 2457 2458
    int nsems;
    unsigned short *array;
    union semun semun;
    struct semid_ds semid_ds;
    int i, ret;
2459

2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
    semun.buf = &semid_ds;

    ret = semctl(semid, 0, IPC_STAT, semun);
    if (ret == -1)
        return get_errno(ret);

    nsems = semid_ds.sem_nsems;

    array = lock_user(VERIFY_WRITE, target_addr,
                      nsems*sizeof(unsigned short), 0);
    if (!array)
        return -TARGET_EFAULT;

    for(i=0; i<nsems; i++) {
        __put_user((*host_array)[i], &array[i]);
2475
    }
2476 2477 2478
    free(*host_array);
    unlock_user(array, target_addr, 1);

2479
    return 0;
2480 2481
}

2482 2483
static inline abi_long do_semctl(int semid, int semnum, int cmd,
                                 union target_semun target_su)
2484 2485 2486
{
    union semun arg;
    struct semid_ds dsarg;
2487
    unsigned short *array = NULL;
2488 2489 2490 2491
    struct seminfo seminfo;
    abi_long ret = -TARGET_EINVAL;
    abi_long err;
    cmd &= 0xff;
2492 2493 2494 2495

    switch( cmd ) {
	case GETVAL:
	case SETVAL:
2496
            arg.val = tswap32(target_su.val);
2497
            ret = get_errno(semctl(semid, semnum, cmd, arg));
2498
            target_su.val = tswap32(arg.val);
2499 2500 2501
            break;
	case GETALL:
	case SETALL:
2502 2503 2504 2505 2506 2507 2508 2509
            err = target_to_host_semarray(semid, &array, target_su.array);
            if (err)
                return err;
            arg.array = array;
            ret = get_errno(semctl(semid, semnum, cmd, arg));
            err = host_to_target_semarray(semid, target_su.array, &array);
            if (err)
                return err;
2510 2511 2512
            break;
	case IPC_STAT:
	case IPC_SET:
2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535
	case SEM_STAT:
            err = target_to_host_semid_ds(&dsarg, target_su.buf);
            if (err)
                return err;
            arg.buf = &dsarg;
            ret = get_errno(semctl(semid, semnum, cmd, arg));
            err = host_to_target_semid_ds(target_su.buf, &dsarg);
            if (err)
                return err;
            break;
	case IPC_INFO:
	case SEM_INFO:
            arg.__buf = &seminfo;
            ret = get_errno(semctl(semid, semnum, cmd, arg));
            err = host_to_target_seminfo(target_su.__buf, &seminfo);
            if (err)
                return err;
            break;
	case IPC_RMID:
	case GETPID:
	case GETNCNT:
	case GETZCNT:
            ret = get_errno(semctl(semid, semnum, cmd, NULL));
2536 2537 2538 2539 2540 2541
            break;
    }

    return ret;
}

2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
struct target_sembuf {
    unsigned short sem_num;
    short sem_op;
    short sem_flg;
};

static inline abi_long target_to_host_sembuf(struct sembuf *host_sembuf,
                                             abi_ulong target_addr,
                                             unsigned nsops)
{
    struct target_sembuf *target_sembuf;
    int i;

    target_sembuf = lock_user(VERIFY_READ, target_addr,
                              nsops*sizeof(struct target_sembuf), 1);
    if (!target_sembuf)
        return -TARGET_EFAULT;

    for(i=0; i<nsops; i++) {
        __get_user(host_sembuf[i].sem_num, &target_sembuf[i].sem_num);
        __get_user(host_sembuf[i].sem_op, &target_sembuf[i].sem_op);
        __get_user(host_sembuf[i].sem_flg, &target_sembuf[i].sem_flg);
    }

    unlock_user(target_sembuf, target_addr, 0);

    return 0;
}

static inline abi_long do_semop(int semid, abi_long ptr, unsigned nsops)
{
    struct sembuf sops[nsops];

    if (target_to_host_sembuf(sops, ptr, nsops))
        return -TARGET_EFAULT;

2578
    return get_errno(semop(semid, sops, nsops));
2579 2580
}

T
ths 已提交
2581 2582
struct target_msqid_ds
{
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602
    struct target_ipc_perm msg_perm;
    abi_ulong msg_stime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused1;
#endif
    abi_ulong msg_rtime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused2;
#endif
    abi_ulong msg_ctime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused3;
#endif
    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 已提交
2603 2604
};

2605 2606
static inline abi_long target_to_host_msqid_ds(struct msqid_ds *host_md,
                                               abi_ulong target_addr)
T
ths 已提交
2607 2608 2609
{
    struct target_msqid_ds *target_md;

2610 2611
    if (!lock_user_struct(VERIFY_READ, target_md, target_addr, 1))
        return -TARGET_EFAULT;
2612 2613
    if (target_to_host_ipc_perm(&(host_md->msg_perm),target_addr))
        return -TARGET_EFAULT;
2614 2615 2616 2617 2618 2619 2620 2621
    host_md->msg_stime = tswapal(target_md->msg_stime);
    host_md->msg_rtime = tswapal(target_md->msg_rtime);
    host_md->msg_ctime = tswapal(target_md->msg_ctime);
    host_md->__msg_cbytes = tswapal(target_md->__msg_cbytes);
    host_md->msg_qnum = tswapal(target_md->msg_qnum);
    host_md->msg_qbytes = tswapal(target_md->msg_qbytes);
    host_md->msg_lspid = tswapal(target_md->msg_lspid);
    host_md->msg_lrpid = tswapal(target_md->msg_lrpid);
T
ths 已提交
2622
    unlock_user_struct(target_md, target_addr, 0);
2623
    return 0;
T
ths 已提交
2624 2625
}

2626 2627
static inline abi_long host_to_target_msqid_ds(abi_ulong target_addr,
                                               struct msqid_ds *host_md)
T
ths 已提交
2628 2629 2630
{
    struct target_msqid_ds *target_md;

2631 2632
    if (!lock_user_struct(VERIFY_WRITE, target_md, target_addr, 0))
        return -TARGET_EFAULT;
2633 2634
    if (host_to_target_ipc_perm(target_addr,&(host_md->msg_perm)))
        return -TARGET_EFAULT;
2635 2636 2637 2638 2639 2640 2641 2642
    target_md->msg_stime = tswapal(host_md->msg_stime);
    target_md->msg_rtime = tswapal(host_md->msg_rtime);
    target_md->msg_ctime = tswapal(host_md->msg_ctime);
    target_md->__msg_cbytes = tswapal(host_md->__msg_cbytes);
    target_md->msg_qnum = tswapal(host_md->msg_qnum);
    target_md->msg_qbytes = tswapal(host_md->msg_qbytes);
    target_md->msg_lspid = tswapal(host_md->msg_lspid);
    target_md->msg_lrpid = tswapal(host_md->msg_lrpid);
T
ths 已提交
2643
    unlock_user_struct(target_md, target_addr, 1);
2644
    return 0;
T
ths 已提交
2645 2646
}

2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672
struct target_msginfo {
    int msgpool;
    int msgmap;
    int msgmax;
    int msgmnb;
    int msgmni;
    int msgssz;
    int msgtql;
    unsigned short int msgseg;
};

static inline abi_long host_to_target_msginfo(abi_ulong target_addr,
                                              struct msginfo *host_msginfo)
{
    struct target_msginfo *target_msginfo;
    if (!lock_user_struct(VERIFY_WRITE, target_msginfo, target_addr, 0))
        return -TARGET_EFAULT;
    __put_user(host_msginfo->msgpool, &target_msginfo->msgpool);
    __put_user(host_msginfo->msgmap, &target_msginfo->msgmap);
    __put_user(host_msginfo->msgmax, &target_msginfo->msgmax);
    __put_user(host_msginfo->msgmnb, &target_msginfo->msgmnb);
    __put_user(host_msginfo->msgmni, &target_msginfo->msgmni);
    __put_user(host_msginfo->msgssz, &target_msginfo->msgssz);
    __put_user(host_msginfo->msgtql, &target_msginfo->msgtql);
    __put_user(host_msginfo->msgseg, &target_msginfo->msgseg);
    unlock_user_struct(target_msginfo, target_addr, 1);
2673
    return 0;
2674 2675 2676
}

static inline abi_long do_msgctl(int msgid, int cmd, abi_long ptr)
T
ths 已提交
2677 2678
{
    struct msqid_ds dsarg;
2679 2680 2681 2682 2683 2684
    struct msginfo msginfo;
    abi_long ret = -TARGET_EINVAL;

    cmd &= 0xff;

    switch (cmd) {
T
ths 已提交
2685 2686
    case IPC_STAT:
    case IPC_SET:
2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
    case MSG_STAT:
        if (target_to_host_msqid_ds(&dsarg,ptr))
            return -TARGET_EFAULT;
        ret = get_errno(msgctl(msgid, cmd, &dsarg));
        if (host_to_target_msqid_ds(ptr,&dsarg))
            return -TARGET_EFAULT;
        break;
    case IPC_RMID:
        ret = get_errno(msgctl(msgid, cmd, NULL));
        break;
    case IPC_INFO:
    case MSG_INFO:
        ret = get_errno(msgctl(msgid, cmd, (struct msqid_ds *)&msginfo));
        if (host_to_target_msginfo(ptr, &msginfo))
            return -TARGET_EFAULT;
        break;
T
ths 已提交
2703
    }
2704

T
ths 已提交
2705 2706 2707 2708
    return ret;
}

struct target_msgbuf {
2709 2710
    abi_long mtype;
    char	mtext[1];
T
ths 已提交
2711 2712
};

2713 2714
static inline abi_long do_msgsnd(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgflg)
T
ths 已提交
2715 2716 2717
{
    struct target_msgbuf *target_mb;
    struct msgbuf *host_mb;
2718
    abi_long ret = 0;
T
ths 已提交
2719

2720 2721
    if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
2722
    host_mb = malloc(msgsz+sizeof(long));
2723
    host_mb->mtype = (abi_long) tswapal(target_mb->mtype);
2724
    memcpy(host_mb->mtext, target_mb->mtext, msgsz);
T
ths 已提交
2725 2726 2727 2728 2729 2730 2731
    ret = get_errno(msgsnd(msqid, host_mb, msgsz, msgflg));
    free(host_mb);
    unlock_user_struct(target_mb, msgp, 0);

    return ret;
}

2732
static inline abi_long do_msgrcv(int msqid, abi_long msgp,
2733
                                 unsigned int msgsz, abi_long msgtyp,
2734
                                 int msgflg)
T
ths 已提交
2735 2736
{
    struct target_msgbuf *target_mb;
2737
    char *target_mtext;
T
ths 已提交
2738
    struct msgbuf *host_mb;
2739
    abi_long ret = 0;
T
ths 已提交
2740

2741 2742
    if (!lock_user_struct(VERIFY_WRITE, target_mb, msgp, 0))
        return -TARGET_EFAULT;
2743

2744
    host_mb = g_malloc(msgsz+sizeof(long));
L
Laurent Vivier 已提交
2745
    ret = get_errno(msgrcv(msqid, host_mb, msgsz, msgtyp, msgflg));
2746

2747 2748 2749 2750 2751 2752 2753
    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;
        }
2754
        memcpy(target_mb->mtext, host_mb->mtext, ret);
2755 2756
        unlock_user(target_mtext, target_mtext_addr, ret);
    }
2757

2758
    target_mb->mtype = tswapal(host_mb->mtype);
T
ths 已提交
2759

2760 2761 2762
end:
    if (target_mb)
        unlock_user_struct(target_mb, msgp, 1);
2763
    g_free(host_mb);
T
ths 已提交
2764 2765 2766
    return ret;
}

2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
static inline abi_long target_to_host_shmid_ds(struct shmid_ds *host_sd,
                                               abi_ulong target_addr)
{
    struct target_shmid_ds *target_sd;

    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
    if (target_to_host_ipc_perm(&(host_sd->shm_perm), target_addr))
        return -TARGET_EFAULT;
    __get_user(host_sd->shm_segsz, &target_sd->shm_segsz);
    __get_user(host_sd->shm_atime, &target_sd->shm_atime);
    __get_user(host_sd->shm_dtime, &target_sd->shm_dtime);
    __get_user(host_sd->shm_ctime, &target_sd->shm_ctime);
    __get_user(host_sd->shm_cpid, &target_sd->shm_cpid);
    __get_user(host_sd->shm_lpid, &target_sd->shm_lpid);
    __get_user(host_sd->shm_nattch, &target_sd->shm_nattch);
    unlock_user_struct(target_sd, target_addr, 0);
    return 0;
}

static inline abi_long host_to_target_shmid_ds(abi_ulong target_addr,
                                               struct shmid_ds *host_sd)
{
    struct target_shmid_ds *target_sd;

    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
    if (host_to_target_ipc_perm(target_addr, &(host_sd->shm_perm)))
        return -TARGET_EFAULT;
    __put_user(host_sd->shm_segsz, &target_sd->shm_segsz);
    __put_user(host_sd->shm_atime, &target_sd->shm_atime);
    __put_user(host_sd->shm_dtime, &target_sd->shm_dtime);
    __put_user(host_sd->shm_ctime, &target_sd->shm_ctime);
    __put_user(host_sd->shm_cpid, &target_sd->shm_cpid);
    __put_user(host_sd->shm_lpid, &target_sd->shm_lpid);
    __put_user(host_sd->shm_nattch, &target_sd->shm_nattch);
    unlock_user_struct(target_sd, target_addr, 1);
    return 0;
}

struct  target_shminfo {
    abi_ulong shmmax;
    abi_ulong shmmin;
    abi_ulong shmmni;
    abi_ulong shmseg;
    abi_ulong shmall;
};

static inline abi_long host_to_target_shminfo(abi_ulong target_addr,
                                              struct shminfo *host_shminfo)
{
    struct target_shminfo *target_shminfo;
    if (!lock_user_struct(VERIFY_WRITE, target_shminfo, target_addr, 0))
        return -TARGET_EFAULT;
    __put_user(host_shminfo->shmmax, &target_shminfo->shmmax);
    __put_user(host_shminfo->shmmin, &target_shminfo->shmmin);
    __put_user(host_shminfo->shmmni, &target_shminfo->shmmni);
    __put_user(host_shminfo->shmseg, &target_shminfo->shmseg);
    __put_user(host_shminfo->shmall, &target_shminfo->shmall);
    unlock_user_struct(target_shminfo, target_addr, 1);
    return 0;
}

struct target_shm_info {
    int used_ids;
    abi_ulong shm_tot;
    abi_ulong shm_rss;
    abi_ulong shm_swp;
    abi_ulong swap_attempts;
    abi_ulong swap_successes;
};

static inline abi_long host_to_target_shm_info(abi_ulong target_addr,
                                               struct shm_info *host_shm_info)
{
    struct target_shm_info *target_shm_info;
    if (!lock_user_struct(VERIFY_WRITE, target_shm_info, target_addr, 0))
        return -TARGET_EFAULT;
    __put_user(host_shm_info->used_ids, &target_shm_info->used_ids);
    __put_user(host_shm_info->shm_tot, &target_shm_info->shm_tot);
    __put_user(host_shm_info->shm_rss, &target_shm_info->shm_rss);
    __put_user(host_shm_info->shm_swp, &target_shm_info->shm_swp);
    __put_user(host_shm_info->swap_attempts, &target_shm_info->swap_attempts);
    __put_user(host_shm_info->swap_successes, &target_shm_info->swap_successes);
    unlock_user_struct(target_shm_info, target_addr, 1);
    return 0;
}

static inline abi_long do_shmctl(int shmid, int cmd, abi_long buf)
{
    struct shmid_ds dsarg;
    struct shminfo shminfo;
    struct shm_info shm_info;
    abi_long ret = -TARGET_EINVAL;

    cmd &= 0xff;

    switch(cmd) {
    case IPC_STAT:
    case IPC_SET:
    case SHM_STAT:
        if (target_to_host_shmid_ds(&dsarg, buf))
            return -TARGET_EFAULT;
        ret = get_errno(shmctl(shmid, cmd, &dsarg));
        if (host_to_target_shmid_ds(buf, &dsarg))
            return -TARGET_EFAULT;
        break;
    case IPC_INFO:
        ret = get_errno(shmctl(shmid, cmd, (struct shmid_ds *)&shminfo));
        if (host_to_target_shminfo(buf, &shminfo))
            return -TARGET_EFAULT;
        break;
    case SHM_INFO:
        ret = get_errno(shmctl(shmid, cmd, (struct shmid_ds *)&shm_info));
        if (host_to_target_shm_info(buf, &shm_info))
            return -TARGET_EFAULT;
        break;
    case IPC_RMID:
    case SHM_LOCK:
    case SHM_UNLOCK:
        ret = get_errno(shmctl(shmid, cmd, NULL));
        break;
    }

    return ret;
}

static inline abi_ulong do_shmat(int shmid, abi_ulong shmaddr, int shmflg)
{
    abi_long raddr;
    void *host_raddr;
    struct shmid_ds shm_info;
    int i,ret;

    /* find out the length of the shared memory segment */
    ret = get_errno(shmctl(shmid, IPC_STAT, &shm_info));
    if (is_error(ret)) {
        /* can't get length, bail out */
        return ret;
    }

    mmap_lock();

    if (shmaddr)
        host_raddr = shmat(shmid, (void *)g2h(shmaddr), shmflg);
    else {
        abi_ulong mmap_start;

        mmap_start = mmap_find_vma(0, shm_info.shm_segsz);

        if (mmap_start == -1) {
            errno = ENOMEM;
            host_raddr = (void *)-1;
        } else
            host_raddr = shmat(shmid, g2h(mmap_start), shmflg | SHM_REMAP);
    }

    if (host_raddr == (void *)-1) {
        mmap_unlock();
        return get_errno((long)host_raddr);
    }
    raddr=h2g((unsigned long)host_raddr);

    page_set_flags(raddr, raddr + shm_info.shm_segsz,
                   PAGE_VALID | PAGE_READ |
                   ((shmflg & 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;
        }
    }

    mmap_unlock();
    return raddr;

}

static inline abi_long do_shmdt(abi_ulong shmaddr)
{
    int i;

    for (i = 0; i < N_SHM_REGIONS; ++i) {
        if (shm_regions[i].start == shmaddr) {
            shm_regions[i].start = 0;
2954
            page_set_flags(shmaddr, shmaddr + shm_regions[i].size, 0);
2955 2956 2957 2958 2959 2960 2961
            break;
        }
    }

    return get_errno(shmdt(g2h(shmaddr)));
}

2962
#ifdef TARGET_NR_ipc
2963
/* ??? This only works with linear mappings.  */
2964
/* do_ipc() must return target values and target errnos. */
2965 2966 2967
static abi_long do_ipc(unsigned int call, int first,
                       int second, int third,
                       abi_long ptr, abi_long fifth)
2968 2969
{
    int version;
2970
    abi_long ret = 0;
2971 2972 2973 2974 2975

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

    switch (call) {
2976
    case IPCOP_semop:
2977
        ret = do_semop(first, ptr, second);
2978 2979 2980 2981 2982 2983 2984
        break;

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

    case IPCOP_semctl:
2985
        ret = do_semctl(first, second, third, (union target_semun)(abi_ulong) ptr);
2986
        break;
2987

2988 2989 2990
    case IPCOP_msgget:
        ret = get_errno(msgget(first, second));
        break;
2991

2992 2993 2994
    case IPCOP_msgsnd:
        ret = do_msgsnd(first, ptr, second, third);
        break;
2995

2996 2997 2998
    case IPCOP_msgctl:
        ret = do_msgctl(first, second, ptr);
        break;
2999

3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012
    case IPCOP_msgrcv:
        switch (version) {
        case 0:
            {
                struct target_ipc_kludge {
                    abi_long msgp;
                    abi_long msgtyp;
                } *tmp;

                if (!lock_user_struct(VERIFY_READ, tmp, ptr, 1)) {
                    ret = -TARGET_EFAULT;
                    break;
                }
3013

L
Laurent Vivier 已提交
3014
                ret = do_msgrcv(first, tswapal(tmp->msgp), second, tswapal(tmp->msgtyp), third);
3015

3016 3017 3018 3019 3020 3021 3022
                unlock_user_struct(tmp, ptr, 0);
                break;
            }
        default:
            ret = do_msgrcv(first, ptr, second, fifth, third);
        }
        break;
3023

3024
    case IPCOP_shmat:
3025 3026
        switch (version) {
        default:
3027 3028
        {
            abi_ulong raddr;
3029 3030 3031
            raddr = do_shmat(first, ptr, second);
            if (is_error(raddr))
                return get_errno(raddr);
3032
            if (put_user_ual(raddr, third))
3033
                return -TARGET_EFAULT;
3034 3035 3036 3037 3038
            break;
        }
        case 1:
            ret = -TARGET_EINVAL;
            break;
3039
        }
3040 3041
	break;
    case IPCOP_shmdt:
3042
        ret = do_shmdt(ptr);
3043 3044 3045 3046 3047 3048 3049 3050 3051
	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:
3052
        ret = do_shmctl(first, second, ptr);
3053 3054
        break;
    default:
3055
	gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
3056
	ret = -TARGET_ENOSYS;
3057 3058 3059 3060
	break;
    }
    return ret;
}
3061
#endif
3062

3063 3064
/* kernel structure types definitions */

3065
#define STRUCT(name, ...) STRUCT_ ## name,
3066 3067 3068 3069 3070 3071 3072
#define STRUCT_SPECIAL(name) STRUCT_ ## name,
enum {
#include "syscall_types.h"
};
#undef STRUCT
#undef STRUCT_SPECIAL

3073
#define STRUCT(name, ...) static const argtype struct_ ## name ## _def[] = {  __VA_ARGS__, TYPE_NULL };
3074 3075 3076 3077 3078
#define STRUCT_SPECIAL(name)
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL

3079 3080 3081 3082 3083 3084
typedef struct IOCTLEntry IOCTLEntry;

typedef abi_long do_ioctl_fn(const IOCTLEntry *ie, uint8_t *buf_temp,
                             int fd, abi_long cmd, abi_long arg);

struct IOCTLEntry {
3085 3086
    unsigned int target_cmd;
    unsigned int host_cmd;
3087 3088
    const char *name;
    int access;
3089
    do_ioctl_fn *do_ioctl;
B
bellard 已提交
3090
    const argtype arg_type[5];
3091
};
3092 3093 3094 3095 3096 3097 3098

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

#define MAX_STRUCT_SIZE 4096

3099
#ifdef CONFIG_FIEMAP
3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185
/* So fiemap access checks don't overflow on 32 bit systems.
 * This is very slightly smaller than the limit imposed by
 * the underlying kernel.
 */
#define FIEMAP_MAX_EXTENTS ((UINT_MAX - sizeof(struct fiemap))  \
                            / sizeof(struct fiemap_extent))

static abi_long do_ioctl_fs_ioc_fiemap(const IOCTLEntry *ie, uint8_t *buf_temp,
                                       int fd, abi_long cmd, abi_long arg)
{
    /* The parameter for this ioctl is a struct fiemap followed
     * by an array of struct fiemap_extent whose size is set
     * in fiemap->fm_extent_count. The array is filled in by the
     * ioctl.
     */
    int target_size_in, target_size_out;
    struct fiemap *fm;
    const argtype *arg_type = ie->arg_type;
    const argtype extent_arg_type[] = { MK_STRUCT(STRUCT_fiemap_extent) };
    void *argptr, *p;
    abi_long ret;
    int i, extent_size = thunk_type_size(extent_arg_type, 0);
    uint32_t outbufsz;
    int free_fm = 0;

    assert(arg_type[0] == TYPE_PTR);
    assert(ie->access == IOC_RW);
    arg_type++;
    target_size_in = thunk_type_size(arg_type, 0);
    argptr = lock_user(VERIFY_READ, arg, target_size_in, 1);
    if (!argptr) {
        return -TARGET_EFAULT;
    }
    thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
    unlock_user(argptr, arg, 0);
    fm = (struct fiemap *)buf_temp;
    if (fm->fm_extent_count > FIEMAP_MAX_EXTENTS) {
        return -TARGET_EINVAL;
    }

    outbufsz = sizeof (*fm) +
        (sizeof(struct fiemap_extent) * fm->fm_extent_count);

    if (outbufsz > MAX_STRUCT_SIZE) {
        /* We can't fit all the extents into the fixed size buffer.
         * Allocate one that is large enough and use it instead.
         */
        fm = malloc(outbufsz);
        if (!fm) {
            return -TARGET_ENOMEM;
        }
        memcpy(fm, buf_temp, sizeof(struct fiemap));
        free_fm = 1;
    }
    ret = get_errno(ioctl(fd, ie->host_cmd, fm));
    if (!is_error(ret)) {
        target_size_out = target_size_in;
        /* An extent_count of 0 means we were only counting the extents
         * so there are no structs to copy
         */
        if (fm->fm_extent_count != 0) {
            target_size_out += fm->fm_mapped_extents * extent_size;
        }
        argptr = lock_user(VERIFY_WRITE, arg, target_size_out, 0);
        if (!argptr) {
            ret = -TARGET_EFAULT;
        } else {
            /* Convert the struct fiemap */
            thunk_convert(argptr, fm, arg_type, THUNK_TARGET);
            if (fm->fm_extent_count != 0) {
                p = argptr + target_size_in;
                /* ...and then all the struct fiemap_extents */
                for (i = 0; i < fm->fm_mapped_extents; i++) {
                    thunk_convert(p, &fm->fm_extents[i], extent_arg_type,
                                  THUNK_TARGET);
                    p += extent_size;
                }
            }
            unlock_user(argptr, arg, target_size_out);
        }
    }
    if (free_fm) {
        free(fm);
    }
    return ret;
}
3186
#endif
3187

3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281
static abi_long do_ioctl_ifconf(const IOCTLEntry *ie, uint8_t *buf_temp,
                                int fd, abi_long cmd, abi_long arg)
{
    const argtype *arg_type = ie->arg_type;
    int target_size;
    void *argptr;
    int ret;
    struct ifconf *host_ifconf;
    uint32_t outbufsz;
    const argtype ifreq_arg_type[] = { MK_STRUCT(STRUCT_sockaddr_ifreq) };
    int target_ifreq_size;
    int nb_ifreq;
    int free_buf = 0;
    int i;
    int target_ifc_len;
    abi_long target_ifc_buf;
    int host_ifc_len;
    char *host_ifc_buf;

    assert(arg_type[0] == TYPE_PTR);
    assert(ie->access == IOC_RW);

    arg_type++;
    target_size = thunk_type_size(arg_type, 0);

    argptr = lock_user(VERIFY_READ, arg, target_size, 1);
    if (!argptr)
        return -TARGET_EFAULT;
    thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
    unlock_user(argptr, arg, 0);

    host_ifconf = (struct ifconf *)(unsigned long)buf_temp;
    target_ifc_len = host_ifconf->ifc_len;
    target_ifc_buf = (abi_long)(unsigned long)host_ifconf->ifc_buf;

    target_ifreq_size = thunk_type_size(ifreq_arg_type, 0);
    nb_ifreq = target_ifc_len / target_ifreq_size;
    host_ifc_len = nb_ifreq * sizeof(struct ifreq);

    outbufsz = sizeof(*host_ifconf) + host_ifc_len;
    if (outbufsz > MAX_STRUCT_SIZE) {
        /* We can't fit all the extents into the fixed size buffer.
         * Allocate one that is large enough and use it instead.
         */
        host_ifconf = malloc(outbufsz);
        if (!host_ifconf) {
            return -TARGET_ENOMEM;
        }
        memcpy(host_ifconf, buf_temp, sizeof(*host_ifconf));
        free_buf = 1;
    }
    host_ifc_buf = (char*)host_ifconf + sizeof(*host_ifconf);

    host_ifconf->ifc_len = host_ifc_len;
    host_ifconf->ifc_buf = host_ifc_buf;

    ret = get_errno(ioctl(fd, ie->host_cmd, host_ifconf));
    if (!is_error(ret)) {
	/* convert host ifc_len to target ifc_len */

        nb_ifreq = host_ifconf->ifc_len / sizeof(struct ifreq);
        target_ifc_len = nb_ifreq * target_ifreq_size;
        host_ifconf->ifc_len = target_ifc_len;

	/* restore target ifc_buf */

        host_ifconf->ifc_buf = (char *)(unsigned long)target_ifc_buf;

	/* copy struct ifconf to target user */

        argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
        if (!argptr)
            return -TARGET_EFAULT;
        thunk_convert(argptr, host_ifconf, arg_type, THUNK_TARGET);
        unlock_user(argptr, arg, target_size);

	/* copy ifreq[] to target user */

        argptr = lock_user(VERIFY_WRITE, target_ifc_buf, target_ifc_len, 0);
        for (i = 0; i < nb_ifreq ; i++) {
            thunk_convert(argptr + i * target_ifreq_size,
                          host_ifc_buf + i * sizeof(struct ifreq),
                          ifreq_arg_type, THUNK_TARGET);
        }
        unlock_user(argptr, target_ifc_buf, target_ifc_len);
    }

    if (free_buf) {
        free(host_ifconf);
    }

    return ret;
}

3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500
static abi_long do_ioctl_dm(const IOCTLEntry *ie, uint8_t *buf_temp, int fd,
                            abi_long cmd, abi_long arg)
{
    void *argptr;
    struct dm_ioctl *host_dm;
    abi_long guest_data;
    uint32_t guest_data_size;
    int target_size;
    const argtype *arg_type = ie->arg_type;
    abi_long ret;
    void *big_buf = NULL;
    char *host_data;

    arg_type++;
    target_size = thunk_type_size(arg_type, 0);
    argptr = lock_user(VERIFY_READ, arg, target_size, 1);
    if (!argptr) {
        ret = -TARGET_EFAULT;
        goto out;
    }
    thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
    unlock_user(argptr, arg, 0);

    /* buf_temp is too small, so fetch things into a bigger buffer */
    big_buf = g_malloc0(((struct dm_ioctl*)buf_temp)->data_size * 2);
    memcpy(big_buf, buf_temp, target_size);
    buf_temp = big_buf;
    host_dm = big_buf;

    guest_data = arg + host_dm->data_start;
    if ((guest_data - arg) < 0) {
        ret = -EINVAL;
        goto out;
    }
    guest_data_size = host_dm->data_size - host_dm->data_start;
    host_data = (char*)host_dm + host_dm->data_start;

    argptr = lock_user(VERIFY_READ, guest_data, guest_data_size, 1);
    switch (ie->host_cmd) {
    case DM_REMOVE_ALL:
    case DM_LIST_DEVICES:
    case DM_DEV_CREATE:
    case DM_DEV_REMOVE:
    case DM_DEV_SUSPEND:
    case DM_DEV_STATUS:
    case DM_DEV_WAIT:
    case DM_TABLE_STATUS:
    case DM_TABLE_CLEAR:
    case DM_TABLE_DEPS:
    case DM_LIST_VERSIONS:
        /* no input data */
        break;
    case DM_DEV_RENAME:
    case DM_DEV_SET_GEOMETRY:
        /* data contains only strings */
        memcpy(host_data, argptr, guest_data_size);
        break;
    case DM_TARGET_MSG:
        memcpy(host_data, argptr, guest_data_size);
        *(uint64_t*)host_data = tswap64(*(uint64_t*)argptr);
        break;
    case DM_TABLE_LOAD:
    {
        void *gspec = argptr;
        void *cur_data = host_data;
        const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_spec) };
        int spec_size = thunk_type_size(arg_type, 0);
        int i;

        for (i = 0; i < host_dm->target_count; i++) {
            struct dm_target_spec *spec = cur_data;
            uint32_t next;
            int slen;

            thunk_convert(spec, gspec, arg_type, THUNK_HOST);
            slen = strlen((char*)gspec + spec_size) + 1;
            next = spec->next;
            spec->next = sizeof(*spec) + slen;
            strcpy((char*)&spec[1], gspec + spec_size);
            gspec += next;
            cur_data += spec->next;
        }
        break;
    }
    default:
        ret = -TARGET_EINVAL;
        goto out;
    }
    unlock_user(argptr, guest_data, 0);

    ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
    if (!is_error(ret)) {
        guest_data = arg + host_dm->data_start;
        guest_data_size = host_dm->data_size - host_dm->data_start;
        argptr = lock_user(VERIFY_WRITE, guest_data, guest_data_size, 0);
        switch (ie->host_cmd) {
        case DM_REMOVE_ALL:
        case DM_DEV_CREATE:
        case DM_DEV_REMOVE:
        case DM_DEV_RENAME:
        case DM_DEV_SUSPEND:
        case DM_DEV_STATUS:
        case DM_TABLE_LOAD:
        case DM_TABLE_CLEAR:
        case DM_TARGET_MSG:
        case DM_DEV_SET_GEOMETRY:
            /* no return data */
            break;
        case DM_LIST_DEVICES:
        {
            struct dm_name_list *nl = (void*)host_dm + host_dm->data_start;
            uint32_t remaining_data = guest_data_size;
            void *cur_data = argptr;
            const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_name_list) };
            int nl_size = 12; /* can't use thunk_size due to alignment */

            while (1) {
                uint32_t next = nl->next;
                if (next) {
                    nl->next = nl_size + (strlen(nl->name) + 1);
                }
                if (remaining_data < nl->next) {
                    host_dm->flags |= DM_BUFFER_FULL_FLAG;
                    break;
                }
                thunk_convert(cur_data, nl, arg_type, THUNK_TARGET);
                strcpy(cur_data + nl_size, nl->name);
                cur_data += nl->next;
                remaining_data -= nl->next;
                if (!next) {
                    break;
                }
                nl = (void*)nl + next;
            }
            break;
        }
        case DM_DEV_WAIT:
        case DM_TABLE_STATUS:
        {
            struct dm_target_spec *spec = (void*)host_dm + host_dm->data_start;
            void *cur_data = argptr;
            const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_spec) };
            int spec_size = thunk_type_size(arg_type, 0);
            int i;

            for (i = 0; i < host_dm->target_count; i++) {
                uint32_t next = spec->next;
                int slen = strlen((char*)&spec[1]) + 1;
                spec->next = (cur_data - argptr) + spec_size + slen;
                if (guest_data_size < spec->next) {
                    host_dm->flags |= DM_BUFFER_FULL_FLAG;
                    break;
                }
                thunk_convert(cur_data, spec, arg_type, THUNK_TARGET);
                strcpy(cur_data + spec_size, (char*)&spec[1]);
                cur_data = argptr + spec->next;
                spec = (void*)host_dm + host_dm->data_start + next;
            }
            break;
        }
        case DM_TABLE_DEPS:
        {
            void *hdata = (void*)host_dm + host_dm->data_start;
            int count = *(uint32_t*)hdata;
            uint64_t *hdev = hdata + 8;
            uint64_t *gdev = argptr + 8;
            int i;

            *(uint32_t*)argptr = tswap32(count);
            for (i = 0; i < count; i++) {
                *gdev = tswap64(*hdev);
                gdev++;
                hdev++;
            }
            break;
        }
        case DM_LIST_VERSIONS:
        {
            struct dm_target_versions *vers = (void*)host_dm + host_dm->data_start;
            uint32_t remaining_data = guest_data_size;
            void *cur_data = argptr;
            const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_versions) };
            int vers_size = thunk_type_size(arg_type, 0);

            while (1) {
                uint32_t next = vers->next;
                if (next) {
                    vers->next = vers_size + (strlen(vers->name) + 1);
                }
                if (remaining_data < vers->next) {
                    host_dm->flags |= DM_BUFFER_FULL_FLAG;
                    break;
                }
                thunk_convert(cur_data, vers, arg_type, THUNK_TARGET);
                strcpy(cur_data + vers_size, vers->name);
                cur_data += vers->next;
                remaining_data -= vers->next;
                if (!next) {
                    break;
                }
                vers = (void*)vers + next;
            }
            break;
        }
        default:
            ret = -TARGET_EINVAL;
            goto out;
        }
        unlock_user(argptr, guest_data, guest_data_size);

        argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
        if (!argptr) {
            ret = -TARGET_EFAULT;
            goto out;
        }
        thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
        unlock_user(argptr, arg, target_size);
    }
out:
3501
    g_free(big_buf);
3502 3503 3504
    return ret;
}

3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567
static abi_long do_ioctl_rt(const IOCTLEntry *ie, uint8_t *buf_temp,
                                int fd, abi_long cmd, abi_long arg)
{
    const argtype *arg_type = ie->arg_type;
    const StructEntry *se;
    const argtype *field_types;
    const int *dst_offsets, *src_offsets;
    int target_size;
    void *argptr;
    abi_ulong *target_rt_dev_ptr;
    unsigned long *host_rt_dev_ptr;
    abi_long ret;
    int i;

    assert(ie->access == IOC_W);
    assert(*arg_type == TYPE_PTR);
    arg_type++;
    assert(*arg_type == TYPE_STRUCT);
    target_size = thunk_type_size(arg_type, 0);
    argptr = lock_user(VERIFY_READ, arg, target_size, 1);
    if (!argptr) {
        return -TARGET_EFAULT;
    }
    arg_type++;
    assert(*arg_type == (int)STRUCT_rtentry);
    se = struct_entries + *arg_type++;
    assert(se->convert[0] == NULL);
    /* convert struct here to be able to catch rt_dev string */
    field_types = se->field_types;
    dst_offsets = se->field_offsets[THUNK_HOST];
    src_offsets = se->field_offsets[THUNK_TARGET];
    for (i = 0; i < se->nb_fields; i++) {
        if (dst_offsets[i] == offsetof(struct rtentry, rt_dev)) {
            assert(*field_types == TYPE_PTRVOID);
            target_rt_dev_ptr = (abi_ulong *)(argptr + src_offsets[i]);
            host_rt_dev_ptr = (unsigned long *)(buf_temp + dst_offsets[i]);
            if (*target_rt_dev_ptr != 0) {
                *host_rt_dev_ptr = (unsigned long)lock_user_string(
                                                  tswapal(*target_rt_dev_ptr));
                if (!*host_rt_dev_ptr) {
                    unlock_user(argptr, arg, 0);
                    return -TARGET_EFAULT;
                }
            } else {
                *host_rt_dev_ptr = 0;
            }
            field_types++;
            continue;
        }
        field_types = thunk_convert(buf_temp + dst_offsets[i],
                                    argptr + src_offsets[i],
                                    field_types, THUNK_HOST);
    }
    unlock_user(argptr, arg, 0);

    ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
    if (*host_rt_dev_ptr != 0) {
        unlock_user((void *)*host_rt_dev_ptr,
                    *target_rt_dev_ptr, 0);
    }
    return ret;
}

B
blueswir1 已提交
3568
static IOCTLEntry ioctl_entries[] = {
3569
#define IOCTL(cmd, access, ...) \
3570 3571 3572
    { TARGET_ ## cmd, cmd, #cmd, access, 0, {  __VA_ARGS__ } },
#define IOCTL_SPECIAL(cmd, access, dofn, ...)                      \
    { TARGET_ ## cmd, cmd, #cmd, access, dofn, {  __VA_ARGS__ } },
3573 3574 3575 3576
#include "ioctls.h"
    { 0, 0, },
};

3577
/* ??? Implement proper locking for ioctls.  */
3578
/* do_ioctl() Must return target values and target errnos. */
3579
static abi_long do_ioctl(int fd, abi_long cmd, abi_long arg)
3580 3581 3582
{
    const IOCTLEntry *ie;
    const argtype *arg_type;
3583
    abi_long ret;
3584
    uint8_t buf_temp[MAX_STRUCT_SIZE];
3585 3586
    int target_size;
    void *argptr;
3587 3588 3589 3590

    ie = ioctl_entries;
    for(;;) {
        if (ie->target_cmd == 0) {
3591
            gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
3592
            return -TARGET_ENOSYS;
3593 3594 3595 3596 3597 3598
        }
        if (ie->target_cmd == cmd)
            break;
        ie++;
    }
    arg_type = ie->arg_type;
B
bellard 已提交
3599
#if defined(DEBUG)
3600
    gemu_log("ioctl: cmd=0x%04lx (%s)\n", (long)cmd, ie->name);
B
bellard 已提交
3601
#endif
3602 3603 3604 3605
    if (ie->do_ioctl) {
        return ie->do_ioctl(ie, buf_temp, fd, cmd, arg);
    }

3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617
    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++;
3618
        target_size = thunk_type_size(arg_type, 0);
3619 3620 3621 3622
        switch(ie->access) {
        case IOC_R:
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
3623 3624 3625
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
3626 3627
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
3628 3629 3630
            }
            break;
        case IOC_W:
3631 3632 3633
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
3634 3635
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
3636 3637 3638 3639
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            break;
        default:
        case IOC_RW:
3640 3641 3642
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
3643 3644
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
3645 3646
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
3647 3648 3649
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
3650 3651
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
3652 3653 3654 3655 3656
            }
            break;
        }
        break;
    default:
3657 3658
        gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
                 (long)cmd, arg_type[0]);
3659
        ret = -TARGET_ENOSYS;
3660 3661 3662 3663 3664
        break;
    }
    return ret;
}

B
blueswir1 已提交
3665
static const bitmask_transtbl iflag_tbl[] = {
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682
        { 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 }
};

B
blueswir1 已提交
3683
static const bitmask_transtbl oflag_tbl[] = {
3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710
	{ 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 }
};

B
blueswir1 已提交
3711
static const bitmask_transtbl cflag_tbl[] = {
3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745
	{ 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 }
};

B
blueswir1 已提交
3746
static const bitmask_transtbl lflag_tbl[] = {
3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768
	{ 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;
3769

3770
    host->c_iflag =
3771
        target_to_host_bitmask(tswap32(target->c_iflag), iflag_tbl);
3772
    host->c_oflag =
3773
        target_to_host_bitmask(tswap32(target->c_oflag), oflag_tbl);
3774
    host->c_cflag =
3775
        target_to_host_bitmask(tswap32(target->c_cflag), cflag_tbl);
3776
    host->c_lflag =
3777 3778
        target_to_host_bitmask(tswap32(target->c_lflag), lflag_tbl);
    host->c_line = target->c_line;
3779

3780
    memset(host->c_cc, 0, sizeof(host->c_cc));
3781 3782
    host->c_cc[VINTR] = target->c_cc[TARGET_VINTR];
    host->c_cc[VQUIT] = target->c_cc[TARGET_VQUIT];
3783
    host->c_cc[VERASE] = target->c_cc[TARGET_VERASE];
3784
    host->c_cc[VKILL] = target->c_cc[TARGET_VKILL];
3785
    host->c_cc[VEOF] = target->c_cc[TARGET_VEOF];
3786
    host->c_cc[VTIME] = target->c_cc[TARGET_VTIME];
3787
    host->c_cc[VMIN] = target->c_cc[TARGET_VMIN];
3788
    host->c_cc[VSWTC] = target->c_cc[TARGET_VSWTC];
3789
    host->c_cc[VSTART] = target->c_cc[TARGET_VSTART];
3790 3791
    host->c_cc[VSTOP] = target->c_cc[TARGET_VSTOP];
    host->c_cc[VSUSP] = target->c_cc[TARGET_VSUSP];
3792 3793 3794 3795 3796
    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];
3797
    host->c_cc[VEOL2] = target->c_cc[TARGET_VEOL2];
3798
}
3799

3800 3801 3802 3803 3804
static void host_to_target_termios (void *dst, const void *src)
{
    struct target_termios *target = dst;
    const struct host_termios *host = src;

3805
    target->c_iflag =
3806
        tswap32(host_to_target_bitmask(host->c_iflag, iflag_tbl));
3807
    target->c_oflag =
3808
        tswap32(host_to_target_bitmask(host->c_oflag, oflag_tbl));
3809
    target->c_cflag =
3810
        tswap32(host_to_target_bitmask(host->c_cflag, cflag_tbl));
3811
    target->c_lflag =
3812 3813
        tswap32(host_to_target_bitmask(host->c_lflag, lflag_tbl));
    target->c_line = host->c_line;
3814

3815
    memset(target->c_cc, 0, sizeof(target->c_cc));
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834
    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];
}

B
blueswir1 已提交
3835
static const StructEntry struct_termios_def = {
3836 3837 3838 3839 3840
    .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 已提交
3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852
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 }
};

3853
#if defined(TARGET_I386)
B
bellard 已提交
3854 3855

/* NOTE: there is really one LDT for all the threads */
3856
static uint8_t *ldt_table;
B
bellard 已提交
3857

3858
static abi_long read_ldt(abi_ulong ptr, unsigned long bytecount)
B
bellard 已提交
3859 3860
{
    int size;
3861
    void *p;
B
bellard 已提交
3862 3863 3864 3865 3866 3867

    if (!ldt_table)
        return 0;
    size = TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE;
    if (size > bytecount)
        size = bytecount;
3868 3869
    p = lock_user(VERIFY_WRITE, ptr, size, 0);
    if (!p)
3870
        return -TARGET_EFAULT;
3871
    /* ??? Should this by byteswapped?  */
3872 3873
    memcpy(p, ldt_table, size);
    unlock_user(p, ptr, size);
B
bellard 已提交
3874 3875 3876 3877
    return size;
}

/* XXX: add locking support */
3878 3879
static abi_long write_ldt(CPUX86State *env,
                          abi_ulong ptr, unsigned long bytecount, int oldmode)
B
bellard 已提交
3880 3881
{
    struct target_modify_ldt_ldt_s ldt_info;
3882
    struct target_modify_ldt_ldt_s *target_ldt_info;
B
bellard 已提交
3883
    int seg_32bit, contents, read_exec_only, limit_in_pages;
B
bellard 已提交
3884
    int seg_not_present, useable, lm;
B
bellard 已提交
3885 3886 3887
    uint32_t *lp, entry_1, entry_2;

    if (bytecount != sizeof(ldt_info))
3888
        return -TARGET_EINVAL;
3889
    if (!lock_user_struct(VERIFY_READ, target_ldt_info, ptr, 1))
3890
        return -TARGET_EFAULT;
3891
    ldt_info.entry_number = tswap32(target_ldt_info->entry_number);
3892
    ldt_info.base_addr = tswapal(target_ldt_info->base_addr);
3893 3894 3895
    ldt_info.limit = tswap32(target_ldt_info->limit);
    ldt_info.flags = tswap32(target_ldt_info->flags);
    unlock_user_struct(target_ldt_info, ptr, 0);
3896

B
bellard 已提交
3897
    if (ldt_info.entry_number >= TARGET_LDT_ENTRIES)
3898
        return -TARGET_EINVAL;
B
bellard 已提交
3899 3900 3901 3902 3903 3904
    seg_32bit = ldt_info.flags & 1;
    contents = (ldt_info.flags >> 1) & 3;
    read_exec_only = (ldt_info.flags >> 3) & 1;
    limit_in_pages = (ldt_info.flags >> 4) & 1;
    seg_not_present = (ldt_info.flags >> 5) & 1;
    useable = (ldt_info.flags >> 6) & 1;
B
bellard 已提交
3905 3906 3907 3908 3909
#ifdef TARGET_ABI32
    lm = 0;
#else
    lm = (ldt_info.flags >> 7) & 1;
#endif
B
bellard 已提交
3910 3911
    if (contents == 3) {
        if (oldmode)
3912
            return -TARGET_EINVAL;
B
bellard 已提交
3913
        if (seg_not_present == 0)
3914
            return -TARGET_EINVAL;
B
bellard 已提交
3915 3916 3917
    }
    /* allocate the LDT */
    if (!ldt_table) {
3918 3919 3920 3921 3922
        env->ldt.base = target_mmap(0,
                                    TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE,
                                    PROT_READ|PROT_WRITE,
                                    MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
        if (env->ldt.base == -1)
3923
            return -TARGET_ENOMEM;
3924 3925
        memset(g2h(env->ldt.base), 0,
               TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
B
bellard 已提交
3926
        env->ldt.limit = 0xffff;
3927
        ldt_table = g2h(env->ldt.base);
B
bellard 已提交
3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944
    }

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

B
bellard 已提交
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955
    entry_1 = ((ldt_info.base_addr & 0x0000ffff) << 16) |
        (ldt_info.limit & 0x0ffff);
    entry_2 = (ldt_info.base_addr & 0xff000000) |
        ((ldt_info.base_addr & 0x00ff0000) >> 16) |
        (ldt_info.limit & 0xf0000) |
        ((read_exec_only ^ 1) << 9) |
        (contents << 10) |
        ((seg_not_present ^ 1) << 15) |
        (seg_32bit << 22) |
        (limit_in_pages << 23) |
B
bellard 已提交
3956
        (lm << 21) |
B
bellard 已提交
3957 3958 3959
        0x7000;
    if (!oldmode)
        entry_2 |= (useable << 20);
B
bellard 已提交
3960

B
bellard 已提交
3961 3962 3963 3964 3965 3966 3967 3968 3969
    /* 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 */
3970 3971
static abi_long do_modify_ldt(CPUX86State *env, int func, abi_ulong ptr,
                              unsigned long bytecount)
B
bellard 已提交
3972
{
3973
    abi_long ret;
3974

B
bellard 已提交
3975 3976 3977 3978 3979 3980 3981 3982 3983 3984
    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;
3985 3986 3987
    default:
        ret = -TARGET_ENOSYS;
        break;
B
bellard 已提交
3988 3989 3990
    }
    return ret;
}
B
bellard 已提交
3991

3992
#if defined(TARGET_I386) && defined(TARGET_ABI32)
A
Alexander Graf 已提交
3993
abi_long do_set_thread_area(CPUX86State *env, abi_ulong ptr)
B
bellard 已提交
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006
{
    uint64_t *gdt_table = g2h(env->gdt.base);
    struct target_modify_ldt_ldt_s ldt_info;
    struct target_modify_ldt_ldt_s *target_ldt_info;
    int seg_32bit, contents, read_exec_only, limit_in_pages;
    int seg_not_present, useable, lm;
    uint32_t *lp, entry_1, entry_2;
    int i;

    lock_user_struct(VERIFY_WRITE, target_ldt_info, ptr, 1);
    if (!target_ldt_info)
        return -TARGET_EFAULT;
    ldt_info.entry_number = tswap32(target_ldt_info->entry_number);
4007
    ldt_info.base_addr = tswapal(target_ldt_info->base_addr);
B
bellard 已提交
4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077
    ldt_info.limit = tswap32(target_ldt_info->limit);
    ldt_info.flags = tswap32(target_ldt_info->flags);
    if (ldt_info.entry_number == -1) {
        for (i=TARGET_GDT_ENTRY_TLS_MIN; i<=TARGET_GDT_ENTRY_TLS_MAX; i++) {
            if (gdt_table[i] == 0) {
                ldt_info.entry_number = i;
                target_ldt_info->entry_number = tswap32(i);
                break;
            }
        }
    }
    unlock_user_struct(target_ldt_info, ptr, 1);

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

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

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

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

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

4078
static abi_long do_get_thread_area(CPUX86State *env, abi_ulong ptr)
B
bellard 已提交
4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117
{
    struct target_modify_ldt_ldt_s *target_ldt_info;
    uint64_t *gdt_table = g2h(env->gdt.base);
    uint32_t base_addr, limit, flags;
    int seg_32bit, contents, read_exec_only, limit_in_pages, idx;
    int seg_not_present, useable, lm;
    uint32_t *lp, entry_1, entry_2;

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

B
bellard 已提交
4126
#ifndef TARGET_ABI32
4127
abi_long do_arch_prctl(CPUX86State *env, int code, abi_ulong addr)
B
bellard 已提交
4128
{
J
Juan Quintela 已提交
4129
    abi_long ret = 0;
B
bellard 已提交
4130 4131
    abi_ulong val;
    int idx;
J
Juan Quintela 已提交
4132

B
bellard 已提交
4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150
    switch(code) {
    case TARGET_ARCH_SET_GS:
    case TARGET_ARCH_SET_FS:
        if (code == TARGET_ARCH_SET_GS)
            idx = R_GS;
        else
            idx = R_FS;
        cpu_x86_load_seg(env, idx, 0);
        env->segs[idx].base = addr;
        break;
    case TARGET_ARCH_GET_GS:
    case TARGET_ARCH_GET_FS:
        if (code == TARGET_ARCH_GET_GS)
            idx = R_GS;
        else
            idx = R_FS;
        val = env->segs[idx].base;
        if (put_user(val, addr, abi_ulong))
J
Juan Quintela 已提交
4151
            ret = -TARGET_EFAULT;
B
bellard 已提交
4152 4153 4154 4155 4156
        break;
    default:
        ret = -TARGET_EINVAL;
        break;
    }
J
Juan Quintela 已提交
4157
    return ret;
B
bellard 已提交
4158 4159 4160
}
#endif

4161 4162
#endif /* defined(TARGET_I386) */

4163
#define NEW_STACK_SIZE 0x40000
P
pbrook 已提交
4164 4165 4166 4167


static pthread_mutex_t clone_lock = PTHREAD_MUTEX_INITIALIZER;
typedef struct {
4168
    CPUArchState *env;
P
pbrook 已提交
4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180
    pthread_mutex_t mutex;
    pthread_cond_t cond;
    pthread_t thread;
    uint32_t tid;
    abi_ulong child_tidptr;
    abi_ulong parent_tidptr;
    sigset_t sigmask;
} new_thread_info;

static void *clone_func(void *arg)
{
    new_thread_info *info = arg;
4181
    CPUArchState *env;
4182
    CPUState *cpu;
4183
    TaskState *ts;
P
pbrook 已提交
4184 4185

    env = info->env;
4186
    cpu = ENV_GET_CPU(env);
4187 4188
    thread_cpu = cpu;
    ts = (TaskState *)env->opaque;
P
pbrook 已提交
4189
    info->tid = gettid();
4190
    cpu->host_tid = info->tid;
4191
    task_settid(ts);
P
pbrook 已提交
4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208
    if (info->child_tidptr)
        put_user_u32(info->tid, info->child_tidptr);
    if (info->parent_tidptr)
        put_user_u32(info->tid, info->parent_tidptr);
    /* Enable signals.  */
    sigprocmask(SIG_SETMASK, &info->sigmask, NULL);
    /* Signal to the parent that we're ready.  */
    pthread_mutex_lock(&info->mutex);
    pthread_cond_broadcast(&info->cond);
    pthread_mutex_unlock(&info->mutex);
    /* Wait until the parent has finshed initializing the tls state.  */
    pthread_mutex_lock(&clone_lock);
    pthread_mutex_unlock(&clone_lock);
    cpu_loop(env);
    /* never exits */
    return NULL;
}
B
bellard 已提交
4209

4210 4211
/* do_fork() Must return host values and target errnos (unlike most
   do_*() functions). */
4212
static int do_fork(CPUArchState *env, unsigned int flags, abi_ulong newsp,
P
pbrook 已提交
4213 4214
                   abi_ulong parent_tidptr, target_ulong newtls,
                   abi_ulong child_tidptr)
B
bellard 已提交
4215 4216
{
    int ret;
B
bellard 已提交
4217
    TaskState *ts;
4218
    CPUArchState *new_env;
P
pbrook 已提交
4219 4220
    unsigned int nptl_flags;
    sigset_t sigmask;
4221

4222 4223 4224 4225
    /* Emulate vfork() with fork() */
    if (flags & CLONE_VFORK)
        flags &= ~(CLONE_VFORK | CLONE_VM);

B
bellard 已提交
4226
    if (flags & CLONE_VM) {
4227
        TaskState *parent_ts = (TaskState *)env->opaque;
P
pbrook 已提交
4228 4229
        new_thread_info info;
        pthread_attr_t attr;
4230

4231
        ts = g_malloc0(sizeof(TaskState));
P
pbrook 已提交
4232
        init_task_state(ts);
B
bellard 已提交
4233
        /* we create a new CPU instance. */
4234
        new_env = cpu_copy(env);
4235 4236
        /* Init regs that differ from the parent.  */
        cpu_clone_regs(new_env, newsp);
B
bellard 已提交
4237
        new_env->opaque = ts;
4238 4239
        ts->bprm = parent_ts->bprm;
        ts->info = parent_ts->info;
P
pbrook 已提交
4240 4241 4242
        nptl_flags = flags;
        flags &= ~CLONE_NPTL_FLAGS2;

4243 4244 4245 4246
        if (nptl_flags & CLONE_CHILD_CLEARTID) {
            ts->child_tidptr = child_tidptr;
        }

P
pbrook 已提交
4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263
        if (nptl_flags & CLONE_SETTLS)
            cpu_set_tls (new_env, newtls);

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

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

        ret = pthread_attr_init(&attr);
4264 4265
        ret = pthread_attr_setstacksize(&attr, NEW_STACK_SIZE);
        ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
P
pbrook 已提交
4266 4267 4268 4269 4270 4271
        /* It is not safe to deliver signals until the child has finished
           initializing, so temporarily block all signals.  */
        sigfillset(&sigmask);
        sigprocmask(SIG_BLOCK, &sigmask, &info.sigmask);

        ret = pthread_create(&info.thread, &attr, clone_func, &info);
4272
        /* TODO: Free new CPU state if thread creation failed.  */
P
pbrook 已提交
4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288

        sigprocmask(SIG_SETMASK, &info.sigmask, NULL);
        pthread_attr_destroy(&attr);
        if (ret == 0) {
            /* Wait for the child to initialize.  */
            pthread_cond_wait(&info.cond, &info.mutex);
            ret = info.tid;
            if (flags & CLONE_PARENT_SETTID)
                put_user_u32(ret, parent_tidptr);
        } else {
            ret = -1;
        }
        pthread_mutex_unlock(&info.mutex);
        pthread_cond_destroy(&info.cond);
        pthread_mutex_destroy(&info.mutex);
        pthread_mutex_unlock(&clone_lock);
B
bellard 已提交
4289 4290
    } else {
        /* if no CLONE_VM, we consider it is a fork */
P
pbrook 已提交
4291
        if ((flags & ~(CSIGNAL | CLONE_NPTL_FLAGS2)) != 0)
B
bellard 已提交
4292
            return -EINVAL;
P
pbrook 已提交
4293
        fork_start();
B
bellard 已提交
4294
        ret = fork();
P
pbrook 已提交
4295
        if (ret == 0) {
4296
            /* Child Process.  */
P
pbrook 已提交
4297 4298
            cpu_clone_regs(env, newsp);
            fork_end(1);
4299 4300 4301 4302 4303 4304
            /* There is a race condition here.  The parent process could
               theoretically read the TID in the child process before the child
               tid is set.  This would require using either ptrace
               (not implemented) or having *_tidptr to point at a shared memory
               mapping.  We can't repeat the spinlock hack used above because
               the child process gets its own copy of the lock.  */
P
pbrook 已提交
4305 4306 4307 4308 4309 4310 4311
            if (flags & CLONE_CHILD_SETTID)
                put_user_u32(gettid(), child_tidptr);
            if (flags & CLONE_PARENT_SETTID)
                put_user_u32(gettid(), parent_tidptr);
            ts = (TaskState *)env->opaque;
            if (flags & CLONE_SETTLS)
                cpu_set_tls (env, newtls);
4312 4313
            if (flags & CLONE_CHILD_CLEARTID)
                ts->child_tidptr = child_tidptr;
P
pbrook 已提交
4314 4315 4316
        } else {
            fork_end(0);
        }
B
bellard 已提交
4317 4318 4319 4320
    }
    return ret;
}

4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352
/* warning : doesn't handle linux specific flags... */
static int target_to_host_fcntl_cmd(int cmd)
{
    switch(cmd) {
	case TARGET_F_DUPFD:
	case TARGET_F_GETFD:
	case TARGET_F_SETFD:
	case TARGET_F_GETFL:
	case TARGET_F_SETFL:
            return cmd;
        case TARGET_F_GETLK:
	    return F_GETLK;
	case TARGET_F_SETLK:
	    return F_SETLK;
	case TARGET_F_SETLKW:
	    return F_SETLKW;
	case TARGET_F_GETOWN:
	    return F_GETOWN;
	case TARGET_F_SETOWN:
	    return F_SETOWN;
	case TARGET_F_GETSIG:
	    return F_GETSIG;
	case TARGET_F_SETSIG:
	    return F_SETSIG;
#if TARGET_ABI_BITS == 32
        case TARGET_F_GETLK64:
	    return F_GETLK64;
	case TARGET_F_SETLK64:
	    return F_SETLK64;
	case TARGET_F_SETLKW64:
	    return F_SETLKW64;
#endif
U
Ulrich Hecht 已提交
4353 4354 4355 4356
        case TARGET_F_SETLEASE:
            return F_SETLEASE;
        case TARGET_F_GETLEASE:
            return F_GETLEASE;
4357
#ifdef F_DUPFD_CLOEXEC
U
Ulrich Hecht 已提交
4358 4359
        case TARGET_F_DUPFD_CLOEXEC:
            return F_DUPFD_CLOEXEC;
4360
#endif
U
Ulrich Hecht 已提交
4361 4362
        case TARGET_F_NOTIFY:
            return F_NOTIFY;
4363 4364 4365 4366 4367 4368
	default:
            return -TARGET_EINVAL;
    }
    return -TARGET_EINVAL;
}

4369 4370 4371 4372 4373 4374 4375 4376 4377 4378
#define TRANSTBL_CONVERT(a) { -1, TARGET_##a, -1, a }
static const bitmask_transtbl flock_tbl[] = {
    TRANSTBL_CONVERT(F_RDLCK),
    TRANSTBL_CONVERT(F_WRLCK),
    TRANSTBL_CONVERT(F_UNLCK),
    TRANSTBL_CONVERT(F_EXLCK),
    TRANSTBL_CONVERT(F_SHLCK),
    { 0, 0, 0, 0 }
};

4379
static abi_long do_fcntl(int fd, int cmd, abi_ulong arg)
B
bellard 已提交
4380 4381
{
    struct flock fl;
4382
    struct target_flock *target_fl;
4383 4384
    struct flock64 fl64;
    struct target_flock64 *target_fl64;
4385
    abi_long ret;
4386 4387 4388 4389
    int host_cmd = target_to_host_fcntl_cmd(cmd);

    if (host_cmd == -TARGET_EINVAL)
	    return host_cmd;
4390

B
bellard 已提交
4391 4392
    switch(cmd) {
    case TARGET_F_GETLK:
4393 4394
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
4395 4396
        fl.l_type =
                  target_to_host_bitmask(tswap16(target_fl->l_type), flock_tbl);
T
ths 已提交
4397
        fl.l_whence = tswap16(target_fl->l_whence);
4398 4399
        fl.l_start = tswapal(target_fl->l_start);
        fl.l_len = tswapal(target_fl->l_len);
U
Ulrich Hecht 已提交
4400
        fl.l_pid = tswap32(target_fl->l_pid);
T
ths 已提交
4401
        unlock_user_struct(target_fl, arg, 0);
4402
        ret = get_errno(fcntl(fd, host_cmd, &fl));
B
bellard 已提交
4403
        if (ret == 0) {
4404 4405
            if (!lock_user_struct(VERIFY_WRITE, target_fl, arg, 0))
                return -TARGET_EFAULT;
4406 4407
            target_fl->l_type =
                          host_to_target_bitmask(tswap16(fl.l_type), flock_tbl);
B
bellard 已提交
4408
            target_fl->l_whence = tswap16(fl.l_whence);
4409 4410
            target_fl->l_start = tswapal(fl.l_start);
            target_fl->l_len = tswapal(fl.l_len);
U
Ulrich Hecht 已提交
4411
            target_fl->l_pid = tswap32(fl.l_pid);
4412
            unlock_user_struct(target_fl, arg, 1);
B
bellard 已提交
4413 4414
        }
        break;
4415

B
bellard 已提交
4416 4417
    case TARGET_F_SETLK:
    case TARGET_F_SETLKW:
4418 4419
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
4420 4421
        fl.l_type =
                  target_to_host_bitmask(tswap16(target_fl->l_type), flock_tbl);
B
bellard 已提交
4422
        fl.l_whence = tswap16(target_fl->l_whence);
4423 4424
        fl.l_start = tswapal(target_fl->l_start);
        fl.l_len = tswapal(target_fl->l_len);
U
Ulrich Hecht 已提交
4425
        fl.l_pid = tswap32(target_fl->l_pid);
4426
        unlock_user_struct(target_fl, arg, 0);
4427
        ret = get_errno(fcntl(fd, host_cmd, &fl));
B
bellard 已提交
4428
        break;
4429

B
bellard 已提交
4430
    case TARGET_F_GETLK64:
4431 4432
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
4433 4434
        fl64.l_type =
           target_to_host_bitmask(tswap16(target_fl64->l_type), flock_tbl) >> 1;
T
ths 已提交
4435
        fl64.l_whence = tswap16(target_fl64->l_whence);
4436 4437
        fl64.l_start = tswap64(target_fl64->l_start);
        fl64.l_len = tswap64(target_fl64->l_len);
U
Ulrich Hecht 已提交
4438
        fl64.l_pid = tswap32(target_fl64->l_pid);
T
ths 已提交
4439
        unlock_user_struct(target_fl64, arg, 0);
4440
        ret = get_errno(fcntl(fd, host_cmd, &fl64));
4441
        if (ret == 0) {
4442 4443
            if (!lock_user_struct(VERIFY_WRITE, target_fl64, arg, 0))
                return -TARGET_EFAULT;
4444 4445
            target_fl64->l_type =
                   host_to_target_bitmask(tswap16(fl64.l_type), flock_tbl) >> 1;
4446
            target_fl64->l_whence = tswap16(fl64.l_whence);
4447 4448
            target_fl64->l_start = tswap64(fl64.l_start);
            target_fl64->l_len = tswap64(fl64.l_len);
U
Ulrich Hecht 已提交
4449
            target_fl64->l_pid = tswap32(fl64.l_pid);
4450 4451
            unlock_user_struct(target_fl64, arg, 1);
        }
B
bellard 已提交
4452
        break;
B
bellard 已提交
4453 4454
    case TARGET_F_SETLK64:
    case TARGET_F_SETLKW64:
4455 4456
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
4457 4458
        fl64.l_type =
           target_to_host_bitmask(tswap16(target_fl64->l_type), flock_tbl) >> 1;
4459
        fl64.l_whence = tswap16(target_fl64->l_whence);
4460 4461
        fl64.l_start = tswap64(target_fl64->l_start);
        fl64.l_len = tswap64(target_fl64->l_len);
U
Ulrich Hecht 已提交
4462
        fl64.l_pid = tswap32(target_fl64->l_pid);
4463
        unlock_user_struct(target_fl64, arg, 0);
4464
        ret = get_errno(fcntl(fd, host_cmd, &fl64));
B
bellard 已提交
4465 4466
        break;

4467 4468
    case TARGET_F_GETFL:
        ret = get_errno(fcntl(fd, host_cmd, arg));
B
bellard 已提交
4469 4470 4471
        if (ret >= 0) {
            ret = host_to_target_bitmask(ret, fcntl_flags_tbl);
        }
B
bellard 已提交
4472 4473
        break;

4474 4475 4476 4477 4478 4479 4480 4481
    case TARGET_F_SETFL:
        ret = get_errno(fcntl(fd, host_cmd, target_to_host_bitmask(arg, fcntl_flags_tbl)));
        break;

    case TARGET_F_SETOWN:
    case TARGET_F_GETOWN:
    case TARGET_F_SETSIG:
    case TARGET_F_GETSIG:
U
Ulrich Hecht 已提交
4482 4483
    case TARGET_F_SETLEASE:
    case TARGET_F_GETLEASE:
4484
        ret = get_errno(fcntl(fd, host_cmd, arg));
B
bellard 已提交
4485 4486
        break;

B
bellard 已提交
4487
    default:
B
bellard 已提交
4488
        ret = get_errno(fcntl(fd, cmd, arg));
B
bellard 已提交
4489 4490 4491 4492 4493
        break;
    }
    return ret;
}

4494
#ifdef USE_UID16
B
bellard 已提交
4495

4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526
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;
}
4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551
static inline int tswapid(int id)
{
    return tswap16(id);
}
#else /* !USE_UID16 */
static inline int high2lowuid(int uid)
{
    return uid;
}
static inline int high2lowgid(int gid)
{
    return gid;
}
static inline int low2highuid(int uid)
{
    return uid;
}
static inline int low2highgid(int gid)
{
    return gid;
}
static inline int tswapid(int id)
{
    return tswap32(id);
}
4552
#endif /* USE_UID16 */
B
bellard 已提交
4553

4554 4555
void syscall_init(void)
{
4556 4557 4558
    IOCTLEntry *ie;
    const argtype *arg_type;
    int size;
4559
    int i;
4560

4561
#define STRUCT(name, ...) thunk_register_struct(STRUCT_ ## name, #name, struct_ ## name ## _def);
4562
#define STRUCT_SPECIAL(name) thunk_register_struct_direct(STRUCT_ ## name, #name, &struct_ ## name ## _def);
4563 4564 4565
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL
4566

4567 4568 4569 4570 4571 4572
    /* 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;
    }

4573 4574 4575 4576 4577 4578 4579 4580
    /* 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) {
4581
                fprintf(stderr, "cannot patch size for ioctl 0x%x\n",
4582 4583 4584 4585 4586
                        ie->target_cmd);
                exit(1);
            }
            arg_type++;
            size = thunk_type_size(arg_type, 0);
4587
            ie->target_cmd = (ie->target_cmd &
4588 4589 4590
                              ~(TARGET_IOC_SIZEMASK << TARGET_IOC_SIZESHIFT)) |
                (size << TARGET_IOC_SIZESHIFT);
        }
4591

4592
        /* automatic consistency check if same arch */
4593 4594 4595 4596 4597
#if (defined(__i386__) && defined(TARGET_I386) && defined(TARGET_ABI32)) || \
    (defined(__x86_64__) && defined(TARGET_X86_64))
        if (unlikely(ie->target_cmd != ie->host_cmd)) {
            fprintf(stderr, "ERROR: ioctl(%s): target=0x%x host=0x%x\n",
                    ie->name, ie->target_cmd, ie->host_cmd);
4598 4599 4600 4601
        }
#endif
        ie++;
    }
4602
}
B
bellard 已提交
4603

4604
#if TARGET_ABI_BITS == 32
P
pbrook 已提交
4605 4606
static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
{
T
ths 已提交
4607
#ifdef TARGET_WORDS_BIGENDIAN
P
pbrook 已提交
4608 4609 4610 4611 4612
    return ((uint64_t)word0 << 32) | word1;
#else
    return ((uint64_t)word1 << 32) | word0;
#endif
}
4613
#else /* TARGET_ABI_BITS == 32 */
4614 4615 4616 4617
static inline uint64_t target_offset64(uint64_t word0, uint64_t word1)
{
    return word0;
}
4618
#endif /* TARGET_ABI_BITS != 32 */
P
pbrook 已提交
4619 4620

#ifdef TARGET_NR_truncate64
4621 4622 4623 4624
static inline abi_long target_truncate64(void *cpu_env, const char *arg1,
                                         abi_long arg2,
                                         abi_long arg3,
                                         abi_long arg4)
P
pbrook 已提交
4625
{
4626
    if (regpairs_aligned(cpu_env)) {
P
pbrook 已提交
4627 4628
        arg2 = arg3;
        arg3 = arg4;
4629
    }
P
pbrook 已提交
4630 4631 4632 4633 4634
    return get_errno(truncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

#ifdef TARGET_NR_ftruncate64
4635 4636 4637 4638
static inline abi_long target_ftruncate64(void *cpu_env, abi_long arg1,
                                          abi_long arg2,
                                          abi_long arg3,
                                          abi_long arg4)
P
pbrook 已提交
4639
{
4640
    if (regpairs_aligned(cpu_env)) {
P
pbrook 已提交
4641 4642
        arg2 = arg3;
        arg3 = arg4;
4643
    }
P
pbrook 已提交
4644 4645 4646 4647
    return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

4648 4649
static inline abi_long target_to_host_timespec(struct timespec *host_ts,
                                               abi_ulong target_addr)
4650 4651 4652
{
    struct target_timespec *target_ts;

4653 4654
    if (!lock_user_struct(VERIFY_READ, target_ts, target_addr, 1))
        return -TARGET_EFAULT;
4655 4656
    host_ts->tv_sec = tswapal(target_ts->tv_sec);
    host_ts->tv_nsec = tswapal(target_ts->tv_nsec);
4657
    unlock_user_struct(target_ts, target_addr, 0);
B
bellard 已提交
4658
    return 0;
4659 4660
}

4661 4662
static inline abi_long host_to_target_timespec(abi_ulong target_addr,
                                               struct timespec *host_ts)
4663 4664 4665
{
    struct target_timespec *target_ts;

4666 4667
    if (!lock_user_struct(VERIFY_WRITE, target_ts, target_addr, 0))
        return -TARGET_EFAULT;
4668 4669
    target_ts->tv_sec = tswapal(host_ts->tv_sec);
    target_ts->tv_nsec = tswapal(host_ts->tv_nsec);
4670
    unlock_user_struct(target_ts, target_addr, 1);
B
bellard 已提交
4671
    return 0;
4672 4673
}

4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712
static inline abi_long target_to_host_itimerspec(struct itimerspec *host_itspec,
                                                 abi_ulong target_addr)
{
    struct target_itimerspec *target_itspec;

    if (!lock_user_struct(VERIFY_READ, target_itspec, target_addr, 1)) {
        return -TARGET_EFAULT;
    }

    host_itspec->it_interval.tv_sec =
                            tswapal(target_itspec->it_interval.tv_sec);
    host_itspec->it_interval.tv_nsec =
                            tswapal(target_itspec->it_interval.tv_nsec);
    host_itspec->it_value.tv_sec = tswapal(target_itspec->it_value.tv_sec);
    host_itspec->it_value.tv_nsec = tswapal(target_itspec->it_value.tv_nsec);

    unlock_user_struct(target_itspec, target_addr, 1);
    return 0;
}

static inline abi_long host_to_target_itimerspec(abi_ulong target_addr,
                                               struct itimerspec *host_its)
{
    struct target_itimerspec *target_itspec;

    if (!lock_user_struct(VERIFY_WRITE, target_itspec, target_addr, 0)) {
        return -TARGET_EFAULT;
    }

    target_itspec->it_interval.tv_sec = tswapal(host_its->it_interval.tv_sec);
    target_itspec->it_interval.tv_nsec = tswapal(host_its->it_interval.tv_nsec);

    target_itspec->it_value.tv_sec = tswapal(host_its->it_value.tv_sec);
    target_itspec->it_value.tv_nsec = tswapal(host_its->it_value.tv_nsec);

    unlock_user_struct(target_itspec, target_addr, 0);
    return 0;
}

4713
#if defined(TARGET_NR_stat64) || defined(TARGET_NR_newfstatat)
4714 4715 4716 4717
static inline abi_long host_to_target_stat64(void *cpu_env,
                                             abi_ulong target_addr,
                                             struct stat *host_st)
{
4718
#if defined(TARGET_ARM) && defined(TARGET_ABI32)
4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744
    if (((CPUARMState *)cpu_env)->eabi) {
        struct target_eabi_stat64 *target_st;

        if (!lock_user_struct(VERIFY_WRITE, target_st, target_addr, 0))
            return -TARGET_EFAULT;
        memset(target_st, 0, sizeof(struct target_eabi_stat64));
        __put_user(host_st->st_dev, &target_st->st_dev);
        __put_user(host_st->st_ino, &target_st->st_ino);
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
        __put_user(host_st->st_ino, &target_st->__st_ino);
#endif
        __put_user(host_st->st_mode, &target_st->st_mode);
        __put_user(host_st->st_nlink, &target_st->st_nlink);
        __put_user(host_st->st_uid, &target_st->st_uid);
        __put_user(host_st->st_gid, &target_st->st_gid);
        __put_user(host_st->st_rdev, &target_st->st_rdev);
        __put_user(host_st->st_size, &target_st->st_size);
        __put_user(host_st->st_blksize, &target_st->st_blksize);
        __put_user(host_st->st_blocks, &target_st->st_blocks);
        __put_user(host_st->st_atime, &target_st->target_st_atime);
        __put_user(host_st->st_mtime, &target_st->target_st_mtime);
        __put_user(host_st->st_ctime, &target_st->target_st_ctime);
        unlock_user_struct(target_st, target_addr, 1);
    } else
#endif
    {
4745
#if defined(TARGET_HAS_STRUCT_STAT64)
4746
        struct target_stat64 *target_st;
4747 4748
#else
        struct target_stat *target_st;
4749
#endif
4750 4751 4752

        if (!lock_user_struct(VERIFY_WRITE, target_st, target_addr, 0))
            return -TARGET_EFAULT;
4753
        memset(target_st, 0, sizeof(*target_st));
4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777
        __put_user(host_st->st_dev, &target_st->st_dev);
        __put_user(host_st->st_ino, &target_st->st_ino);
#ifdef TARGET_STAT64_HAS_BROKEN_ST_INO
        __put_user(host_st->st_ino, &target_st->__st_ino);
#endif
        __put_user(host_st->st_mode, &target_st->st_mode);
        __put_user(host_st->st_nlink, &target_st->st_nlink);
        __put_user(host_st->st_uid, &target_st->st_uid);
        __put_user(host_st->st_gid, &target_st->st_gid);
        __put_user(host_st->st_rdev, &target_st->st_rdev);
        /* XXX: better use of kernel struct */
        __put_user(host_st->st_size, &target_st->st_size);
        __put_user(host_st->st_blksize, &target_st->st_blksize);
        __put_user(host_st->st_blocks, &target_st->st_blocks);
        __put_user(host_st->st_atime, &target_st->target_st_atime);
        __put_user(host_st->st_mtime, &target_st->target_st_mtime);
        __put_user(host_st->st_ctime, &target_st->target_st_ctime);
        unlock_user_struct(target_st, target_addr, 1);
    }

    return 0;
}
#endif

4778 4779 4780 4781 4782
/* ??? Using host futex calls even when target atomic operations
   are not really atomic probably breaks things.  However implementing
   futexes locally would make futexes shared between multiple processes
   tricky.  However they're probably useless because guest atomic
   operations won't work either.  */
4783 4784
static int do_futex(target_ulong uaddr, int op, int val, target_ulong timeout,
                    target_ulong uaddr2, int val3)
4785 4786
{
    struct timespec ts, *pts;
4787
    int base_op;
4788 4789 4790

    /* ??? We assume FUTEX_* constants are the same on both host
       and target.  */
4791
#ifdef FUTEX_CMD_MASK
4792
    base_op = op & FUTEX_CMD_MASK;
4793
#else
4794
    base_op = op;
4795
#endif
4796
    switch (base_op) {
4797
    case FUTEX_WAIT:
4798
    case FUTEX_WAIT_BITSET:
4799 4800 4801 4802 4803 4804
        if (timeout) {
            pts = &ts;
            target_to_host_timespec(pts, timeout);
        } else {
            pts = NULL;
        }
4805
        return get_errno(sys_futex(g2h(uaddr), op, tswap32(val),
4806
                         pts, NULL, val3));
4807
    case FUTEX_WAKE:
4808
        return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
4809
    case FUTEX_FD:
4810
        return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
4811 4812
    case FUTEX_REQUEUE:
    case FUTEX_CMP_REQUEUE:
4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824
    case FUTEX_WAKE_OP:
        /* For FUTEX_REQUEUE, FUTEX_CMP_REQUEUE, and FUTEX_WAKE_OP, the
           TIMEOUT parameter is interpreted as a uint32_t by the kernel.
           But the prototype takes a `struct timespec *'; insert casts
           to satisfy the compiler.  We do not need to tswap TIMEOUT
           since it's not compared to guest memory.  */
        pts = (struct timespec *)(uintptr_t) timeout;
        return get_errno(sys_futex(g2h(uaddr), op, val, pts,
                                   g2h(uaddr2),
                                   (base_op == FUTEX_CMP_REQUEUE
                                    ? tswap32(val3)
                                    : val3)));
4825 4826 4827 4828 4829
    default:
        return -TARGET_ENOSYS;
    }
}

P
pbrook 已提交
4830 4831
/* Map host to target signal numbers for the wait family of syscalls.
   Assume all other status bits are the same.  */
4832
int host_to_target_waitstatus(int status)
P
pbrook 已提交
4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843
{
    if (WIFSIGNALED(status)) {
        return host_to_target_signal(WTERMSIG(status)) | (status & ~0x7f);
    }
    if (WIFSTOPPED(status)) {
        return (host_to_target_signal(WSTOPSIG(status)) << 8)
               | (status & 0xff);
    }
    return status;
}

4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866
static int relstr_to_int(const char *s)
{
    /* Convert a uname release string like "2.6.18" to an integer
     * of the form 0x020612. (Beware that 0x020612 is *not* 2.6.12.)
     */
    int i, n, tmp;

    tmp = 0;
    for (i = 0; i < 3; i++) {
        n = 0;
        while (*s >= '0' && *s <= '9') {
            n *= 10;
            n += *s - '0';
            s++;
        }
        tmp = (tmp << 8) + n;
        if (*s == '.') {
            s++;
        }
    }
    return tmp;
}

P
pbrook 已提交
4867 4868 4869 4870 4871
int get_osversion(void)
{
    static int osversion;
    struct new_utsname buf;
    const char *s;
4872

P
pbrook 已提交
4873 4874 4875 4876 4877 4878 4879 4880 4881
    if (osversion)
        return osversion;
    if (qemu_uname_release && *qemu_uname_release) {
        s = qemu_uname_release;
    } else {
        if (sys_uname(&buf))
            return 0;
        s = buf.release;
    }
4882
    osversion = relstr_to_int(s);
P
pbrook 已提交
4883 4884 4885
    return osversion;
}

4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908
void init_qemu_uname_release(void)
{
    /* Initialize qemu_uname_release for later use.
     * If the host kernel is too old and the user hasn't asked for
     * a specific fake version number, we might want to fake a minimum
     * target kernel version.
     */
#ifdef UNAME_MINIMUM_RELEASE
    struct new_utsname buf;

    if (qemu_uname_release && *qemu_uname_release) {
        return;
    }

    if (sys_uname(&buf)) {
        return;
    }

    if (relstr_to_int(buf.release) < relstr_to_int(UNAME_MINIMUM_RELEASE)) {
        qemu_uname_release = UNAME_MINIMUM_RELEASE;
    }
#endif
}
4909 4910 4911

static int open_self_maps(void *cpu_env, int fd)
{
4912
#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
4913
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
4914 4915 4916 4917 4918 4919 4920 4921 4922 4923
#endif
    FILE *fp;
    char *line = NULL;
    size_t len = 0;
    ssize_t read;

    fp = fopen("/proc/self/maps", "r");
    if (fp == NULL) {
        return -EACCES;
    }
4924

4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941
    while ((read = getline(&line, &len, fp)) != -1) {
        int fields, dev_maj, dev_min, inode;
        uint64_t min, max, offset;
        char flag_r, flag_w, flag_x, flag_p;
        char path[512] = "";
        fields = sscanf(line, "%"PRIx64"-%"PRIx64" %c%c%c%c %"PRIx64" %x:%x %d"
                        " %512s", &min, &max, &flag_r, &flag_w, &flag_x,
                        &flag_p, &offset, &dev_maj, &dev_min, &inode, path);

        if ((fields < 10) || (fields > 11)) {
            continue;
        }
        if (!strncmp(path, "[stack]", 7)) {
            continue;
        }
        if (h2g_valid(min) && h2g_valid(max)) {
            dprintf(fd, TARGET_ABI_FMT_lx "-" TARGET_ABI_FMT_lx
C
Christophe Lyon 已提交
4942
                    " %c%c%c%c %08" PRIx64 " %02x:%02x %d %s%s\n",
4943 4944
                    h2g(min), h2g(max), flag_r, flag_w,
                    flag_x, flag_p, offset, dev_maj, dev_min, inode,
C
Christophe Lyon 已提交
4945
                    path[0] ? "         " : "", path);
4946 4947 4948 4949 4950 4951 4952
        }
    }

    free(line);
    fclose(fp);

#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
4953 4954
    dprintf(fd, "%08llx-%08llx rw-p %08llx 00:00 0          [stack]\n",
                (unsigned long long)ts->info->stack_limit,
4955 4956
                (unsigned long long)(ts->info->start_stack +
                                     (TARGET_PAGE_SIZE - 1)) & TARGET_PAGE_MASK,
4957 4958
                (unsigned long long)0);
#endif
4959 4960 4961 4962

    return 0;
}

4963 4964
static int open_self_stat(void *cpu_env, int fd)
{
4965
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
4966 4967 4968 4969 4970 4971 4972 4973
    abi_ulong start_stack = ts->info->start_stack;
    int i;

    for (i = 0; i < 44; i++) {
      char buf[128];
      int len;
      uint64_t val = 0;

4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987
      if (i == 0) {
        /* pid */
        val = getpid();
        snprintf(buf, sizeof(buf), "%"PRId64 " ", val);
      } else if (i == 1) {
        /* app name */
        snprintf(buf, sizeof(buf), "(%s) ", ts->bprm->argv[0]);
      } else if (i == 27) {
        /* stack bottom */
        val = start_stack;
        snprintf(buf, sizeof(buf), "%"PRId64 " ", val);
      } else {
        /* for the rest, there is MasterCard */
        snprintf(buf, sizeof(buf), "0%c", i == 43 ? '\n' : ' ');
4988
      }
4989

4990 4991 4992 4993 4994 4995 4996 4997 4998
      len = strlen(buf);
      if (write(fd, buf, len) != len) {
          return -1;
      }
    }

    return 0;
}

4999 5000
static int open_self_auxv(void *cpu_env, int fd)
{
5001
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027
    abi_ulong auxv = ts->info->saved_auxv;
    abi_ulong len = ts->info->auxv_len;
    char *ptr;

    /*
     * Auxiliary vector is stored in target process stack.
     * read in whole auxv vector and copy it to file
     */
    ptr = lock_user(VERIFY_READ, auxv, len, 0);
    if (ptr != NULL) {
        while (len > 0) {
            ssize_t r;
            r = write(fd, ptr, len);
            if (r <= 0) {
                break;
            }
            len -= r;
            ptr += r;
        }
        lseek(fd, 0, SEEK_SET);
        unlock_user(ptr, auxv, len);
    }

    return 0;
}

5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051
static int is_proc_myself(const char *filename, const char *entry)
{
    if (!strncmp(filename, "/proc/", strlen("/proc/"))) {
        filename += strlen("/proc/");
        if (!strncmp(filename, "self/", strlen("self/"))) {
            filename += strlen("self/");
        } else if (*filename >= '1' && *filename <= '9') {
            char myself[80];
            snprintf(myself, sizeof(myself), "%d/", getpid());
            if (!strncmp(filename, myself, strlen(myself))) {
                filename += strlen(myself);
            } else {
                return 0;
            }
        } else {
            return 0;
        }
        if (!strcmp(filename, entry)) {
            return 1;
        }
    }
    return 0;
}

5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095
#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
static int is_proc(const char *filename, const char *entry)
{
    return strcmp(filename, entry) == 0;
}

static int open_net_route(void *cpu_env, int fd)
{
    FILE *fp;
    char *line = NULL;
    size_t len = 0;
    ssize_t read;

    fp = fopen("/proc/net/route", "r");
    if (fp == NULL) {
        return -EACCES;
    }

    /* read header */

    read = getline(&line, &len, fp);
    dprintf(fd, "%s", line);

    /* read routes */

    while ((read = getline(&line, &len, fp)) != -1) {
        char iface[16];
        uint32_t dest, gw, mask;
        unsigned int flags, refcnt, use, metric, mtu, window, irtt;
        sscanf(line, "%s\t%08x\t%08x\t%04x\t%d\t%d\t%d\t%08x\t%d\t%u\t%u\n",
                     iface, &dest, &gw, &flags, &refcnt, &use, &metric,
                     &mask, &mtu, &window, &irtt);
        dprintf(fd, "%s\t%08x\t%08x\t%04x\t%d\t%d\t%d\t%08x\t%d\t%u\t%u\n",
                iface, tswap32(dest), tswap32(gw), flags, refcnt, use,
                metric, tswap32(mask), mtu, window, irtt);
    }

    free(line);
    fclose(fp);

    return 0;
}
#endif

5096 5097 5098 5099 5100
static int do_open(void *cpu_env, const char *pathname, int flags, mode_t mode)
{
    struct fake_open {
        const char *filename;
        int (*fill)(void *cpu_env, int fd);
5101
        int (*cmp)(const char *s1, const char *s2);
5102 5103 5104
    };
    const struct fake_open *fake_open;
    static const struct fake_open fakes[] = {
5105 5106 5107 5108 5109 5110 5111
        { "maps", open_self_maps, is_proc_myself },
        { "stat", open_self_stat, is_proc_myself },
        { "auxv", open_self_auxv, is_proc_myself },
#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
        { "/proc/net/route", open_net_route, is_proc },
#endif
        { NULL, NULL, NULL }
5112 5113 5114
    };

    for (fake_open = fakes; fake_open->filename; fake_open++) {
5115
        if (fake_open->cmp(pathname, fake_open->filename)) {
5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147
            break;
        }
    }

    if (fake_open->filename) {
        const char *tmpdir;
        char filename[PATH_MAX];
        int fd, r;

        /* create temporary file to map stat to */
        tmpdir = getenv("TMPDIR");
        if (!tmpdir)
            tmpdir = "/tmp";
        snprintf(filename, sizeof(filename), "%s/qemu-open.XXXXXX", tmpdir);
        fd = mkstemp(filename);
        if (fd < 0) {
            return fd;
        }
        unlink(filename);

        if ((r = fake_open->fill(cpu_env, fd))) {
            close(fd);
            return r;
        }
        lseek(fd, 0, SEEK_SET);

        return fd;
    }

    return get_errno(open(path(pathname), flags, mode));
}

5148 5149 5150
/* 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>. */
5151 5152
abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
                    abi_long arg2, abi_long arg3, abi_long arg4,
5153 5154
                    abi_long arg5, abi_long arg6, abi_long arg7,
                    abi_long arg8)
5155
{
5156
    CPUState *cpu = ENV_GET_CPU(cpu_env);
5157
    abi_long ret;
5158
    struct stat st;
B
bellard 已提交
5159
    struct statfs stfs;
5160
    void *p;
5161

B
bellard 已提交
5162
#ifdef DEBUG
B
bellard 已提交
5163
    gemu_log("syscall %d", num);
B
bellard 已提交
5164
#endif
5165 5166 5167
    if(do_strace)
        print_syscall(num, arg1, arg2, arg3, arg4, arg5, arg6);

5168 5169
    switch(num) {
    case TARGET_NR_exit:
5170 5171 5172 5173 5174 5175
        /* In old applications this may be used to implement _exit(2).
           However in threaded applictions it is used for thread termination,
           and _exit_group is used for application termination.
           Do thread termination if we have more then one thread.  */
        /* FIXME: This probably breaks if a signal arrives.  We should probably
           be disabling signals.  */
A
Andreas Färber 已提交
5176
        if (CPU_NEXT(first_cpu)) {
5177 5178 5179 5180
            TaskState *ts;

            cpu_list_lock();
            /* Remove the CPU from the list.  */
A
Andreas Färber 已提交
5181
            QTAILQ_REMOVE(&cpus, cpu, node);
5182 5183 5184 5185 5186 5187 5188
            cpu_list_unlock();
            ts = ((CPUArchState *)cpu_env)->opaque;
            if (ts->child_tidptr) {
                put_user_u32(0, ts->child_tidptr);
                sys_futex(g2h(ts->child_tidptr), FUTEX_WAKE, INT_MAX,
                          NULL, NULL, 0);
            }
5189
            thread_cpu = NULL;
5190 5191 5192 5193
            object_unref(OBJECT(ENV_GET_CPU(cpu_env)));
            g_free(ts);
            pthread_exit(NULL);
        }
5194
#ifdef TARGET_GPROF
B
bellard 已提交
5195 5196
        _mcleanup();
#endif
5197
        gdb_exit(cpu_env, arg1);
5198
        _exit(arg1);
5199 5200 5201
        ret = 0; /* avoid warning */
        break;
    case TARGET_NR_read:
5202 5203 5204 5205 5206 5207 5208 5209
        if (arg3 == 0)
            ret = 0;
        else {
            if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
                goto efault;
            ret = get_errno(read(arg1, p, arg3));
            unlock_user(p, arg2, ret);
        }
5210 5211
        break;
    case TARGET_NR_write:
5212 5213
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
5214 5215
        ret = get_errno(write(arg1, p, arg3));
        unlock_user(p, arg2, 0);
5216 5217
        break;
    case TARGET_NR_open:
5218 5219
        if (!(p = lock_user_string(arg1)))
            goto efault;
5220 5221 5222
        ret = get_errno(do_open(cpu_env, p,
                                target_to_host_bitmask(arg2, fcntl_flags_tbl),
                                arg3));
5223
        unlock_user(p, arg1, 0);
5224
        break;
5225 5226
#if defined(TARGET_NR_openat) && defined(__NR_openat)
    case TARGET_NR_openat:
5227 5228 5229 5230 5231 5232 5233
        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);
5234 5235
        break;
#endif
5236 5237 5238 5239
    case TARGET_NR_close:
        ret = get_errno(close(arg1));
        break;
    case TARGET_NR_brk:
5240
        ret = do_brk(arg1);
5241 5242
        break;
    case TARGET_NR_fork:
P
pbrook 已提交
5243
        ret = get_errno(do_fork(cpu_env, SIGCHLD, 0, 0, 0, 0));
5244
        break;
5245
#ifdef TARGET_NR_waitpid
5246 5247
    case TARGET_NR_waitpid:
        {
5248 5249
            int status;
            ret = get_errno(waitpid(arg1, &status, arg3));
5250
            if (!is_error(ret) && arg2 && ret
P
pbrook 已提交
5251
                && put_user_s32(host_to_target_waitstatus(status), arg2))
5252
                goto efault;
5253 5254
        }
        break;
5255
#endif
P
pbrook 已提交
5256 5257 5258 5259 5260 5261 5262
#ifdef TARGET_NR_waitid
    case TARGET_NR_waitid:
        {
            siginfo_t info;
            info.si_pid = 0;
            ret = get_errno(waitid(arg1, arg2, &info, arg4));
            if (!is_error(ret) && arg3 && info.si_pid != 0) {
A
Anthony Liguori 已提交
5263
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_siginfo_t), 0)))
P
pbrook 已提交
5264 5265
                    goto efault;
                host_to_target_siginfo(p, &info);
A
Anthony Liguori 已提交
5266
                unlock_user(p, arg3, sizeof(target_siginfo_t));
P
pbrook 已提交
5267 5268 5269 5270
            }
        }
        break;
#endif
5271
#ifdef TARGET_NR_creat /* not on alpha */
5272
    case TARGET_NR_creat:
5273 5274
        if (!(p = lock_user_string(arg1)))
            goto efault;
5275 5276
        ret = get_errno(creat(p, arg2));
        unlock_user(p, arg1, 0);
5277
        break;
5278
#endif
5279
    case TARGET_NR_link:
5280 5281 5282 5283
        {
            void * p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
5284 5285 5286 5287
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(link(p, p2));
5288 5289 5290
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
5291
        break;
5292
#if defined(TARGET_NR_linkat)
5293 5294 5295
    case TARGET_NR_linkat:
        {
            void * p2 = NULL;
5296 5297
            if (!arg2 || !arg4)
                goto efault;
5298 5299
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
5300
            if (!p || !p2)
5301
                ret = -TARGET_EFAULT;
5302
            else
5303
                ret = get_errno(linkat(arg1, p, arg3, p2, arg5));
5304 5305
            unlock_user(p, arg2, 0);
            unlock_user(p2, arg4, 0);
5306 5307 5308
        }
        break;
#endif
5309
    case TARGET_NR_unlink:
5310 5311
        if (!(p = lock_user_string(arg1)))
            goto efault;
5312 5313
        ret = get_errno(unlink(p));
        unlock_user(p, arg1, 0);
5314
        break;
5315
#if defined(TARGET_NR_unlinkat)
5316
    case TARGET_NR_unlinkat:
5317 5318
        if (!(p = lock_user_string(arg2)))
            goto efault;
5319
        ret = get_errno(unlinkat(arg1, p, arg3));
5320
        unlock_user(p, arg2, 0);
5321
        break;
5322
#endif
5323
    case TARGET_NR_execve:
B
bellard 已提交
5324 5325
        {
            char **argp, **envp;
B
bellard 已提交
5326
            int argc, envc;
5327 5328 5329 5330
            abi_ulong gp;
            abi_ulong guest_argp;
            abi_ulong guest_envp;
            abi_ulong addr;
B
bellard 已提交
5331
            char **q;
5332
            int total_size = 0;
B
bellard 已提交
5333

B
bellard 已提交
5334
            argc = 0;
5335
            guest_argp = arg2;
5336
            for (gp = guest_argp; gp; gp += sizeof(abi_ulong)) {
5337
                if (get_user_ual(addr, gp))
5338
                    goto efault;
5339
                if (!addr)
5340
                    break;
B
bellard 已提交
5341
                argc++;
5342
            }
B
bellard 已提交
5343
            envc = 0;
5344
            guest_envp = arg3;
5345
            for (gp = guest_envp; gp; gp += sizeof(abi_ulong)) {
5346
                if (get_user_ual(addr, gp))
5347
                    goto efault;
5348
                if (!addr)
5349
                    break;
B
bellard 已提交
5350
                envc++;
5351
            }
B
bellard 已提交
5352

B
bellard 已提交
5353 5354
            argp = alloca((argc + 1) * sizeof(void *));
            envp = alloca((envc + 1) * sizeof(void *));
B
bellard 已提交
5355

5356
            for (gp = guest_argp, q = argp; gp;
5357
                  gp += sizeof(abi_ulong), q++) {
5358 5359
                if (get_user_ual(addr, gp))
                    goto execve_efault;
5360 5361
                if (!addr)
                    break;
5362 5363
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
5364
                total_size += strlen(*q) + 1;
5365
            }
B
bellard 已提交
5366 5367
            *q = NULL;

5368
            for (gp = guest_envp, q = envp; gp;
5369
                  gp += sizeof(abi_ulong), q++) {
5370 5371
                if (get_user_ual(addr, gp))
                    goto execve_efault;
5372 5373
                if (!addr)
                    break;
5374 5375
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
5376
                total_size += strlen(*q) + 1;
5377
            }
B
bellard 已提交
5378
            *q = NULL;
B
bellard 已提交
5379

5380 5381 5382 5383 5384 5385
            /* This case will not be caught by the host's execve() if its
               page size is bigger than the target's. */
            if (total_size > MAX_ARG_PAGES * TARGET_PAGE_SIZE) {
                ret = -TARGET_E2BIG;
                goto execve_end;
            }
5386 5387
            if (!(p = lock_user_string(arg1)))
                goto execve_efault;
5388 5389 5390
            ret = get_errno(execve(p, argp, envp));
            unlock_user(p, arg1, 0);

5391 5392 5393 5394 5395 5396
            goto execve_end;

        execve_efault:
            ret = -TARGET_EFAULT;

        execve_end:
5397
            for (gp = guest_argp, q = argp; *q;
5398
                  gp += sizeof(abi_ulong), q++) {
5399 5400 5401
                if (get_user_ual(addr, gp)
                    || !addr)
                    break;
5402 5403 5404
                unlock_user(*q, addr, 0);
            }
            for (gp = guest_envp, q = envp; *q;
5405
                  gp += sizeof(abi_ulong), q++) {
5406 5407 5408
                if (get_user_ual(addr, gp)
                    || !addr)
                    break;
5409 5410
                unlock_user(*q, addr, 0);
            }
B
bellard 已提交
5411
        }
5412 5413
        break;
    case TARGET_NR_chdir:
5414 5415
        if (!(p = lock_user_string(arg1)))
            goto efault;
5416 5417
        ret = get_errno(chdir(p));
        unlock_user(p, arg1, 0);
5418
        break;
B
bellard 已提交
5419
#ifdef TARGET_NR_time
5420 5421
    case TARGET_NR_time:
        {
5422 5423
            time_t host_time;
            ret = get_errno(time(&host_time));
5424 5425 5426 5427
            if (!is_error(ret)
                && arg1
                && put_user_sal(host_time, arg1))
                goto efault;
5428 5429
        }
        break;
B
bellard 已提交
5430
#endif
5431
    case TARGET_NR_mknod:
5432 5433
        if (!(p = lock_user_string(arg1)))
            goto efault;
5434 5435
        ret = get_errno(mknod(p, arg2, arg3));
        unlock_user(p, arg1, 0);
5436
        break;
5437
#if defined(TARGET_NR_mknodat)
5438
    case TARGET_NR_mknodat:
5439 5440
        if (!(p = lock_user_string(arg2)))
            goto efault;
5441
        ret = get_errno(mknodat(arg1, p, arg3, arg4));
5442
        unlock_user(p, arg2, 0);
5443 5444
        break;
#endif
5445
    case TARGET_NR_chmod:
5446 5447
        if (!(p = lock_user_string(arg1)))
            goto efault;
5448 5449
        ret = get_errno(chmod(p, arg2));
        unlock_user(p, arg1, 0);
5450
        break;
5451
#ifdef TARGET_NR_break
5452 5453
    case TARGET_NR_break:
        goto unimplemented;
5454 5455
#endif
#ifdef TARGET_NR_oldstat
5456 5457
    case TARGET_NR_oldstat:
        goto unimplemented;
5458
#endif
5459 5460 5461
    case TARGET_NR_lseek:
        ret = get_errno(lseek(arg1, arg2, arg3));
        break;
5462 5463
#if defined(TARGET_NR_getxpid) && defined(TARGET_ALPHA)
    /* Alpha specific */
5464
    case TARGET_NR_getxpid:
5465 5466 5467
        ((CPUAlphaState *)cpu_env)->ir[IR_A4] = getppid();
        ret = get_errno(getpid());
        break;
5468
#endif
5469 5470
#ifdef TARGET_NR_getpid
    case TARGET_NR_getpid:
5471 5472
        ret = get_errno(getpid());
        break;
5473
#endif
5474
    case TARGET_NR_mount:
5475 5476 5477 5478 5479 5480
		{
			/* 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);
5481 5482
                        if (!p || !p2 || !p3)
                            ret = -TARGET_EFAULT;
5483
                        else {
5484 5485 5486 5487
                            /* 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.
                             */
5488 5489 5490 5491 5492
                            if ( ! arg5 )
                                ret = get_errno(mount(p, p2, p3, (unsigned long)arg4, NULL));
                            else
                                ret = get_errno(mount(p, p2, p3, (unsigned long)arg4, g2h(arg5)));
                        }
5493 5494 5495
                        unlock_user(p, arg1, 0);
                        unlock_user(p2, arg2, 0);
                        unlock_user(p3, arg3, 0);
5496 5497
			break;
		}
5498
#ifdef TARGET_NR_umount
5499
    case TARGET_NR_umount:
5500 5501
        if (!(p = lock_user_string(arg1)))
            goto efault;
5502 5503
        ret = get_errno(umount(p));
        unlock_user(p, arg1, 0);
5504
        break;
5505
#endif
5506
#ifdef TARGET_NR_stime /* not on alpha */
5507 5508
    case TARGET_NR_stime:
        {
5509
            time_t host_time;
5510 5511
            if (get_user_sal(host_time, arg1))
                goto efault;
5512
            ret = get_errno(stime(&host_time));
5513 5514
        }
        break;
5515
#endif
5516 5517
    case TARGET_NR_ptrace:
        goto unimplemented;
5518
#ifdef TARGET_NR_alarm /* not on alpha */
5519 5520 5521
    case TARGET_NR_alarm:
        ret = alarm(arg1);
        break;
5522
#endif
5523
#ifdef TARGET_NR_oldfstat
5524 5525
    case TARGET_NR_oldfstat:
        goto unimplemented;
5526
#endif
5527
#ifdef TARGET_NR_pause /* not on alpha */
5528 5529 5530
    case TARGET_NR_pause:
        ret = get_errno(pause());
        break;
5531
#endif
5532
#ifdef TARGET_NR_utime
5533
    case TARGET_NR_utime:
5534
        {
5535 5536 5537
            struct utimbuf tbuf, *host_tbuf;
            struct target_utimbuf *target_tbuf;
            if (arg2) {
5538 5539
                if (!lock_user_struct(VERIFY_READ, target_tbuf, arg2, 1))
                    goto efault;
5540 5541
                tbuf.actime = tswapal(target_tbuf->actime);
                tbuf.modtime = tswapal(target_tbuf->modtime);
5542 5543
                unlock_user_struct(target_tbuf, arg2, 0);
                host_tbuf = &tbuf;
B
bellard 已提交
5544
            } else {
5545
                host_tbuf = NULL;
B
bellard 已提交
5546
            }
5547 5548
            if (!(p = lock_user_string(arg1)))
                goto efault;
5549 5550
            ret = get_errno(utime(p, host_tbuf));
            unlock_user(p, arg1, 0);
5551 5552
        }
        break;
5553
#endif
B
bellard 已提交
5554 5555 5556
    case TARGET_NR_utimes:
        {
            struct timeval *tvp, tv[2];
5557
            if (arg2) {
5558 5559 5560 5561
                if (copy_from_user_timeval(&tv[0], arg2)
                    || copy_from_user_timeval(&tv[1],
                                              arg2 + sizeof(struct target_timeval)))
                    goto efault;
B
bellard 已提交
5562 5563 5564 5565
                tvp = tv;
            } else {
                tvp = NULL;
            }
5566 5567
            if (!(p = lock_user_string(arg1)))
                goto efault;
5568 5569
            ret = get_errno(utimes(p, tvp));
            unlock_user(p, arg1, 0);
B
bellard 已提交
5570 5571
        }
        break;
5572
#if defined(TARGET_NR_futimesat)
5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586
    case TARGET_NR_futimesat:
        {
            struct timeval *tvp, tv[2];
            if (arg3) {
                if (copy_from_user_timeval(&tv[0], arg3)
                    || copy_from_user_timeval(&tv[1],
                                              arg3 + sizeof(struct target_timeval)))
                    goto efault;
                tvp = tv;
            } else {
                tvp = NULL;
            }
            if (!(p = lock_user_string(arg2)))
                goto efault;
5587
            ret = get_errno(futimesat(arg1, path(p), tvp));
5588 5589 5590 5591
            unlock_user(p, arg2, 0);
        }
        break;
#endif
5592
#ifdef TARGET_NR_stty
5593 5594
    case TARGET_NR_stty:
        goto unimplemented;
5595 5596
#endif
#ifdef TARGET_NR_gtty
5597 5598
    case TARGET_NR_gtty:
        goto unimplemented;
5599
#endif
5600
    case TARGET_NR_access:
5601 5602
        if (!(p = lock_user_string(arg1)))
            goto efault;
U
Ulrich Hecht 已提交
5603
        ret = get_errno(access(path(p), arg2));
5604
        unlock_user(p, arg1, 0);
5605
        break;
5606 5607
#if defined(TARGET_NR_faccessat) && defined(__NR_faccessat)
    case TARGET_NR_faccessat:
5608 5609
        if (!(p = lock_user_string(arg2)))
            goto efault;
5610
        ret = get_errno(faccessat(arg1, p, arg3, 0));
5611
        unlock_user(p, arg2, 0);
5612 5613
        break;
#endif
5614
#ifdef TARGET_NR_nice /* not on alpha */
5615 5616 5617
    case TARGET_NR_nice:
        ret = get_errno(nice(arg1));
        break;
5618
#endif
5619
#ifdef TARGET_NR_ftime
5620 5621
    case TARGET_NR_ftime:
        goto unimplemented;
5622
#endif
5623
    case TARGET_NR_sync:
B
bellard 已提交
5624 5625
        sync();
        ret = 0;
5626 5627
        break;
    case TARGET_NR_kill:
5628
        ret = get_errno(kill(arg1, target_to_host_signal(arg2)));
5629 5630
        break;
    case TARGET_NR_rename:
5631 5632 5633 5634
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
5635 5636 5637 5638
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(rename(p, p2));
5639 5640 5641
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
5642
        break;
5643
#if defined(TARGET_NR_renameat)
5644 5645
    case TARGET_NR_renameat:
        {
5646
            void *p2;
5647 5648
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
5649
            if (!p || !p2)
5650
                ret = -TARGET_EFAULT;
5651
            else
5652
                ret = get_errno(renameat(arg1, p, arg3, p2));
5653 5654
            unlock_user(p2, arg4, 0);
            unlock_user(p, arg2, 0);
5655 5656 5657
        }
        break;
#endif
5658
    case TARGET_NR_mkdir:
5659 5660
        if (!(p = lock_user_string(arg1)))
            goto efault;
5661 5662
        ret = get_errno(mkdir(p, arg2));
        unlock_user(p, arg1, 0);
5663
        break;
5664
#if defined(TARGET_NR_mkdirat)
5665
    case TARGET_NR_mkdirat:
5666 5667
        if (!(p = lock_user_string(arg2)))
            goto efault;
5668
        ret = get_errno(mkdirat(arg1, p, arg3));
5669
        unlock_user(p, arg2, 0);
5670 5671
        break;
#endif
5672
    case TARGET_NR_rmdir:
5673 5674
        if (!(p = lock_user_string(arg1)))
            goto efault;
5675 5676
        ret = get_errno(rmdir(p));
        unlock_user(p, arg1, 0);
5677 5678 5679 5680 5681
        break;
    case TARGET_NR_dup:
        ret = get_errno(dup(arg1));
        break;
    case TARGET_NR_pipe:
5682
        ret = do_pipe(cpu_env, arg1, 0, 0);
R
Riku Voipio 已提交
5683 5684 5685
        break;
#ifdef TARGET_NR_pipe2
    case TARGET_NR_pipe2:
5686 5687
        ret = do_pipe(cpu_env, arg1,
                      target_to_host_bitmask(arg2, fcntl_flags_tbl), 1);
5688
        break;
R
Riku Voipio 已提交
5689
#endif
5690
    case TARGET_NR_times:
B
bellard 已提交
5691
        {
5692
            struct target_tms *tmsp;
B
bellard 已提交
5693 5694
            struct tms tms;
            ret = get_errno(times(&tms));
5695
            if (arg1) {
5696 5697 5698
                tmsp = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_tms), 0);
                if (!tmsp)
                    goto efault;
5699 5700 5701 5702
                tmsp->tms_utime = tswapal(host_to_target_clock_t(tms.tms_utime));
                tmsp->tms_stime = tswapal(host_to_target_clock_t(tms.tms_stime));
                tmsp->tms_cutime = tswapal(host_to_target_clock_t(tms.tms_cutime));
                tmsp->tms_cstime = tswapal(host_to_target_clock_t(tms.tms_cstime));
B
bellard 已提交
5703
            }
B
bellard 已提交
5704 5705
            if (!is_error(ret))
                ret = host_to_target_clock_t(ret);
B
bellard 已提交
5706 5707
        }
        break;
5708
#ifdef TARGET_NR_prof
5709 5710
    case TARGET_NR_prof:
        goto unimplemented;
5711
#endif
5712
#ifdef TARGET_NR_signal
5713 5714
    case TARGET_NR_signal:
        goto unimplemented;
5715
#endif
5716
    case TARGET_NR_acct:
5717 5718 5719 5720 5721 5722 5723 5724
        if (arg1 == 0) {
            ret = get_errno(acct(NULL));
        } else {
            if (!(p = lock_user_string(arg1)))
                goto efault;
            ret = get_errno(acct(path(p)));
            unlock_user(p, arg1, 0);
        }
5725
        break;
5726
#ifdef TARGET_NR_umount2
5727
    case TARGET_NR_umount2:
5728 5729
        if (!(p = lock_user_string(arg1)))
            goto efault;
5730 5731
        ret = get_errno(umount2(p, arg2));
        unlock_user(p, arg1, 0);
5732
        break;
5733
#endif
5734
#ifdef TARGET_NR_lock
5735 5736
    case TARGET_NR_lock:
        goto unimplemented;
5737
#endif
5738 5739 5740 5741
    case TARGET_NR_ioctl:
        ret = do_ioctl(arg1, arg2, arg3);
        break;
    case TARGET_NR_fcntl:
B
bellard 已提交
5742
        ret = do_fcntl(arg1, arg2, arg3);
5743
        break;
5744
#ifdef TARGET_NR_mpx
5745 5746
    case TARGET_NR_mpx:
        goto unimplemented;
5747
#endif
5748 5749 5750
    case TARGET_NR_setpgid:
        ret = get_errno(setpgid(arg1, arg2));
        break;
5751
#ifdef TARGET_NR_ulimit
5752 5753
    case TARGET_NR_ulimit:
        goto unimplemented;
5754 5755
#endif
#ifdef TARGET_NR_oldolduname
5756 5757
    case TARGET_NR_oldolduname:
        goto unimplemented;
5758
#endif
5759 5760 5761 5762
    case TARGET_NR_umask:
        ret = get_errno(umask(arg1));
        break;
    case TARGET_NR_chroot:
5763 5764
        if (!(p = lock_user_string(arg1)))
            goto efault;
5765 5766
        ret = get_errno(chroot(p));
        unlock_user(p, arg1, 0);
5767 5768 5769 5770 5771 5772
        break;
    case TARGET_NR_ustat:
        goto unimplemented;
    case TARGET_NR_dup2:
        ret = get_errno(dup2(arg1, arg2));
        break;
5773 5774 5775 5776 5777
#if defined(CONFIG_DUP3) && defined(TARGET_NR_dup3)
    case TARGET_NR_dup3:
        ret = get_errno(dup3(arg1, arg2, arg3));
        break;
#endif
5778
#ifdef TARGET_NR_getppid /* not on alpha */
5779 5780 5781
    case TARGET_NR_getppid:
        ret = get_errno(getppid());
        break;
5782
#endif
5783 5784 5785 5786 5787 5788
    case TARGET_NR_getpgrp:
        ret = get_errno(getpgrp());
        break;
    case TARGET_NR_setsid:
        ret = get_errno(setsid());
        break;
5789
#ifdef TARGET_NR_sigaction
5790 5791
    case TARGET_NR_sigaction:
        {
5792 5793
#if defined(TARGET_ALPHA)
            struct target_sigaction act, oact, *pact = 0;
5794 5795
            struct target_old_sigaction *old_act;
            if (arg2) {
5796 5797
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
B
bellard 已提交
5798 5799 5800
                act._sa_handler = old_act->_sa_handler;
                target_siginitset(&act.sa_mask, old_act->sa_mask);
                act.sa_flags = old_act->sa_flags;
5801
                act.sa_restorer = 0;
5802
                unlock_user_struct(old_act, arg2, 0);
B
bellard 已提交
5803 5804 5805
                pact = &act;
            }
            ret = get_errno(do_sigaction(arg1, pact, &oact));
5806
            if (!is_error(ret) && arg3) {
5807 5808
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
5809 5810 5811 5812
                old_act->_sa_handler = oact._sa_handler;
                old_act->sa_mask = oact.sa_mask.sig[0];
                old_act->sa_flags = oact.sa_flags;
                unlock_user_struct(old_act, arg3, 1);
B
bellard 已提交
5813
            }
5814
#elif defined(TARGET_MIPS)
5815 5816 5817
	    struct target_sigaction act, oact, *pact, *old_act;

	    if (arg2) {
5818 5819
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831
		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) {
5832 5833
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
5834 5835 5836 5837 5838 5839 5840 5841
		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);
	    }
5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866
#else
            struct target_old_sigaction *old_act;
            struct target_sigaction act, oact, *pact;
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
                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;
                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) {
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
                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);
            }
T
ths 已提交
5867
#endif
5868 5869
        }
        break;
5870
#endif
B
bellard 已提交
5871
    case TARGET_NR_rt_sigaction:
5872
        {
5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896
#if defined(TARGET_ALPHA)
            struct target_sigaction act, oact, *pact = 0;
            struct target_rt_sigaction *rt_act;
            /* ??? arg4 == sizeof(sigset_t).  */
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, rt_act, arg2, 1))
                    goto efault;
                act._sa_handler = rt_act->_sa_handler;
                act.sa_mask = rt_act->sa_mask;
                act.sa_flags = rt_act->sa_flags;
                act.sa_restorer = arg5;
                unlock_user_struct(rt_act, arg2, 0);
                pact = &act;
            }
            ret = get_errno(do_sigaction(arg1, pact, &oact));
            if (!is_error(ret) && arg3) {
                if (!lock_user_struct(VERIFY_WRITE, rt_act, arg3, 0))
                    goto efault;
                rt_act->_sa_handler = oact._sa_handler;
                rt_act->sa_mask = oact.sa_mask;
                rt_act->sa_flags = oact.sa_flags;
                unlock_user_struct(rt_act, arg3, 1);
            }
#else
5897 5898 5899
            struct target_sigaction *act;
            struct target_sigaction *oact;

5900 5901 5902 5903
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, act, arg2, 1))
                    goto efault;
            } else
5904
                act = NULL;
5905 5906 5907 5908 5909 5910
            if (arg3) {
                if (!lock_user_struct(VERIFY_WRITE, oact, arg3, 0)) {
                    ret = -TARGET_EFAULT;
                    goto rt_sigaction_fail;
                }
            } else
5911 5912
                oact = NULL;
            ret = get_errno(do_sigaction(arg1, act, oact));
5913 5914
	rt_sigaction_fail:
            if (act)
5915
                unlock_user_struct(act, arg2, 0);
5916
            if (oact)
5917
                unlock_user_struct(oact, arg3, 1);
5918
#endif
5919
        }
B
bellard 已提交
5920
        break;
5921
#ifdef TARGET_NR_sgetmask /* not on alpha */
5922
    case TARGET_NR_sgetmask:
B
bellard 已提交
5923 5924
        {
            sigset_t cur_set;
5925
            abi_ulong target_set;
B
bellard 已提交
5926 5927 5928 5929 5930
            sigprocmask(0, NULL, &cur_set);
            host_to_target_old_sigset(&target_set, &cur_set);
            ret = target_set;
        }
        break;
5931 5932
#endif
#ifdef TARGET_NR_ssetmask /* not on alpha */
5933
    case TARGET_NR_ssetmask:
B
bellard 已提交
5934 5935
        {
            sigset_t set, oset, cur_set;
5936
            abi_ulong target_set = arg1;
B
bellard 已提交
5937 5938 5939 5940 5941 5942 5943 5944
            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;
5945
#endif
5946
#ifdef TARGET_NR_sigprocmask
B
bellard 已提交
5947 5948
    case TARGET_NR_sigprocmask:
        {
5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974
#if defined(TARGET_ALPHA)
            sigset_t set, oldset;
            abi_ulong mask;
            int how;

            switch (arg1) {
            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:
                ret = -TARGET_EINVAL;
                goto fail;
            }
            mask = arg2;
            target_to_host_old_sigset(&set, &mask);

            ret = get_errno(sigprocmask(how, &set, &oldset));
            if (!is_error(ret)) {
                host_to_target_old_sigset(&mask, &oldset);
                ret = mask;
5975
                ((CPUAlphaState *)cpu_env)->ir[IR_V0] = 0; /* force no error */
5976 5977
            }
#else
B
bellard 已提交
5978
            sigset_t set, oldset, *set_ptr;
5979
            int how;
5980

5981
            if (arg2) {
5982
                switch (arg1) {
B
bellard 已提交
5983 5984 5985 5986 5987 5988 5989 5990 5991 5992
                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:
5993
                    ret = -TARGET_EINVAL;
B
bellard 已提交
5994 5995
                    goto fail;
                }
A
Anthony Liguori 已提交
5996
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
5997
                    goto efault;
5998 5999
                target_to_host_old_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
6000 6001 6002 6003 6004
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
6005
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
6006
            if (!is_error(ret) && arg3) {
A
Anthony Liguori 已提交
6007
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
6008
                    goto efault;
6009
                host_to_target_old_sigset(p, &oldset);
A
Anthony Liguori 已提交
6010
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
6011
            }
6012
#endif
B
bellard 已提交
6013 6014
        }
        break;
6015
#endif
B
bellard 已提交
6016 6017 6018 6019
    case TARGET_NR_rt_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
6020

6021
            if (arg2) {
B
bellard 已提交
6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032
                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:
6033
                    ret = -TARGET_EINVAL;
B
bellard 已提交
6034 6035
                    goto fail;
                }
A
Anthony Liguori 已提交
6036
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
6037
                    goto efault;
6038 6039
                target_to_host_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
6040 6041 6042 6043 6044 6045
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
6046
            if (!is_error(ret) && arg3) {
A
Anthony Liguori 已提交
6047
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
6048
                    goto efault;
6049
                host_to_target_sigset(p, &oldset);
A
Anthony Liguori 已提交
6050
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
6051 6052 6053
            }
        }
        break;
6054
#ifdef TARGET_NR_sigpending
B
bellard 已提交
6055 6056 6057 6058 6059
    case TARGET_NR_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
A
Anthony Liguori 已提交
6060
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
6061
                    goto efault;
6062
                host_to_target_old_sigset(p, &set);
A
Anthony Liguori 已提交
6063
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
6064 6065 6066
            }
        }
        break;
6067
#endif
B
bellard 已提交
6068 6069 6070 6071 6072
    case TARGET_NR_rt_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
A
Anthony Liguori 已提交
6073
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
6074
                    goto efault;
6075
                host_to_target_sigset(p, &set);
A
Anthony Liguori 已提交
6076
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
6077 6078 6079
            }
        }
        break;
6080
#ifdef TARGET_NR_sigsuspend
B
bellard 已提交
6081 6082 6083
    case TARGET_NR_sigsuspend:
        {
            sigset_t set;
6084 6085 6086 6087
#if defined(TARGET_ALPHA)
            abi_ulong mask = arg1;
            target_to_host_old_sigset(&set, &mask);
#else
A
Anthony Liguori 已提交
6088
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6089
                goto efault;
6090 6091
            target_to_host_old_sigset(&set, p);
            unlock_user(p, arg1, 0);
6092
#endif
B
bellard 已提交
6093 6094 6095
            ret = get_errno(sigsuspend(&set));
        }
        break;
6096
#endif
B
bellard 已提交
6097 6098 6099
    case TARGET_NR_rt_sigsuspend:
        {
            sigset_t set;
A
Anthony Liguori 已提交
6100
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6101
                goto efault;
6102 6103
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
6104 6105 6106 6107 6108 6109 6110 6111
            ret = get_errno(sigsuspend(&set));
        }
        break;
    case TARGET_NR_rt_sigtimedwait:
        {
            sigset_t set;
            struct timespec uts, *puts;
            siginfo_t uinfo;
6112

A
Anthony Liguori 已提交
6113
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6114
                goto efault;
6115 6116 6117
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
            if (arg3) {
B
bellard 已提交
6118
                puts = &uts;
6119
                target_to_host_timespec(puts, arg3);
B
bellard 已提交
6120 6121 6122 6123
            } else {
                puts = NULL;
            }
            ret = get_errno(sigtimedwait(&set, &uinfo, puts));
6124
            if (!is_error(ret) && arg2) {
A
Anthony Liguori 已提交
6125
                if (!(p = lock_user(VERIFY_WRITE, arg2, sizeof(target_siginfo_t), 0)))
6126
                    goto efault;
6127
                host_to_target_siginfo(p, &uinfo);
A
Anthony Liguori 已提交
6128
                unlock_user(p, arg2, sizeof(target_siginfo_t));
B
bellard 已提交
6129 6130 6131 6132 6133 6134
            }
        }
        break;
    case TARGET_NR_rt_sigqueueinfo:
        {
            siginfo_t uinfo;
A
Anthony Liguori 已提交
6135
            if (!(p = lock_user(VERIFY_READ, arg3, sizeof(target_sigset_t), 1)))
6136
                goto efault;
6137 6138
            target_to_host_siginfo(&uinfo, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
6139 6140 6141
            ret = get_errno(sys_rt_sigqueueinfo(arg1, arg2, &uinfo));
        }
        break;
6142
#ifdef TARGET_NR_sigreturn
B
bellard 已提交
6143 6144 6145 6146
    case TARGET_NR_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_sigreturn(cpu_env);
        break;
6147
#endif
B
bellard 已提交
6148 6149 6150 6151
    case TARGET_NR_rt_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_rt_sigreturn(cpu_env);
        break;
6152
    case TARGET_NR_sethostname:
6153 6154
        if (!(p = lock_user_string(arg1)))
            goto efault;
6155 6156
        ret = get_errno(sethostname(p, arg2));
        unlock_user(p, arg1, 0);
6157 6158
        break;
    case TARGET_NR_setrlimit:
B
bellard 已提交
6159
        {
6160
            int resource = target_to_host_resource(arg1);
6161
            struct target_rlimit *target_rlim;
B
bellard 已提交
6162
            struct rlimit rlim;
6163 6164
            if (!lock_user_struct(VERIFY_READ, target_rlim, arg2, 1))
                goto efault;
6165 6166
            rlim.rlim_cur = target_to_host_rlim(target_rlim->rlim_cur);
            rlim.rlim_max = target_to_host_rlim(target_rlim->rlim_max);
6167
            unlock_user_struct(target_rlim, arg2, 0);
B
bellard 已提交
6168 6169 6170
            ret = get_errno(setrlimit(resource, &rlim));
        }
        break;
6171
    case TARGET_NR_getrlimit:
B
bellard 已提交
6172
        {
6173
            int resource = target_to_host_resource(arg1);
6174
            struct target_rlimit *target_rlim;
B
bellard 已提交
6175
            struct rlimit rlim;
6176

B
bellard 已提交
6177 6178
            ret = get_errno(getrlimit(resource, &rlim));
            if (!is_error(ret)) {
6179 6180
                if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                    goto efault;
6181 6182
                target_rlim->rlim_cur = host_to_target_rlim(rlim.rlim_cur);
                target_rlim->rlim_max = host_to_target_rlim(rlim.rlim_max);
6183
                unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
6184 6185 6186
            }
        }
        break;
6187
    case TARGET_NR_getrusage:
B
bellard 已提交
6188 6189 6190 6191
        {
            struct rusage rusage;
            ret = get_errno(getrusage(arg1, &rusage));
            if (!is_error(ret)) {
6192
                host_to_target_rusage(arg2, &rusage);
B
bellard 已提交
6193 6194 6195
            }
        }
        break;
6196 6197 6198 6199 6200
    case TARGET_NR_gettimeofday:
        {
            struct timeval tv;
            ret = get_errno(gettimeofday(&tv, NULL));
            if (!is_error(ret)) {
6201 6202
                if (copy_to_user_timeval(arg1, &tv))
                    goto efault;
6203 6204 6205 6206 6207 6208
            }
        }
        break;
    case TARGET_NR_settimeofday:
        {
            struct timeval tv;
6209 6210
            if (copy_from_user_timeval(&tv, arg1))
                goto efault;
6211 6212 6213
            ret = get_errno(settimeofday(&tv, NULL));
        }
        break;
6214
#if defined(TARGET_NR_select)
6215
    case TARGET_NR_select:
6216 6217 6218
#if defined(TARGET_S390X) || defined(TARGET_ALPHA)
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
#else
B
bellard 已提交
6219
        {
6220
            struct target_sel_arg_struct *sel;
6221
            abi_ulong inp, outp, exp, tvp;
6222 6223
            long nsel;

6224 6225
            if (!lock_user_struct(VERIFY_READ, sel, arg1, 1))
                goto efault;
6226 6227 6228 6229 6230
            nsel = tswapal(sel->n);
            inp = tswapal(sel->inp);
            outp = tswapal(sel->outp);
            exp = tswapal(sel->exp);
            tvp = tswapal(sel->tvp);
6231 6232
            unlock_user_struct(sel, arg1, 0);
            ret = do_select(nsel, inp, outp, exp, tvp);
B
bellard 已提交
6233
        }
6234
#endif
B
bellard 已提交
6235
        break;
6236 6237 6238
#endif
#ifdef TARGET_NR_pselect6
    case TARGET_NR_pselect6:
6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298
        {
            abi_long rfd_addr, wfd_addr, efd_addr, n, ts_addr;
            fd_set rfds, wfds, efds;
            fd_set *rfds_ptr, *wfds_ptr, *efds_ptr;
            struct timespec ts, *ts_ptr;

            /*
             * The 6th arg is actually two args smashed together,
             * so we cannot use the C library.
             */
            sigset_t set;
            struct {
                sigset_t *set;
                size_t size;
            } sig, *sig_ptr;

            abi_ulong arg_sigset, arg_sigsize, *arg7;
            target_sigset_t *target_sigset;

            n = arg1;
            rfd_addr = arg2;
            wfd_addr = arg3;
            efd_addr = arg4;
            ts_addr = arg5;

            ret = copy_from_user_fdset_ptr(&rfds, &rfds_ptr, rfd_addr, n);
            if (ret) {
                goto fail;
            }
            ret = copy_from_user_fdset_ptr(&wfds, &wfds_ptr, wfd_addr, n);
            if (ret) {
                goto fail;
            }
            ret = copy_from_user_fdset_ptr(&efds, &efds_ptr, efd_addr, n);
            if (ret) {
                goto fail;
            }

            /*
             * This takes a timespec, and not a timeval, so we cannot
             * use the do_select() helper ...
             */
            if (ts_addr) {
                if (target_to_host_timespec(&ts, ts_addr)) {
                    goto efault;
                }
                ts_ptr = &ts;
            } else {
                ts_ptr = NULL;
            }

            /* Extract the two packed args for the sigset */
            if (arg6) {
                sig_ptr = &sig;
                sig.size = _NSIG / 8;

                arg7 = lock_user(VERIFY_READ, arg6, sizeof(*arg7) * 2, 1);
                if (!arg7) {
                    goto efault;
                }
6299 6300
                arg_sigset = tswapal(arg7[0]);
                arg_sigsize = tswapal(arg7[1]);
6301 6302 6303 6304
                unlock_user(arg7, arg6, 0);

                if (arg_sigset) {
                    sig.set = &set;
6305 6306 6307 6308 6309
                    if (arg_sigsize != sizeof(*target_sigset)) {
                        /* Like the kernel, we enforce correct size sigsets */
                        ret = -TARGET_EINVAL;
                        goto fail;
                    }
6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339
                    target_sigset = lock_user(VERIFY_READ, arg_sigset,
                                              sizeof(*target_sigset), 1);
                    if (!target_sigset) {
                        goto efault;
                    }
                    target_to_host_sigset(&set, target_sigset);
                    unlock_user(target_sigset, arg_sigset, 0);
                } else {
                    sig.set = NULL;
                }
            } else {
                sig_ptr = NULL;
            }

            ret = get_errno(sys_pselect6(n, rfds_ptr, wfds_ptr, efds_ptr,
                                         ts_ptr, sig_ptr));

            if (!is_error(ret)) {
                if (rfd_addr && copy_to_user_fdset(rfd_addr, &rfds, n))
                    goto efault;
                if (wfd_addr && copy_to_user_fdset(wfd_addr, &wfds, n))
                    goto efault;
                if (efd_addr && copy_to_user_fdset(efd_addr, &efds, n))
                    goto efault;

                if (ts_addr && host_to_target_timespec(ts_addr, &ts))
                    goto efault;
            }
        }
        break;
B
bellard 已提交
6340
#endif
6341
    case TARGET_NR_symlink:
6342 6343 6344 6345
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
6346 6347 6348 6349
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(symlink(p, p2));
6350 6351 6352
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
6353
        break;
6354
#if defined(TARGET_NR_symlinkat)
6355 6356
    case TARGET_NR_symlinkat:
        {
6357
            void *p2;
6358 6359
            p  = lock_user_string(arg1);
            p2 = lock_user_string(arg3);
6360
            if (!p || !p2)
6361
                ret = -TARGET_EFAULT;
6362
            else
6363
                ret = get_errno(symlinkat(p, arg2, p2));
6364 6365
            unlock_user(p2, arg3, 0);
            unlock_user(p, arg1, 0);
6366 6367 6368
        }
        break;
#endif
6369
#ifdef TARGET_NR_oldlstat
6370 6371
    case TARGET_NR_oldlstat:
        goto unimplemented;
6372
#endif
6373
    case TARGET_NR_readlink:
6374
        {
6375
            void *p2;
6376
            p = lock_user_string(arg1);
6377
            p2 = lock_user(VERIFY_WRITE, arg2, arg3, 0);
6378
            if (!p || !p2) {
6379
                ret = -TARGET_EFAULT;
6380 6381 6382 6383 6384 6385 6386
            } else if (is_proc_myself((const char *)p, "exe")) {
                char real[PATH_MAX], *temp;
                temp = realpath(exec_path, real);
                ret = temp == NULL ? get_errno(-1) : strlen(real) ;
                snprintf((char *)p2, arg3, "%s", real);
            } else {
                ret = get_errno(readlink(path(p), p2, arg3));
6387
            }
6388 6389 6390
            unlock_user(p2, arg2, ret);
            unlock_user(p, arg1, 0);
        }
6391
        break;
6392
#if defined(TARGET_NR_readlinkat)
6393 6394
    case TARGET_NR_readlinkat:
        {
6395
            void *p2;
6396
            p  = lock_user_string(arg2);
6397
            p2 = lock_user(VERIFY_WRITE, arg3, arg4, 0);
6398 6399 6400 6401 6402 6403 6404 6405
            if (!p || !p2) {
                ret = -TARGET_EFAULT;
            } else if (is_proc_myself((const char *)p, "exe")) {
                char real[PATH_MAX], *temp;
                temp = realpath(exec_path, real);
                ret = temp == NULL ? get_errno(-1) : strlen(real) ;
                snprintf((char *)p2, arg4, "%s", real);
            } else {
6406
                ret = get_errno(readlinkat(arg1, path(p), p2, arg4));
6407
            }
6408 6409
            unlock_user(p2, arg3, ret);
            unlock_user(p, arg2, 0);
6410 6411 6412
        }
        break;
#endif
6413
#ifdef TARGET_NR_uselib
6414 6415
    case TARGET_NR_uselib:
        goto unimplemented;
6416 6417
#endif
#ifdef TARGET_NR_swapon
6418
    case TARGET_NR_swapon:
6419 6420
        if (!(p = lock_user_string(arg1)))
            goto efault;
6421 6422
        ret = get_errno(swapon(p, arg2));
        unlock_user(p, arg1, 0);
6423
        break;
6424
#endif
6425
    case TARGET_NR_reboot:
L
Laurent Vivier 已提交
6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436
        if (arg3 == LINUX_REBOOT_CMD_RESTART2) {
           /* arg4 must be ignored in all other cases */
           p = lock_user_string(arg4);
           if (!p) {
              goto efault;
           }
           ret = get_errno(reboot(arg1, arg2, arg3, p));
           unlock_user(p, arg4, 0);
        } else {
           ret = get_errno(reboot(arg1, arg2, arg3, NULL));
        }
6437
        break;
6438
#ifdef TARGET_NR_readdir
6439 6440
    case TARGET_NR_readdir:
        goto unimplemented;
6441 6442
#endif
#ifdef TARGET_NR_mmap
6443
    case TARGET_NR_mmap:
6444 6445
#if (defined(TARGET_I386) && defined(TARGET_ABI32)) || \
    (defined(TARGET_ARM) && defined(TARGET_ABI32)) || \
U
Ulrich Hecht 已提交
6446 6447
    defined(TARGET_M68K) || defined(TARGET_CRIS) || defined(TARGET_MICROBLAZE) \
    || defined(TARGET_S390X)
6448
        {
6449 6450
            abi_ulong *v;
            abi_ulong v1, v2, v3, v4, v5, v6;
6451 6452
            if (!(v = lock_user(VERIFY_READ, arg1, 6 * sizeof(abi_ulong), 1)))
                goto efault;
6453 6454 6455 6456 6457 6458
            v1 = tswapal(v[0]);
            v2 = tswapal(v[1]);
            v3 = tswapal(v[2]);
            v4 = tswapal(v[3]);
            v5 = tswapal(v[4]);
            v6 = tswapal(v[5]);
6459
            unlock_user(v, arg1, 0);
6460
            ret = get_errno(target_mmap(v1, v2, v3,
B
bellard 已提交
6461 6462
                                        target_to_host_bitmask(v4, mmap_flags_tbl),
                                        v5, v6));
6463 6464
        }
#else
6465 6466
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
6467 6468
                                    arg5,
                                    arg6));
6469
#endif
B
bellard 已提交
6470
        break;
6471
#endif
B
bellard 已提交
6472
#ifdef TARGET_NR_mmap2
B
bellard 已提交
6473
    case TARGET_NR_mmap2:
P
pbrook 已提交
6474
#ifndef MMAP_SHIFT
B
bellard 已提交
6475 6476
#define MMAP_SHIFT 12
#endif
6477 6478
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
6479
                                    arg5,
B
bellard 已提交
6480
                                    arg6 << MMAP_SHIFT));
6481
        break;
B
bellard 已提交
6482
#endif
6483
    case TARGET_NR_munmap:
B
bellard 已提交
6484
        ret = get_errno(target_munmap(arg1, arg2));
6485
        break;
B
bellard 已提交
6486
    case TARGET_NR_mprotect:
P
Paul Brook 已提交
6487
        {
6488
            TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
P
Paul Brook 已提交
6489 6490 6491 6492 6493 6494 6495 6496 6497
            /* Special hack to detect libc making the stack executable.  */
            if ((arg3 & PROT_GROWSDOWN)
                && arg1 >= ts->info->stack_limit
                && arg1 <= ts->info->start_stack) {
                arg3 &= ~PROT_GROWSDOWN;
                arg2 = arg2 + arg1 - ts->info->stack_limit;
                arg1 = ts->info->stack_limit;
            }
        }
B
bellard 已提交
6498
        ret = get_errno(target_mprotect(arg1, arg2, arg3));
B
bellard 已提交
6499
        break;
6500
#ifdef TARGET_NR_mremap
B
bellard 已提交
6501
    case TARGET_NR_mremap:
B
bellard 已提交
6502
        ret = get_errno(target_mremap(arg1, arg2, arg3, arg4, arg5));
B
bellard 已提交
6503
        break;
6504
#endif
6505
        /* ??? msync/mlock/munlock are broken for softmmu.  */
6506
#ifdef TARGET_NR_msync
B
bellard 已提交
6507
    case TARGET_NR_msync:
6508
        ret = get_errno(msync(g2h(arg1), arg2, arg3));
B
bellard 已提交
6509
        break;
6510 6511
#endif
#ifdef TARGET_NR_mlock
B
bellard 已提交
6512
    case TARGET_NR_mlock:
6513
        ret = get_errno(mlock(g2h(arg1), arg2));
B
bellard 已提交
6514
        break;
6515 6516
#endif
#ifdef TARGET_NR_munlock
B
bellard 已提交
6517
    case TARGET_NR_munlock:
6518
        ret = get_errno(munlock(g2h(arg1), arg2));
B
bellard 已提交
6519
        break;
6520 6521
#endif
#ifdef TARGET_NR_mlockall
B
bellard 已提交
6522 6523 6524
    case TARGET_NR_mlockall:
        ret = get_errno(mlockall(arg1));
        break;
6525 6526
#endif
#ifdef TARGET_NR_munlockall
B
bellard 已提交
6527 6528 6529
    case TARGET_NR_munlockall:
        ret = get_errno(munlockall());
        break;
6530
#endif
6531
    case TARGET_NR_truncate:
6532 6533
        if (!(p = lock_user_string(arg1)))
            goto efault;
6534 6535
        ret = get_errno(truncate(p, arg2));
        unlock_user(p, arg1, 0);
6536 6537 6538 6539 6540 6541 6542
        break;
    case TARGET_NR_ftruncate:
        ret = get_errno(ftruncate(arg1, arg2));
        break;
    case TARGET_NR_fchmod:
        ret = get_errno(fchmod(arg1, arg2));
        break;
6543
#if defined(TARGET_NR_fchmodat)
6544
    case TARGET_NR_fchmodat:
6545 6546
        if (!(p = lock_user_string(arg2)))
            goto efault;
6547
        ret = get_errno(fchmodat(arg1, p, arg3, 0));
6548
        unlock_user(p, arg2, 0);
6549 6550
        break;
#endif
6551
    case TARGET_NR_getpriority:
6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566
        /* Note that negative values are valid for getpriority, so we must
           differentiate based on errno settings.  */
        errno = 0;
        ret = getpriority(arg1, arg2);
        if (ret == -1 && errno != 0) {
            ret = -host_to_target_errno(errno);
            break;
        }
#ifdef TARGET_ALPHA
        /* Return value is the unbiased priority.  Signal no error.  */
        ((CPUAlphaState *)cpu_env)->ir[IR_V0] = 0;
#else
        /* Return value is a biased priority to avoid negative numbers.  */
        ret = 20 - ret;
#endif
6567 6568 6569 6570
        break;
    case TARGET_NR_setpriority:
        ret = get_errno(setpriority(arg1, arg2, arg3));
        break;
6571
#ifdef TARGET_NR_profil
6572 6573
    case TARGET_NR_profil:
        goto unimplemented;
6574
#endif
6575
    case TARGET_NR_statfs:
6576 6577
        if (!(p = lock_user_string(arg1)))
            goto efault;
6578 6579
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
6580 6581
    convert_statfs:
        if (!is_error(ret)) {
6582
            struct target_statfs *target_stfs;
6583

6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595
            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);
A
Alexander Graf 已提交
6596 6597
            __put_user(stfs.f_frsize, &target_stfs->f_frsize);
            memset(target_stfs->f_spare, 0, sizeof(target_stfs->f_spare));
6598
            unlock_user_struct(target_stfs, arg2, 1);
6599 6600 6601
        }
        break;
    case TARGET_NR_fstatfs:
B
bellard 已提交
6602
        ret = get_errno(fstatfs(arg1, &stfs));
6603
        goto convert_statfs;
B
bellard 已提交
6604 6605
#ifdef TARGET_NR_statfs64
    case TARGET_NR_statfs64:
6606 6607
        if (!(p = lock_user_string(arg1)))
            goto efault;
6608 6609
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
B
bellard 已提交
6610 6611
    convert_statfs64:
        if (!is_error(ret)) {
6612
            struct target_statfs64 *target_stfs;
6613

6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625
            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);
A
Alexander Graf 已提交
6626 6627
            __put_user(stfs.f_frsize, &target_stfs->f_frsize);
            memset(target_stfs->f_spare, 0, sizeof(target_stfs->f_spare));
6628
            unlock_user_struct(target_stfs, arg3, 1);
B
bellard 已提交
6629 6630 6631 6632 6633 6634
        }
        break;
    case TARGET_NR_fstatfs64:
        ret = get_errno(fstatfs(arg1, &stfs));
        goto convert_statfs64;
#endif
6635
#ifdef TARGET_NR_ioperm
6636 6637
    case TARGET_NR_ioperm:
        goto unimplemented;
6638
#endif
6639
#ifdef TARGET_NR_socketcall
6640
    case TARGET_NR_socketcall:
6641
        ret = do_socketcall(arg1, arg2);
6642
        break;
6643
#endif
6644 6645
#ifdef TARGET_NR_accept
    case TARGET_NR_accept:
P
Peter Maydell 已提交
6646 6647 6648 6649 6650 6651 6652 6653 6654 6655
        ret = do_accept4(arg1, arg2, arg3, 0);
        break;
#endif
#ifdef TARGET_NR_accept4
    case TARGET_NR_accept4:
#ifdef CONFIG_ACCEPT4
        ret = do_accept4(arg1, arg2, arg3, arg4);
#else
        goto unimplemented;
#endif
6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669
        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 已提交
6670
        ret = do_getpeername(arg1, arg2, arg3);
6671 6672 6673 6674
        break;
#endif
#ifdef TARGET_NR_getsockname
    case TARGET_NR_getsockname:
P
pbrook 已提交
6675
        ret = do_getsockname(arg1, arg2, arg3);
6676 6677 6678 6679 6680 6681 6682 6683 6684
        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 已提交
6685
        ret = get_errno(listen(arg1, arg2));
6686 6687 6688 6689
        break;
#endif
#ifdef TARGET_NR_recv
    case TARGET_NR_recv:
P
pbrook 已提交
6690
        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
6691 6692 6693 6694
        break;
#endif
#ifdef TARGET_NR_recvfrom
    case TARGET_NR_recvfrom:
P
pbrook 已提交
6695
        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
6696 6697 6698 6699 6700 6701 6702 6703 6704
        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 已提交
6705
        ret = do_sendto(arg1, arg2, arg3, arg4, 0, 0);
6706 6707 6708 6709 6710 6711 6712 6713 6714
        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 已提交
6715
        ret = do_sendto(arg1, arg2, arg3, arg4, arg5, arg6);
6716 6717 6718 6719
        break;
#endif
#ifdef TARGET_NR_shutdown
    case TARGET_NR_shutdown:
P
pbrook 已提交
6720
        ret = get_errno(shutdown(arg1, arg2));
6721 6722 6723 6724 6725 6726 6727 6728 6729
        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 已提交
6730
        ret = do_socketpair(arg1, arg2, arg3, arg4);
6731 6732 6733 6734 6735 6736 6737
        break;
#endif
#ifdef TARGET_NR_setsockopt
    case TARGET_NR_setsockopt:
        ret = do_setsockopt(arg1, arg2, arg3, arg4, (socklen_t) arg5);
        break;
#endif
6738

6739
    case TARGET_NR_syslog:
6740 6741
        if (!(p = lock_user_string(arg2)))
            goto efault;
6742 6743
        ret = get_errno(sys_syslog((int)arg1, p, (int)arg3));
        unlock_user(p, arg2, 0);
6744 6745
        break;

6746
    case TARGET_NR_setitimer:
B
bellard 已提交
6747 6748 6749
        {
            struct itimerval value, ovalue, *pvalue;

6750
            if (arg2) {
B
bellard 已提交
6751
                pvalue = &value;
6752 6753 6754 6755
                if (copy_from_user_timeval(&pvalue->it_interval, arg2)
                    || copy_from_user_timeval(&pvalue->it_value,
                                              arg2 + sizeof(struct target_timeval)))
                    goto efault;
B
bellard 已提交
6756 6757 6758 6759
            } else {
                pvalue = NULL;
            }
            ret = get_errno(setitimer(arg1, pvalue, &ovalue));
6760
            if (!is_error(ret) && arg3) {
6761 6762 6763 6764 6765
                if (copy_to_user_timeval(arg3,
                                         &ovalue.it_interval)
                    || copy_to_user_timeval(arg3 + sizeof(struct target_timeval),
                                            &ovalue.it_value))
                    goto efault;
B
bellard 已提交
6766 6767 6768
            }
        }
        break;
6769
    case TARGET_NR_getitimer:
B
bellard 已提交
6770 6771
        {
            struct itimerval value;
6772

B
bellard 已提交
6773
            ret = get_errno(getitimer(arg1, &value));
6774
            if (!is_error(ret) && arg2) {
6775 6776 6777 6778 6779
                if (copy_to_user_timeval(arg2,
                                         &value.it_interval)
                    || copy_to_user_timeval(arg2 + sizeof(struct target_timeval),
                                            &value.it_value))
                    goto efault;
B
bellard 已提交
6780 6781 6782
            }
        }
        break;
6783
    case TARGET_NR_stat:
6784 6785
        if (!(p = lock_user_string(arg1)))
            goto efault;
6786 6787
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
6788 6789
        goto do_stat;
    case TARGET_NR_lstat:
6790 6791
        if (!(p = lock_user_string(arg1)))
            goto efault;
6792 6793
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
6794 6795 6796 6797 6798 6799
        goto do_stat;
    case TARGET_NR_fstat:
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat:
            if (!is_error(ret)) {
6800
                struct target_stat *target_st;
6801

6802 6803
                if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                    goto efault;
6804
                memset(target_st, 0, sizeof(*target_st));
B
bellard 已提交
6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817
                __put_user(st.st_dev, &target_st->st_dev);
                __put_user(st.st_ino, &target_st->st_ino);
                __put_user(st.st_mode, &target_st->st_mode);
                __put_user(st.st_uid, &target_st->st_uid);
                __put_user(st.st_gid, &target_st->st_gid);
                __put_user(st.st_nlink, &target_st->st_nlink);
                __put_user(st.st_rdev, &target_st->st_rdev);
                __put_user(st.st_size, &target_st->st_size);
                __put_user(st.st_blksize, &target_st->st_blksize);
                __put_user(st.st_blocks, &target_st->st_blocks);
                __put_user(st.st_atime, &target_st->target_st_atime);
                __put_user(st.st_mtime, &target_st->target_st_mtime);
                __put_user(st.st_ctime, &target_st->target_st_ctime);
6818
                unlock_user_struct(target_st, arg2, 1);
6819 6820 6821
            }
        }
        break;
6822
#ifdef TARGET_NR_olduname
6823 6824
    case TARGET_NR_olduname:
        goto unimplemented;
6825 6826
#endif
#ifdef TARGET_NR_iopl
6827 6828
    case TARGET_NR_iopl:
        goto unimplemented;
6829
#endif
6830 6831 6832
    case TARGET_NR_vhangup:
        ret = get_errno(vhangup());
        break;
6833
#ifdef TARGET_NR_idle
6834 6835
    case TARGET_NR_idle:
        goto unimplemented;
B
bellard 已提交
6836 6837 6838
#endif
#ifdef TARGET_NR_syscall
    case TARGET_NR_syscall:
6839 6840 6841
        ret = do_syscall(cpu_env, arg1 & 0xffff, arg2, arg3, arg4, arg5,
                         arg6, arg7, arg8, 0);
        break;
6842
#endif
6843 6844 6845
    case TARGET_NR_wait4:
        {
            int status;
6846
            abi_long status_ptr = arg2;
6847
            struct rusage rusage, *rusage_ptr;
6848
            abi_ulong target_rusage = arg4;
6849 6850 6851 6852 6853 6854
            if (target_rusage)
                rusage_ptr = &rusage;
            else
                rusage_ptr = NULL;
            ret = get_errno(wait4(arg1, &status, arg3, rusage_ptr));
            if (!is_error(ret)) {
6855
                if (status_ptr && ret) {
P
pbrook 已提交
6856
                    status = host_to_target_waitstatus(status);
6857 6858
                    if (put_user_s32(status, status_ptr))
                        goto efault;
6859
                }
6860 6861
                if (target_rusage)
                    host_to_target_rusage(target_rusage, &rusage);
6862 6863 6864
            }
        }
        break;
6865
#ifdef TARGET_NR_swapoff
6866
    case TARGET_NR_swapoff:
6867 6868
        if (!(p = lock_user_string(arg1)))
            goto efault;
6869 6870
        ret = get_errno(swapoff(p));
        unlock_user(p, arg1, 0);
6871
        break;
6872
#endif
6873
    case TARGET_NR_sysinfo:
B
bellard 已提交
6874
        {
6875
            struct target_sysinfo *target_value;
B
bellard 已提交
6876 6877
            struct sysinfo value;
            ret = get_errno(sysinfo(&value));
6878
            if (!is_error(ret) && arg1)
B
bellard 已提交
6879
            {
6880 6881
                if (!lock_user_struct(VERIFY_WRITE, target_value, arg1, 0))
                    goto efault;
B
bellard 已提交
6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895
                __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);
6896
                unlock_user_struct(target_value, arg1, 1);
B
bellard 已提交
6897 6898 6899
            }
        }
        break;
6900
#ifdef TARGET_NR_ipc
6901
    case TARGET_NR_ipc:
6902 6903
	ret = do_ipc(arg1, arg2, arg3, arg4, arg5, arg6);
	break;
6904
#endif
6905 6906 6907 6908 6909 6910 6911
#ifdef TARGET_NR_semget
    case TARGET_NR_semget:
        ret = get_errno(semget(arg1, arg2, arg3));
        break;
#endif
#ifdef TARGET_NR_semop
    case TARGET_NR_semop:
6912
        ret = do_semop(arg1, arg2, arg3);
6913 6914 6915 6916 6917 6918 6919
        break;
#endif
#ifdef TARGET_NR_semctl
    case TARGET_NR_semctl:
        ret = do_semctl(arg1, arg2, arg3, (union target_semun)(abi_ulong)arg4);
        break;
#endif
A
aurel32 已提交
6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938
#ifdef TARGET_NR_msgctl
    case TARGET_NR_msgctl:
        ret = do_msgctl(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_msgget
    case TARGET_NR_msgget:
        ret = get_errno(msgget(arg1, arg2));
        break;
#endif
#ifdef TARGET_NR_msgrcv
    case TARGET_NR_msgrcv:
        ret = do_msgrcv(arg1, arg2, arg3, arg4, arg5);
        break;
#endif
#ifdef TARGET_NR_msgsnd
    case TARGET_NR_msgsnd:
        ret = do_msgsnd(arg1, arg2, arg3, arg4);
        break;
6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958
#endif
#ifdef TARGET_NR_shmget
    case TARGET_NR_shmget:
        ret = get_errno(shmget(arg1, arg2, arg3));
        break;
#endif
#ifdef TARGET_NR_shmctl
    case TARGET_NR_shmctl:
        ret = do_shmctl(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_shmat
    case TARGET_NR_shmat:
        ret = do_shmat(arg1, arg2, arg3);
        break;
#endif
#ifdef TARGET_NR_shmdt
    case TARGET_NR_shmdt:
        ret = do_shmdt(arg1);
        break;
A
aurel32 已提交
6959
#endif
6960 6961 6962 6963
    case TARGET_NR_fsync:
        ret = get_errno(fsync(arg1));
        break;
    case TARGET_NR_clone:
6964 6965 6966 6967 6968 6969 6970
        /* Linux manages to have three different orderings for its
         * arguments to clone(); the BACKWARDS and BACKWARDS2 defines
         * match the kernel's CONFIG_CLONE_* settings.
         * Microblaze is further special in that it uses a sixth
         * implicit argument to clone for the TLS pointer.
         */
#if defined(TARGET_MICROBLAZE)
6971
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg4, arg6, arg5));
6972 6973 6974
#elif defined(TARGET_CLONE_BACKWARDS)
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg4, arg5));
#elif defined(TARGET_CLONE_BACKWARDS2)
U
Ulrich Hecht 已提交
6975
        ret = get_errno(do_fork(cpu_env, arg2, arg1, arg3, arg5, arg4));
A
aurel32 已提交
6976
#else
6977
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg5, arg4));
A
aurel32 已提交
6978
#endif
B
bellard 已提交
6979
        break;
6980 6981 6982
#ifdef __NR_exit_group
        /* new thread calls */
    case TARGET_NR_exit_group:
6983
#ifdef TARGET_GPROF
A
aurel32 已提交
6984 6985
        _mcleanup();
#endif
6986
        gdb_exit(cpu_env, arg1);
6987 6988 6989
        ret = get_errno(exit_group(arg1));
        break;
#endif
6990
    case TARGET_NR_setdomainname:
6991 6992
        if (!(p = lock_user_string(arg1)))
            goto efault;
6993 6994
        ret = get_errno(setdomainname(p, arg2));
        unlock_user(p, arg1, 0);
6995 6996 6997
        break;
    case TARGET_NR_uname:
        /* no need to transcode because we use the linux syscall */
B
bellard 已提交
6998 6999
        {
            struct new_utsname * buf;
7000

7001 7002
            if (!lock_user_struct(VERIFY_WRITE, buf, arg1, 0))
                goto efault;
B
bellard 已提交
7003 7004 7005 7006
            ret = get_errno(sys_uname(buf));
            if (!is_error(ret)) {
                /* Overrite the native machine name with whatever is being
                   emulated. */
7007
                strcpy (buf->machine, cpu_to_uname_machine(cpu_env));
7008 7009 7010
                /* Allow the user to override the reported release.  */
                if (qemu_uname_release && *qemu_uname_release)
                  strcpy (buf->release, qemu_uname_release);
B
bellard 已提交
7011
            }
7012
            unlock_user_struct(buf, arg1, 1);
B
bellard 已提交
7013
        }
7014
        break;
B
bellard 已提交
7015
#ifdef TARGET_I386
7016
    case TARGET_NR_modify_ldt:
7017
        ret = do_modify_ldt(cpu_env, arg1, arg2, arg3);
B
bellard 已提交
7018
        break;
7019
#if !defined(TARGET_X86_64)
B
bellard 已提交
7020 7021 7022
    case TARGET_NR_vm86old:
        goto unimplemented;
    case TARGET_NR_vm86:
7023
        ret = do_vm86(cpu_env, arg1, arg2);
B
bellard 已提交
7024
        break;
7025
#endif
B
bellard 已提交
7026
#endif
7027 7028
    case TARGET_NR_adjtimex:
        goto unimplemented;
7029
#ifdef TARGET_NR_create_module
7030
    case TARGET_NR_create_module:
7031
#endif
7032 7033
    case TARGET_NR_init_module:
    case TARGET_NR_delete_module:
7034
#ifdef TARGET_NR_get_kernel_syms
7035
    case TARGET_NR_get_kernel_syms:
7036
#endif
7037 7038 7039 7040 7041 7042 7043 7044 7045
        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;
7046
#ifdef TARGET_NR_bdflush /* not on x86_64 */
7047 7048
    case TARGET_NR_bdflush:
        goto unimplemented;
7049
#endif
7050
#ifdef TARGET_NR_sysfs
7051 7052
    case TARGET_NR_sysfs:
        goto unimplemented;
7053
#endif
7054
    case TARGET_NR_personality:
B
bellard 已提交
7055
        ret = get_errno(personality(arg1));
7056
        break;
7057
#ifdef TARGET_NR_afs_syscall
7058 7059
    case TARGET_NR_afs_syscall:
        goto unimplemented;
7060
#endif
7061
#ifdef TARGET_NR__llseek /* Not on alpha */
7062 7063
    case TARGET_NR__llseek:
        {
7064
            int64_t res;
R
Richard Henderson 已提交
7065
#if !defined(__NR_llseek)
7066 7067 7068 7069 7070 7071
            res = lseek(arg1, ((uint64_t)arg2 << 32) | arg3, arg5);
            if (res == -1) {
                ret = get_errno(res);
            } else {
                ret = 0;
            }
B
bellard 已提交
7072
#else
7073
            ret = get_errno(_llseek(arg1, arg2, arg3, &res, arg5));
B
bellard 已提交
7074
#endif
7075 7076 7077
            if ((ret == 0) && put_user_s64(res, arg4)) {
                goto efault;
            }
7078 7079
        }
        break;
7080
#endif
7081
    case TARGET_NR_getdents:
7082
#ifdef __NR_getdents
7083
#if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
B
bellard 已提交
7084
        {
7085
            struct target_dirent *target_dirp;
A
aurel32 已提交
7086
            struct linux_dirent *dirp;
7087
            abi_long count = arg3;
B
bellard 已提交
7088 7089

	    dirp = malloc(count);
7090
	    if (!dirp) {
7091
                ret = -TARGET_ENOMEM;
7092 7093
                goto fail;
            }
7094

B
bellard 已提交
7095 7096
            ret = get_errno(sys_getdents(arg1, dirp, count));
            if (!is_error(ret)) {
A
aurel32 已提交
7097
                struct linux_dirent *de;
B
bellard 已提交
7098 7099 7100 7101 7102 7103 7104
		struct target_dirent *tde;
                int len = ret;
                int reclen, treclen;
		int count1, tnamelen;

		count1 = 0;
                de = dirp;
7105 7106
                if (!(target_dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                    goto efault;
B
bellard 已提交
7107 7108 7109
		tde = target_dirp;
                while (len > 0) {
                    reclen = de->d_reclen;
7110 7111 7112 7113
                    tnamelen = reclen - offsetof(struct linux_dirent, d_name);
                    assert(tnamelen >= 0);
                    treclen = tnamelen + offsetof(struct target_dirent, d_name);
                    assert(count1 + treclen <= count);
B
bellard 已提交
7114
                    tde->d_reclen = tswap16(treclen);
7115 7116
                    tde->d_ino = tswapal(de->d_ino);
                    tde->d_off = tswapal(de->d_off);
7117
                    memcpy(tde->d_name, de->d_name, tnamelen);
A
aurel32 已提交
7118
                    de = (struct linux_dirent *)((char *)de + reclen);
B
bellard 已提交
7119
                    len -= reclen;
J
j_mayer 已提交
7120
                    tde = (struct target_dirent *)((char *)tde + treclen);
B
bellard 已提交
7121 7122 7123
		    count1 += treclen;
                }
		ret = count1;
7124
                unlock_user(target_dirp, arg2, ret);
B
bellard 已提交
7125 7126 7127 7128
            }
	    free(dirp);
        }
#else
7129
        {
A
aurel32 已提交
7130
            struct linux_dirent *dirp;
7131
            abi_long count = arg3;
B
bellard 已提交
7132

7133 7134
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
7135
            ret = get_errno(sys_getdents(arg1, dirp, count));
7136
            if (!is_error(ret)) {
A
aurel32 已提交
7137
                struct linux_dirent *de;
7138 7139 7140 7141
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
7142
                    reclen = de->d_reclen;
7143 7144
                    if (reclen > len)
                        break;
B
bellard 已提交
7145
                    de->d_reclen = tswap16(reclen);
7146 7147
                    tswapls(&de->d_ino);
                    tswapls(&de->d_off);
A
aurel32 已提交
7148
                    de = (struct linux_dirent *)((char *)de + reclen);
7149 7150 7151
                    len -= reclen;
                }
            }
7152
            unlock_user(dirp, arg2, ret);
7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207
        }
#endif
#else
        /* Implement getdents in terms of getdents64 */
        {
            struct linux_dirent64 *dirp;
            abi_long count = arg3;

            dirp = lock_user(VERIFY_WRITE, arg2, count, 0);
            if (!dirp) {
                goto efault;
            }
            ret = get_errno(sys_getdents64(arg1, dirp, count));
            if (!is_error(ret)) {
                /* Convert the dirent64 structs to target dirent.  We do this
                 * in-place, since we can guarantee that a target_dirent is no
                 * larger than a dirent64; however this means we have to be
                 * careful to read everything before writing in the new format.
                 */
                struct linux_dirent64 *de;
                struct target_dirent *tde;
                int len = ret;
                int tlen = 0;

                de = dirp;
                tde = (struct target_dirent *)dirp;
                while (len > 0) {
                    int namelen, treclen;
                    int reclen = de->d_reclen;
                    uint64_t ino = de->d_ino;
                    int64_t off = de->d_off;
                    uint8_t type = de->d_type;

                    namelen = strlen(de->d_name);
                    treclen = offsetof(struct target_dirent, d_name)
                        + namelen + 2;
                    treclen = QEMU_ALIGN_UP(treclen, sizeof(abi_long));

                    memmove(tde->d_name, de->d_name, namelen + 1);
                    tde->d_ino = tswapal(ino);
                    tde->d_off = tswapal(off);
                    tde->d_reclen = tswap16(treclen);
                    /* The target_dirent type is in what was formerly a padding
                     * byte at the end of the structure:
                     */
                    *(((char *)tde) + treclen - 1) = type;

                    de = (struct linux_dirent64 *)((char *)de + reclen);
                    tde = (struct target_dirent *)((char *)tde + treclen);
                    len -= reclen;
                    tlen += treclen;
                }
                ret = tlen;
            }
            unlock_user(dirp, arg2, ret);
7208
        }
B
bellard 已提交
7209
#endif
7210
        break;
T
ths 已提交
7211
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
7212 7213
    case TARGET_NR_getdents64:
        {
A
aurel32 已提交
7214
            struct linux_dirent64 *dirp;
7215
            abi_long count = arg3;
7216 7217
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
7218 7219
            ret = get_errno(sys_getdents64(arg1, dirp, count));
            if (!is_error(ret)) {
A
aurel32 已提交
7220
                struct linux_dirent64 *de;
B
bellard 已提交
7221 7222 7223 7224
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
7225
                    reclen = de->d_reclen;
B
bellard 已提交
7226 7227
                    if (reclen > len)
                        break;
B
bellard 已提交
7228
                    de->d_reclen = tswap16(reclen);
B
bellard 已提交
7229 7230
                    tswap64s((uint64_t *)&de->d_ino);
                    tswap64s((uint64_t *)&de->d_off);
A
aurel32 已提交
7231
                    de = (struct linux_dirent64 *)((char *)de + reclen);
B
bellard 已提交
7232 7233 7234
                    len -= reclen;
                }
            }
7235
            unlock_user(dirp, arg2, ret);
B
bellard 已提交
7236 7237
        }
        break;
7238
#endif /* TARGET_NR_getdents64 */
7239
#if defined(TARGET_NR__newselect)
7240
    case TARGET_NR__newselect:
7241
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
7242
        break;
7243
#endif
7244 7245
#if defined(TARGET_NR_poll) || defined(TARGET_NR_ppoll)
# ifdef TARGET_NR_poll
B
bellard 已提交
7246
    case TARGET_NR_poll:
7247 7248 7249 7250
# endif
# ifdef TARGET_NR_ppoll
    case TARGET_NR_ppoll:
# endif
B
bellard 已提交
7251
        {
7252
            struct target_pollfd *target_pfd;
B
bellard 已提交
7253 7254 7255
            unsigned int nfds = arg2;
            int timeout = arg3;
            struct pollfd *pfd;
B
bellard 已提交
7256
            unsigned int i;
B
bellard 已提交
7257

7258 7259 7260
            target_pfd = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_pollfd) * nfds, 1);
            if (!target_pfd)
                goto efault;
7261

B
bellard 已提交
7262 7263
            pfd = alloca(sizeof(struct pollfd) * nfds);
            for(i = 0; i < nfds; i++) {
B
bellard 已提交
7264 7265
                pfd[i].fd = tswap32(target_pfd[i].fd);
                pfd[i].events = tswap16(target_pfd[i].events);
B
bellard 已提交
7266
            }
7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305

# ifdef TARGET_NR_ppoll
            if (num == TARGET_NR_ppoll) {
                struct timespec _timeout_ts, *timeout_ts = &_timeout_ts;
                target_sigset_t *target_set;
                sigset_t _set, *set = &_set;

                if (arg3) {
                    if (target_to_host_timespec(timeout_ts, arg3)) {
                        unlock_user(target_pfd, arg1, 0);
                        goto efault;
                    }
                } else {
                    timeout_ts = NULL;
                }

                if (arg4) {
                    target_set = lock_user(VERIFY_READ, arg4, sizeof(target_sigset_t), 1);
                    if (!target_set) {
                        unlock_user(target_pfd, arg1, 0);
                        goto efault;
                    }
                    target_to_host_sigset(set, target_set);
                } else {
                    set = NULL;
                }

                ret = get_errno(sys_ppoll(pfd, nfds, timeout_ts, set, _NSIG/8));

                if (!is_error(ret) && arg3) {
                    host_to_target_timespec(arg3, timeout_ts);
                }
                if (arg4) {
                    unlock_user(target_set, arg4, 0);
                }
            } else
# endif
                ret = get_errno(poll(pfd, nfds, timeout));

B
bellard 已提交
7306 7307
            if (!is_error(ret)) {
                for(i = 0; i < nfds; i++) {
B
bellard 已提交
7308
                    target_pfd[i].revents = tswap16(pfd[i].revents);
B
bellard 已提交
7309 7310
                }
            }
7311
            unlock_user(target_pfd, arg1, sizeof(struct target_pollfd) * nfds);
B
bellard 已提交
7312 7313
        }
        break;
7314
#endif
7315
    case TARGET_NR_flock:
B
bellard 已提交
7316 7317 7318
        /* NOTE: the flock constant seems to be the same for every
           Linux platform */
        ret = get_errno(flock(arg1, arg2));
7319 7320 7321
        break;
    case TARGET_NR_readv:
        {
7322 7323 7324 7325 7326 7327 7328
            struct iovec *vec = lock_iovec(VERIFY_WRITE, arg2, arg3, 0);
            if (vec != NULL) {
                ret = get_errno(readv(arg1, vec, arg3));
                unlock_iovec(vec, arg2, arg3, 1);
            } else {
                ret = -host_to_target_errno(errno);
            }
7329 7330 7331 7332
        }
        break;
    case TARGET_NR_writev:
        {
7333 7334 7335 7336 7337 7338 7339
            struct iovec *vec = lock_iovec(VERIFY_READ, arg2, arg3, 1);
            if (vec != NULL) {
                ret = get_errno(writev(arg1, vec, arg3));
                unlock_iovec(vec, arg2, arg3, 0);
            } else {
                ret = -host_to_target_errno(errno);
            }
7340 7341 7342 7343 7344
        }
        break;
    case TARGET_NR_getsid:
        ret = get_errno(getsid(arg1));
        break;
7345
#if defined(TARGET_NR_fdatasync) /* Not on alpha (osf_datasync ?) */
7346
    case TARGET_NR_fdatasync:
B
bellard 已提交
7347 7348
        ret = get_errno(fdatasync(arg1));
        break;
7349
#endif
7350
    case TARGET_NR__sysctl:
7351
        /* We don't implement this, but ENOTDIR is always a safe
B
bellard 已提交
7352
           return value. */
7353 7354
        ret = -TARGET_ENOTDIR;
        break;
7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373
    case TARGET_NR_sched_getaffinity:
        {
            unsigned int mask_size;
            unsigned long *mask;

            /*
             * sched_getaffinity needs multiples of ulong, so need to take
             * care of mismatches between target ulong and host ulong sizes.
             */
            if (arg2 & (sizeof(abi_ulong) - 1)) {
                ret = -TARGET_EINVAL;
                break;
            }
            mask_size = (arg2 + (sizeof(*mask) - 1)) & ~(sizeof(*mask) - 1);

            mask = alloca(mask_size);
            ret = get_errno(sys_sched_getaffinity(arg1, mask_size, mask));

            if (!is_error(ret)) {
7374
                if (copy_to_user(arg3, mask, ret)) {
7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404
                    goto efault;
                }
            }
        }
        break;
    case TARGET_NR_sched_setaffinity:
        {
            unsigned int mask_size;
            unsigned long *mask;

            /*
             * sched_setaffinity needs multiples of ulong, so need to take
             * care of mismatches between target ulong and host ulong sizes.
             */
            if (arg2 & (sizeof(abi_ulong) - 1)) {
                ret = -TARGET_EINVAL;
                break;
            }
            mask_size = (arg2 + (sizeof(*mask) - 1)) & ~(sizeof(*mask) - 1);

            mask = alloca(mask_size);
            if (!lock_user_struct(VERIFY_READ, p, arg3, 1)) {
                goto efault;
            }
            memcpy(mask, p, arg2);
            unlock_user_struct(p, arg2, 0);

            ret = get_errno(sys_sched_setaffinity(arg1, mask_size, mask));
        }
        break;
7405
    case TARGET_NR_sched_setparam:
B
bellard 已提交
7406
        {
7407
            struct sched_param *target_schp;
B
bellard 已提交
7408
            struct sched_param schp;
7409

7410 7411
            if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1))
                goto efault;
B
bellard 已提交
7412
            schp.sched_priority = tswap32(target_schp->sched_priority);
7413
            unlock_user_struct(target_schp, arg2, 0);
B
bellard 已提交
7414 7415 7416
            ret = get_errno(sched_setparam(arg1, &schp));
        }
        break;
7417
    case TARGET_NR_sched_getparam:
B
bellard 已提交
7418
        {
7419
            struct sched_param *target_schp;
B
bellard 已提交
7420 7421 7422
            struct sched_param schp;
            ret = get_errno(sched_getparam(arg1, &schp));
            if (!is_error(ret)) {
7423 7424
                if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0))
                    goto efault;
B
bellard 已提交
7425
                target_schp->sched_priority = tswap32(schp.sched_priority);
7426
                unlock_user_struct(target_schp, arg2, 1);
B
bellard 已提交
7427 7428 7429
            }
        }
        break;
7430
    case TARGET_NR_sched_setscheduler:
B
bellard 已提交
7431
        {
7432
            struct sched_param *target_schp;
B
bellard 已提交
7433
            struct sched_param schp;
7434 7435
            if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1))
                goto efault;
B
bellard 已提交
7436
            schp.sched_priority = tswap32(target_schp->sched_priority);
7437
            unlock_user_struct(target_schp, arg3, 0);
B
bellard 已提交
7438 7439 7440
            ret = get_errno(sched_setscheduler(arg1, arg2, &schp));
        }
        break;
7441
    case TARGET_NR_sched_getscheduler:
B
bellard 已提交
7442 7443
        ret = get_errno(sched_getscheduler(arg1));
        break;
7444 7445 7446 7447
    case TARGET_NR_sched_yield:
        ret = get_errno(sched_yield());
        break;
    case TARGET_NR_sched_get_priority_max:
B
bellard 已提交
7448 7449
        ret = get_errno(sched_get_priority_max(arg1));
        break;
7450
    case TARGET_NR_sched_get_priority_min:
B
bellard 已提交
7451 7452
        ret = get_errno(sched_get_priority_min(arg1));
        break;
7453
    case TARGET_NR_sched_rr_get_interval:
B
bellard 已提交
7454 7455 7456 7457
        {
            struct timespec ts;
            ret = get_errno(sched_rr_get_interval(arg1, &ts));
            if (!is_error(ret)) {
7458
                host_to_target_timespec(arg2, &ts);
B
bellard 已提交
7459 7460 7461
            }
        }
        break;
7462
    case TARGET_NR_nanosleep:
B
bellard 已提交
7463 7464
        {
            struct timespec req, rem;
7465
            target_to_host_timespec(&req, arg1);
B
bellard 已提交
7466
            ret = get_errno(nanosleep(&req, &rem));
7467 7468
            if (is_error(ret) && arg2) {
                host_to_target_timespec(arg2, &rem);
B
bellard 已提交
7469 7470 7471
            }
        }
        break;
7472
#ifdef TARGET_NR_query_module
7473
    case TARGET_NR_query_module:
B
bellard 已提交
7474
        goto unimplemented;
7475 7476
#endif
#ifdef TARGET_NR_nfsservctl
7477
    case TARGET_NR_nfsservctl:
B
bellard 已提交
7478
        goto unimplemented;
7479
#endif
7480
    case TARGET_NR_prctl:
7481 7482 7483 7484 7485 7486 7487 7488
        switch (arg1) {
        case PR_GET_PDEATHSIG:
        {
            int deathsig;
            ret = get_errno(prctl(arg1, &deathsig, arg3, arg4, arg5));
            if (!is_error(ret) && arg2
                && put_user_ual(deathsig, arg2)) {
                goto efault;
7489
            }
7490 7491
            break;
        }
7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515
#ifdef PR_GET_NAME
        case PR_GET_NAME:
        {
            void *name = lock_user(VERIFY_WRITE, arg2, 16, 1);
            if (!name) {
                goto efault;
            }
            ret = get_errno(prctl(arg1, (unsigned long)name,
                                  arg3, arg4, arg5));
            unlock_user(name, arg2, 16);
            break;
        }
        case PR_SET_NAME:
        {
            void *name = lock_user(VERIFY_READ, arg2, 16, 1);
            if (!name) {
                goto efault;
            }
            ret = get_errno(prctl(arg1, (unsigned long)name,
                                  arg3, arg4, arg5));
            unlock_user(name, arg2, 0);
            break;
        }
#endif
7516 7517 7518 7519 7520
        default:
            /* Most prctl options have no pointer arguments */
            ret = get_errno(prctl(arg1, arg2, arg3, arg4, arg5));
            break;
        }
7521
        break;
B
bellard 已提交
7522 7523 7524 7525 7526 7527 7528 7529 7530
#ifdef TARGET_NR_arch_prctl
    case TARGET_NR_arch_prctl:
#if defined(TARGET_I386) && !defined(TARGET_ABI32)
        ret = do_arch_prctl(cpu_env, arg1, arg2);
        break;
#else
        goto unimplemented;
#endif
#endif
A
aurel32 已提交
7531 7532
#ifdef TARGET_NR_pread64
    case TARGET_NR_pread64:
7533 7534 7535 7536
        if (regpairs_aligned(cpu_env)) {
            arg4 = arg5;
            arg5 = arg6;
        }
A
aurel32 已提交
7537 7538 7539 7540 7541 7542
        if (!(p = lock_user(VERIFY_WRITE, arg2, arg3, 0)))
            goto efault;
        ret = get_errno(pread64(arg1, p, arg3, target_offset64(arg4, arg5)));
        unlock_user(p, arg2, ret);
        break;
    case TARGET_NR_pwrite64:
7543 7544 7545 7546
        if (regpairs_aligned(cpu_env)) {
            arg4 = arg5;
            arg5 = arg6;
        }
A
aurel32 已提交
7547 7548 7549 7550 7551
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
        ret = get_errno(pwrite64(arg1, p, arg3, target_offset64(arg4, arg5)));
        unlock_user(p, arg2, 0);
        break;
7552
#endif
7553
    case TARGET_NR_getcwd:
7554 7555
        if (!(p = lock_user(VERIFY_WRITE, arg1, arg2, 0)))
            goto efault;
7556 7557
        ret = get_errno(sys_getcwd1(p, arg2));
        unlock_user(p, arg1, ret);
7558 7559
        break;
    case TARGET_NR_capget:
B
bellard 已提交
7560
        goto unimplemented;
7561
    case TARGET_NR_capset:
B
bellard 已提交
7562
        goto unimplemented;
7563
    case TARGET_NR_sigaltstack:
7564
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) || \
7565
    defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_ALPHA) || \
J
Jia Liu 已提交
7566
    defined(TARGET_M68K) || defined(TARGET_S390X) || defined(TARGET_OPENRISC)
7567
        ret = do_sigaltstack(arg1, arg2, get_sp_from_cpustate((CPUArchState *)cpu_env));
7568 7569
        break;
#else
B
bellard 已提交
7570
        goto unimplemented;
7571
#endif
7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616

#ifdef CONFIG_SENDFILE
    case TARGET_NR_sendfile:
    {
        off_t *offp = NULL;
        off_t off;
        if (arg3) {
            ret = get_user_sal(off, arg3);
            if (is_error(ret)) {
                break;
            }
            offp = &off;
        }
        ret = get_errno(sendfile(arg1, arg2, offp, arg4));
        if (!is_error(ret) && arg3) {
            abi_long ret2 = put_user_sal(off, arg3);
            if (is_error(ret2)) {
                ret = ret2;
            }
        }
        break;
    }
#ifdef TARGET_NR_sendfile64
    case TARGET_NR_sendfile64:
    {
        off_t *offp = NULL;
        off_t off;
        if (arg3) {
            ret = get_user_s64(off, arg3);
            if (is_error(ret)) {
                break;
            }
            offp = &off;
        }
        ret = get_errno(sendfile(arg1, arg2, offp, arg4));
        if (!is_error(ret) && arg3) {
            abi_long ret2 = put_user_s64(off, arg3);
            if (is_error(ret2)) {
                ret = ret2;
            }
        }
        break;
    }
#endif
#else
7617
    case TARGET_NR_sendfile:
7618
#ifdef TARGET_NR_sendfile64
7619 7620
    case TARGET_NR_sendfile64:
#endif
B
bellard 已提交
7621
        goto unimplemented;
7622 7623
#endif

7624
#ifdef TARGET_NR_getpmsg
7625
    case TARGET_NR_getpmsg:
B
bellard 已提交
7626
        goto unimplemented;
7627 7628
#endif
#ifdef TARGET_NR_putpmsg
7629
    case TARGET_NR_putpmsg:
B
bellard 已提交
7630
        goto unimplemented;
7631
#endif
B
bellard 已提交
7632
#ifdef TARGET_NR_vfork
7633
    case TARGET_NR_vfork:
P
pbrook 已提交
7634 7635
        ret = get_errno(do_fork(cpu_env, CLONE_VFORK | CLONE_VM | SIGCHLD,
                        0, 0, 0, 0));
7636
        break;
B
bellard 已提交
7637
#endif
7638
#ifdef TARGET_NR_ugetrlimit
7639
    case TARGET_NR_ugetrlimit:
B
bellard 已提交
7640 7641
    {
	struct rlimit rlim;
7642 7643
	int resource = target_to_host_resource(arg1);
	ret = get_errno(getrlimit(resource, &rlim));
B
bellard 已提交
7644
	if (!is_error(ret)) {
7645
	    struct target_rlimit *target_rlim;
7646 7647
            if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                goto efault;
7648 7649
	    target_rlim->rlim_cur = host_to_target_rlim(rlim.rlim_cur);
	    target_rlim->rlim_max = host_to_target_rlim(rlim.rlim_max);
7650
            unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
7651 7652 7653
	}
	break;
    }
7654
#endif
B
bellard 已提交
7655
#ifdef TARGET_NR_truncate64
7656
    case TARGET_NR_truncate64:
7657 7658
        if (!(p = lock_user_string(arg1)))
            goto efault;
7659 7660
	ret = target_truncate64(cpu_env, p, arg2, arg3, arg4);
        unlock_user(p, arg1, 0);
B
bellard 已提交
7661
	break;
B
bellard 已提交
7662 7663
#endif
#ifdef TARGET_NR_ftruncate64
7664
    case TARGET_NR_ftruncate64:
P
pbrook 已提交
7665
	ret = target_ftruncate64(cpu_env, arg1, arg2, arg3, arg4);
B
bellard 已提交
7666
	break;
B
bellard 已提交
7667 7668
#endif
#ifdef TARGET_NR_stat64
7669
    case TARGET_NR_stat64:
7670 7671
        if (!(p = lock_user_string(arg1)))
            goto efault;
7672 7673
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
7674 7675 7676
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
B
bellard 已提交
7677 7678
#endif
#ifdef TARGET_NR_lstat64
7679
    case TARGET_NR_lstat64:
7680 7681
        if (!(p = lock_user_string(arg1)))
            goto efault;
7682 7683
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
7684 7685 7686
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
B
bellard 已提交
7687 7688
#endif
#ifdef TARGET_NR_fstat64
7689
    case TARGET_NR_fstat64:
7690 7691 7692 7693
        ret = get_errno(fstat(arg1, &st));
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
P
pbrook 已提交
7694
#endif
7695
#if (defined(TARGET_NR_fstatat64) || defined(TARGET_NR_newfstatat))
7696
#ifdef TARGET_NR_fstatat64
7697
    case TARGET_NR_fstatat64:
7698 7699 7700 7701
#endif
#ifdef TARGET_NR_newfstatat
    case TARGET_NR_newfstatat:
#endif
7702 7703
        if (!(p = lock_user_string(arg2)))
            goto efault;
7704
        ret = get_errno(fstatat(arg1, path(p), &st, arg4));
7705 7706
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg3, &st);
B
bellard 已提交
7707
        break;
B
bellard 已提交
7708
#endif
7709
    case TARGET_NR_lchown:
7710 7711
        if (!(p = lock_user_string(arg1)))
            goto efault;
7712 7713
        ret = get_errno(lchown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
7714
        break;
7715
#ifdef TARGET_NR_getuid
7716 7717 7718
    case TARGET_NR_getuid:
        ret = get_errno(high2lowuid(getuid()));
        break;
7719 7720
#endif
#ifdef TARGET_NR_getgid
7721 7722 7723
    case TARGET_NR_getgid:
        ret = get_errno(high2lowgid(getgid()));
        break;
7724 7725
#endif
#ifdef TARGET_NR_geteuid
7726 7727 7728
    case TARGET_NR_geteuid:
        ret = get_errno(high2lowuid(geteuid()));
        break;
7729 7730
#endif
#ifdef TARGET_NR_getegid
7731 7732 7733
    case TARGET_NR_getegid:
        ret = get_errno(high2lowgid(getegid()));
        break;
7734
#endif
7735 7736 7737 7738 7739 7740 7741 7742 7743
    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;
7744
            target_id *target_grouplist;
7745 7746 7747 7748 7749
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
7750 7751
            if (gidsetsize == 0)
                break;
7752
            if (!is_error(ret)) {
7753
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * sizeof(target_id), 0);
7754 7755
                if (!target_grouplist)
                    goto efault;
7756
                for(i = 0;i < ret; i++)
7757
                    target_grouplist[i] = tswapid(high2lowgid(grouplist[i]));
7758
                unlock_user(target_grouplist, arg2, gidsetsize * sizeof(target_id));
7759 7760 7761 7762 7763 7764
            }
        }
        break;
    case TARGET_NR_setgroups:
        {
            int gidsetsize = arg1;
7765
            target_id *target_grouplist;
7766
            gid_t *grouplist = NULL;
7767
            int i;
7768 7769
            if (gidsetsize) {
                grouplist = alloca(gidsetsize * sizeof(gid_t));
7770
                target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * sizeof(target_id), 1);
7771 7772 7773 7774 7775 7776 7777 7778
                if (!target_grouplist) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
                for (i = 0; i < gidsetsize; i++) {
                    grouplist[i] = low2highgid(tswapid(target_grouplist[i]));
                }
                unlock_user(target_grouplist, arg2, 0);
7779
            }
7780 7781 7782 7783 7784 7785
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
    case TARGET_NR_fchown:
        ret = get_errno(fchown(arg1, low2highuid(arg2), low2highgid(arg3)));
        break;
7786
#if defined(TARGET_NR_fchownat)
7787
    case TARGET_NR_fchownat:
7788 7789
        if (!(p = lock_user_string(arg2))) 
            goto efault;
7790 7791
        ret = get_errno(fchownat(arg1, p, low2highuid(arg3),
                                 low2highgid(arg4), arg5));
7792
        unlock_user(p, arg2, 0);
7793 7794
        break;
#endif
7795 7796
#ifdef TARGET_NR_setresuid
    case TARGET_NR_setresuid:
7797 7798
        ret = get_errno(setresuid(low2highuid(arg1),
                                  low2highuid(arg2),
7799 7800 7801 7802 7803 7804
                                  low2highuid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresuid
    case TARGET_NR_getresuid:
        {
7805
            uid_t ruid, euid, suid;
7806 7807
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
7808 7809 7810 7811
                if (put_user_u16(high2lowuid(ruid), arg1)
                    || put_user_u16(high2lowuid(euid), arg2)
                    || put_user_u16(high2lowuid(suid), arg3))
                    goto efault;
7812 7813 7814 7815 7816 7817
            }
        }
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_setresgid:
7818 7819
        ret = get_errno(setresgid(low2highgid(arg1),
                                  low2highgid(arg2),
7820 7821 7822 7823 7824 7825
                                  low2highgid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_getresgid:
        {
7826
            gid_t rgid, egid, sgid;
7827 7828
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
7829 7830 7831 7832
                if (put_user_u16(high2lowgid(rgid), arg1)
                    || put_user_u16(high2lowgid(egid), arg2)
                    || put_user_u16(high2lowgid(sgid), arg3))
                    goto efault;
7833 7834 7835 7836 7837
            }
        }
        break;
#endif
    case TARGET_NR_chown:
7838 7839
        if (!(p = lock_user_string(arg1)))
            goto efault;
7840 7841
        ret = get_errno(chown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855
        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;

B
bellard 已提交
7856
#ifdef TARGET_NR_lchown32
7857
    case TARGET_NR_lchown32:
7858 7859
        if (!(p = lock_user_string(arg1)))
            goto efault;
7860 7861
        ret = get_errno(lchown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
7862
        break;
B
bellard 已提交
7863 7864
#endif
#ifdef TARGET_NR_getuid32
7865
    case TARGET_NR_getuid32:
B
bellard 已提交
7866 7867
        ret = get_errno(getuid());
        break;
B
bellard 已提交
7868
#endif
7869 7870 7871 7872

#if defined(TARGET_NR_getxuid) && defined(TARGET_ALPHA)
   /* Alpha specific */
    case TARGET_NR_getxuid:
7873 7874 7875 7876 7877
         {
            uid_t euid;
            euid=geteuid();
            ((CPUAlphaState *)cpu_env)->ir[IR_A4]=euid;
         }
7878 7879 7880 7881 7882 7883
        ret = get_errno(getuid());
        break;
#endif
#if defined(TARGET_NR_getxgid) && defined(TARGET_ALPHA)
   /* Alpha specific */
    case TARGET_NR_getxgid:
7884 7885 7886 7887 7888
         {
            uid_t egid;
            egid=getegid();
            ((CPUAlphaState *)cpu_env)->ir[IR_A4]=egid;
         }
7889 7890 7891
        ret = get_errno(getgid());
        break;
#endif
7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938
#if defined(TARGET_NR_osf_getsysinfo) && defined(TARGET_ALPHA)
    /* Alpha specific */
    case TARGET_NR_osf_getsysinfo:
        ret = -TARGET_EOPNOTSUPP;
        switch (arg1) {
          case TARGET_GSI_IEEE_FP_CONTROL:
            {
                uint64_t swcr, fpcr = cpu_alpha_load_fpcr (cpu_env);

                /* Copied from linux ieee_fpcr_to_swcr.  */
                swcr = (fpcr >> 35) & SWCR_STATUS_MASK;
                swcr |= (fpcr >> 36) & SWCR_MAP_DMZ;
                swcr |= (~fpcr >> 48) & (SWCR_TRAP_ENABLE_INV
                                        | SWCR_TRAP_ENABLE_DZE
                                        | SWCR_TRAP_ENABLE_OVF);
                swcr |= (~fpcr >> 57) & (SWCR_TRAP_ENABLE_UNF
                                        | SWCR_TRAP_ENABLE_INE);
                swcr |= (fpcr >> 47) & SWCR_MAP_UMZ;
                swcr |= (~fpcr >> 41) & SWCR_TRAP_ENABLE_DNO;

                if (put_user_u64 (swcr, arg2))
                        goto efault;
                ret = 0;
            }
            break;

          /* case GSI_IEEE_STATE_AT_SIGNAL:
             -- Not implemented in linux kernel.
             case GSI_UACPROC:
             -- Retrieves current unaligned access state; not much used.
             case GSI_PROC_TYPE:
             -- Retrieves implver information; surely not used.
             case GSI_GET_HWRPB:
             -- Grabs a copy of the HWRPB; surely not used.
          */
        }
        break;
#endif
#if defined(TARGET_NR_osf_setsysinfo) && defined(TARGET_ALPHA)
    /* Alpha specific */
    case TARGET_NR_osf_setsysinfo:
        ret = -TARGET_EOPNOTSUPP;
        switch (arg1) {
          case TARGET_SSI_IEEE_FP_CONTROL:
            {
                uint64_t swcr, fpcr, orig_fpcr;

7939
                if (get_user_u64 (swcr, arg2)) {
7940
                    goto efault;
7941 7942
                }
                orig_fpcr = cpu_alpha_load_fpcr(cpu_env);
7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955
                fpcr = orig_fpcr & FPCR_DYN_MASK;

                /* Copied from linux ieee_swcr_to_fpcr.  */
                fpcr |= (swcr & SWCR_STATUS_MASK) << 35;
                fpcr |= (swcr & SWCR_MAP_DMZ) << 36;
                fpcr |= (~swcr & (SWCR_TRAP_ENABLE_INV
                                  | SWCR_TRAP_ENABLE_DZE
                                  | SWCR_TRAP_ENABLE_OVF)) << 48;
                fpcr |= (~swcr & (SWCR_TRAP_ENABLE_UNF
                                  | SWCR_TRAP_ENABLE_INE)) << 57;
                fpcr |= (swcr & SWCR_MAP_UMZ ? FPCR_UNDZ | FPCR_UNFD : 0);
                fpcr |= (~swcr & SWCR_TRAP_ENABLE_DNO) << 41;

7956
                cpu_alpha_store_fpcr(cpu_env, fpcr);
7957
                ret = 0;
7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968
            }
            break;

          case TARGET_SSI_IEEE_RAISE_EXCEPTION:
            {
                uint64_t exc, fpcr, orig_fpcr;
                int si_code;

                if (get_user_u64(exc, arg2)) {
                    goto efault;
                }
7969

7970
                orig_fpcr = cpu_alpha_load_fpcr(cpu_env);
7971

7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006
                /* We only add to the exception status here.  */
                fpcr = orig_fpcr | ((exc & SWCR_STATUS_MASK) << 35);

                cpu_alpha_store_fpcr(cpu_env, fpcr);
                ret = 0;

                /* Old exceptions are not signaled.  */
                fpcr &= ~(orig_fpcr & FPCR_STATUS_MASK);

                /* If any exceptions set by this call,
                   and are unmasked, send a signal.  */
                si_code = 0;
                if ((fpcr & (FPCR_INE | FPCR_INED)) == FPCR_INE) {
                    si_code = TARGET_FPE_FLTRES;
                }
                if ((fpcr & (FPCR_UNF | FPCR_UNFD)) == FPCR_UNF) {
                    si_code = TARGET_FPE_FLTUND;
                }
                if ((fpcr & (FPCR_OVF | FPCR_OVFD)) == FPCR_OVF) {
                    si_code = TARGET_FPE_FLTOVF;
                }
                if ((fpcr & (FPCR_DZE | FPCR_DZED)) == FPCR_DZE) {
                    si_code = TARGET_FPE_FLTDIV;
                }
                if ((fpcr & (FPCR_INV | FPCR_INVD)) == FPCR_INV) {
                    si_code = TARGET_FPE_FLTINV;
                }
                if (si_code != 0) {
                    target_siginfo_t info;
                    info.si_signo = SIGFPE;
                    info.si_errno = 0;
                    info.si_code = si_code;
                    info._sifields._sigfault._addr
                        = ((CPUArchState *)cpu_env)->pc;
                    queue_signal((CPUArchState *)cpu_env, info.si_signo, &info);
8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024
                }
            }
            break;

          /* case SSI_NVPAIRS:
             -- Used with SSIN_UACPROC to enable unaligned accesses.
             case SSI_IEEE_STATE_AT_SIGNAL:
             case SSI_IEEE_IGNORE_STATE_AT_SIGNAL:
             -- Not implemented in linux kernel
          */
        }
        break;
#endif
#ifdef TARGET_NR_osf_sigprocmask
    /* Alpha specific.  */
    case TARGET_NR_osf_sigprocmask:
        {
            abi_ulong mask;
8025
            int how;
8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043
            sigset_t set, oldset;

            switch(arg1) {
            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:
                ret = -TARGET_EINVAL;
                goto fail;
            }
            mask = arg2;
            target_to_host_old_sigset(&set, &mask);
8044
            sigprocmask(how, &set, &oldset);
8045 8046 8047 8048 8049
            host_to_target_old_sigset(&mask, &oldset);
            ret = mask;
        }
        break;
#endif
8050

B
bellard 已提交
8051
#ifdef TARGET_NR_getgid32
8052
    case TARGET_NR_getgid32:
B
bellard 已提交
8053 8054
        ret = get_errno(getgid());
        break;
B
bellard 已提交
8055 8056
#endif
#ifdef TARGET_NR_geteuid32
8057
    case TARGET_NR_geteuid32:
B
bellard 已提交
8058 8059
        ret = get_errno(geteuid());
        break;
B
bellard 已提交
8060 8061
#endif
#ifdef TARGET_NR_getegid32
8062
    case TARGET_NR_getegid32:
B
bellard 已提交
8063 8064
        ret = get_errno(getegid());
        break;
B
bellard 已提交
8065 8066
#endif
#ifdef TARGET_NR_setreuid32
8067
    case TARGET_NR_setreuid32:
B
bellard 已提交
8068 8069
        ret = get_errno(setreuid(arg1, arg2));
        break;
B
bellard 已提交
8070 8071
#endif
#ifdef TARGET_NR_setregid32
8072
    case TARGET_NR_setregid32:
B
bellard 已提交
8073 8074
        ret = get_errno(setregid(arg1, arg2));
        break;
B
bellard 已提交
8075 8076
#endif
#ifdef TARGET_NR_getgroups32
8077
    case TARGET_NR_getgroups32:
B
bellard 已提交
8078 8079
        {
            int gidsetsize = arg1;
8080
            uint32_t *target_grouplist;
B
bellard 已提交
8081 8082 8083 8084 8085
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
8086 8087
            if (gidsetsize == 0)
                break;
B
bellard 已提交
8088
            if (!is_error(ret)) {
8089 8090 8091 8092 8093
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 4, 0);
                if (!target_grouplist) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
8094
                for(i = 0;i < ret; i++)
8095 8096
                    target_grouplist[i] = tswap32(grouplist[i]);
                unlock_user(target_grouplist, arg2, gidsetsize * 4);
B
bellard 已提交
8097 8098 8099
            }
        }
        break;
B
bellard 已提交
8100 8101
#endif
#ifdef TARGET_NR_setgroups32
8102
    case TARGET_NR_setgroups32:
B
bellard 已提交
8103 8104
        {
            int gidsetsize = arg1;
8105
            uint32_t *target_grouplist;
B
bellard 已提交
8106 8107
            gid_t *grouplist;
            int i;
8108

B
bellard 已提交
8109
            grouplist = alloca(gidsetsize * sizeof(gid_t));
8110 8111 8112 8113 8114
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 4, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
B
bellard 已提交
8115
            for(i = 0;i < gidsetsize; i++)
8116 8117
                grouplist[i] = tswap32(target_grouplist[i]);
            unlock_user(target_grouplist, arg2, 0);
B
bellard 已提交
8118 8119 8120
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
B
bellard 已提交
8121 8122
#endif
#ifdef TARGET_NR_fchown32
8123
    case TARGET_NR_fchown32:
B
bellard 已提交
8124 8125
        ret = get_errno(fchown(arg1, arg2, arg3));
        break;
B
bellard 已提交
8126 8127
#endif
#ifdef TARGET_NR_setresuid32
8128
    case TARGET_NR_setresuid32:
B
bellard 已提交
8129 8130
        ret = get_errno(setresuid(arg1, arg2, arg3));
        break;
B
bellard 已提交
8131 8132
#endif
#ifdef TARGET_NR_getresuid32
8133
    case TARGET_NR_getresuid32:
B
bellard 已提交
8134
        {
8135
            uid_t ruid, euid, suid;
B
bellard 已提交
8136 8137
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
8138 8139 8140 8141
                if (put_user_u32(ruid, arg1)
                    || put_user_u32(euid, arg2)
                    || put_user_u32(suid, arg3))
                    goto efault;
B
bellard 已提交
8142 8143 8144
            }
        }
        break;
B
bellard 已提交
8145 8146
#endif
#ifdef TARGET_NR_setresgid32
8147
    case TARGET_NR_setresgid32:
B
bellard 已提交
8148 8149
        ret = get_errno(setresgid(arg1, arg2, arg3));
        break;
B
bellard 已提交
8150 8151
#endif
#ifdef TARGET_NR_getresgid32
8152
    case TARGET_NR_getresgid32:
B
bellard 已提交
8153
        {
8154
            gid_t rgid, egid, sgid;
B
bellard 已提交
8155 8156
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
8157 8158 8159 8160
                if (put_user_u32(rgid, arg1)
                    || put_user_u32(egid, arg2)
                    || put_user_u32(sgid, arg3))
                    goto efault;
B
bellard 已提交
8161 8162 8163
            }
        }
        break;
B
bellard 已提交
8164 8165
#endif
#ifdef TARGET_NR_chown32
8166
    case TARGET_NR_chown32:
8167 8168
        if (!(p = lock_user_string(arg1)))
            goto efault;
8169 8170
        ret = get_errno(chown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
8171
        break;
B
bellard 已提交
8172 8173
#endif
#ifdef TARGET_NR_setuid32
8174
    case TARGET_NR_setuid32:
B
bellard 已提交
8175 8176
        ret = get_errno(setuid(arg1));
        break;
B
bellard 已提交
8177 8178
#endif
#ifdef TARGET_NR_setgid32
8179
    case TARGET_NR_setgid32:
B
bellard 已提交
8180 8181
        ret = get_errno(setgid(arg1));
        break;
B
bellard 已提交
8182 8183
#endif
#ifdef TARGET_NR_setfsuid32
8184
    case TARGET_NR_setfsuid32:
B
bellard 已提交
8185 8186
        ret = get_errno(setfsuid(arg1));
        break;
B
bellard 已提交
8187 8188
#endif
#ifdef TARGET_NR_setfsgid32
8189
    case TARGET_NR_setfsgid32:
B
bellard 已提交
8190 8191
        ret = get_errno(setfsgid(arg1));
        break;
B
bellard 已提交
8192
#endif
8193

8194
    case TARGET_NR_pivot_root:
B
bellard 已提交
8195
        goto unimplemented;
B
bellard 已提交
8196
#ifdef TARGET_NR_mincore
8197
    case TARGET_NR_mincore:
A
aurel32 已提交
8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210
        {
            void *a;
            ret = -TARGET_EFAULT;
            if (!(a = lock_user(VERIFY_READ, arg1,arg2, 0)))
                goto efault;
            if (!(p = lock_user_string(arg3)))
                goto mincore_fail;
            ret = get_errno(mincore(a, arg2, p));
            unlock_user(p, arg3, ret);
            mincore_fail:
            unlock_user(a, arg1, 0);
        }
        break;
B
bellard 已提交
8211
#endif
A
aurel32 已提交
8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224
#ifdef TARGET_NR_arm_fadvise64_64
    case TARGET_NR_arm_fadvise64_64:
	{
		/*
		 * arm_fadvise64_64 looks like fadvise64_64 but
		 * with different argument order
		 */
		abi_long temp;
		temp = arg3;
		arg3 = arg4;
		arg4 = temp;
	}
#endif
8225
#if defined(TARGET_NR_fadvise64_64) || defined(TARGET_NR_arm_fadvise64_64) || defined(TARGET_NR_fadvise64)
A
aurel32 已提交
8226 8227 8228
#ifdef TARGET_NR_fadvise64_64
    case TARGET_NR_fadvise64_64:
#endif
8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241
#ifdef TARGET_NR_fadvise64
    case TARGET_NR_fadvise64:
#endif
#ifdef TARGET_S390X
        switch (arg4) {
        case 4: arg4 = POSIX_FADV_NOREUSE + 1; break; /* make sure it's an invalid value */
        case 5: arg4 = POSIX_FADV_NOREUSE + 2; break; /* ditto */
        case 6: arg4 = POSIX_FADV_DONTNEED; break;
        case 7: arg4 = POSIX_FADV_NOREUSE; break;
        default: break;
        }
#endif
        ret = -posix_fadvise(arg1, arg2, arg3, arg4);
A
aurel32 已提交
8242 8243
	break;
#endif
B
bellard 已提交
8244
#ifdef TARGET_NR_madvise
8245
    case TARGET_NR_madvise:
8246
        /* A straight passthrough may not be safe because qemu sometimes
L
Lei Li 已提交
8247
           turns private file-backed mappings into anonymous mappings.
8248 8249 8250 8251
           This will break MADV_DONTNEED.
           This is a hint, so ignoring and returning success is ok.  */
        ret = get_errno(0);
        break;
B
bellard 已提交
8252
#endif
8253
#if TARGET_ABI_BITS == 32
8254
    case TARGET_NR_fcntl64:
B
bellard 已提交
8255
    {
T
ths 已提交
8256
	int cmd;
B
bellard 已提交
8257
	struct flock64 fl;
8258
	struct target_flock64 *target_fl;
P
pbrook 已提交
8259
#ifdef TARGET_ARM
8260
	struct target_eabi_flock64 *target_efl;
P
pbrook 已提交
8261
#endif
B
bellard 已提交
8262

8263
	cmd = target_to_host_fcntl_cmd(arg2);
8264 8265 8266 8267
        if (cmd == -TARGET_EINVAL) {
            ret = cmd;
            break;
        }
T
ths 已提交
8268

B
bellard 已提交
8269
        switch(arg2) {
T
ths 已提交
8270
        case TARGET_F_GETLK64:
T
ths 已提交
8271 8272
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8273 8274
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
T
ths 已提交
8275 8276 8277 8278
                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);
U
Ulrich Hecht 已提交
8279
                fl.l_pid = tswap32(target_efl->l_pid);
T
ths 已提交
8280 8281 8282 8283
                unlock_user_struct(target_efl, arg3, 0);
            } else
#endif
            {
B
bellard 已提交
8284 8285
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
T
ths 已提交
8286 8287 8288 8289
                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);
U
Ulrich Hecht 已提交
8290
                fl.l_pid = tswap32(target_fl->l_pid);
T
ths 已提交
8291 8292
                unlock_user_struct(target_fl, arg3, 0);
            }
T
ths 已提交
8293
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
8294
	    if (ret == 0) {
P
pbrook 已提交
8295 8296
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8297 8298
                    if (!lock_user_struct(VERIFY_WRITE, target_efl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
8299 8300 8301 8302
                    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);
U
Ulrich Hecht 已提交
8303
                    target_efl->l_pid = tswap32(fl.l_pid);
8304
                    unlock_user_struct(target_efl, arg3, 1);
P
pbrook 已提交
8305 8306 8307
                } else
#endif
                {
B
bellard 已提交
8308 8309
                    if (!lock_user_struct(VERIFY_WRITE, target_fl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
8310 8311 8312 8313
                    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);
U
Ulrich Hecht 已提交
8314
                    target_fl->l_pid = tswap32(fl.l_pid);
8315
                    unlock_user_struct(target_fl, arg3, 1);
P
pbrook 已提交
8316
                }
B
bellard 已提交
8317 8318 8319
	    }
	    break;

T
ths 已提交
8320 8321
        case TARGET_F_SETLK64:
        case TARGET_F_SETLKW64:
P
pbrook 已提交
8322 8323
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8324 8325
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
8326 8327 8328 8329
                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);
U
Ulrich Hecht 已提交
8330
                fl.l_pid = tswap32(target_efl->l_pid);
8331
                unlock_user_struct(target_efl, arg3, 0);
P
pbrook 已提交
8332 8333 8334
            } else
#endif
            {
B
bellard 已提交
8335 8336
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
8337 8338 8339 8340
                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);
U
Ulrich Hecht 已提交
8341
                fl.l_pid = tswap32(target_fl->l_pid);
8342
                unlock_user_struct(target_fl, arg3, 0);
P
pbrook 已提交
8343
            }
T
ths 已提交
8344
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
8345
	    break;
B
bellard 已提交
8346
        default:
8347
            ret = do_fcntl(arg1, arg2, arg3);
B
bellard 已提交
8348 8349
            break;
        }
B
bellard 已提交
8350 8351
	break;
    }
B
bellard 已提交
8352
#endif
8353 8354 8355 8356 8357 8358
#ifdef TARGET_NR_cacheflush
    case TARGET_NR_cacheflush:
        /* self-modifying code is handled automatically, so nothing needed */
        ret = 0;
        break;
#endif
8359
#ifdef TARGET_NR_security
8360 8361
    case TARGET_NR_security:
        goto unimplemented;
B
bellard 已提交
8362 8363 8364 8365 8366
#endif
#ifdef TARGET_NR_getpagesize
    case TARGET_NR_getpagesize:
        ret = TARGET_PAGE_SIZE;
        break;
8367
#endif
8368 8369 8370
    case TARGET_NR_gettid:
        ret = get_errno(gettid());
        break;
8371
#ifdef TARGET_NR_readahead
8372
    case TARGET_NR_readahead:
A
aurel32 已提交
8373
#if TARGET_ABI_BITS == 32
8374
        if (regpairs_aligned(cpu_env)) {
A
aurel32 已提交
8375 8376 8377 8378 8379 8380 8381 8382 8383
            arg2 = arg3;
            arg3 = arg4;
            arg4 = arg5;
        }
        ret = get_errno(readahead(arg1, ((off64_t)arg3 << 32) | arg2, arg4));
#else
        ret = get_errno(readahead(arg1, arg2, arg3));
#endif
        break;
8384
#endif
8385
#ifdef CONFIG_ATTR
8386
#ifdef TARGET_NR_setxattr
8387 8388
    case TARGET_NR_listxattr:
    case TARGET_NR_llistxattr:
8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411
    {
        void *p, *b = 0;
        if (arg2) {
            b = lock_user(VERIFY_WRITE, arg2, arg3, 0);
            if (!b) {
                ret = -TARGET_EFAULT;
                break;
            }
        }
        p = lock_user_string(arg1);
        if (p) {
            if (num == TARGET_NR_listxattr) {
                ret = get_errno(listxattr(p, b, arg3));
            } else {
                ret = get_errno(llistxattr(p, b, arg3));
            }
        } else {
            ret = -TARGET_EFAULT;
        }
        unlock_user(p, arg1, 0);
        unlock_user(b, arg2, arg3);
        break;
    }
8412
    case TARGET_NR_flistxattr:
8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423
    {
        void *b = 0;
        if (arg2) {
            b = lock_user(VERIFY_WRITE, arg2, arg3, 0);
            if (!b) {
                ret = -TARGET_EFAULT;
                break;
            }
        }
        ret = get_errno(flistxattr(arg1, b, arg3));
        unlock_user(b, arg2, arg3);
8424
        break;
8425
    }
8426
    case TARGET_NR_setxattr:
8427
    case TARGET_NR_lsetxattr:
8428
        {
8429 8430 8431 8432 8433 8434 8435 8436
            void *p, *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_READ, arg3, arg4, 1);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
8437 8438
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
8439
            if (p && n) {
8440 8441 8442 8443 8444
                if (num == TARGET_NR_setxattr) {
                    ret = get_errno(setxattr(p, n, v, arg4, arg5));
                } else {
                    ret = get_errno(lsetxattr(p, n, v, arg4, arg5));
                }
8445 8446 8447 8448 8449 8450 8451 8452
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, 0);
        }
        break;
8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472
    case TARGET_NR_fsetxattr:
        {
            void *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_READ, arg3, arg4, 1);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
            n = lock_user_string(arg2);
            if (n) {
                ret = get_errno(fsetxattr(arg1, n, v, arg4, arg5));
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, 0);
        }
        break;
8473
    case TARGET_NR_getxattr:
8474
    case TARGET_NR_lgetxattr:
8475
        {
8476 8477 8478 8479 8480 8481 8482 8483
            void *p, *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_WRITE, arg3, arg4, 0);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
8484 8485
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
8486
            if (p && n) {
8487 8488 8489 8490 8491
                if (num == TARGET_NR_getxattr) {
                    ret = get_errno(getxattr(p, n, v, arg4));
                } else {
                    ret = get_errno(lgetxattr(p, n, v, arg4));
                }
8492 8493 8494 8495 8496 8497 8498 8499
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, arg4);
        }
        break;
8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519
    case TARGET_NR_fgetxattr:
        {
            void *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_WRITE, arg3, arg4, 0);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
            n = lock_user_string(arg2);
            if (n) {
                ret = get_errno(fgetxattr(arg1, n, v, arg4));
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, arg4);
        }
        break;
8520
    case TARGET_NR_removexattr:
8521
    case TARGET_NR_lremovexattr:
8522 8523 8524 8525 8526
        {
            void *p, *n;
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
            if (p && n) {
8527 8528 8529 8530 8531
                if (num == TARGET_NR_removexattr) {
                    ret = get_errno(removexattr(p, n));
                } else {
                    ret = get_errno(lremovexattr(p, n));
                }
8532 8533 8534 8535 8536 8537 8538
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
        }
        break;
8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550
    case TARGET_NR_fremovexattr:
        {
            void *n;
            n = lock_user_string(arg2);
            if (n) {
                ret = get_errno(fremovexattr(arg1, n));
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(n, arg2, 0);
        }
        break;
8551
#endif
8552
#endif /* CONFIG_ATTR */
8553
#ifdef TARGET_NR_set_thread_area
B
bellard 已提交
8554
    case TARGET_NR_set_thread_area:
B
bellard 已提交
8555
#if defined(TARGET_MIPS)
8556 8557 8558
      ((CPUMIPSState *) cpu_env)->tls_value = arg1;
      ret = 0;
      break;
8559 8560 8561 8562 8563 8564 8565 8566
#elif defined(TARGET_CRIS)
      if (arg1 & 0xff)
          ret = -TARGET_EINVAL;
      else {
          ((CPUCRISState *) cpu_env)->pregs[PR_PID] = arg1;
          ret = 0;
      }
      break;
B
bellard 已提交
8567 8568 8569
#elif defined(TARGET_I386) && defined(TARGET_ABI32)
      ret = do_set_thread_area(cpu_env, arg1);
      break;
P
Peter Maydell 已提交
8570 8571 8572 8573
#elif defined(TARGET_M68K)
      {
          TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
          ts->tp_value = arg1;
8574
          ret = 0;
P
Peter Maydell 已提交
8575 8576
          break;
      }
8577 8578 8579 8580 8581
#else
      goto unimplemented_nowarn;
#endif
#endif
#ifdef TARGET_NR_get_thread_area
B
bellard 已提交
8582
    case TARGET_NR_get_thread_area:
B
bellard 已提交
8583 8584
#if defined(TARGET_I386) && defined(TARGET_ABI32)
        ret = do_get_thread_area(cpu_env, arg1);
8585
        break;
P
Peter Maydell 已提交
8586 8587 8588 8589 8590 8591
#elif defined(TARGET_M68K)
        {
            TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
            ret = ts->tp_value;
            break;
        }
B
bellard 已提交
8592
#else
B
bellard 已提交
8593
        goto unimplemented_nowarn;
B
bellard 已提交
8594
#endif
B
bellard 已提交
8595
#endif
B
bellard 已提交
8596 8597 8598
#ifdef TARGET_NR_getdomainname
    case TARGET_NR_getdomainname:
        goto unimplemented_nowarn;
8599
#endif
8600

8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622
#ifdef TARGET_NR_clock_gettime
    case TARGET_NR_clock_gettime:
    {
        struct timespec ts;
        ret = get_errno(clock_gettime(arg1, &ts));
        if (!is_error(ret)) {
            host_to_target_timespec(arg2, &ts);
        }
        break;
    }
#endif
#ifdef TARGET_NR_clock_getres
    case TARGET_NR_clock_getres:
    {
        struct timespec ts;
        ret = get_errno(clock_getres(arg1, &ts));
        if (!is_error(ret)) {
            host_to_target_timespec(arg2, &ts);
        }
        break;
    }
#endif
P
pbrook 已提交
8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633
#ifdef TARGET_NR_clock_nanosleep
    case TARGET_NR_clock_nanosleep:
    {
        struct timespec ts;
        target_to_host_timespec(&ts, arg3);
        ret = get_errno(clock_nanosleep(arg1, arg2, &ts, arg4 ? &ts : NULL));
        if (arg4)
            host_to_target_timespec(arg4, &ts);
        break;
    }
#endif
8634

8635 8636
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
    case TARGET_NR_set_tid_address:
8637 8638
        ret = get_errno(set_tid_address((int *)g2h(arg1)));
        break;
8639 8640
#endif

T
ths 已提交
8641
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
8642
    case TARGET_NR_tkill:
8643
        ret = get_errno(sys_tkill((int)arg1, target_to_host_signal(arg2)));
T
ths 已提交
8644 8645 8646
        break;
#endif

T
ths 已提交
8647
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
8648
    case TARGET_NR_tgkill:
8649 8650
	ret = get_errno(sys_tgkill((int)arg1, (int)arg2,
                        target_to_host_signal(arg3)));
T
ths 已提交
8651 8652 8653
	break;
#endif

8654 8655
#ifdef TARGET_NR_set_robust_list
    case TARGET_NR_set_robust_list:
8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669
    case TARGET_NR_get_robust_list:
        /* The ABI for supporting robust futexes has userspace pass
         * the kernel a pointer to a linked list which is updated by
         * userspace after the syscall; the list is walked by the kernel
         * when the thread exits. Since the linked list in QEMU guest
         * memory isn't a valid linked list for the host and we have
         * no way to reliably intercept the thread-death event, we can't
         * support these. Silently return ENOSYS so that guest userspace
         * falls back to a non-robust futex implementation (which should
         * be OK except in the corner case of the guest crashing while
         * holding a mutex that is shared with another process via
         * shared memory).
         */
        goto unimplemented_nowarn;
8670 8671
#endif

8672
#if defined(TARGET_NR_utimensat)
8673 8674
    case TARGET_NR_utimensat:
        {
R
Riku Voipio 已提交
8675 8676 8677 8678 8679 8680 8681 8682
            struct timespec *tsp, ts[2];
            if (!arg3) {
                tsp = NULL;
            } else {
                target_to_host_timespec(ts, arg3);
                target_to_host_timespec(ts+1, arg3+sizeof(struct target_timespec));
                tsp = ts;
            }
8683
            if (!arg2)
R
Riku Voipio 已提交
8684
                ret = get_errno(sys_utimensat(arg1, NULL, tsp, arg4));
8685
            else {
8686
                if (!(p = lock_user_string(arg2))) {
8687
                    ret = -TARGET_EFAULT;
8688 8689
                    goto fail;
                }
R
Riku Voipio 已提交
8690
                ret = get_errno(sys_utimensat(arg1, path(p), tsp, arg4));
8691
                unlock_user(p, arg2, 0);
8692 8693 8694 8695
            }
        }
	break;
#endif
8696 8697 8698
    case TARGET_NR_futex:
        ret = do_futex(arg1, arg2, arg3, arg4, arg5, arg6);
        break;
8699
#if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
A
aurel32 已提交
8700 8701 8702 8703
    case TARGET_NR_inotify_init:
        ret = get_errno(sys_inotify_init());
        break;
#endif
8704
#ifdef CONFIG_INOTIFY1
8705 8706 8707 8708 8709
#if defined(TARGET_NR_inotify_init1) && defined(__NR_inotify_init1)
    case TARGET_NR_inotify_init1:
        ret = get_errno(sys_inotify_init1(arg1));
        break;
#endif
8710
#endif
8711
#if defined(TARGET_NR_inotify_add_watch) && defined(__NR_inotify_add_watch)
A
aurel32 已提交
8712 8713 8714 8715 8716 8717
    case TARGET_NR_inotify_add_watch:
        p = lock_user_string(arg2);
        ret = get_errno(sys_inotify_add_watch(arg1, path(p), arg3));
        unlock_user(p, arg2, 0);
        break;
#endif
8718
#if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
A
aurel32 已提交
8719 8720 8721 8722
    case TARGET_NR_inotify_rm_watch:
        ret = get_errno(sys_inotify_rm_watch(arg1, arg2));
        break;
#endif
8723

8724
#if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798
    case TARGET_NR_mq_open:
        {
            struct mq_attr posix_mq_attr;

            p = lock_user_string(arg1 - 1);
            if (arg4 != 0)
                copy_from_user_mq_attr (&posix_mq_attr, arg4);
            ret = get_errno(mq_open(p, arg2, arg3, &posix_mq_attr));
            unlock_user (p, arg1, 0);
        }
        break;

    case TARGET_NR_mq_unlink:
        p = lock_user_string(arg1 - 1);
        ret = get_errno(mq_unlink(p));
        unlock_user (p, arg1, 0);
        break;

    case TARGET_NR_mq_timedsend:
        {
            struct timespec ts;

            p = lock_user (VERIFY_READ, arg2, arg3, 1);
            if (arg5 != 0) {
                target_to_host_timespec(&ts, arg5);
                ret = get_errno(mq_timedsend(arg1, p, arg3, arg4, &ts));
                host_to_target_timespec(arg5, &ts);
            }
            else
                ret = get_errno(mq_send(arg1, p, arg3, arg4));
            unlock_user (p, arg2, arg3);
        }
        break;

    case TARGET_NR_mq_timedreceive:
        {
            struct timespec ts;
            unsigned int prio;

            p = lock_user (VERIFY_READ, arg2, arg3, 1);
            if (arg5 != 0) {
                target_to_host_timespec(&ts, arg5);
                ret = get_errno(mq_timedreceive(arg1, p, arg3, &prio, &ts));
                host_to_target_timespec(arg5, &ts);
            }
            else
                ret = get_errno(mq_receive(arg1, p, arg3, &prio));
            unlock_user (p, arg2, arg3);
            if (arg4 != 0)
                put_user_u32(prio, arg4);
        }
        break;

    /* Not implemented for now... */
/*     case TARGET_NR_mq_notify: */
/*         break; */

    case TARGET_NR_mq_getsetattr:
        {
            struct mq_attr posix_mq_attr_in, posix_mq_attr_out;
            ret = 0;
            if (arg3 != 0) {
                ret = mq_getattr(arg1, &posix_mq_attr_out);
                copy_to_user_mq_attr(arg3, &posix_mq_attr_out);
            }
            if (arg2 != 0) {
                copy_from_user_mq_attr(&posix_mq_attr_in, arg2);
                ret |= mq_setattr(arg1, &posix_mq_attr_in, &posix_mq_attr_out);
            }

        }
        break;
#endif

8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826
#ifdef CONFIG_SPLICE
#ifdef TARGET_NR_tee
    case TARGET_NR_tee:
        {
            ret = get_errno(tee(arg1,arg2,arg3,arg4));
        }
        break;
#endif
#ifdef TARGET_NR_splice
    case TARGET_NR_splice:
        {
            loff_t loff_in, loff_out;
            loff_t *ploff_in = NULL, *ploff_out = NULL;
            if(arg2) {
                get_user_u64(loff_in, arg2);
                ploff_in = &loff_in;
            }
            if(arg4) {
                get_user_u64(loff_out, arg2);
                ploff_out = &loff_out;
            }
            ret = get_errno(splice(arg1, ploff_in, arg3, ploff_out, arg5, arg6));
        }
        break;
#endif
#ifdef TARGET_NR_vmsplice
	case TARGET_NR_vmsplice:
        {
8827 8828 8829 8830 8831 8832 8833
            struct iovec *vec = lock_iovec(VERIFY_READ, arg2, arg3, 1);
            if (vec != NULL) {
                ret = get_errno(vmsplice(arg1, vec, arg3, arg4));
                unlock_iovec(vec, arg2, arg3, 0);
            } else {
                ret = -host_to_target_errno(errno);
            }
8834 8835 8836 8837
        }
        break;
#endif
#endif /* CONFIG_SPLICE */
R
Riku Voipio 已提交
8838 8839 8840 8841 8842 8843 8844 8845
#ifdef CONFIG_EVENTFD
#if defined(TARGET_NR_eventfd)
    case TARGET_NR_eventfd:
        ret = get_errno(eventfd(arg1, 0));
        break;
#endif
#if defined(TARGET_NR_eventfd2)
    case TARGET_NR_eventfd2:
8846 8847 8848 8849 8850 8851 8852 8853 8854
    {
        int host_flags = arg2 & (~(TARGET_O_NONBLOCK | TARGET_O_CLOEXEC));
        if (arg2 & TARGET_O_NONBLOCK) {
            host_flags |= O_NONBLOCK;
        }
        if (arg2 & TARGET_O_CLOEXEC) {
            host_flags |= O_CLOEXEC;
        }
        ret = get_errno(eventfd(arg1, host_flags));
R
Riku Voipio 已提交
8855
        break;
8856
    }
R
Riku Voipio 已提交
8857 8858
#endif
#endif /* CONFIG_EVENTFD  */
8859 8860
#if defined(CONFIG_FALLOCATE) && defined(TARGET_NR_fallocate)
    case TARGET_NR_fallocate:
A
Alexander Graf 已提交
8861 8862 8863 8864
#if TARGET_ABI_BITS == 32
        ret = get_errno(fallocate(arg1, arg2, target_offset64(arg3, arg4),
                                  target_offset64(arg5, arg6)));
#else
8865
        ret = get_errno(fallocate(arg1, arg2, arg3, arg4));
A
Alexander Graf 已提交
8866
#endif
8867
        break;
8868 8869 8870 8871 8872
#endif
#if defined(CONFIG_SYNC_FILE_RANGE)
#if defined(TARGET_NR_sync_file_range)
    case TARGET_NR_sync_file_range:
#if TARGET_ABI_BITS == 32
8873 8874 8875 8876
#if defined(TARGET_MIPS)
        ret = get_errno(sync_file_range(arg1, target_offset64(arg3, arg4),
                                        target_offset64(arg5, arg6), arg7));
#else
8877 8878
        ret = get_errno(sync_file_range(arg1, target_offset64(arg2, arg3),
                                        target_offset64(arg4, arg5), arg6));
8879
#endif /* !TARGET_MIPS */
8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895
#else
        ret = get_errno(sync_file_range(arg1, arg2, arg3, arg4));
#endif
        break;
#endif
#if defined(TARGET_NR_sync_file_range2)
    case TARGET_NR_sync_file_range2:
        /* This is like sync_file_range but the arguments are reordered */
#if TARGET_ABI_BITS == 32
        ret = get_errno(sync_file_range(arg1, target_offset64(arg3, arg4),
                                        target_offset64(arg5, arg6), arg2));
#else
        ret = get_errno(sync_file_range(arg1, arg3, arg4, arg2));
#endif
        break;
#endif
8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999
#endif
#if defined(CONFIG_EPOLL)
#if defined(TARGET_NR_epoll_create)
    case TARGET_NR_epoll_create:
        ret = get_errno(epoll_create(arg1));
        break;
#endif
#if defined(TARGET_NR_epoll_create1) && defined(CONFIG_EPOLL_CREATE1)
    case TARGET_NR_epoll_create1:
        ret = get_errno(epoll_create1(arg1));
        break;
#endif
#if defined(TARGET_NR_epoll_ctl)
    case TARGET_NR_epoll_ctl:
    {
        struct epoll_event ep;
        struct epoll_event *epp = 0;
        if (arg4) {
            struct target_epoll_event *target_ep;
            if (!lock_user_struct(VERIFY_READ, target_ep, arg4, 1)) {
                goto efault;
            }
            ep.events = tswap32(target_ep->events);
            /* The epoll_data_t union is just opaque data to the kernel,
             * so we transfer all 64 bits across and need not worry what
             * actual data type it is.
             */
            ep.data.u64 = tswap64(target_ep->data.u64);
            unlock_user_struct(target_ep, arg4, 0);
            epp = &ep;
        }
        ret = get_errno(epoll_ctl(arg1, arg2, arg3, epp));
        break;
    }
#endif

#if defined(TARGET_NR_epoll_pwait) && defined(CONFIG_EPOLL_PWAIT)
#define IMPLEMENT_EPOLL_PWAIT
#endif
#if defined(TARGET_NR_epoll_wait) || defined(IMPLEMENT_EPOLL_PWAIT)
#if defined(TARGET_NR_epoll_wait)
    case TARGET_NR_epoll_wait:
#endif
#if defined(IMPLEMENT_EPOLL_PWAIT)
    case TARGET_NR_epoll_pwait:
#endif
    {
        struct target_epoll_event *target_ep;
        struct epoll_event *ep;
        int epfd = arg1;
        int maxevents = arg3;
        int timeout = arg4;

        target_ep = lock_user(VERIFY_WRITE, arg2,
                              maxevents * sizeof(struct target_epoll_event), 1);
        if (!target_ep) {
            goto efault;
        }

        ep = alloca(maxevents * sizeof(struct epoll_event));

        switch (num) {
#if defined(IMPLEMENT_EPOLL_PWAIT)
        case TARGET_NR_epoll_pwait:
        {
            target_sigset_t *target_set;
            sigset_t _set, *set = &_set;

            if (arg5) {
                target_set = lock_user(VERIFY_READ, arg5,
                                       sizeof(target_sigset_t), 1);
                if (!target_set) {
                    unlock_user(target_ep, arg2, 0);
                    goto efault;
                }
                target_to_host_sigset(set, target_set);
                unlock_user(target_set, arg5, 0);
            } else {
                set = NULL;
            }

            ret = get_errno(epoll_pwait(epfd, ep, maxevents, timeout, set));
            break;
        }
#endif
#if defined(TARGET_NR_epoll_wait)
        case TARGET_NR_epoll_wait:
            ret = get_errno(epoll_wait(epfd, ep, maxevents, timeout));
            break;
#endif
        default:
            ret = -TARGET_ENOSYS;
        }
        if (!is_error(ret)) {
            int i;
            for (i = 0; i < ret; i++) {
                target_ep[i].events = tswap32(ep[i].events);
                target_ep[i].data.u64 = tswap64(ep[i].data.u64);
            }
        }
        unlock_user(target_ep, arg2, ret * sizeof(struct target_epoll_event));
        break;
    }
#endif
9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027
#endif
#ifdef TARGET_NR_prlimit64
    case TARGET_NR_prlimit64:
    {
        /* args: pid, resource number, ptr to new rlimit, ptr to old rlimit */
        struct target_rlimit64 *target_rnew, *target_rold;
        struct host_rlimit64 rnew, rold, *rnewp = 0;
        if (arg3) {
            if (!lock_user_struct(VERIFY_READ, target_rnew, arg3, 1)) {
                goto efault;
            }
            rnew.rlim_cur = tswap64(target_rnew->rlim_cur);
            rnew.rlim_max = tswap64(target_rnew->rlim_max);
            unlock_user_struct(target_rnew, arg3, 0);
            rnewp = &rnew;
        }

        ret = get_errno(sys_prlimit64(arg1, arg2, rnewp, arg4 ? &rold : 0));
        if (!is_error(ret) && arg4) {
            if (!lock_user_struct(VERIFY_WRITE, target_rold, arg4, 1)) {
                goto efault;
            }
            target_rold->rlim_cur = tswap64(rold.rlim_cur);
            target_rold->rlim_max = tswap64(rold.rlim_max);
            unlock_user_struct(target_rold, arg4, 1);
        }
        break;
    }
9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040
#endif
#ifdef TARGET_NR_gethostname
    case TARGET_NR_gethostname:
    {
        char *name = lock_user(VERIFY_WRITE, arg1, arg2, 0);
        if (name) {
            ret = get_errno(gethostname(name, arg2));
            unlock_user(name, arg1, arg2);
        } else {
            ret = -TARGET_EFAULT;
        }
        break;
    }
9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068
#endif
#ifdef TARGET_NR_atomic_cmpxchg_32
    case TARGET_NR_atomic_cmpxchg_32:
    {
        /* should use start_exclusive from main.c */
        abi_ulong mem_value;
        if (get_user_u32(mem_value, arg6)) {
            target_siginfo_t info;
            info.si_signo = SIGSEGV;
            info.si_errno = 0;
            info.si_code = TARGET_SEGV_MAPERR;
            info._sifields._sigfault._addr = arg6;
            queue_signal((CPUArchState *)cpu_env, info.si_signo, &info);
            ret = 0xdeadbeef;

        }
        if (mem_value == arg2)
            put_user_u32(arg1, arg6);
        ret = mem_value;
        break;
    }
#endif
#ifdef TARGET_NR_atomic_barrier
    case TARGET_NR_atomic_barrier:
    {
        /* Like the kernel implementation and the qemu arm barrier, no-op this? */
        break;
    }
9069
#endif
9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187

#ifdef TARGET_NR_timer_create
    case TARGET_NR_timer_create:
    {
        /* args: clockid_t clockid, struct sigevent *sevp, timer_t *timerid */

        struct sigevent host_sevp = { {0}, }, *phost_sevp = NULL;
        struct target_sigevent *ptarget_sevp;
        struct target_timer_t *ptarget_timer;

        int clkid = arg1;
        int timer_index = next_free_host_timer();

        if (timer_index < 0) {
            ret = -TARGET_EAGAIN;
        } else {
            timer_t *phtimer = g_posix_timers  + timer_index;

            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, ptarget_sevp, arg2, 1)) {
                    goto efault;
                }

                host_sevp.sigev_signo = tswap32(ptarget_sevp->sigev_signo);
                host_sevp.sigev_notify = tswap32(ptarget_sevp->sigev_notify);

                phost_sevp = &host_sevp;
            }

            ret = get_errno(timer_create(clkid, phost_sevp, phtimer));
            if (ret) {
                phtimer = NULL;
            } else {
                if (!lock_user_struct(VERIFY_WRITE, ptarget_timer, arg3, 1)) {
                    goto efault;
                }
                ptarget_timer->ptr = tswap32(0xcafe0000 | timer_index);
                unlock_user_struct(ptarget_timer, arg3, 1);
            }
        }
        break;
    }
#endif

#ifdef TARGET_NR_timer_settime
    case TARGET_NR_timer_settime:
    {
        /* args: timer_t timerid, int flags, const struct itimerspec *new_value,
         * struct itimerspec * old_value */
        arg1 &= 0xffff;
        if (arg3 == 0 || arg1 < 0 || arg1 >= ARRAY_SIZE(g_posix_timers)) {
            ret = -TARGET_EINVAL;
        } else {
            timer_t htimer = g_posix_timers[arg1];
            struct itimerspec hspec_new = {{0},}, hspec_old = {{0},};

            target_to_host_itimerspec(&hspec_new, arg3);
            ret = get_errno(
                          timer_settime(htimer, arg2, &hspec_new, &hspec_old));
            host_to_target_itimerspec(arg2, &hspec_old);
        }
        break;
    }
#endif

#ifdef TARGET_NR_timer_gettime
    case TARGET_NR_timer_gettime:
    {
        /* args: timer_t timerid, struct itimerspec *curr_value */
        arg1 &= 0xffff;
        if (!arg2) {
            return -TARGET_EFAULT;
        } else if (arg1 < 0 || arg1 >= ARRAY_SIZE(g_posix_timers)) {
            ret = -TARGET_EINVAL;
        } else {
            timer_t htimer = g_posix_timers[arg1];
            struct itimerspec hspec;
            ret = get_errno(timer_gettime(htimer, &hspec));

            if (host_to_target_itimerspec(arg2, &hspec)) {
                ret = -TARGET_EFAULT;
            }
        }
        break;
    }
#endif

#ifdef TARGET_NR_timer_getoverrun
    case TARGET_NR_timer_getoverrun:
    {
        /* args: timer_t timerid */
        arg1 &= 0xffff;
        if (arg1 < 0 || arg1 >= ARRAY_SIZE(g_posix_timers)) {
            ret = -TARGET_EINVAL;
        } else {
            timer_t htimer = g_posix_timers[arg1];
            ret = get_errno(timer_getoverrun(htimer));
        }
        break;
    }
#endif

#ifdef TARGET_NR_timer_delete
    case TARGET_NR_timer_delete:
    {
        /* args: timer_t timerid */
        arg1 &= 0xffff;
        if (arg1 < 0 || arg1 >= ARRAY_SIZE(g_posix_timers)) {
            ret = -TARGET_EINVAL;
        } else {
            timer_t htimer = g_posix_timers[arg1];
            ret = get_errno(timer_delete(htimer));
            g_posix_timers[arg1] = 0;
        }
        break;
    }
#endif

9188 9189
    default:
    unimplemented:
B
bellard 已提交
9190
        gemu_log("qemu: Unsupported syscall: %d\n", num);
9191
#if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
B
bellard 已提交
9192
    unimplemented_nowarn:
B
bellard 已提交
9193
#endif
9194
        ret = -TARGET_ENOSYS;
9195 9196
        break;
    }
9197
fail:
B
bellard 已提交
9198
#ifdef DEBUG
9199
    gemu_log(" = " TARGET_ABI_FMT_ld "\n", ret);
B
bellard 已提交
9200
#endif
9201 9202
    if(do_strace)
        print_syscall_ret(num, ret);
9203
    return ret;
9204 9205 9206
efault:
    ret = -TARGET_EFAULT;
    goto fail;
9207
}