syscall.c 282.0 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_loop.h"
111
#include "cpu-uname.h"
112

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

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

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

B
bellard 已提交
120
//#include <linux/msdos_fs.h>
A
aurel32 已提交
121 122
#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 已提交
123

124 125 126 127 128 129 130

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

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

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

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

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

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

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

B
bellard 已提交
170 171 172

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

179

180
#define __NR_sys_uname __NR_uname
B
bellard 已提交
181 182
#define __NR_sys_getcwd1 __NR_getcwd
#define __NR_sys_getdents __NR_getdents
B
bellard 已提交
183
#define __NR_sys_getdents64 __NR_getdents64
184
#define __NR_sys_getpriority __NR_getpriority
B
bellard 已提交
185
#define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo
186
#define __NR_sys_syslog __NR_syslog
T
ths 已提交
187
#define __NR_sys_tgkill __NR_tgkill
T
ths 已提交
188
#define __NR_sys_tkill __NR_tkill
189
#define __NR_sys_futex __NR_futex
A
aurel32 已提交
190 191 192
#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
193

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

B
bellard 已提交
199
#ifdef __NR_gettid
200
_syscall0(int, gettid)
B
bellard 已提交
201
#else
202 203
/* This is a replacement for the host gettid() and must return a host
   errno. */
B
bellard 已提交
204 205 206 207
static int gettid(void) {
    return -ENOSYS;
}
#endif
208
#ifdef __NR_getdents
209
_syscall3(int, sys_getdents, uint, fd, struct linux_dirent *, dirp, uint, count);
210 211 212
#endif
#if !defined(__NR_getdents) || \
    (defined(TARGET_NR_getdents64) && defined(__NR_getdents64))
213 214
_syscall3(int, sys_getdents64, uint, fd, struct linux_dirent64 *, dirp, uint, count);
#endif
R
Richard Henderson 已提交
215
#if defined(TARGET_NR__llseek) && defined(__NR_llseek)
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
_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
237 238 239 240 241 242
#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);
243 244
_syscall4(int, reboot, int, magic1, int, magic2, unsigned int, cmd,
          void *, arg);
245 246 247 248 249 250 251 252 253 254

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,  },
255
  { TARGET_O_SYNC,      TARGET_O_DSYNC,     O_SYNC,      O_DSYNC,     },
256 257 258 259 260 261
  { 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,    },
262 263 264 265 266 267 268 269 270 271 272 273 274
#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, },
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
#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).
   */

299
  memset(buf, 0, sizeof(*buf));
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
  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 已提交
319
  return strlen(buf)+1;
320 321 322
}

#ifdef TARGET_NR_openat
A
Alexander Graf 已提交
323
static int sys_openat(int dirfd, const char *pathname, int flags, mode_t mode)
324 325 326 327 328 329 330 331 332 333 334
{
  /*
   * 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 已提交
335

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

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

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

397 398 399 400 401 402 403 404 405
#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 已提交
406

407 408 409 410 411 412 413 414 415
#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

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
#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

431
/* ARM EABI and MIPS expect 64bit types aligned even on pairs or registers */
432
#ifdef TARGET_ARM
433 434 435 436 437
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; }
438 439 440 441 442
#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; }
443 444 445 446
#else
static inline int regpairs_aligned(void *cpu_env) { return 0; }
#endif

447 448 449 450 451 452 453
#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] = {
};

454
/*
T
ths 已提交
455
 * This list is the union of errno values overridden in asm-<arch>/errno.h
456 457
 * minus the errnos that are not actually generic to all archs.
 */
458
static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 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
    [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 已提交
546
#ifdef ENOKEY
547
    [ENOKEY]		= TARGET_ENOKEY,
T
ths 已提交
548 549
#endif
#ifdef EKEYEXPIRED
550
    [EKEYEXPIRED]	= TARGET_EKEYEXPIRED,
T
ths 已提交
551 552
#endif
#ifdef EKEYREVOKED
553
    [EKEYREVOKED]	= TARGET_EKEYREVOKED,
T
ths 已提交
554 555
#endif
#ifdef EKEYREJECTED
556
    [EKEYREJECTED]	= TARGET_EKEYREJECTED,
T
ths 已提交
557 558
#endif
#ifdef EOWNERDEAD
559
    [EOWNERDEAD]	= TARGET_EOWNERDEAD,
T
ths 已提交
560 561
#endif
#ifdef ENOTRECOVERABLE
562
    [ENOTRECOVERABLE]	= TARGET_ENOTRECOVERABLE,
T
ths 已提交
563
#endif
564
};
565 566 567 568 569 570 571 572

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

573 574 575 576 577 578 579
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;
}

580
static inline abi_long get_errno(abi_long ret)
581 582
{
    if (ret == -1)
583
        return -host_to_target_errno(errno);
584 585 586 587
    else
        return ret;
}

588
static inline int is_error(abi_long ret)
589
{
590
    return (abi_ulong)ret >= (abi_ulong)(-4096);
591 592
}

593 594
char *target_strerror(int err)
{
595 596 597
    if ((err >= ERRNO_TABLE_SIZE) || (err < 0)) {
        return NULL;
    }
598 599 600
    return strerror(target_to_host_errno(err));
}

601 602
static abi_ulong target_brk;
static abi_ulong target_original_brk;
603
static abi_ulong brk_page;
604

605
void target_set_brk(abi_ulong new_brk)
606
{
607
    target_original_brk = target_brk = HOST_PAGE_ALIGN(new_brk);
608
    brk_page = HOST_PAGE_ALIGN(target_brk);
609 610
}

611 612 613
//#define DEBUGF_BRK(message, args...) do { fprintf(stderr, (message), ## args); } while (0)
#define DEBUGF_BRK(message, args...)

614
/* do_brk() must return target values and target errnos. */
615
abi_long do_brk(abi_ulong new_brk)
616
{
617
    abi_long mapped_addr;
618 619
    int	new_alloc_size;

P
Paul Brook 已提交
620
    DEBUGF_BRK("do_brk(" TARGET_ABI_FMT_lx ") -> ", new_brk);
621 622

    if (!new_brk) {
P
Paul Brook 已提交
623
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (!new_brk)\n", target_brk);
624
        return target_brk;
625 626
    }
    if (new_brk < target_original_brk) {
P
Paul Brook 已提交
627 628
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk < target_original_brk)\n",
                   target_brk);
629
        return target_brk;
630
    }
631

632 633 634 635 636 637 638 639
    /* 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);
        }
640
	target_brk = new_brk;
P
Paul Brook 已提交
641
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk <= brk_page)\n", target_brk);
642
    	return target_brk;
643 644
    }

645 646 647 648 649 650
    /* 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.
     */
651
    new_alloc_size = HOST_PAGE_ALIGN(new_brk - brk_page);
652
    mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size,
B
bellard 已提交
653
                                        PROT_READ|PROT_WRITE,
654 655 656
                                        MAP_ANON|MAP_PRIVATE, 0, 0));

    if (mapped_addr == brk_page) {
657 658 659 660 661 662 663 664 665
        /* 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);

666
        target_brk = new_brk;
667
        brk_page = HOST_PAGE_ALIGN(target_brk);
P
Paul Brook 已提交
668 669
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr == brk_page)\n",
            target_brk);
670 671 672 673 674 675 676
        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 已提交
677
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr != -1)\n", target_brk);
678 679
    }
    else {
P
Paul Brook 已提交
680
        DEBUGF_BRK(TARGET_ABI_FMT_lx " (otherwise)\n", target_brk);
681
    }
682

683 684 685
#if defined(TARGET_ALPHA)
    /* We (partially) emulate OSF/1 on Alpha, which requires we
       return a proper errno, not an unchanged brk value.  */
686
    return -TARGET_ENOMEM;
687
#endif
688
    /* For everything else, return the previous break. */
689
    return target_brk;
690 691
}

692 693 694
static inline abi_long copy_from_user_fdset(fd_set *fds,
                                            abi_ulong target_fds_addr,
                                            int n)
695
{
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
    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++;
716 717
        }
    }
718 719 720 721

    unlock_user(target_fds, target_fds_addr, 0);

    return 0;
722 723
}

724 725 726 727 728 729 730 731 732 733 734 735 736 737
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;
}

738 739 740
static inline abi_long copy_to_user_fdset(abi_ulong target_fds_addr,
                                          const fd_set *fds,
                                          int n)
741 742
{
    int i, nw, j, k;
743
    abi_long v;
744
    abi_ulong *target_fds;
745

746 747 748 749 750 751 752 753 754 755 756
    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++) {
757
            v |= ((abi_ulong)(FD_ISSET(k, fds) != 0) << j);
758
            k++;
759
        }
760
        __put_user(v, &target_fds[i]);
761
    }
762 763 764 765

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

    return 0;
766 767
}

B
bellard 已提交
768 769 770 771 772 773
#if defined(__alpha__)
#define HOST_HZ 1024
#else
#define HOST_HZ 100
#endif

774
static inline abi_long host_to_target_clock_t(long ticks)
B
bellard 已提交
775 776 777 778 779 780 781 782
{
#if HOST_HZ == TARGET_HZ
    return ticks;
#else
    return ((int64_t)ticks * TARGET_HZ) / HOST_HZ;
#endif
}

783 784
static inline abi_long host_to_target_rusage(abi_ulong target_addr,
                                             const struct rusage *rusage)
B
bellard 已提交
785
{
786 787
    struct target_rusage *target_rusage;

788 789
    if (!lock_user_struct(VERIFY_WRITE, target_rusage, target_addr, 0))
        return -TARGET_EFAULT;
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
    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);
808
    unlock_user_struct(target_rusage, target_addr, 1);
809 810

    return 0;
B
bellard 已提交
811 812
}

813
static inline rlim_t target_to_host_rlim(abi_ulong target_rlim)
814
{
815
    abi_ulong target_rlim_swap;
816 817
    rlim_t result;
    
818 819 820 821 822 823 824
    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;
825 826
    
    return result;
827 828
}

829
static inline abi_ulong host_to_target_rlim(rlim_t rlim)
830
{
831 832
    abi_ulong target_rlim_swap;
    abi_ulong result;
833
    
834
    if (rlim == RLIM_INFINITY || rlim != (abi_long)rlim)
835
        target_rlim_swap = TARGET_RLIM_INFINITY;
836
    else
837
        target_rlim_swap = rlim;
838
    result = tswapal(target_rlim_swap);
839 840
    
    return result;
841 842
}

843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
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;
    }
}

881 882
static inline abi_long copy_from_user_timeval(struct timeval *tv,
                                              abi_ulong target_tv_addr)
883
{
884 885
    struct target_timeval *target_tv;

886
    if (!lock_user_struct(VERIFY_READ, target_tv, target_tv_addr, 1))
887
        return -TARGET_EFAULT;
888 889 890 891 892

    __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);
893 894

    return 0;
895 896
}

897 898
static inline abi_long copy_to_user_timeval(abi_ulong target_tv_addr,
                                            const struct timeval *tv)
899
{
900 901
    struct target_timeval *target_tv;

902
    if (!lock_user_struct(VERIFY_WRITE, target_tv, target_tv_addr, 0))
903
        return -TARGET_EFAULT;
904 905 906 907 908

    __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);
909 910

    return 0;
911 912
}

913 914 915
#if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
#include <mqueue.h>

916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
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;
}
953
#endif
954

955
#if defined(TARGET_NR_select) || defined(TARGET_NR__newselect)
956
/* do_select() must return target values and target errnos. */
957
static abi_long do_select(int n,
958 959
                          abi_ulong rfd_addr, abi_ulong wfd_addr,
                          abi_ulong efd_addr, abi_ulong target_tv_addr)
960 961 962 963
{
    fd_set rfds, wfds, efds;
    fd_set *rfds_ptr, *wfds_ptr, *efds_ptr;
    struct timeval tv, *tv_ptr;
964
    abi_long ret;
965

966 967 968
    ret = copy_from_user_fdset_ptr(&rfds, &rfds_ptr, rfd_addr, n);
    if (ret) {
        return ret;
969
    }
970 971 972
    ret = copy_from_user_fdset_ptr(&wfds, &wfds_ptr, wfd_addr, n);
    if (ret) {
        return ret;
973
    }
974 975 976
    ret = copy_from_user_fdset_ptr(&efds, &efds_ptr, efd_addr, n);
    if (ret) {
        return ret;
977
    }
978

979
    if (target_tv_addr) {
980 981
        if (copy_from_user_timeval(&tv, target_tv_addr))
            return -TARGET_EFAULT;
982 983 984 985
        tv_ptr = &tv;
    } else {
        tv_ptr = NULL;
    }
986

987
    ret = get_errno(select(n, rfds_ptr, wfds_ptr, efds_ptr, tv_ptr));
988

989 990 991 992 993 994 995
    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;
996

997 998
        if (target_tv_addr && copy_to_user_timeval(target_tv_addr, &tv))
            return -TARGET_EFAULT;
999
    }
1000

1001 1002
    return ret;
}
1003
#endif
1004

R
Riku Voipio 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013
static abi_long do_pipe2(int host_pipe[], int flags)
{
#ifdef CONFIG_PIPE2
    return pipe2(host_pipe, flags);
#else
    return -ENOSYS;
#endif
}

1014 1015
static abi_long do_pipe(void *cpu_env, abi_ulong pipedes,
                        int flags, int is_pipe2)
R
Riku Voipio 已提交
1016 1017 1018 1019 1020 1021 1022
{
    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);
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033

    /* 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)
1034
        ((CPUSH4State*)cpu_env)->gregs[1] = host_pipe[1];
1035
        return host_pipe[0];
1036 1037 1038
#elif defined(TARGET_SPARC)
        ((CPUSPARCState*)cpu_env)->regwptr[1] = host_pipe[1];
        return host_pipe[0];
1039
#endif
1040 1041
    }

R
Riku Voipio 已提交
1042 1043 1044 1045 1046 1047
    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);
}

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
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))
1060
        mreqn->imr_ifindex = tswapal(target_smreqn->imr_ifindex);
1061 1062 1063 1064 1065
    unlock_user(target_smreqn, target_addr, 0);

    return 0;
}

1066 1067 1068
static inline abi_long target_to_host_sockaddr(struct sockaddr *addr,
                                               abi_ulong target_addr,
                                               socklen_t len)
B
bellard 已提交
1069
{
1070 1071
    const socklen_t unix_maxlen = sizeof (struct sockaddr_un);
    sa_family_t sa_family;
1072 1073
    struct target_sockaddr *target_saddr;

1074 1075 1076
    target_saddr = lock_user(VERIFY_READ, target_addr, len, 1);
    if (!target_saddr)
        return -TARGET_EFAULT;
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

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

1099
    memcpy(addr, target_saddr, len);
1100
    addr->sa_family = sa_family;
1101
    unlock_user(target_saddr, target_addr, 0);
1102 1103

    return 0;
B
bellard 已提交
1104 1105
}

1106 1107 1108
static inline abi_long host_to_target_sockaddr(abi_ulong target_addr,
                                               struct sockaddr *addr,
                                               socklen_t len)
B
bellard 已提交
1109
{
1110 1111
    struct target_sockaddr *target_saddr;

1112 1113 1114
    target_saddr = lock_user(VERIFY_WRITE, target_addr, len, 0);
    if (!target_saddr)
        return -TARGET_EFAULT;
1115 1116 1117
    memcpy(target_saddr, addr, len);
    target_saddr->sa_family = tswap16(addr->sa_family);
    unlock_user(target_saddr, target_addr, len);
1118 1119

    return 0;
B
bellard 已提交
1120 1121
}

1122 1123
static inline abi_long target_to_host_cmsg(struct msghdr *msgh,
                                           struct target_msghdr *target_msgh)
B
bellard 已提交
1124 1125
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
1126 1127 1128
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
1129
    socklen_t space = 0;
1130
    
1131
    msg_controllen = tswapal(target_msgh->msg_controllen);
1132 1133
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
1134
    target_cmsg_addr = tswapal(target_msgh->msg_control);
1135 1136 1137
    target_cmsg = lock_user(VERIFY_READ, target_cmsg_addr, msg_controllen, 1);
    if (!target_cmsg)
        return -TARGET_EFAULT;
B
bellard 已提交
1138 1139 1140 1141 1142

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

1143
        int len = tswapal(target_cmsg->cmsg_len)
B
bellard 已提交
1144 1145 1146 1147 1148
                  - TARGET_CMSG_ALIGN(sizeof (struct target_cmsghdr));

        space += CMSG_SPACE(len);
        if (space > msgh->msg_controllen) {
            space -= CMSG_SPACE(len);
B
bellard 已提交
1149
            gemu_log("Host cmsg overflow\n");
B
bellard 已提交
1150 1151 1152 1153 1154 1155 1156
            break;
        }

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

1157
        if (cmsg->cmsg_level != TARGET_SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
B
bellard 已提交
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
            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);
    }
1172 1173
    unlock_user(target_cmsg, target_cmsg_addr, 0);
 the_end:
B
bellard 已提交
1174
    msgh->msg_controllen = space;
1175
    return 0;
B
bellard 已提交
1176 1177
}

1178 1179
static inline abi_long host_to_target_cmsg(struct target_msghdr *target_msgh,
                                           struct msghdr *msgh)
B
bellard 已提交
1180 1181
{
    struct cmsghdr *cmsg = CMSG_FIRSTHDR(msgh);
1182 1183 1184
    abi_long msg_controllen;
    abi_ulong target_cmsg_addr;
    struct target_cmsghdr *target_cmsg;
B
bellard 已提交
1185 1186
    socklen_t space = 0;

1187
    msg_controllen = tswapal(target_msgh->msg_controllen);
1188 1189
    if (msg_controllen < sizeof (struct target_cmsghdr)) 
        goto the_end;
1190
    target_cmsg_addr = tswapal(target_msgh->msg_control);
1191 1192 1193 1194
    target_cmsg = lock_user(VERIFY_WRITE, target_cmsg_addr, msg_controllen, 0);
    if (!target_cmsg)
        return -TARGET_EFAULT;

B
bellard 已提交
1195 1196 1197 1198 1199 1200 1201
    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);
1202
        if (space > msg_controllen) {
B
bellard 已提交
1203
            space -= TARGET_CMSG_SPACE(len);
B
bellard 已提交
1204
            gemu_log("Target cmsg overflow\n");
B
bellard 已提交
1205 1206 1207 1208 1209
            break;
        }

        target_cmsg->cmsg_level = tswap32(cmsg->cmsg_level);
        target_cmsg->cmsg_type = tswap32(cmsg->cmsg_type);
1210
        target_cmsg->cmsg_len = tswapal(TARGET_CMSG_LEN(len));
B
bellard 已提交
1211

1212 1213
        if ((cmsg->cmsg_level == TARGET_SOL_SOCKET) &&
                                (cmsg->cmsg_type == SCM_RIGHTS)) {
B
bellard 已提交
1214 1215 1216 1217 1218 1219
            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]);
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
        } else if ((cmsg->cmsg_level == TARGET_SOL_SOCKET) &&
                                (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 已提交
1234 1235 1236 1237 1238
        }

        cmsg = CMSG_NXTHDR(msgh, cmsg);
        target_cmsg = TARGET_CMSG_NXTHDR(target_msgh, target_cmsg);
    }
1239 1240
    unlock_user(target_cmsg, target_cmsg_addr, space);
 the_end:
1241
    target_msgh->msg_controllen = tswapal(space);
1242
    return 0;
B
bellard 已提交
1243 1244
}

1245
/* do_setsockopt() Must return target values and target errnos. */
1246
static abi_long do_setsockopt(int sockfd, int level, int optname,
1247
                              abi_ulong optval_addr, socklen_t optlen)
B
bellard 已提交
1248
{
1249
    abi_long ret;
1250
    int val;
1251
    struct ip_mreqn *ip_mreq;
1252
    struct ip_mreq_source *ip_mreq_source;
1253

1254 1255
    switch(level) {
    case SOL_TCP:
B
bellard 已提交
1256 1257
        /* TCP options all take an 'int' value.  */
        if (optlen < sizeof(uint32_t))
1258
            return -TARGET_EINVAL;
1259

1260 1261
        if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
1262 1263 1264 1265
        ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
        break;
    case SOL_IP:
        switch(optname) {
B
bellard 已提交
1266 1267
        case IP_TOS:
        case IP_TTL:
1268
        case IP_HDRINCL:
B
bellard 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
        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:
1281 1282
            val = 0;
            if (optlen >= sizeof(uint32_t)) {
1283 1284
                if (get_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
1285
            } else if (optlen >= 1) {
1286 1287
                if (get_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
1288 1289 1290
            }
            ret = get_errno(setsockopt(sockfd, level, optname, &val, sizeof(val)));
            break;
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
        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;

1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
        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;

1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
        default:
            goto unimplemented;
        }
        break;
    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;

1333 1334 1335 1336
        default:
            goto unimplemented;
        }
        break;
1337
    case TARGET_SOL_SOCKET:
1338
        switch (optname) {
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
        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;
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
        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;
        }
1404
            /* Options with 'int' argument.  */
1405 1406 1407 1408 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
        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 已提交
1441
#ifdef SO_BSDCOMPAT
1442 1443 1444
        case TARGET_SO_BSDCOMPAT:
		optname = SO_BSDCOMPAT;
		break;
B
bellard 已提交
1445
#endif
1446 1447 1448 1449 1450 1451 1452 1453 1454
        case TARGET_SO_PASSCRED:
		optname = SO_PASSCRED;
		break;
        case TARGET_SO_TIMESTAMP:
		optname = SO_TIMESTAMP;
		break;
        case TARGET_SO_RCVLOWAT:
		optname = SO_RCVLOWAT;
		break;
1455 1456 1457 1458
            break;
        default:
            goto unimplemented;
        }
1459
	if (optlen < sizeof(uint32_t))
1460
            return -TARGET_EINVAL;
1461

1462 1463
	if (get_user_u32(val, optval_addr))
            return -TARGET_EFAULT;
1464
	ret = get_errno(setsockopt(sockfd, SOL_SOCKET, optname, &val, sizeof(val)));
1465
        break;
B
bellard 已提交
1466
    default:
1467
    unimplemented:
1468
        gemu_log("Unsupported setsockopt level=%d optname=%d\n", level, optname);
1469
        ret = -TARGET_ENOPROTOOPT;
B
bellard 已提交
1470
    }
1471
    return ret;
B
bellard 已提交
1472 1473
}

1474
/* do_getsockopt() Must return target values and target errnos. */
1475
static abi_long do_getsockopt(int sockfd, int level, int optname,
1476
                              abi_ulong optval_addr, abi_ulong optlen)
B
bellard 已提交
1477
{
1478
    abi_long ret;
1479 1480
    int len, val;
    socklen_t lv;
1481 1482

    switch(level) {
1483
    case TARGET_SOL_SOCKET:
1484 1485 1486 1487 1488 1489 1490 1491
        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;
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
        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;
        }
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 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 1573 1574 1575
        /* 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;
1576
        default:
B
bellard 已提交
1577 1578 1579 1580 1581 1582
            goto int_case;
        }
        break;
    case SOL_TCP:
        /* TCP options all take an 'int' value.  */
    int_case:
1583 1584
        if (get_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
1585
        if (len < 0)
1586
            return -TARGET_EINVAL;
1587
        lv = sizeof(lv);
B
bellard 已提交
1588 1589 1590 1591 1592
        ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
        if (ret < 0)
            return ret;
        if (len > lv)
            len = lv;
1593 1594 1595 1596 1597 1598
        if (len == 4) {
            if (put_user_u32(val, optval_addr))
                return -TARGET_EFAULT;
        } else {
            if (put_user_u8(val, optval_addr))
                return -TARGET_EFAULT;
1599
        }
1600 1601
        if (put_user_u32(len, optlen))
            return -TARGET_EFAULT;
B
bellard 已提交
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
        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:
1620 1621
            if (get_user_u32(len, optlen))
                return -TARGET_EFAULT;
1622
            if (len < 0)
1623
                return -TARGET_EINVAL;
1624
            lv = sizeof(lv);
1625 1626 1627
            ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv));
            if (ret < 0)
                return ret;
B
bellard 已提交
1628 1629
            if (len < sizeof(int) && len > 0 && val >= 0 && val < 255) {
                len = 1;
1630 1631 1632
                if (put_user_u32(len, optlen)
                    || put_user_u8(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1633 1634 1635
            } else {
                if (len > sizeof(int))
                    len = sizeof(int);
1636 1637 1638
                if (put_user_u32(len, optlen)
                    || put_user_u32(val, optval_addr))
                    return -TARGET_EFAULT;
B
bellard 已提交
1639
            }
1640
            break;
B
bellard 已提交
1641
        default:
1642 1643
            ret = -TARGET_ENOPROTOOPT;
            break;
1644 1645 1646 1647 1648 1649
        }
        break;
    default:
    unimplemented:
        gemu_log("getsockopt level=%d optname=%d not yet supported\n",
                 level, optname);
1650
        ret = -TARGET_EOPNOTSUPP;
1651 1652 1653
        break;
    }
    return ret;
B
bellard 已提交
1654 1655
}

1656 1657
static struct iovec *lock_iovec(int type, abi_ulong target_addr,
                                int count, int copy)
1658 1659
{
    struct target_iovec *target_vec;
1660 1661
    struct iovec *vec;
    abi_ulong total_len, max_len;
1662
    int i;
1663

1664 1665 1666 1667
    if (count == 0) {
        errno = 0;
        return NULL;
    }
1668
    if (count < 0 || count > IOV_MAX) {
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
        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) {
        errno = EFAULT;
        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) {
            errno = EINVAL;
            goto fail;
        } else if (len == 0) {
            /* Zero length pointer is ignored.  */
            vec[i].iov_base = 0;
B
bellard 已提交
1701
        } else {
1702 1703 1704 1705 1706 1707 1708 1709
            vec[i].iov_base = lock_user(type, base, len, copy);
            if (!vec[i].iov_base) {
                errno = EFAULT;
                goto fail;
            }
            if (len > max_len - total_len) {
                len = max_len - total_len;
            }
B
bellard 已提交
1710
        }
1711 1712
        vec[i].iov_len = len;
        total_len += len;
1713
    }
1714 1715 1716 1717 1718 1719 1720 1721 1722

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

 fail:
    free(vec);
 fail2:
    unlock_user(target_vec, target_addr, 0);
    return NULL;
1723 1724
}

1725 1726
static void unlock_iovec(struct iovec *vec, abi_ulong target_addr,
                         int count, int copy)
1727 1728 1729 1730
{
    struct target_iovec *target_vec;
    int i;

1731 1732 1733 1734 1735 1736 1737 1738 1739
    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;
            }
1740 1741
            unlock_user(vec[i].iov_base, base, copy ? vec[i].iov_len : 0);
        }
1742
        unlock_user(target_vec, target_addr, 0);
1743
    }
1744

1745
    free(vec);
1746 1747
}

1748
static inline void target_to_host_sock_type(int *type)
1749
{
1750 1751 1752 1753
    int host_type = 0;
    int target_type = *type;

    switch (target_type & TARGET_SOCK_TYPE_MASK) {
1754
    case TARGET_SOCK_DGRAM:
1755
        host_type = SOCK_DGRAM;
1756 1757
        break;
    case TARGET_SOCK_STREAM:
1758
        host_type = SOCK_STREAM;
1759
        break;
1760 1761
    default:
        host_type = target_type & TARGET_SOCK_TYPE_MASK;
1762 1763
        break;
    }
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777
    if (target_type & TARGET_SOCK_CLOEXEC) {
        host_type |= SOCK_CLOEXEC;
    }
    if (target_type & TARGET_SOCK_NONBLOCK) {
        host_type |= SOCK_NONBLOCK;
    }
    *type = host_type;
}

/* do_socket() Must return target values and target errnos. */
static abi_long do_socket(int domain, int type, int protocol)
{
    target_to_host_sock_type(&type);

1778 1779
    if (domain == PF_NETLINK)
        return -EAFNOSUPPORT; /* do not NETLINK socket connections possible */
1780 1781 1782
    return get_errno(socket(domain, type, protocol));
}

1783
/* do_bind() Must return target values and target errnos. */
1784 1785
static abi_long do_bind(int sockfd, abi_ulong target_addr,
                        socklen_t addrlen)
1786
{
1787
    void *addr;
1788
    abi_long ret;
1789

1790
    if ((int)addrlen < 0) {
1791
        return -TARGET_EINVAL;
1792
    }
1793

1794
    addr = alloca(addrlen+1);
1795

1796 1797 1798 1799
    ret = target_to_host_sockaddr(addr, target_addr, addrlen);
    if (ret)
        return ret;

1800 1801 1802
    return get_errno(bind(sockfd, addr, addrlen));
}

1803
/* do_connect() Must return target values and target errnos. */
1804 1805
static abi_long do_connect(int sockfd, abi_ulong target_addr,
                           socklen_t addrlen)
1806
{
1807
    void *addr;
1808
    abi_long ret;
1809

1810
    if ((int)addrlen < 0) {
1811
        return -TARGET_EINVAL;
1812
    }
1813 1814

    addr = alloca(addrlen);
1815

1816 1817 1818 1819
    ret = target_to_host_sockaddr(addr, target_addr, addrlen);
    if (ret)
        return ret;

1820 1821 1822
    return get_errno(connect(sockfd, addr, addrlen));
}

1823
/* do_sendrecvmsg() Must return target values and target errnos. */
1824 1825
static abi_long do_sendrecvmsg(int fd, abi_ulong target_msg,
                               int flags, int send)
1826
{
1827
    abi_long ret, len;
1828 1829 1830 1831
    struct target_msghdr *msgp;
    struct msghdr msg;
    int count;
    struct iovec *vec;
1832
    abi_ulong target_vec;
1833

1834 1835 1836 1837 1838 1839
    /* FIXME */
    if (!lock_user_struct(send ? VERIFY_READ : VERIFY_WRITE,
                          msgp,
                          target_msg,
                          send ? 1 : 0))
        return -TARGET_EFAULT;
1840 1841 1842
    if (msgp->msg_name) {
        msg.msg_namelen = tswap32(msgp->msg_namelen);
        msg.msg_name = alloca(msg.msg_namelen);
1843
        ret = target_to_host_sockaddr(msg.msg_name, tswapal(msgp->msg_name),
1844
                                msg.msg_namelen);
1845
        if (ret) {
1846
            goto out2;
1847
        }
1848 1849 1850 1851
    } else {
        msg.msg_name = NULL;
        msg.msg_namelen = 0;
    }
1852
    msg.msg_controllen = 2 * tswapal(msgp->msg_controllen);
1853 1854
    msg.msg_control = alloca(msg.msg_controllen);
    msg.msg_flags = tswap32(msgp->msg_flags);
1855

1856 1857
    count = tswapal(msgp->msg_iovlen);
    target_vec = tswapal(msgp->msg_iov);
1858 1859 1860 1861 1862 1863
    vec = lock_iovec(send ? VERIFY_READ : VERIFY_WRITE,
                     target_vec, count, send);
    if (vec == NULL) {
        ret = -host_to_target_errno(errno);
        goto out2;
    }
1864 1865
    msg.msg_iovlen = count;
    msg.msg_iov = vec;
1866

1867
    if (send) {
1868 1869 1870
        ret = target_to_host_cmsg(&msg, msgp);
        if (ret == 0)
            ret = get_errno(sendmsg(fd, &msg, flags));
1871 1872
    } else {
        ret = get_errno(recvmsg(fd, &msg, flags));
1873 1874
        if (!is_error(ret)) {
            len = ret;
1875
            ret = host_to_target_cmsg(msgp, &msg);
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
            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;
                    }
                }

1886
                ret = len;
1887
            }
1888
        }
1889
    }
1890 1891

out:
1892
    unlock_iovec(vec, target_vec, count, !send);
1893
out2:
1894
    unlock_user_struct(msgp, target_msg, send ? 0 : 1);
1895 1896 1897
    return ret;
}

P
Peter Maydell 已提交
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
/* 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 已提交
1914
{
1915 1916
    socklen_t addrlen;
    void *addr;
1917
    abi_long ret;
P
pbrook 已提交
1918

P
Peter Maydell 已提交
1919 1920 1921
    if (target_addr == 0) {
        return get_errno(accept4(fd, NULL, NULL, flags));
    }
1922 1923

    /* linux returns EINVAL if addrlen pointer is invalid */
1924
    if (get_user_u32(addrlen, target_addrlen_addr))
1925
        return -TARGET_EINVAL;
1926

1927
    if ((int)addrlen < 0) {
1928
        return -TARGET_EINVAL;
1929
    }
1930

1931 1932 1933
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EINVAL;

1934 1935
    addr = alloca(addrlen);

P
Peter Maydell 已提交
1936
    ret = get_errno(accept4(fd, addr, &addrlen, flags));
P
pbrook 已提交
1937 1938
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1939 1940
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1941 1942 1943 1944
    }
    return ret;
}

1945
/* do_getpeername() Must return target values and target errnos. */
1946
static abi_long do_getpeername(int fd, abi_ulong target_addr,
1947
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
1948
{
1949 1950
    socklen_t addrlen;
    void *addr;
1951
    abi_long ret;
P
pbrook 已提交
1952

1953 1954 1955
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

1956
    if ((int)addrlen < 0) {
1957
        return -TARGET_EINVAL;
1958
    }
1959

1960 1961 1962
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EFAULT;

1963 1964
    addr = alloca(addrlen);

P
pbrook 已提交
1965 1966 1967
    ret = get_errno(getpeername(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1968 1969
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1970 1971 1972 1973
    }
    return ret;
}

1974
/* do_getsockname() Must return target values and target errnos. */
1975
static abi_long do_getsockname(int fd, abi_ulong target_addr,
1976
                               abi_ulong target_addrlen_addr)
P
pbrook 已提交
1977
{
1978 1979
    socklen_t addrlen;
    void *addr;
1980
    abi_long ret;
P
pbrook 已提交
1981

1982 1983 1984
    if (get_user_u32(addrlen, target_addrlen_addr))
        return -TARGET_EFAULT;

1985
    if ((int)addrlen < 0) {
1986
        return -TARGET_EINVAL;
1987
    }
1988

1989 1990 1991
    if (!access_ok(VERIFY_WRITE, target_addr, addrlen))
        return -TARGET_EFAULT;

1992 1993
    addr = alloca(addrlen);

P
pbrook 已提交
1994 1995 1996
    ret = get_errno(getsockname(fd, addr, &addrlen));
    if (!is_error(ret)) {
        host_to_target_sockaddr(target_addr, addr, addrlen);
1997 1998
        if (put_user_u32(addrlen, target_addrlen_addr))
            ret = -TARGET_EFAULT;
P
pbrook 已提交
1999 2000 2001 2002
    }
    return ret;
}

2003
/* do_socketpair() Must return target values and target errnos. */
2004
static abi_long do_socketpair(int domain, int type, int protocol,
2005
                              abi_ulong target_tab_addr)
P
pbrook 已提交
2006 2007
{
    int tab[2];
2008
    abi_long ret;
P
pbrook 已提交
2009

2010 2011
    target_to_host_sock_type(&type);

P
pbrook 已提交
2012 2013
    ret = get_errno(socketpair(domain, type, protocol, tab));
    if (!is_error(ret)) {
2014 2015 2016
        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 已提交
2017 2018 2019 2020
    }
    return ret;
}

2021
/* do_sendto() Must return target values and target errnos. */
2022 2023
static abi_long do_sendto(int fd, abi_ulong msg, size_t len, int flags,
                          abi_ulong target_addr, socklen_t addrlen)
P
pbrook 已提交
2024 2025 2026
{
    void *addr;
    void *host_msg;
2027
    abi_long ret;
P
pbrook 已提交
2028

2029
    if ((int)addrlen < 0) {
2030
        return -TARGET_EINVAL;
2031
    }
2032

2033 2034 2035
    host_msg = lock_user(VERIFY_READ, msg, len, 1);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
2036 2037
    if (target_addr) {
        addr = alloca(addrlen);
2038 2039 2040 2041 2042
        ret = target_to_host_sockaddr(addr, target_addr, addrlen);
        if (ret) {
            unlock_user(host_msg, msg, 0);
            return ret;
        }
P
pbrook 已提交
2043 2044 2045 2046 2047 2048 2049 2050
        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;
}

2051
/* do_recvfrom() Must return target values and target errnos. */
2052 2053 2054
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 已提交
2055 2056 2057 2058
{
    socklen_t addrlen;
    void *addr;
    void *host_msg;
2059
    abi_long ret;
P
pbrook 已提交
2060

2061 2062 2063
    host_msg = lock_user(VERIFY_WRITE, msg, len, 0);
    if (!host_msg)
        return -TARGET_EFAULT;
P
pbrook 已提交
2064
    if (target_addr) {
2065 2066 2067 2068
        if (get_user_u32(addrlen, target_addrlen)) {
            ret = -TARGET_EFAULT;
            goto fail;
        }
2069
        if ((int)addrlen < 0) {
2070 2071 2072
            ret = -TARGET_EINVAL;
            goto fail;
        }
P
pbrook 已提交
2073 2074 2075 2076
        addr = alloca(addrlen);
        ret = get_errno(recvfrom(fd, host_msg, len, flags, addr, &addrlen));
    } else {
        addr = NULL; /* To keep compiler quiet.  */
B
Blue Swirl 已提交
2077
        ret = get_errno(qemu_recv(fd, host_msg, len, flags));
P
pbrook 已提交
2078 2079 2080 2081
    }
    if (!is_error(ret)) {
        if (target_addr) {
            host_to_target_sockaddr(target_addr, addr, addrlen);
2082 2083 2084 2085
            if (put_user_u32(addrlen, target_addrlen)) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
P
pbrook 已提交
2086 2087 2088
        }
        unlock_user(host_msg, msg, len);
    } else {
2089
fail:
P
pbrook 已提交
2090 2091 2092 2093 2094
        unlock_user(host_msg, msg, 0);
    }
    return ret;
}

2095
#ifdef TARGET_NR_socketcall
2096
/* do_socketcall() Must return target values and target errnos. */
2097
static abi_long do_socketcall(int num, abi_ulong vptr)
2098
{
2099 2100
    abi_long ret;
    const int n = sizeof(abi_ulong);
2101 2102 2103

    switch(num) {
    case SOCKOP_socket:
B
bellard 已提交
2104
	{
U
Ulrich Hecht 已提交
2105
            abi_ulong domain, type, protocol;
2106

U
Ulrich Hecht 已提交
2107 2108 2109
            if (get_user_ual(domain, vptr)
                || get_user_ual(type, vptr + n)
                || get_user_ual(protocol, vptr + 2 * n))
2110 2111
                return -TARGET_EFAULT;

2112
            ret = do_socket(domain, type, protocol);
B
bellard 已提交
2113
	}
2114 2115
        break;
    case SOCKOP_bind:
B
bellard 已提交
2116
	{
U
Ulrich Hecht 已提交
2117
            abi_ulong sockfd;
2118 2119 2120
            abi_ulong target_addr;
            socklen_t addrlen;

U
Ulrich Hecht 已提交
2121
            if (get_user_ual(sockfd, vptr)
2122
                || get_user_ual(target_addr, vptr + n)
U
Ulrich Hecht 已提交
2123
                || get_user_ual(addrlen, vptr + 2 * n))
2124 2125
                return -TARGET_EFAULT;

2126
            ret = do_bind(sockfd, target_addr, addrlen);
B
bellard 已提交
2127
        }
2128 2129
        break;
    case SOCKOP_connect:
B
bellard 已提交
2130
        {
U
Ulrich Hecht 已提交
2131
            abi_ulong sockfd;
2132 2133 2134
            abi_ulong target_addr;
            socklen_t addrlen;

U
Ulrich Hecht 已提交
2135
            if (get_user_ual(sockfd, vptr)
2136
                || get_user_ual(target_addr, vptr + n)
U
Ulrich Hecht 已提交
2137
                || get_user_ual(addrlen, vptr + 2 * n))
2138 2139
                return -TARGET_EFAULT;

2140
            ret = do_connect(sockfd, target_addr, addrlen);
B
bellard 已提交
2141
        }
2142 2143
        break;
    case SOCKOP_listen:
B
bellard 已提交
2144
        {
U
Ulrich Hecht 已提交
2145
            abi_ulong sockfd, backlog;
2146

U
Ulrich Hecht 已提交
2147 2148
            if (get_user_ual(sockfd, vptr)
                || get_user_ual(backlog, vptr + n))
2149 2150
                return -TARGET_EFAULT;

B
bellard 已提交
2151 2152
            ret = get_errno(listen(sockfd, backlog));
        }
2153 2154 2155
        break;
    case SOCKOP_accept:
        {
U
Ulrich Hecht 已提交
2156
            abi_ulong sockfd;
2157 2158
            abi_ulong target_addr, target_addrlen;

U
Ulrich Hecht 已提交
2159
            if (get_user_ual(sockfd, vptr)
2160
                || get_user_ual(target_addr, vptr + n)
U
Ulrich Hecht 已提交
2161
                || get_user_ual(target_addrlen, vptr + 2 * n))
2162 2163
                return -TARGET_EFAULT;

P
Peter Maydell 已提交
2164
            ret = do_accept4(sockfd, target_addr, target_addrlen, 0);
2165 2166 2167 2168
        }
        break;
    case SOCKOP_getsockname:
        {
U
Ulrich Hecht 已提交
2169
            abi_ulong sockfd;
2170 2171
            abi_ulong target_addr, target_addrlen;

U
Ulrich Hecht 已提交
2172
            if (get_user_ual(sockfd, vptr)
2173
                || get_user_ual(target_addr, vptr + n)
U
Ulrich Hecht 已提交
2174
                || get_user_ual(target_addrlen, vptr + 2 * n))
2175 2176
                return -TARGET_EFAULT;

P
pbrook 已提交
2177
            ret = do_getsockname(sockfd, target_addr, target_addrlen);
2178 2179 2180 2181
        }
        break;
    case SOCKOP_getpeername:
        {
U
Ulrich Hecht 已提交
2182
            abi_ulong sockfd;
2183 2184
            abi_ulong target_addr, target_addrlen;

U
Ulrich Hecht 已提交
2185
            if (get_user_ual(sockfd, vptr)
2186
                || get_user_ual(target_addr, vptr + n)
U
Ulrich Hecht 已提交
2187
                || get_user_ual(target_addrlen, vptr + 2 * n))
2188 2189
                return -TARGET_EFAULT;

P
pbrook 已提交
2190
            ret = do_getpeername(sockfd, target_addr, target_addrlen);
2191 2192 2193 2194
        }
        break;
    case SOCKOP_socketpair:
        {
U
Ulrich Hecht 已提交
2195
            abi_ulong domain, type, protocol;
2196 2197
            abi_ulong tab;

U
Ulrich Hecht 已提交
2198 2199 2200
            if (get_user_ual(domain, vptr)
                || get_user_ual(type, vptr + n)
                || get_user_ual(protocol, vptr + 2 * n)
2201 2202 2203
                || get_user_ual(tab, vptr + 3 * n))
                return -TARGET_EFAULT;

P
pbrook 已提交
2204
            ret = do_socketpair(domain, type, protocol, tab);
2205 2206 2207
        }
        break;
    case SOCKOP_send:
B
bellard 已提交
2208
        {
U
Ulrich Hecht 已提交
2209
            abi_ulong sockfd;
2210 2211
            abi_ulong msg;
            size_t len;
U
Ulrich Hecht 已提交
2212
            abi_ulong flags;
2213

U
Ulrich Hecht 已提交
2214
            if (get_user_ual(sockfd, vptr)
2215 2216
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
U
Ulrich Hecht 已提交
2217
                || get_user_ual(flags, vptr + 3 * n))
2218 2219
                return -TARGET_EFAULT;

P
pbrook 已提交
2220
            ret = do_sendto(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
2221
        }
2222 2223
        break;
    case SOCKOP_recv:
B
bellard 已提交
2224
        {
U
Ulrich Hecht 已提交
2225
            abi_ulong sockfd;
2226 2227
            abi_ulong msg;
            size_t len;
U
Ulrich Hecht 已提交
2228
            abi_ulong flags;
2229

U
Ulrich Hecht 已提交
2230
            if (get_user_ual(sockfd, vptr)
2231 2232
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
U
Ulrich Hecht 已提交
2233
                || get_user_ual(flags, vptr + 3 * n))
2234 2235
                return -TARGET_EFAULT;

P
pbrook 已提交
2236
            ret = do_recvfrom(sockfd, msg, len, flags, 0, 0);
B
bellard 已提交
2237
        }
2238 2239
        break;
    case SOCKOP_sendto:
B
bellard 已提交
2240
        {
U
Ulrich Hecht 已提交
2241
            abi_ulong sockfd;
2242 2243
            abi_ulong msg;
            size_t len;
U
Ulrich Hecht 已提交
2244
            abi_ulong flags;
2245 2246 2247
            abi_ulong addr;
            socklen_t addrlen;

U
Ulrich Hecht 已提交
2248
            if (get_user_ual(sockfd, vptr)
2249 2250
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
U
Ulrich Hecht 已提交
2251
                || get_user_ual(flags, vptr + 3 * n)
2252
                || get_user_ual(addr, vptr + 4 * n)
U
Ulrich Hecht 已提交
2253
                || get_user_ual(addrlen, vptr + 5 * n))
2254 2255
                return -TARGET_EFAULT;

P
pbrook 已提交
2256
            ret = do_sendto(sockfd, msg, len, flags, addr, addrlen);
B
bellard 已提交
2257
        }
2258 2259 2260
        break;
    case SOCKOP_recvfrom:
        {
U
Ulrich Hecht 已提交
2261
            abi_ulong sockfd;
2262 2263
            abi_ulong msg;
            size_t len;
U
Ulrich Hecht 已提交
2264
            abi_ulong flags;
2265 2266 2267
            abi_ulong addr;
            socklen_t addrlen;

U
Ulrich Hecht 已提交
2268
            if (get_user_ual(sockfd, vptr)
2269 2270
                || get_user_ual(msg, vptr + n)
                || get_user_ual(len, vptr + 2 * n)
U
Ulrich Hecht 已提交
2271
                || get_user_ual(flags, vptr + 3 * n)
2272
                || get_user_ual(addr, vptr + 4 * n)
U
Ulrich Hecht 已提交
2273
                || get_user_ual(addrlen, vptr + 5 * n))
2274 2275
                return -TARGET_EFAULT;

P
pbrook 已提交
2276
            ret = do_recvfrom(sockfd, msg, len, flags, addr, addrlen);
2277 2278 2279
        }
        break;
    case SOCKOP_shutdown:
B
bellard 已提交
2280
        {
U
Ulrich Hecht 已提交
2281
            abi_ulong sockfd, how;
2282

U
Ulrich Hecht 已提交
2283 2284
            if (get_user_ual(sockfd, vptr)
                || get_user_ual(how, vptr + n))
2285
                return -TARGET_EFAULT;
B
bellard 已提交
2286 2287 2288

            ret = get_errno(shutdown(sockfd, how));
        }
2289 2290 2291
        break;
    case SOCKOP_sendmsg:
    case SOCKOP_recvmsg:
B
bellard 已提交
2292
        {
U
Ulrich Hecht 已提交
2293
            abi_ulong fd;
2294
            abi_ulong target_msg;
U
Ulrich Hecht 已提交
2295
            abi_ulong flags;
B
bellard 已提交
2296

U
Ulrich Hecht 已提交
2297
            if (get_user_ual(fd, vptr)
2298
                || get_user_ual(target_msg, vptr + n)
U
Ulrich Hecht 已提交
2299
                || get_user_ual(flags, vptr + 2 * n))
2300
                return -TARGET_EFAULT;
2301

2302
            ret = do_sendrecvmsg(fd, target_msg, flags,
2303
                                 (num == SOCKOP_sendmsg));
B
bellard 已提交
2304 2305
        }
        break;
2306
    case SOCKOP_setsockopt:
B
bellard 已提交
2307
        {
U
Ulrich Hecht 已提交
2308 2309 2310
            abi_ulong sockfd;
            abi_ulong level;
            abi_ulong optname;
2311 2312 2313
            abi_ulong optval;
            socklen_t optlen;

U
Ulrich Hecht 已提交
2314 2315 2316
            if (get_user_ual(sockfd, vptr)
                || get_user_ual(level, vptr + n)
                || get_user_ual(optname, vptr + 2 * n)
2317
                || get_user_ual(optval, vptr + 3 * n)
U
Ulrich Hecht 已提交
2318
                || get_user_ual(optlen, vptr + 4 * n))
2319
                return -TARGET_EFAULT;
B
bellard 已提交
2320 2321 2322 2323

            ret = do_setsockopt(sockfd, level, optname, optval, optlen);
        }
        break;
2324
    case SOCKOP_getsockopt:
B
bellard 已提交
2325
        {
U
Ulrich Hecht 已提交
2326 2327 2328
            abi_ulong sockfd;
            abi_ulong level;
            abi_ulong optname;
2329 2330 2331
            abi_ulong optval;
            socklen_t optlen;

U
Ulrich Hecht 已提交
2332 2333 2334
            if (get_user_ual(sockfd, vptr)
                || get_user_ual(level, vptr + n)
                || get_user_ual(optname, vptr + 2 * n)
2335
                || get_user_ual(optval, vptr + 3 * n)
U
Ulrich Hecht 已提交
2336
                || get_user_ual(optlen, vptr + 4 * n))
2337
                return -TARGET_EFAULT;
B
bellard 已提交
2338

2339
            ret = do_getsockopt(sockfd, level, optname, optval, optlen);
B
bellard 已提交
2340 2341
        }
        break;
2342 2343
    default:
        gemu_log("Unsupported socketcall: %d\n", num);
2344
        ret = -TARGET_ENOSYS;
2345 2346 2347 2348
        break;
    }
    return ret;
}
2349
#endif
2350

2351 2352 2353
#define N_SHM_REGIONS	32

static struct shm_region {
2354 2355
    abi_ulong	start;
    abi_ulong	size;
2356 2357
} shm_regions[N_SHM_REGIONS];

2358 2359
struct target_ipc_perm
{
2360 2361 2362 2363 2364
    abi_long __key;
    abi_ulong uid;
    abi_ulong gid;
    abi_ulong cuid;
    abi_ulong cgid;
2365 2366 2367 2368
    unsigned short int mode;
    unsigned short int __pad1;
    unsigned short int __seq;
    unsigned short int __pad2;
2369 2370
    abi_ulong __unused1;
    abi_ulong __unused2;
2371 2372 2373 2374 2375
};

struct target_semid_ds
{
  struct target_ipc_perm sem_perm;
2376 2377 2378 2379 2380 2381 2382
  abi_ulong sem_otime;
  abi_ulong __unused1;
  abi_ulong sem_ctime;
  abi_ulong __unused2;
  abi_ulong sem_nsems;
  abi_ulong __unused3;
  abi_ulong __unused4;
2383 2384
};

2385 2386
static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip,
                                               abi_ulong target_addr)
2387 2388 2389 2390
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

2391 2392
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
2393
    target_ip = &(target_sd->sem_perm);
2394 2395 2396 2397 2398 2399
    host_ip->__key = tswapal(target_ip->__key);
    host_ip->uid = tswapal(target_ip->uid);
    host_ip->gid = tswapal(target_ip->gid);
    host_ip->cuid = tswapal(target_ip->cuid);
    host_ip->cgid = tswapal(target_ip->cgid);
    host_ip->mode = tswap16(target_ip->mode);
2400
    unlock_user_struct(target_sd, target_addr, 0);
2401
    return 0;
2402 2403
}

2404 2405
static inline abi_long host_to_target_ipc_perm(abi_ulong target_addr,
                                               struct ipc_perm *host_ip)
2406 2407 2408 2409
{
    struct target_ipc_perm *target_ip;
    struct target_semid_ds *target_sd;

2410 2411
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
2412
    target_ip = &(target_sd->sem_perm);
2413 2414 2415 2416 2417 2418
    target_ip->__key = tswapal(host_ip->__key);
    target_ip->uid = tswapal(host_ip->uid);
    target_ip->gid = tswapal(host_ip->gid);
    target_ip->cuid = tswapal(host_ip->cuid);
    target_ip->cgid = tswapal(host_ip->cgid);
    target_ip->mode = tswap16(host_ip->mode);
2419
    unlock_user_struct(target_sd, target_addr, 1);
2420
    return 0;
2421 2422
}

2423 2424
static inline abi_long target_to_host_semid_ds(struct semid_ds *host_sd,
                                               abi_ulong target_addr)
2425 2426 2427
{
    struct target_semid_ds *target_sd;

2428 2429
    if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1))
        return -TARGET_EFAULT;
2430 2431
    if (target_to_host_ipc_perm(&(host_sd->sem_perm),target_addr))
        return -TARGET_EFAULT;
2432 2433 2434
    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);
2435
    unlock_user_struct(target_sd, target_addr, 0);
2436
    return 0;
2437 2438
}

2439 2440
static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
                                               struct semid_ds *host_sd)
2441 2442 2443
{
    struct target_semid_ds *target_sd;

2444 2445
    if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
        return -TARGET_EFAULT;
2446
    if (host_to_target_ipc_perm(target_addr,&(host_sd->sem_perm)))
2447
        return -TARGET_EFAULT;
2448 2449 2450
    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);
2451
    unlock_user_struct(target_sd, target_addr, 1);
2452
    return 0;
2453 2454
}

2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487
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;
}

2488 2489
union semun {
	int val;
2490
	struct semid_ds *buf;
2491
	unsigned short *array;
2492
	struct seminfo *__buf;
2493 2494
};

2495 2496
union target_semun {
	int val;
2497 2498 2499
	abi_ulong buf;
	abi_ulong array;
	abi_ulong __buf;
2500 2501
};

2502 2503
static inline abi_long target_to_host_semarray(int semid, unsigned short **host_array,
                                               abi_ulong target_addr)
2504
{
2505 2506 2507 2508 2509
    int nsems;
    unsigned short *array;
    union semun semun;
    struct semid_ds semid_ds;
    int i, ret;
2510

2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526
    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));
    array = lock_user(VERIFY_READ, target_addr,
                      nsems*sizeof(unsigned short), 1);
    if (!array)
        return -TARGET_EFAULT;

    for(i=0; i<nsems; i++) {
        __get_user((*host_array)[i], &array[i]);
2527
    }
2528 2529
    unlock_user(array, target_addr, 0);

2530
    return 0;
2531 2532
}

2533 2534
static inline abi_long host_to_target_semarray(int semid, abi_ulong target_addr,
                                               unsigned short **host_array)
2535
{
2536 2537 2538 2539 2540
    int nsems;
    unsigned short *array;
    union semun semun;
    struct semid_ds semid_ds;
    int i, ret;
2541

2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556
    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]);
2557
    }
2558 2559 2560
    free(*host_array);
    unlock_user(array, target_addr, 1);

2561
    return 0;
2562 2563
}

2564 2565
static inline abi_long do_semctl(int semid, int semnum, int cmd,
                                 union target_semun target_su)
2566 2567 2568
{
    union semun arg;
    struct semid_ds dsarg;
2569
    unsigned short *array = NULL;
2570 2571 2572 2573
    struct seminfo seminfo;
    abi_long ret = -TARGET_EINVAL;
    abi_long err;
    cmd &= 0xff;
2574 2575 2576 2577

    switch( cmd ) {
	case GETVAL:
	case SETVAL:
2578
            arg.val = tswap32(target_su.val);
2579
            ret = get_errno(semctl(semid, semnum, cmd, arg));
2580
            target_su.val = tswap32(arg.val);
2581 2582 2583
            break;
	case GETALL:
	case SETALL:
2584 2585 2586 2587 2588 2589 2590 2591
            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;
2592 2593 2594
            break;
	case IPC_STAT:
	case IPC_SET:
2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617
	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));
2618 2619 2620 2621 2622 2623
            break;
    }

    return ret;
}

2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
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;

2660
    return get_errno(semop(semid, sops, nsops));
2661 2662
}

T
ths 已提交
2663 2664
struct target_msqid_ds
{
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684
    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 已提交
2685 2686
};

2687 2688
static inline abi_long target_to_host_msqid_ds(struct msqid_ds *host_md,
                                               abi_ulong target_addr)
T
ths 已提交
2689 2690 2691
{
    struct target_msqid_ds *target_md;

2692 2693
    if (!lock_user_struct(VERIFY_READ, target_md, target_addr, 1))
        return -TARGET_EFAULT;
2694 2695
    if (target_to_host_ipc_perm(&(host_md->msg_perm),target_addr))
        return -TARGET_EFAULT;
2696 2697 2698 2699 2700 2701 2702 2703
    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 已提交
2704
    unlock_user_struct(target_md, target_addr, 0);
2705
    return 0;
T
ths 已提交
2706 2707
}

2708 2709
static inline abi_long host_to_target_msqid_ds(abi_ulong target_addr,
                                               struct msqid_ds *host_md)
T
ths 已提交
2710 2711 2712
{
    struct target_msqid_ds *target_md;

2713 2714
    if (!lock_user_struct(VERIFY_WRITE, target_md, target_addr, 0))
        return -TARGET_EFAULT;
2715 2716
    if (host_to_target_ipc_perm(target_addr,&(host_md->msg_perm)))
        return -TARGET_EFAULT;
2717 2718 2719 2720 2721 2722 2723 2724
    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 已提交
2725
    unlock_user_struct(target_md, target_addr, 1);
2726
    return 0;
T
ths 已提交
2727 2728
}

2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754
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);
2755
    return 0;
2756 2757 2758
}

static inline abi_long do_msgctl(int msgid, int cmd, abi_long ptr)
T
ths 已提交
2759 2760
{
    struct msqid_ds dsarg;
2761 2762 2763 2764 2765 2766
    struct msginfo msginfo;
    abi_long ret = -TARGET_EINVAL;

    cmd &= 0xff;

    switch (cmd) {
T
ths 已提交
2767 2768
    case IPC_STAT:
    case IPC_SET:
2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
    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 已提交
2785
    }
2786

T
ths 已提交
2787 2788 2789 2790
    return ret;
}

struct target_msgbuf {
2791 2792
    abi_long mtype;
    char	mtext[1];
T
ths 已提交
2793 2794
};

2795 2796
static inline abi_long do_msgsnd(int msqid, abi_long msgp,
                                 unsigned int msgsz, int msgflg)
T
ths 已提交
2797 2798 2799
{
    struct target_msgbuf *target_mb;
    struct msgbuf *host_mb;
2800
    abi_long ret = 0;
T
ths 已提交
2801

2802 2803
    if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
        return -TARGET_EFAULT;
T
ths 已提交
2804
    host_mb = malloc(msgsz+sizeof(long));
2805
    host_mb->mtype = (abi_long) tswapal(target_mb->mtype);
2806
    memcpy(host_mb->mtext, target_mb->mtext, msgsz);
T
ths 已提交
2807 2808 2809 2810 2811 2812 2813
    ret = get_errno(msgsnd(msqid, host_mb, msgsz, msgflg));
    free(host_mb);
    unlock_user_struct(target_mb, msgp, 0);

    return ret;
}

2814
static inline abi_long do_msgrcv(int msqid, abi_long msgp,
2815
                                 unsigned int msgsz, abi_long msgtyp,
2816
                                 int msgflg)
T
ths 已提交
2817 2818
{
    struct target_msgbuf *target_mb;
2819
    char *target_mtext;
T
ths 已提交
2820
    struct msgbuf *host_mb;
2821
    abi_long ret = 0;
T
ths 已提交
2822

2823 2824
    if (!lock_user_struct(VERIFY_WRITE, target_mb, msgp, 0))
        return -TARGET_EFAULT;
2825

2826
    host_mb = g_malloc(msgsz+sizeof(long));
L
Laurent Vivier 已提交
2827
    ret = get_errno(msgrcv(msqid, host_mb, msgsz, msgtyp, msgflg));
2828

2829 2830 2831 2832 2833 2834 2835
    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;
        }
2836
        memcpy(target_mb->mtext, host_mb->mtext, ret);
2837 2838
        unlock_user(target_mtext, target_mtext_addr, ret);
    }
2839

2840
    target_mb->mtype = tswapal(host_mb->mtype);
T
ths 已提交
2841

2842 2843 2844
end:
    if (target_mb)
        unlock_user_struct(target_mb, msgp, 1);
2845
    g_free(host_mb);
T
ths 已提交
2846 2847 2848
    return ret;
}

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 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058
struct target_shmid_ds
{
    struct target_ipc_perm shm_perm;
    abi_ulong shm_segsz;
    abi_ulong shm_atime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused1;
#endif
    abi_ulong shm_dtime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused2;
#endif
    abi_ulong shm_ctime;
#if TARGET_ABI_BITS == 32
    abi_ulong __unused3;
#endif
    int shm_cpid;
    int shm_lpid;
    abi_ulong shm_nattch;
    unsigned long int __unused4;
    unsigned long int __unused5;
};

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;
3059
            page_set_flags(shmaddr, shmaddr + shm_regions[i].size, 0);
3060 3061 3062 3063 3064 3065 3066
            break;
        }
    }

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

3067
#ifdef TARGET_NR_ipc
3068
/* ??? This only works with linear mappings.  */
3069
/* do_ipc() must return target values and target errnos. */
3070 3071 3072
static abi_long do_ipc(unsigned int call, int first,
                       int second, int third,
                       abi_long ptr, abi_long fifth)
3073 3074
{
    int version;
3075
    abi_long ret = 0;
3076 3077 3078 3079 3080

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

    switch (call) {
3081
    case IPCOP_semop:
3082
        ret = do_semop(first, ptr, second);
3083 3084 3085 3086 3087 3088 3089
        break;

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

    case IPCOP_semctl:
3090
        ret = do_semctl(first, second, third, (union target_semun)(abi_ulong) ptr);
3091
        break;
3092

3093 3094 3095
    case IPCOP_msgget:
        ret = get_errno(msgget(first, second));
        break;
3096

3097 3098 3099
    case IPCOP_msgsnd:
        ret = do_msgsnd(first, ptr, second, third);
        break;
3100

3101 3102 3103
    case IPCOP_msgctl:
        ret = do_msgctl(first, second, ptr);
        break;
3104

3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117
    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;
                }
3118

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

3121 3122 3123 3124 3125 3126 3127
                unlock_user_struct(tmp, ptr, 0);
                break;
            }
        default:
            ret = do_msgrcv(first, ptr, second, fifth, third);
        }
        break;
3128

3129
    case IPCOP_shmat:
3130 3131
        switch (version) {
        default:
3132 3133
        {
            abi_ulong raddr;
3134 3135 3136
            raddr = do_shmat(first, ptr, second);
            if (is_error(raddr))
                return get_errno(raddr);
3137
            if (put_user_ual(raddr, third))
3138
                return -TARGET_EFAULT;
3139 3140 3141 3142 3143
            break;
        }
        case 1:
            ret = -TARGET_EINVAL;
            break;
3144
        }
3145 3146
	break;
    case IPCOP_shmdt:
3147
        ret = do_shmdt(ptr);
3148 3149 3150 3151 3152 3153 3154 3155 3156
	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:
3157
        ret = do_shmctl(first, second, third);
3158 3159
        break;
    default:
3160
	gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
3161
	ret = -TARGET_ENOSYS;
3162 3163 3164 3165
	break;
    }
    return ret;
}
3166
#endif
3167

3168 3169
/* kernel structure types definitions */

3170
#define STRUCT(name, ...) STRUCT_ ## name,
3171 3172 3173 3174 3175 3176 3177
#define STRUCT_SPECIAL(name) STRUCT_ ## name,
enum {
#include "syscall_types.h"
};
#undef STRUCT
#undef STRUCT_SPECIAL

3178
#define STRUCT(name, ...) static const argtype struct_ ## name ## _def[] = {  __VA_ARGS__, TYPE_NULL };
3179 3180 3181 3182 3183
#define STRUCT_SPECIAL(name)
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL

3184 3185 3186 3187 3188 3189
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 {
3190 3191
    unsigned int target_cmd;
    unsigned int host_cmd;
3192 3193
    const char *name;
    int access;
3194
    do_ioctl_fn *do_ioctl;
B
bellard 已提交
3195
    const argtype arg_type[5];
3196
};
3197 3198 3199 3200 3201 3202 3203

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

#define MAX_STRUCT_SIZE 4096

3204
#ifdef CONFIG_FIEMAP
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 3282 3283 3284 3285 3286 3287 3288 3289 3290
/* 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;
}
3291
#endif
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
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;
}

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 3501 3502 3503 3504 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 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605
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:
3606
    g_free(big_buf);
3607 3608 3609
    return ret;
}

3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672
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 已提交
3673
static IOCTLEntry ioctl_entries[] = {
3674
#define IOCTL(cmd, access, ...) \
3675 3676 3677
    { TARGET_ ## cmd, cmd, #cmd, access, 0, {  __VA_ARGS__ } },
#define IOCTL_SPECIAL(cmd, access, dofn, ...)                      \
    { TARGET_ ## cmd, cmd, #cmd, access, dofn, {  __VA_ARGS__ } },
3678 3679 3680 3681
#include "ioctls.h"
    { 0, 0, },
};

3682
/* ??? Implement proper locking for ioctls.  */
3683
/* do_ioctl() Must return target values and target errnos. */
3684
static abi_long do_ioctl(int fd, abi_long cmd, abi_long arg)
3685 3686 3687
{
    const IOCTLEntry *ie;
    const argtype *arg_type;
3688
    abi_long ret;
3689
    uint8_t buf_temp[MAX_STRUCT_SIZE];
3690 3691
    int target_size;
    void *argptr;
3692 3693 3694 3695

    ie = ioctl_entries;
    for(;;) {
        if (ie->target_cmd == 0) {
3696
            gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
3697
            return -TARGET_ENOSYS;
3698 3699 3700 3701 3702 3703
        }
        if (ie->target_cmd == cmd)
            break;
        ie++;
    }
    arg_type = ie->arg_type;
B
bellard 已提交
3704
#if defined(DEBUG)
3705
    gemu_log("ioctl: cmd=0x%04lx (%s)\n", (long)cmd, ie->name);
B
bellard 已提交
3706
#endif
3707 3708 3709 3710
    if (ie->do_ioctl) {
        return ie->do_ioctl(ie, buf_temp, fd, cmd, arg);
    }

3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722
    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++;
3723
        target_size = thunk_type_size(arg_type, 0);
3724 3725 3726 3727
        switch(ie->access) {
        case IOC_R:
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
3728 3729 3730
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
3731 3732
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
3733 3734 3735
            }
            break;
        case IOC_W:
3736 3737 3738
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
3739 3740
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
3741 3742 3743 3744
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            break;
        default:
        case IOC_RW:
3745 3746 3747
            argptr = lock_user(VERIFY_READ, arg, target_size, 1);
            if (!argptr)
                return -TARGET_EFAULT;
3748 3749
            thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST);
            unlock_user(argptr, arg, 0);
3750 3751
            ret = get_errno(ioctl(fd, ie->host_cmd, buf_temp));
            if (!is_error(ret)) {
3752 3753 3754
                argptr = lock_user(VERIFY_WRITE, arg, target_size, 0);
                if (!argptr)
                    return -TARGET_EFAULT;
3755 3756
                thunk_convert(argptr, buf_temp, arg_type, THUNK_TARGET);
                unlock_user(argptr, arg, target_size);
3757 3758 3759 3760 3761
            }
            break;
        }
        break;
    default:
3762 3763
        gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
                 (long)cmd, arg_type[0]);
3764
        ret = -TARGET_ENOSYS;
3765 3766 3767 3768 3769
        break;
    }
    return ret;
}

B
blueswir1 已提交
3770
static const bitmask_transtbl iflag_tbl[] = {
3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787
        { 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 已提交
3788
static const bitmask_transtbl oflag_tbl[] = {
3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
	{ 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 已提交
3816
static const bitmask_transtbl cflag_tbl[] = {
3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850
	{ 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 已提交
3851
static const bitmask_transtbl lflag_tbl[] = {
3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873
	{ 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;
3874

3875
    host->c_iflag =
3876
        target_to_host_bitmask(tswap32(target->c_iflag), iflag_tbl);
3877
    host->c_oflag =
3878
        target_to_host_bitmask(tswap32(target->c_oflag), oflag_tbl);
3879
    host->c_cflag =
3880
        target_to_host_bitmask(tswap32(target->c_cflag), cflag_tbl);
3881
    host->c_lflag =
3882 3883
        target_to_host_bitmask(tswap32(target->c_lflag), lflag_tbl);
    host->c_line = target->c_line;
3884

3885
    memset(host->c_cc, 0, sizeof(host->c_cc));
3886 3887
    host->c_cc[VINTR] = target->c_cc[TARGET_VINTR];
    host->c_cc[VQUIT] = target->c_cc[TARGET_VQUIT];
3888
    host->c_cc[VERASE] = target->c_cc[TARGET_VERASE];
3889
    host->c_cc[VKILL] = target->c_cc[TARGET_VKILL];
3890
    host->c_cc[VEOF] = target->c_cc[TARGET_VEOF];
3891
    host->c_cc[VTIME] = target->c_cc[TARGET_VTIME];
3892
    host->c_cc[VMIN] = target->c_cc[TARGET_VMIN];
3893
    host->c_cc[VSWTC] = target->c_cc[TARGET_VSWTC];
3894
    host->c_cc[VSTART] = target->c_cc[TARGET_VSTART];
3895 3896
    host->c_cc[VSTOP] = target->c_cc[TARGET_VSTOP];
    host->c_cc[VSUSP] = target->c_cc[TARGET_VSUSP];
3897 3898 3899 3900 3901
    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];
3902
    host->c_cc[VEOL2] = target->c_cc[TARGET_VEOL2];
3903
}
3904

3905 3906 3907 3908 3909
static void host_to_target_termios (void *dst, const void *src)
{
    struct target_termios *target = dst;
    const struct host_termios *host = src;

3910
    target->c_iflag =
3911
        tswap32(host_to_target_bitmask(host->c_iflag, iflag_tbl));
3912
    target->c_oflag =
3913
        tswap32(host_to_target_bitmask(host->c_oflag, oflag_tbl));
3914
    target->c_cflag =
3915
        tswap32(host_to_target_bitmask(host->c_cflag, cflag_tbl));
3916
    target->c_lflag =
3917 3918
        tswap32(host_to_target_bitmask(host->c_lflag, lflag_tbl));
    target->c_line = host->c_line;
3919

3920
    memset(target->c_cc, 0, sizeof(target->c_cc));
3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939
    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 已提交
3940
static const StructEntry struct_termios_def = {
3941 3942 3943 3944 3945
    .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 已提交
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
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 }
};

3958
#if defined(TARGET_I386)
B
bellard 已提交
3959 3960

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

3963
static abi_long read_ldt(abi_ulong ptr, unsigned long bytecount)
B
bellard 已提交
3964 3965
{
    int size;
3966
    void *p;
B
bellard 已提交
3967 3968 3969 3970 3971 3972

    if (!ldt_table)
        return 0;
    size = TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE;
    if (size > bytecount)
        size = bytecount;
3973 3974
    p = lock_user(VERIFY_WRITE, ptr, size, 0);
    if (!p)
3975
        return -TARGET_EFAULT;
3976
    /* ??? Should this by byteswapped?  */
3977 3978
    memcpy(p, ldt_table, size);
    unlock_user(p, ptr, size);
B
bellard 已提交
3979 3980 3981 3982
    return size;
}

/* XXX: add locking support */
3983 3984
static abi_long write_ldt(CPUX86State *env,
                          abi_ulong ptr, unsigned long bytecount, int oldmode)
B
bellard 已提交
3985 3986
{
    struct target_modify_ldt_ldt_s ldt_info;
3987
    struct target_modify_ldt_ldt_s *target_ldt_info;
B
bellard 已提交
3988
    int seg_32bit, contents, read_exec_only, limit_in_pages;
B
bellard 已提交
3989
    int seg_not_present, useable, lm;
B
bellard 已提交
3990 3991 3992
    uint32_t *lp, entry_1, entry_2;

    if (bytecount != sizeof(ldt_info))
3993
        return -TARGET_EINVAL;
3994
    if (!lock_user_struct(VERIFY_READ, target_ldt_info, ptr, 1))
3995
        return -TARGET_EFAULT;
3996
    ldt_info.entry_number = tswap32(target_ldt_info->entry_number);
3997
    ldt_info.base_addr = tswapal(target_ldt_info->base_addr);
3998 3999 4000
    ldt_info.limit = tswap32(target_ldt_info->limit);
    ldt_info.flags = tswap32(target_ldt_info->flags);
    unlock_user_struct(target_ldt_info, ptr, 0);
4001

B
bellard 已提交
4002
    if (ldt_info.entry_number >= TARGET_LDT_ENTRIES)
4003
        return -TARGET_EINVAL;
B
bellard 已提交
4004 4005 4006 4007 4008 4009
    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 已提交
4010 4011 4012 4013 4014
#ifdef TARGET_ABI32
    lm = 0;
#else
    lm = (ldt_info.flags >> 7) & 1;
#endif
B
bellard 已提交
4015 4016
    if (contents == 3) {
        if (oldmode)
4017
            return -TARGET_EINVAL;
B
bellard 已提交
4018
        if (seg_not_present == 0)
4019
            return -TARGET_EINVAL;
B
bellard 已提交
4020 4021 4022
    }
    /* allocate the LDT */
    if (!ldt_table) {
4023 4024 4025 4026 4027
        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)
4028
            return -TARGET_ENOMEM;
4029 4030
        memset(g2h(env->ldt.base), 0,
               TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_SIZE);
B
bellard 已提交
4031
        env->ldt.limit = 0xffff;
4032
        ldt_table = g2h(env->ldt.base);
B
bellard 已提交
4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049
    }

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

B
bellard 已提交
4051 4052 4053 4054 4055 4056 4057 4058 4059 4060
    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 已提交
4061
        (lm << 21) |
B
bellard 已提交
4062 4063 4064
        0x7000;
    if (!oldmode)
        entry_2 |= (useable << 20);
B
bellard 已提交
4065

B
bellard 已提交
4066 4067 4068 4069 4070 4071 4072 4073 4074
    /* 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 */
4075 4076
static abi_long do_modify_ldt(CPUX86State *env, int func, abi_ulong ptr,
                              unsigned long bytecount)
B
bellard 已提交
4077
{
4078
    abi_long ret;
4079

B
bellard 已提交
4080 4081 4082 4083 4084 4085 4086 4087 4088 4089
    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;
4090 4091 4092
    default:
        ret = -TARGET_ENOSYS;
        break;
B
bellard 已提交
4093 4094 4095
    }
    return ret;
}
B
bellard 已提交
4096

4097
#if defined(TARGET_I386) && defined(TARGET_ABI32)
A
Alexander Graf 已提交
4098
abi_long do_set_thread_area(CPUX86State *env, abi_ulong ptr)
B
bellard 已提交
4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111
{
    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);
4112
    ldt_info.base_addr = tswapal(target_ldt_info->base_addr);
B
bellard 已提交
4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182
    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;
}

4183
static abi_long do_get_thread_area(CPUX86State *env, abi_ulong ptr)
B
bellard 已提交
4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222
{
    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);
4223
    target_ldt_info->base_addr = tswapal(base_addr);
B
bellard 已提交
4224 4225 4226 4227 4228
    target_ldt_info->limit = tswap32(limit);
    target_ldt_info->flags = tswap32(flags);
    unlock_user_struct(target_ldt_info, ptr, 1);
    return 0;
}
4229
#endif /* TARGET_I386 && TARGET_ABI32 */
B
bellard 已提交
4230

B
bellard 已提交
4231
#ifndef TARGET_ABI32
4232
abi_long do_arch_prctl(CPUX86State *env, int code, abi_ulong addr)
B
bellard 已提交
4233
{
J
Juan Quintela 已提交
4234
    abi_long ret = 0;
B
bellard 已提交
4235 4236
    abi_ulong val;
    int idx;
J
Juan Quintela 已提交
4237

B
bellard 已提交
4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255
    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 已提交
4256
            ret = -TARGET_EFAULT;
B
bellard 已提交
4257 4258 4259 4260 4261
        break;
    default:
        ret = -TARGET_EINVAL;
        break;
    }
J
Juan Quintela 已提交
4262
    return ret;
B
bellard 已提交
4263 4264 4265
}
#endif

4266 4267
#endif /* defined(TARGET_I386) */

4268
#define NEW_STACK_SIZE 0x40000
P
pbrook 已提交
4269 4270 4271 4272


static pthread_mutex_t clone_lock = PTHREAD_MUTEX_INITIALIZER;
typedef struct {
4273
    CPUArchState *env;
P
pbrook 已提交
4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
    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;
4286
    CPUArchState *env;
4287
    CPUState *cpu;
4288
    TaskState *ts;
P
pbrook 已提交
4289 4290

    env = info->env;
4291
    cpu = ENV_GET_CPU(env);
4292 4293
    thread_cpu = cpu;
    ts = (TaskState *)env->opaque;
P
pbrook 已提交
4294
    info->tid = gettid();
4295
    cpu->host_tid = info->tid;
4296
    task_settid(ts);
P
pbrook 已提交
4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313
    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 已提交
4314

4315 4316
/* do_fork() Must return host values and target errnos (unlike most
   do_*() functions). */
4317
static int do_fork(CPUArchState *env, unsigned int flags, abi_ulong newsp,
P
pbrook 已提交
4318 4319
                   abi_ulong parent_tidptr, target_ulong newtls,
                   abi_ulong child_tidptr)
B
bellard 已提交
4320 4321
{
    int ret;
B
bellard 已提交
4322
    TaskState *ts;
4323
    CPUArchState *new_env;
P
pbrook 已提交
4324 4325
    unsigned int nptl_flags;
    sigset_t sigmask;
4326

4327 4328 4329 4330
    /* Emulate vfork() with fork() */
    if (flags & CLONE_VFORK)
        flags &= ~(CLONE_VFORK | CLONE_VM);

B
bellard 已提交
4331
    if (flags & CLONE_VM) {
4332
        TaskState *parent_ts = (TaskState *)env->opaque;
P
pbrook 已提交
4333 4334
        new_thread_info info;
        pthread_attr_t attr;
4335

4336
        ts = g_malloc0(sizeof(TaskState));
P
pbrook 已提交
4337
        init_task_state(ts);
B
bellard 已提交
4338
        /* we create a new CPU instance. */
4339
        new_env = cpu_copy(env);
4340 4341
        /* Init regs that differ from the parent.  */
        cpu_clone_regs(new_env, newsp);
B
bellard 已提交
4342
        new_env->opaque = ts;
4343 4344
        ts->bprm = parent_ts->bprm;
        ts->info = parent_ts->info;
P
pbrook 已提交
4345 4346 4347
        nptl_flags = flags;
        flags &= ~CLONE_NPTL_FLAGS2;

4348 4349 4350 4351
        if (nptl_flags & CLONE_CHILD_CLEARTID) {
            ts->child_tidptr = child_tidptr;
        }

P
pbrook 已提交
4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368
        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);
4369 4370
        ret = pthread_attr_setstacksize(&attr, NEW_STACK_SIZE);
        ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
P
pbrook 已提交
4371 4372 4373 4374 4375 4376
        /* 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);
4377
        /* TODO: Free new CPU state if thread creation failed.  */
P
pbrook 已提交
4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393

        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 已提交
4394 4395
    } else {
        /* if no CLONE_VM, we consider it is a fork */
P
pbrook 已提交
4396
        if ((flags & ~(CSIGNAL | CLONE_NPTL_FLAGS2)) != 0)
B
bellard 已提交
4397
            return -EINVAL;
P
pbrook 已提交
4398
        fork_start();
B
bellard 已提交
4399
        ret = fork();
P
pbrook 已提交
4400
        if (ret == 0) {
4401
            /* Child Process.  */
P
pbrook 已提交
4402 4403
            cpu_clone_regs(env, newsp);
            fork_end(1);
4404 4405 4406 4407 4408 4409
            /* 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 已提交
4410 4411 4412 4413 4414 4415 4416
            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);
4417 4418
            if (flags & CLONE_CHILD_CLEARTID)
                ts->child_tidptr = child_tidptr;
P
pbrook 已提交
4419 4420 4421
        } else {
            fork_end(0);
        }
B
bellard 已提交
4422 4423 4424 4425
    }
    return ret;
}

4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457
/* 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 已提交
4458 4459 4460 4461
        case TARGET_F_SETLEASE:
            return F_SETLEASE;
        case TARGET_F_GETLEASE:
            return F_GETLEASE;
4462
#ifdef F_DUPFD_CLOEXEC
U
Ulrich Hecht 已提交
4463 4464
        case TARGET_F_DUPFD_CLOEXEC:
            return F_DUPFD_CLOEXEC;
4465
#endif
U
Ulrich Hecht 已提交
4466 4467
        case TARGET_F_NOTIFY:
            return F_NOTIFY;
4468 4469 4470 4471 4472 4473
	default:
            return -TARGET_EINVAL;
    }
    return -TARGET_EINVAL;
}

4474 4475 4476 4477 4478 4479 4480 4481 4482 4483
#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 }
};

4484
static abi_long do_fcntl(int fd, int cmd, abi_ulong arg)
B
bellard 已提交
4485 4486
{
    struct flock fl;
4487
    struct target_flock *target_fl;
4488 4489
    struct flock64 fl64;
    struct target_flock64 *target_fl64;
4490
    abi_long ret;
4491 4492 4493 4494
    int host_cmd = target_to_host_fcntl_cmd(cmd);

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

B
bellard 已提交
4496 4497
    switch(cmd) {
    case TARGET_F_GETLK:
4498 4499
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
4500 4501
        fl.l_type =
                  target_to_host_bitmask(tswap16(target_fl->l_type), flock_tbl);
T
ths 已提交
4502
        fl.l_whence = tswap16(target_fl->l_whence);
4503 4504
        fl.l_start = tswapal(target_fl->l_start);
        fl.l_len = tswapal(target_fl->l_len);
U
Ulrich Hecht 已提交
4505
        fl.l_pid = tswap32(target_fl->l_pid);
T
ths 已提交
4506
        unlock_user_struct(target_fl, arg, 0);
4507
        ret = get_errno(fcntl(fd, host_cmd, &fl));
B
bellard 已提交
4508
        if (ret == 0) {
4509 4510
            if (!lock_user_struct(VERIFY_WRITE, target_fl, arg, 0))
                return -TARGET_EFAULT;
4511 4512
            target_fl->l_type =
                          host_to_target_bitmask(tswap16(fl.l_type), flock_tbl);
B
bellard 已提交
4513
            target_fl->l_whence = tswap16(fl.l_whence);
4514 4515
            target_fl->l_start = tswapal(fl.l_start);
            target_fl->l_len = tswapal(fl.l_len);
U
Ulrich Hecht 已提交
4516
            target_fl->l_pid = tswap32(fl.l_pid);
4517
            unlock_user_struct(target_fl, arg, 1);
B
bellard 已提交
4518 4519
        }
        break;
4520

B
bellard 已提交
4521 4522
    case TARGET_F_SETLK:
    case TARGET_F_SETLKW:
4523 4524
        if (!lock_user_struct(VERIFY_READ, target_fl, arg, 1))
            return -TARGET_EFAULT;
4525 4526
        fl.l_type =
                  target_to_host_bitmask(tswap16(target_fl->l_type), flock_tbl);
B
bellard 已提交
4527
        fl.l_whence = tswap16(target_fl->l_whence);
4528 4529
        fl.l_start = tswapal(target_fl->l_start);
        fl.l_len = tswapal(target_fl->l_len);
U
Ulrich Hecht 已提交
4530
        fl.l_pid = tswap32(target_fl->l_pid);
4531
        unlock_user_struct(target_fl, arg, 0);
4532
        ret = get_errno(fcntl(fd, host_cmd, &fl));
B
bellard 已提交
4533
        break;
4534

B
bellard 已提交
4535
    case TARGET_F_GETLK64:
4536 4537
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
4538 4539
        fl64.l_type =
           target_to_host_bitmask(tswap16(target_fl64->l_type), flock_tbl) >> 1;
T
ths 已提交
4540
        fl64.l_whence = tswap16(target_fl64->l_whence);
4541 4542
        fl64.l_start = tswap64(target_fl64->l_start);
        fl64.l_len = tswap64(target_fl64->l_len);
U
Ulrich Hecht 已提交
4543
        fl64.l_pid = tswap32(target_fl64->l_pid);
T
ths 已提交
4544
        unlock_user_struct(target_fl64, arg, 0);
4545
        ret = get_errno(fcntl(fd, host_cmd, &fl64));
4546
        if (ret == 0) {
4547 4548
            if (!lock_user_struct(VERIFY_WRITE, target_fl64, arg, 0))
                return -TARGET_EFAULT;
4549 4550
            target_fl64->l_type =
                   host_to_target_bitmask(tswap16(fl64.l_type), flock_tbl) >> 1;
4551
            target_fl64->l_whence = tswap16(fl64.l_whence);
4552 4553
            target_fl64->l_start = tswap64(fl64.l_start);
            target_fl64->l_len = tswap64(fl64.l_len);
U
Ulrich Hecht 已提交
4554
            target_fl64->l_pid = tswap32(fl64.l_pid);
4555 4556
            unlock_user_struct(target_fl64, arg, 1);
        }
B
bellard 已提交
4557
        break;
B
bellard 已提交
4558 4559
    case TARGET_F_SETLK64:
    case TARGET_F_SETLKW64:
4560 4561
        if (!lock_user_struct(VERIFY_READ, target_fl64, arg, 1))
            return -TARGET_EFAULT;
4562 4563
        fl64.l_type =
           target_to_host_bitmask(tswap16(target_fl64->l_type), flock_tbl) >> 1;
4564
        fl64.l_whence = tswap16(target_fl64->l_whence);
4565 4566
        fl64.l_start = tswap64(target_fl64->l_start);
        fl64.l_len = tswap64(target_fl64->l_len);
U
Ulrich Hecht 已提交
4567
        fl64.l_pid = tswap32(target_fl64->l_pid);
4568
        unlock_user_struct(target_fl64, arg, 0);
4569
        ret = get_errno(fcntl(fd, host_cmd, &fl64));
B
bellard 已提交
4570 4571
        break;

4572 4573
    case TARGET_F_GETFL:
        ret = get_errno(fcntl(fd, host_cmd, arg));
B
bellard 已提交
4574 4575 4576
        if (ret >= 0) {
            ret = host_to_target_bitmask(ret, fcntl_flags_tbl);
        }
B
bellard 已提交
4577 4578
        break;

4579 4580 4581 4582 4583 4584 4585 4586
    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 已提交
4587 4588
    case TARGET_F_SETLEASE:
    case TARGET_F_GETLEASE:
4589
        ret = get_errno(fcntl(fd, host_cmd, arg));
B
bellard 已提交
4590 4591
        break;

B
bellard 已提交
4592
    default:
B
bellard 已提交
4593
        ret = get_errno(fcntl(fd, cmd, arg));
B
bellard 已提交
4594 4595 4596 4597 4598
        break;
    }
    return ret;
}

4599
#ifdef USE_UID16
B
bellard 已提交
4600

4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631
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;
}
4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656
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);
}
4657
#endif /* USE_UID16 */
B
bellard 已提交
4658

4659 4660
void syscall_init(void)
{
4661 4662 4663
    IOCTLEntry *ie;
    const argtype *arg_type;
    int size;
4664
    int i;
4665

4666
#define STRUCT(name, ...) thunk_register_struct(STRUCT_ ## name, #name, struct_ ## name ## _def);
4667
#define STRUCT_SPECIAL(name) thunk_register_struct_direct(STRUCT_ ## name, #name, &struct_ ## name ## _def);
4668 4669 4670
#include "syscall_types.h"
#undef STRUCT
#undef STRUCT_SPECIAL
4671

4672 4673 4674 4675 4676 4677
    /* 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;
    }

4678 4679 4680 4681 4682 4683 4684 4685
    /* 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) {
4686
                fprintf(stderr, "cannot patch size for ioctl 0x%x\n",
4687 4688 4689 4690 4691
                        ie->target_cmd);
                exit(1);
            }
            arg_type++;
            size = thunk_type_size(arg_type, 0);
4692
            ie->target_cmd = (ie->target_cmd &
4693 4694 4695
                              ~(TARGET_IOC_SIZEMASK << TARGET_IOC_SIZESHIFT)) |
                (size << TARGET_IOC_SIZESHIFT);
        }
4696

4697
        /* automatic consistency check if same arch */
4698 4699 4700 4701 4702
#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);
4703 4704 4705 4706
        }
#endif
        ie++;
    }
4707
}
B
bellard 已提交
4708

4709
#if TARGET_ABI_BITS == 32
P
pbrook 已提交
4710 4711
static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
{
T
ths 已提交
4712
#ifdef TARGET_WORDS_BIGENDIAN
P
pbrook 已提交
4713 4714 4715 4716 4717
    return ((uint64_t)word0 << 32) | word1;
#else
    return ((uint64_t)word1 << 32) | word0;
#endif
}
4718
#else /* TARGET_ABI_BITS == 32 */
4719 4720 4721 4722
static inline uint64_t target_offset64(uint64_t word0, uint64_t word1)
{
    return word0;
}
4723
#endif /* TARGET_ABI_BITS != 32 */
P
pbrook 已提交
4724 4725

#ifdef TARGET_NR_truncate64
4726 4727 4728 4729
static inline abi_long target_truncate64(void *cpu_env, const char *arg1,
                                         abi_long arg2,
                                         abi_long arg3,
                                         abi_long arg4)
P
pbrook 已提交
4730
{
4731
    if (regpairs_aligned(cpu_env)) {
P
pbrook 已提交
4732 4733
        arg2 = arg3;
        arg3 = arg4;
4734
    }
P
pbrook 已提交
4735 4736 4737 4738 4739
    return get_errno(truncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

#ifdef TARGET_NR_ftruncate64
4740 4741 4742 4743
static inline abi_long target_ftruncate64(void *cpu_env, abi_long arg1,
                                          abi_long arg2,
                                          abi_long arg3,
                                          abi_long arg4)
P
pbrook 已提交
4744
{
4745
    if (regpairs_aligned(cpu_env)) {
P
pbrook 已提交
4746 4747
        arg2 = arg3;
        arg3 = arg4;
4748
    }
P
pbrook 已提交
4749 4750 4751 4752
    return get_errno(ftruncate64(arg1, target_offset64(arg2, arg3)));
}
#endif

4753 4754
static inline abi_long target_to_host_timespec(struct timespec *host_ts,
                                               abi_ulong target_addr)
4755 4756 4757
{
    struct target_timespec *target_ts;

4758 4759
    if (!lock_user_struct(VERIFY_READ, target_ts, target_addr, 1))
        return -TARGET_EFAULT;
4760 4761
    host_ts->tv_sec = tswapal(target_ts->tv_sec);
    host_ts->tv_nsec = tswapal(target_ts->tv_nsec);
4762
    unlock_user_struct(target_ts, target_addr, 0);
B
bellard 已提交
4763
    return 0;
4764 4765
}

4766 4767
static inline abi_long host_to_target_timespec(abi_ulong target_addr,
                                               struct timespec *host_ts)
4768 4769 4770
{
    struct target_timespec *target_ts;

4771 4772
    if (!lock_user_struct(VERIFY_WRITE, target_ts, target_addr, 0))
        return -TARGET_EFAULT;
4773 4774
    target_ts->tv_sec = tswapal(host_ts->tv_sec);
    target_ts->tv_nsec = tswapal(host_ts->tv_nsec);
4775
    unlock_user_struct(target_ts, target_addr, 1);
B
bellard 已提交
4776
    return 0;
4777 4778
}

4779
#if defined(TARGET_NR_stat64) || defined(TARGET_NR_newfstatat)
4780 4781 4782 4783
static inline abi_long host_to_target_stat64(void *cpu_env,
                                             abi_ulong target_addr,
                                             struct stat *host_st)
{
4784
#if defined(TARGET_ARM) && defined(TARGET_ABI32)
4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810
    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
    {
4811
#if TARGET_ABI_BITS == 64 && !defined(TARGET_ALPHA)
4812 4813
        struct target_stat *target_st;
#else
4814
        struct target_stat64 *target_st;
4815
#endif
4816 4817 4818

        if (!lock_user_struct(VERIFY_WRITE, target_st, target_addr, 0))
            return -TARGET_EFAULT;
4819
        memset(target_st, 0, sizeof(*target_st));
4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843
        __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

4844 4845 4846 4847 4848
/* ??? 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.  */
4849 4850
static int do_futex(target_ulong uaddr, int op, int val, target_ulong timeout,
                    target_ulong uaddr2, int val3)
4851 4852
{
    struct timespec ts, *pts;
4853
    int base_op;
4854 4855 4856

    /* ??? We assume FUTEX_* constants are the same on both host
       and target.  */
4857
#ifdef FUTEX_CMD_MASK
4858
    base_op = op & FUTEX_CMD_MASK;
4859
#else
4860
    base_op = op;
4861
#endif
4862
    switch (base_op) {
4863
    case FUTEX_WAIT:
4864
    case FUTEX_WAIT_BITSET:
4865 4866 4867 4868 4869 4870
        if (timeout) {
            pts = &ts;
            target_to_host_timespec(pts, timeout);
        } else {
            pts = NULL;
        }
4871
        return get_errno(sys_futex(g2h(uaddr), op, tswap32(val),
4872
                         pts, NULL, val3));
4873
    case FUTEX_WAKE:
4874
        return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
4875
    case FUTEX_FD:
4876
        return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
4877 4878
    case FUTEX_REQUEUE:
    case FUTEX_CMP_REQUEUE:
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890
    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)));
4891 4892 4893 4894 4895
    default:
        return -TARGET_ENOSYS;
    }
}

P
pbrook 已提交
4896 4897
/* Map host to target signal numbers for the wait family of syscalls.
   Assume all other status bits are the same.  */
4898
int host_to_target_waitstatus(int status)
P
pbrook 已提交
4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909
{
    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;
}

4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932
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 已提交
4933 4934 4935 4936 4937
int get_osversion(void)
{
    static int osversion;
    struct new_utsname buf;
    const char *s;
4938

P
pbrook 已提交
4939 4940 4941 4942 4943 4944 4945 4946 4947
    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;
    }
4948
    osversion = relstr_to_int(s);
P
pbrook 已提交
4949 4950 4951
    return osversion;
}

4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974
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
}
4975 4976 4977

static int open_self_maps(void *cpu_env, int fd)
{
4978
#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
4979
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
4980 4981 4982 4983 4984 4985 4986 4987 4988 4989
#endif
    FILE *fp;
    char *line = NULL;
    size_t len = 0;
    ssize_t read;

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

4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007
    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 已提交
5008
                    " %c%c%c%c %08" PRIx64 " %02x:%02x %d %s%s\n",
5009 5010
                    h2g(min), h2g(max), flag_r, flag_w,
                    flag_x, flag_p, offset, dev_maj, dev_min, inode,
C
Christophe Lyon 已提交
5011
                    path[0] ? "         " : "", path);
5012 5013 5014 5015 5016 5017 5018
        }
    }

    free(line);
    fclose(fp);

#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
5019 5020
    dprintf(fd, "%08llx-%08llx rw-p %08llx 00:00 0          [stack]\n",
                (unsigned long long)ts->info->stack_limit,
5021 5022
                (unsigned long long)(ts->info->start_stack +
                                     (TARGET_PAGE_SIZE - 1)) & TARGET_PAGE_MASK,
5023 5024
                (unsigned long long)0);
#endif
5025 5026 5027 5028

    return 0;
}

5029 5030
static int open_self_stat(void *cpu_env, int fd)
{
5031
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
5032 5033 5034 5035 5036 5037 5038 5039
    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;

5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053
      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' : ' ');
5054
      }
5055

5056 5057 5058 5059 5060 5061 5062 5063 5064
      len = strlen(buf);
      if (write(fd, buf, len) != len) {
          return -1;
      }
    }

    return 0;
}

5065 5066
static int open_self_auxv(void *cpu_env, int fd)
{
5067
    TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
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
    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;
}

5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117
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;
}

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 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161
#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

5162 5163 5164 5165 5166
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);
5167
        int (*cmp)(const char *s1, const char *s2);
5168 5169 5170
    };
    const struct fake_open *fake_open;
    static const struct fake_open fakes[] = {
5171 5172 5173 5174 5175 5176 5177
        { "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 }
5178 5179 5180
    };

    for (fake_open = fakes; fake_open->filename; fake_open++) {
5181
        if (fake_open->cmp(pathname, fake_open->filename)) {
5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213
            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));
}

5214 5215 5216
/* 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>. */
5217 5218
abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
                    abi_long arg2, abi_long arg3, abi_long arg4,
5219 5220
                    abi_long arg5, abi_long arg6, abi_long arg7,
                    abi_long arg8)
5221
{
5222
    CPUState *cpu = ENV_GET_CPU(cpu_env);
5223
    abi_long ret;
5224
    struct stat st;
B
bellard 已提交
5225
    struct statfs stfs;
5226
    void *p;
5227

B
bellard 已提交
5228
#ifdef DEBUG
B
bellard 已提交
5229
    gemu_log("syscall %d", num);
B
bellard 已提交
5230
#endif
5231 5232 5233
    if(do_strace)
        print_syscall(num, arg1, arg2, arg3, arg4, arg5, arg6);

5234 5235
    switch(num) {
    case TARGET_NR_exit:
5236 5237 5238 5239 5240 5241
        /* 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 已提交
5242
        if (CPU_NEXT(first_cpu)) {
5243 5244 5245 5246
            TaskState *ts;

            cpu_list_lock();
            /* Remove the CPU from the list.  */
A
Andreas Färber 已提交
5247
            QTAILQ_REMOVE(&cpus, cpu, node);
5248 5249 5250 5251 5252 5253 5254
            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);
            }
5255
            thread_cpu = NULL;
5256 5257 5258 5259
            object_unref(OBJECT(ENV_GET_CPU(cpu_env)));
            g_free(ts);
            pthread_exit(NULL);
        }
5260
#ifdef TARGET_GPROF
B
bellard 已提交
5261 5262
        _mcleanup();
#endif
5263
        gdb_exit(cpu_env, arg1);
5264
        _exit(arg1);
5265 5266 5267
        ret = 0; /* avoid warning */
        break;
    case TARGET_NR_read:
5268 5269 5270 5271 5272 5273 5274 5275
        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);
        }
5276 5277
        break;
    case TARGET_NR_write:
5278 5279
        if (!(p = lock_user(VERIFY_READ, arg2, arg3, 1)))
            goto efault;
5280 5281
        ret = get_errno(write(arg1, p, arg3));
        unlock_user(p, arg2, 0);
5282 5283
        break;
    case TARGET_NR_open:
5284 5285
        if (!(p = lock_user_string(arg1)))
            goto efault;
5286 5287 5288
        ret = get_errno(do_open(cpu_env, p,
                                target_to_host_bitmask(arg2, fcntl_flags_tbl),
                                arg3));
5289
        unlock_user(p, arg1, 0);
5290
        break;
5291 5292
#if defined(TARGET_NR_openat) && defined(__NR_openat)
    case TARGET_NR_openat:
5293 5294 5295 5296 5297 5298 5299
        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);
5300 5301
        break;
#endif
5302 5303 5304 5305
    case TARGET_NR_close:
        ret = get_errno(close(arg1));
        break;
    case TARGET_NR_brk:
5306
        ret = do_brk(arg1);
5307 5308
        break;
    case TARGET_NR_fork:
P
pbrook 已提交
5309
        ret = get_errno(do_fork(cpu_env, SIGCHLD, 0, 0, 0, 0));
5310
        break;
5311
#ifdef TARGET_NR_waitpid
5312 5313
    case TARGET_NR_waitpid:
        {
5314 5315
            int status;
            ret = get_errno(waitpid(arg1, &status, arg3));
5316
            if (!is_error(ret) && arg2 && ret
P
pbrook 已提交
5317
                && put_user_s32(host_to_target_waitstatus(status), arg2))
5318
                goto efault;
5319 5320
        }
        break;
5321
#endif
P
pbrook 已提交
5322 5323 5324 5325 5326 5327 5328
#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 已提交
5329
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_siginfo_t), 0)))
P
pbrook 已提交
5330 5331
                    goto efault;
                host_to_target_siginfo(p, &info);
A
Anthony Liguori 已提交
5332
                unlock_user(p, arg3, sizeof(target_siginfo_t));
P
pbrook 已提交
5333 5334 5335 5336
            }
        }
        break;
#endif
5337
#ifdef TARGET_NR_creat /* not on alpha */
5338
    case TARGET_NR_creat:
5339 5340
        if (!(p = lock_user_string(arg1)))
            goto efault;
5341 5342
        ret = get_errno(creat(p, arg2));
        unlock_user(p, arg1, 0);
5343
        break;
5344
#endif
5345
    case TARGET_NR_link:
5346 5347 5348 5349
        {
            void * p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
5350 5351 5352 5353
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(link(p, p2));
5354 5355 5356
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
5357
        break;
5358
#if defined(TARGET_NR_linkat)
5359 5360 5361
    case TARGET_NR_linkat:
        {
            void * p2 = NULL;
5362 5363
            if (!arg2 || !arg4)
                goto efault;
5364 5365
            p  = lock_user_string(arg2);
            p2 = lock_user_string(arg4);
5366
            if (!p || !p2)
5367
                ret = -TARGET_EFAULT;
5368
            else
5369
                ret = get_errno(linkat(arg1, p, arg3, p2, arg5));
5370 5371
            unlock_user(p, arg2, 0);
            unlock_user(p2, arg4, 0);
5372 5373 5374
        }
        break;
#endif
5375
    case TARGET_NR_unlink:
5376 5377
        if (!(p = lock_user_string(arg1)))
            goto efault;
5378 5379
        ret = get_errno(unlink(p));
        unlock_user(p, arg1, 0);
5380
        break;
5381
#if defined(TARGET_NR_unlinkat)
5382
    case TARGET_NR_unlinkat:
5383 5384
        if (!(p = lock_user_string(arg2)))
            goto efault;
5385
        ret = get_errno(unlinkat(arg1, p, arg3));
5386
        unlock_user(p, arg2, 0);
5387
        break;
5388
#endif
5389
    case TARGET_NR_execve:
B
bellard 已提交
5390 5391
        {
            char **argp, **envp;
B
bellard 已提交
5392
            int argc, envc;
5393 5394 5395 5396
            abi_ulong gp;
            abi_ulong guest_argp;
            abi_ulong guest_envp;
            abi_ulong addr;
B
bellard 已提交
5397
            char **q;
5398
            int total_size = 0;
B
bellard 已提交
5399

B
bellard 已提交
5400
            argc = 0;
5401
            guest_argp = arg2;
5402
            for (gp = guest_argp; gp; gp += sizeof(abi_ulong)) {
5403
                if (get_user_ual(addr, gp))
5404
                    goto efault;
5405
                if (!addr)
5406
                    break;
B
bellard 已提交
5407
                argc++;
5408
            }
B
bellard 已提交
5409
            envc = 0;
5410
            guest_envp = arg3;
5411
            for (gp = guest_envp; gp; gp += sizeof(abi_ulong)) {
5412
                if (get_user_ual(addr, gp))
5413
                    goto efault;
5414
                if (!addr)
5415
                    break;
B
bellard 已提交
5416
                envc++;
5417
            }
B
bellard 已提交
5418

B
bellard 已提交
5419 5420
            argp = alloca((argc + 1) * sizeof(void *));
            envp = alloca((envc + 1) * sizeof(void *));
B
bellard 已提交
5421

5422
            for (gp = guest_argp, q = argp; gp;
5423
                  gp += sizeof(abi_ulong), q++) {
5424 5425
                if (get_user_ual(addr, gp))
                    goto execve_efault;
5426 5427
                if (!addr)
                    break;
5428 5429
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
5430
                total_size += strlen(*q) + 1;
5431
            }
B
bellard 已提交
5432 5433
            *q = NULL;

5434
            for (gp = guest_envp, q = envp; gp;
5435
                  gp += sizeof(abi_ulong), q++) {
5436 5437
                if (get_user_ual(addr, gp))
                    goto execve_efault;
5438 5439
                if (!addr)
                    break;
5440 5441
                if (!(*q = lock_user_string(addr)))
                    goto execve_efault;
5442
                total_size += strlen(*q) + 1;
5443
            }
B
bellard 已提交
5444
            *q = NULL;
B
bellard 已提交
5445

5446 5447 5448 5449 5450 5451
            /* 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;
            }
5452 5453
            if (!(p = lock_user_string(arg1)))
                goto execve_efault;
5454 5455 5456
            ret = get_errno(execve(p, argp, envp));
            unlock_user(p, arg1, 0);

5457 5458 5459 5460 5461 5462
            goto execve_end;

        execve_efault:
            ret = -TARGET_EFAULT;

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

	    if (arg2) {
5884 5885
                if (!lock_user_struct(VERIFY_READ, old_act, arg2, 1))
                    goto efault;
5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897
		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) {
5898 5899
                if (!lock_user_struct(VERIFY_WRITE, old_act, arg3, 0))
                    goto efault;
5900 5901 5902 5903 5904 5905 5906 5907
		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);
	    }
5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932
#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 已提交
5933
#endif
5934 5935
        }
        break;
5936
#endif
B
bellard 已提交
5937
    case TARGET_NR_rt_sigaction:
5938
        {
5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962
#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
5963 5964 5965
            struct target_sigaction *act;
            struct target_sigaction *oact;

5966 5967 5968 5969
            if (arg2) {
                if (!lock_user_struct(VERIFY_READ, act, arg2, 1))
                    goto efault;
            } else
5970
                act = NULL;
5971 5972 5973 5974 5975 5976
            if (arg3) {
                if (!lock_user_struct(VERIFY_WRITE, oact, arg3, 0)) {
                    ret = -TARGET_EFAULT;
                    goto rt_sigaction_fail;
                }
            } else
5977 5978
                oact = NULL;
            ret = get_errno(do_sigaction(arg1, act, oact));
5979 5980
	rt_sigaction_fail:
            if (act)
5981
                unlock_user_struct(act, arg2, 0);
5982
            if (oact)
5983
                unlock_user_struct(oact, arg3, 1);
5984
#endif
5985
        }
B
bellard 已提交
5986
        break;
5987
#ifdef TARGET_NR_sgetmask /* not on alpha */
5988
    case TARGET_NR_sgetmask:
B
bellard 已提交
5989 5990
        {
            sigset_t cur_set;
5991
            abi_ulong target_set;
B
bellard 已提交
5992 5993 5994 5995 5996
            sigprocmask(0, NULL, &cur_set);
            host_to_target_old_sigset(&target_set, &cur_set);
            ret = target_set;
        }
        break;
5997 5998
#endif
#ifdef TARGET_NR_ssetmask /* not on alpha */
5999
    case TARGET_NR_ssetmask:
B
bellard 已提交
6000 6001
        {
            sigset_t set, oset, cur_set;
6002
            abi_ulong target_set = arg1;
B
bellard 已提交
6003 6004 6005 6006 6007 6008 6009 6010
            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;
6011
#endif
6012
#ifdef TARGET_NR_sigprocmask
B
bellard 已提交
6013 6014
    case TARGET_NR_sigprocmask:
        {
6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040
#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;
6041
                ((CPUAlphaState *)cpu_env)->ir[IR_V0] = 0; /* force no error */
6042 6043
            }
#else
B
bellard 已提交
6044
            sigset_t set, oldset, *set_ptr;
6045
            int how;
6046

6047
            if (arg2) {
6048
                switch (arg1) {
B
bellard 已提交
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058
                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:
6059
                    ret = -TARGET_EINVAL;
B
bellard 已提交
6060 6061
                    goto fail;
                }
A
Anthony Liguori 已提交
6062
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
6063
                    goto efault;
6064 6065
                target_to_host_old_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
6066 6067 6068 6069 6070
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
6071
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
6072
            if (!is_error(ret) && arg3) {
A
Anthony Liguori 已提交
6073
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
6074
                    goto efault;
6075
                host_to_target_old_sigset(p, &oldset);
A
Anthony Liguori 已提交
6076
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
6077
            }
6078
#endif
B
bellard 已提交
6079 6080
        }
        break;
6081
#endif
B
bellard 已提交
6082 6083 6084 6085
    case TARGET_NR_rt_sigprocmask:
        {
            int how = arg1;
            sigset_t set, oldset, *set_ptr;
6086

6087
            if (arg2) {
B
bellard 已提交
6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098
                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:
6099
                    ret = -TARGET_EINVAL;
B
bellard 已提交
6100 6101
                    goto fail;
                }
A
Anthony Liguori 已提交
6102
                if (!(p = lock_user(VERIFY_READ, arg2, sizeof(target_sigset_t), 1)))
6103
                    goto efault;
6104 6105
                target_to_host_sigset(&set, p);
                unlock_user(p, arg2, 0);
B
bellard 已提交
6106 6107 6108 6109 6110 6111
                set_ptr = &set;
            } else {
                how = 0;
                set_ptr = NULL;
            }
            ret = get_errno(sigprocmask(how, set_ptr, &oldset));
6112
            if (!is_error(ret) && arg3) {
A
Anthony Liguori 已提交
6113
                if (!(p = lock_user(VERIFY_WRITE, arg3, sizeof(target_sigset_t), 0)))
6114
                    goto efault;
6115
                host_to_target_sigset(p, &oldset);
A
Anthony Liguori 已提交
6116
                unlock_user(p, arg3, sizeof(target_sigset_t));
B
bellard 已提交
6117 6118 6119
            }
        }
        break;
6120
#ifdef TARGET_NR_sigpending
B
bellard 已提交
6121 6122 6123 6124 6125
    case TARGET_NR_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
A
Anthony Liguori 已提交
6126
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
6127
                    goto efault;
6128
                host_to_target_old_sigset(p, &set);
A
Anthony Liguori 已提交
6129
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
6130 6131 6132
            }
        }
        break;
6133
#endif
B
bellard 已提交
6134 6135 6136 6137 6138
    case TARGET_NR_rt_sigpending:
        {
            sigset_t set;
            ret = get_errno(sigpending(&set));
            if (!is_error(ret)) {
A
Anthony Liguori 已提交
6139
                if (!(p = lock_user(VERIFY_WRITE, arg1, sizeof(target_sigset_t), 0)))
6140
                    goto efault;
6141
                host_to_target_sigset(p, &set);
A
Anthony Liguori 已提交
6142
                unlock_user(p, arg1, sizeof(target_sigset_t));
B
bellard 已提交
6143 6144 6145
            }
        }
        break;
6146
#ifdef TARGET_NR_sigsuspend
B
bellard 已提交
6147 6148 6149
    case TARGET_NR_sigsuspend:
        {
            sigset_t set;
6150 6151 6152 6153
#if defined(TARGET_ALPHA)
            abi_ulong mask = arg1;
            target_to_host_old_sigset(&set, &mask);
#else
A
Anthony Liguori 已提交
6154
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6155
                goto efault;
6156 6157
            target_to_host_old_sigset(&set, p);
            unlock_user(p, arg1, 0);
6158
#endif
B
bellard 已提交
6159 6160 6161
            ret = get_errno(sigsuspend(&set));
        }
        break;
6162
#endif
B
bellard 已提交
6163 6164 6165
    case TARGET_NR_rt_sigsuspend:
        {
            sigset_t set;
A
Anthony Liguori 已提交
6166
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6167
                goto efault;
6168 6169
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
6170 6171 6172 6173 6174 6175 6176 6177
            ret = get_errno(sigsuspend(&set));
        }
        break;
    case TARGET_NR_rt_sigtimedwait:
        {
            sigset_t set;
            struct timespec uts, *puts;
            siginfo_t uinfo;
6178

A
Anthony Liguori 已提交
6179
            if (!(p = lock_user(VERIFY_READ, arg1, sizeof(target_sigset_t), 1)))
6180
                goto efault;
6181 6182 6183
            target_to_host_sigset(&set, p);
            unlock_user(p, arg1, 0);
            if (arg3) {
B
bellard 已提交
6184
                puts = &uts;
6185
                target_to_host_timespec(puts, arg3);
B
bellard 已提交
6186 6187 6188 6189
            } else {
                puts = NULL;
            }
            ret = get_errno(sigtimedwait(&set, &uinfo, puts));
6190
            if (!is_error(ret) && arg2) {
A
Anthony Liguori 已提交
6191
                if (!(p = lock_user(VERIFY_WRITE, arg2, sizeof(target_siginfo_t), 0)))
6192
                    goto efault;
6193
                host_to_target_siginfo(p, &uinfo);
A
Anthony Liguori 已提交
6194
                unlock_user(p, arg2, sizeof(target_siginfo_t));
B
bellard 已提交
6195 6196 6197 6198 6199 6200
            }
        }
        break;
    case TARGET_NR_rt_sigqueueinfo:
        {
            siginfo_t uinfo;
A
Anthony Liguori 已提交
6201
            if (!(p = lock_user(VERIFY_READ, arg3, sizeof(target_sigset_t), 1)))
6202
                goto efault;
6203 6204
            target_to_host_siginfo(&uinfo, p);
            unlock_user(p, arg1, 0);
B
bellard 已提交
6205 6206 6207
            ret = get_errno(sys_rt_sigqueueinfo(arg1, arg2, &uinfo));
        }
        break;
6208
#ifdef TARGET_NR_sigreturn
B
bellard 已提交
6209 6210 6211 6212
    case TARGET_NR_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_sigreturn(cpu_env);
        break;
6213
#endif
B
bellard 已提交
6214 6215 6216 6217
    case TARGET_NR_rt_sigreturn:
        /* NOTE: ret is eax, so not transcoding must be done */
        ret = do_rt_sigreturn(cpu_env);
        break;
6218
    case TARGET_NR_sethostname:
6219 6220
        if (!(p = lock_user_string(arg1)))
            goto efault;
6221 6222
        ret = get_errno(sethostname(p, arg2));
        unlock_user(p, arg1, 0);
6223 6224
        break;
    case TARGET_NR_setrlimit:
B
bellard 已提交
6225
        {
6226
            int resource = target_to_host_resource(arg1);
6227
            struct target_rlimit *target_rlim;
B
bellard 已提交
6228
            struct rlimit rlim;
6229 6230
            if (!lock_user_struct(VERIFY_READ, target_rlim, arg2, 1))
                goto efault;
6231 6232
            rlim.rlim_cur = target_to_host_rlim(target_rlim->rlim_cur);
            rlim.rlim_max = target_to_host_rlim(target_rlim->rlim_max);
6233
            unlock_user_struct(target_rlim, arg2, 0);
B
bellard 已提交
6234 6235 6236
            ret = get_errno(setrlimit(resource, &rlim));
        }
        break;
6237
    case TARGET_NR_getrlimit:
B
bellard 已提交
6238
        {
6239
            int resource = target_to_host_resource(arg1);
6240
            struct target_rlimit *target_rlim;
B
bellard 已提交
6241
            struct rlimit rlim;
6242

B
bellard 已提交
6243 6244
            ret = get_errno(getrlimit(resource, &rlim));
            if (!is_error(ret)) {
6245 6246
                if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                    goto efault;
6247 6248
                target_rlim->rlim_cur = host_to_target_rlim(rlim.rlim_cur);
                target_rlim->rlim_max = host_to_target_rlim(rlim.rlim_max);
6249
                unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
6250 6251 6252
            }
        }
        break;
6253
    case TARGET_NR_getrusage:
B
bellard 已提交
6254 6255 6256 6257
        {
            struct rusage rusage;
            ret = get_errno(getrusage(arg1, &rusage));
            if (!is_error(ret)) {
6258
                host_to_target_rusage(arg2, &rusage);
B
bellard 已提交
6259 6260 6261
            }
        }
        break;
6262 6263 6264 6265 6266
    case TARGET_NR_gettimeofday:
        {
            struct timeval tv;
            ret = get_errno(gettimeofday(&tv, NULL));
            if (!is_error(ret)) {
6267 6268
                if (copy_to_user_timeval(arg1, &tv))
                    goto efault;
6269 6270 6271 6272 6273 6274
            }
        }
        break;
    case TARGET_NR_settimeofday:
        {
            struct timeval tv;
6275 6276
            if (copy_from_user_timeval(&tv, arg1))
                goto efault;
6277 6278 6279
            ret = get_errno(settimeofday(&tv, NULL));
        }
        break;
6280
#if defined(TARGET_NR_select)
6281
    case TARGET_NR_select:
6282 6283 6284
#if defined(TARGET_S390X) || defined(TARGET_ALPHA)
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
#else
B
bellard 已提交
6285
        {
6286
            struct target_sel_arg_struct *sel;
6287
            abi_ulong inp, outp, exp, tvp;
6288 6289
            long nsel;

6290 6291
            if (!lock_user_struct(VERIFY_READ, sel, arg1, 1))
                goto efault;
6292 6293 6294 6295 6296
            nsel = tswapal(sel->n);
            inp = tswapal(sel->inp);
            outp = tswapal(sel->outp);
            exp = tswapal(sel->exp);
            tvp = tswapal(sel->tvp);
6297 6298
            unlock_user_struct(sel, arg1, 0);
            ret = do_select(nsel, inp, outp, exp, tvp);
B
bellard 已提交
6299
        }
6300
#endif
B
bellard 已提交
6301
        break;
6302 6303 6304
#endif
#ifdef TARGET_NR_pselect6
    case TARGET_NR_pselect6:
6305 6306 6307 6308 6309 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 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364
        {
            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;
                }
6365 6366
                arg_sigset = tswapal(arg7[0]);
                arg_sigsize = tswapal(arg7[1]);
6367 6368 6369 6370
                unlock_user(arg7, arg6, 0);

                if (arg_sigset) {
                    sig.set = &set;
6371 6372 6373 6374 6375
                    if (arg_sigsize != sizeof(*target_sigset)) {
                        /* Like the kernel, we enforce correct size sigsets */
                        ret = -TARGET_EINVAL;
                        goto fail;
                    }
6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405
                    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 已提交
6406
#endif
6407
    case TARGET_NR_symlink:
6408 6409 6410 6411
        {
            void *p2;
            p = lock_user_string(arg1);
            p2 = lock_user_string(arg2);
6412 6413 6414 6415
            if (!p || !p2)
                ret = -TARGET_EFAULT;
            else
                ret = get_errno(symlink(p, p2));
6416 6417 6418
            unlock_user(p2, arg2, 0);
            unlock_user(p, arg1, 0);
        }
6419
        break;
6420
#if defined(TARGET_NR_symlinkat)
6421 6422
    case TARGET_NR_symlinkat:
        {
6423
            void *p2;
6424 6425
            p  = lock_user_string(arg1);
            p2 = lock_user_string(arg3);
6426
            if (!p || !p2)
6427
                ret = -TARGET_EFAULT;
6428
            else
6429
                ret = get_errno(symlinkat(p, arg2, p2));
6430 6431
            unlock_user(p2, arg3, 0);
            unlock_user(p, arg1, 0);
6432 6433 6434
        }
        break;
#endif
6435
#ifdef TARGET_NR_oldlstat
6436 6437
    case TARGET_NR_oldlstat:
        goto unimplemented;
6438
#endif
6439
    case TARGET_NR_readlink:
6440
        {
6441
            void *p2;
6442
            p = lock_user_string(arg1);
6443
            p2 = lock_user(VERIFY_WRITE, arg2, arg3, 0);
6444
            if (!p || !p2) {
6445
                ret = -TARGET_EFAULT;
6446 6447 6448 6449 6450 6451 6452
            } 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));
6453
            }
6454 6455 6456
            unlock_user(p2, arg2, ret);
            unlock_user(p, arg1, 0);
        }
6457
        break;
6458
#if defined(TARGET_NR_readlinkat)
6459 6460
    case TARGET_NR_readlinkat:
        {
6461
            void *p2;
6462
            p  = lock_user_string(arg2);
6463
            p2 = lock_user(VERIFY_WRITE, arg3, arg4, 0);
6464 6465 6466 6467 6468 6469 6470 6471
            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 {
6472
                ret = get_errno(readlinkat(arg1, path(p), p2, arg4));
6473
            }
6474 6475
            unlock_user(p2, arg3, ret);
            unlock_user(p, arg2, 0);
6476 6477 6478
        }
        break;
#endif
6479
#ifdef TARGET_NR_uselib
6480 6481
    case TARGET_NR_uselib:
        goto unimplemented;
6482 6483
#endif
#ifdef TARGET_NR_swapon
6484
    case TARGET_NR_swapon:
6485 6486
        if (!(p = lock_user_string(arg1)))
            goto efault;
6487 6488
        ret = get_errno(swapon(p, arg2));
        unlock_user(p, arg1, 0);
6489
        break;
6490
#endif
6491
    case TARGET_NR_reboot:
L
Laurent Vivier 已提交
6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502
        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));
        }
6503
        break;
6504
#ifdef TARGET_NR_readdir
6505 6506
    case TARGET_NR_readdir:
        goto unimplemented;
6507 6508
#endif
#ifdef TARGET_NR_mmap
6509
    case TARGET_NR_mmap:
6510 6511
#if (defined(TARGET_I386) && defined(TARGET_ABI32)) || \
    (defined(TARGET_ARM) && defined(TARGET_ABI32)) || \
U
Ulrich Hecht 已提交
6512 6513
    defined(TARGET_M68K) || defined(TARGET_CRIS) || defined(TARGET_MICROBLAZE) \
    || defined(TARGET_S390X)
6514
        {
6515 6516
            abi_ulong *v;
            abi_ulong v1, v2, v3, v4, v5, v6;
6517 6518
            if (!(v = lock_user(VERIFY_READ, arg1, 6 * sizeof(abi_ulong), 1)))
                goto efault;
6519 6520 6521 6522 6523 6524
            v1 = tswapal(v[0]);
            v2 = tswapal(v[1]);
            v3 = tswapal(v[2]);
            v4 = tswapal(v[3]);
            v5 = tswapal(v[4]);
            v6 = tswapal(v[5]);
6525
            unlock_user(v, arg1, 0);
6526
            ret = get_errno(target_mmap(v1, v2, v3,
B
bellard 已提交
6527 6528
                                        target_to_host_bitmask(v4, mmap_flags_tbl),
                                        v5, v6));
6529 6530
        }
#else
6531 6532
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
6533 6534
                                    arg5,
                                    arg6));
6535
#endif
B
bellard 已提交
6536
        break;
6537
#endif
B
bellard 已提交
6538
#ifdef TARGET_NR_mmap2
B
bellard 已提交
6539
    case TARGET_NR_mmap2:
P
pbrook 已提交
6540
#ifndef MMAP_SHIFT
B
bellard 已提交
6541 6542
#define MMAP_SHIFT 12
#endif
6543 6544
        ret = get_errno(target_mmap(arg1, arg2, arg3,
                                    target_to_host_bitmask(arg4, mmap_flags_tbl),
B
bellard 已提交
6545
                                    arg5,
B
bellard 已提交
6546
                                    arg6 << MMAP_SHIFT));
6547
        break;
B
bellard 已提交
6548
#endif
6549
    case TARGET_NR_munmap:
B
bellard 已提交
6550
        ret = get_errno(target_munmap(arg1, arg2));
6551
        break;
B
bellard 已提交
6552
    case TARGET_NR_mprotect:
P
Paul Brook 已提交
6553
        {
6554
            TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
P
Paul Brook 已提交
6555 6556 6557 6558 6559 6560 6561 6562 6563
            /* 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 已提交
6564
        ret = get_errno(target_mprotect(arg1, arg2, arg3));
B
bellard 已提交
6565
        break;
6566
#ifdef TARGET_NR_mremap
B
bellard 已提交
6567
    case TARGET_NR_mremap:
B
bellard 已提交
6568
        ret = get_errno(target_mremap(arg1, arg2, arg3, arg4, arg5));
B
bellard 已提交
6569
        break;
6570
#endif
6571
        /* ??? msync/mlock/munlock are broken for softmmu.  */
6572
#ifdef TARGET_NR_msync
B
bellard 已提交
6573
    case TARGET_NR_msync:
6574
        ret = get_errno(msync(g2h(arg1), arg2, arg3));
B
bellard 已提交
6575
        break;
6576 6577
#endif
#ifdef TARGET_NR_mlock
B
bellard 已提交
6578
    case TARGET_NR_mlock:
6579
        ret = get_errno(mlock(g2h(arg1), arg2));
B
bellard 已提交
6580
        break;
6581 6582
#endif
#ifdef TARGET_NR_munlock
B
bellard 已提交
6583
    case TARGET_NR_munlock:
6584
        ret = get_errno(munlock(g2h(arg1), arg2));
B
bellard 已提交
6585
        break;
6586 6587
#endif
#ifdef TARGET_NR_mlockall
B
bellard 已提交
6588 6589 6590
    case TARGET_NR_mlockall:
        ret = get_errno(mlockall(arg1));
        break;
6591 6592
#endif
#ifdef TARGET_NR_munlockall
B
bellard 已提交
6593 6594 6595
    case TARGET_NR_munlockall:
        ret = get_errno(munlockall());
        break;
6596
#endif
6597
    case TARGET_NR_truncate:
6598 6599
        if (!(p = lock_user_string(arg1)))
            goto efault;
6600 6601
        ret = get_errno(truncate(p, arg2));
        unlock_user(p, arg1, 0);
6602 6603 6604 6605 6606 6607 6608
        break;
    case TARGET_NR_ftruncate:
        ret = get_errno(ftruncate(arg1, arg2));
        break;
    case TARGET_NR_fchmod:
        ret = get_errno(fchmod(arg1, arg2));
        break;
6609
#if defined(TARGET_NR_fchmodat)
6610
    case TARGET_NR_fchmodat:
6611 6612
        if (!(p = lock_user_string(arg2)))
            goto efault;
6613
        ret = get_errno(fchmodat(arg1, p, arg3, 0));
6614
        unlock_user(p, arg2, 0);
6615 6616
        break;
#endif
6617
    case TARGET_NR_getpriority:
6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632
        /* 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
6633 6634 6635 6636
        break;
    case TARGET_NR_setpriority:
        ret = get_errno(setpriority(arg1, arg2, arg3));
        break;
6637
#ifdef TARGET_NR_profil
6638 6639
    case TARGET_NR_profil:
        goto unimplemented;
6640
#endif
6641
    case TARGET_NR_statfs:
6642 6643
        if (!(p = lock_user_string(arg1)))
            goto efault;
6644 6645
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
6646 6647
    convert_statfs:
        if (!is_error(ret)) {
6648
            struct target_statfs *target_stfs;
6649

6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661
            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 已提交
6662 6663
            __put_user(stfs.f_frsize, &target_stfs->f_frsize);
            memset(target_stfs->f_spare, 0, sizeof(target_stfs->f_spare));
6664
            unlock_user_struct(target_stfs, arg2, 1);
6665 6666 6667
        }
        break;
    case TARGET_NR_fstatfs:
B
bellard 已提交
6668
        ret = get_errno(fstatfs(arg1, &stfs));
6669
        goto convert_statfs;
B
bellard 已提交
6670 6671
#ifdef TARGET_NR_statfs64
    case TARGET_NR_statfs64:
6672 6673
        if (!(p = lock_user_string(arg1)))
            goto efault;
6674 6675
        ret = get_errno(statfs(path(p), &stfs));
        unlock_user(p, arg1, 0);
B
bellard 已提交
6676 6677
    convert_statfs64:
        if (!is_error(ret)) {
6678
            struct target_statfs64 *target_stfs;
6679

6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691
            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 已提交
6692 6693
            __put_user(stfs.f_frsize, &target_stfs->f_frsize);
            memset(target_stfs->f_spare, 0, sizeof(target_stfs->f_spare));
6694
            unlock_user_struct(target_stfs, arg3, 1);
B
bellard 已提交
6695 6696 6697 6698 6699 6700
        }
        break;
    case TARGET_NR_fstatfs64:
        ret = get_errno(fstatfs(arg1, &stfs));
        goto convert_statfs64;
#endif
6701
#ifdef TARGET_NR_ioperm
6702 6703
    case TARGET_NR_ioperm:
        goto unimplemented;
6704
#endif
6705
#ifdef TARGET_NR_socketcall
6706
    case TARGET_NR_socketcall:
6707
        ret = do_socketcall(arg1, arg2);
6708
        break;
6709
#endif
6710 6711
#ifdef TARGET_NR_accept
    case TARGET_NR_accept:
P
Peter Maydell 已提交
6712 6713 6714 6715 6716 6717 6718 6719 6720 6721
        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
6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735
        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 已提交
6736
        ret = do_getpeername(arg1, arg2, arg3);
6737 6738 6739 6740
        break;
#endif
#ifdef TARGET_NR_getsockname
    case TARGET_NR_getsockname:
P
pbrook 已提交
6741
        ret = do_getsockname(arg1, arg2, arg3);
6742 6743 6744 6745 6746 6747 6748 6749 6750
        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 已提交
6751
        ret = get_errno(listen(arg1, arg2));
6752 6753 6754 6755
        break;
#endif
#ifdef TARGET_NR_recv
    case TARGET_NR_recv:
P
pbrook 已提交
6756
        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
6757 6758 6759 6760
        break;
#endif
#ifdef TARGET_NR_recvfrom
    case TARGET_NR_recvfrom:
P
pbrook 已提交
6761
        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
6762 6763 6764 6765 6766 6767 6768 6769 6770
        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 已提交
6771
        ret = do_sendto(arg1, arg2, arg3, arg4, 0, 0);
6772 6773 6774 6775 6776 6777 6778 6779 6780
        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 已提交
6781
        ret = do_sendto(arg1, arg2, arg3, arg4, arg5, arg6);
6782 6783 6784 6785
        break;
#endif
#ifdef TARGET_NR_shutdown
    case TARGET_NR_shutdown:
P
pbrook 已提交
6786
        ret = get_errno(shutdown(arg1, arg2));
6787 6788 6789 6790 6791 6792 6793 6794 6795
        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 已提交
6796
        ret = do_socketpair(arg1, arg2, arg3, arg4);
6797 6798 6799 6800 6801 6802 6803
        break;
#endif
#ifdef TARGET_NR_setsockopt
    case TARGET_NR_setsockopt:
        ret = do_setsockopt(arg1, arg2, arg3, arg4, (socklen_t) arg5);
        break;
#endif
6804

6805
    case TARGET_NR_syslog:
6806 6807
        if (!(p = lock_user_string(arg2)))
            goto efault;
6808 6809
        ret = get_errno(sys_syslog((int)arg1, p, (int)arg3));
        unlock_user(p, arg2, 0);
6810 6811
        break;

6812
    case TARGET_NR_setitimer:
B
bellard 已提交
6813 6814 6815
        {
            struct itimerval value, ovalue, *pvalue;

6816
            if (arg2) {
B
bellard 已提交
6817
                pvalue = &value;
6818 6819 6820 6821
                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 已提交
6822 6823 6824 6825
            } else {
                pvalue = NULL;
            }
            ret = get_errno(setitimer(arg1, pvalue, &ovalue));
6826
            if (!is_error(ret) && arg3) {
6827 6828 6829 6830 6831
                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 已提交
6832 6833 6834
            }
        }
        break;
6835
    case TARGET_NR_getitimer:
B
bellard 已提交
6836 6837
        {
            struct itimerval value;
6838

B
bellard 已提交
6839
            ret = get_errno(getitimer(arg1, &value));
6840
            if (!is_error(ret) && arg2) {
6841 6842 6843 6844 6845
                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 已提交
6846 6847 6848
            }
        }
        break;
6849
    case TARGET_NR_stat:
6850 6851
        if (!(p = lock_user_string(arg1)))
            goto efault;
6852 6853
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
6854 6855
        goto do_stat;
    case TARGET_NR_lstat:
6856 6857
        if (!(p = lock_user_string(arg1)))
            goto efault;
6858 6859
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
6860 6861 6862 6863 6864 6865
        goto do_stat;
    case TARGET_NR_fstat:
        {
            ret = get_errno(fstat(arg1, &st));
        do_stat:
            if (!is_error(ret)) {
6866
                struct target_stat *target_st;
6867

6868 6869
                if (!lock_user_struct(VERIFY_WRITE, target_st, arg2, 0))
                    goto efault;
6870
                memset(target_st, 0, sizeof(*target_st));
B
bellard 已提交
6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883
                __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);
6884
                unlock_user_struct(target_st, arg2, 1);
6885 6886 6887
            }
        }
        break;
6888
#ifdef TARGET_NR_olduname
6889 6890
    case TARGET_NR_olduname:
        goto unimplemented;
6891 6892
#endif
#ifdef TARGET_NR_iopl
6893 6894
    case TARGET_NR_iopl:
        goto unimplemented;
6895
#endif
6896 6897 6898
    case TARGET_NR_vhangup:
        ret = get_errno(vhangup());
        break;
6899
#ifdef TARGET_NR_idle
6900 6901
    case TARGET_NR_idle:
        goto unimplemented;
B
bellard 已提交
6902 6903 6904
#endif
#ifdef TARGET_NR_syscall
    case TARGET_NR_syscall:
6905 6906 6907
        ret = do_syscall(cpu_env, arg1 & 0xffff, arg2, arg3, arg4, arg5,
                         arg6, arg7, arg8, 0);
        break;
6908
#endif
6909 6910 6911
    case TARGET_NR_wait4:
        {
            int status;
6912
            abi_long status_ptr = arg2;
6913
            struct rusage rusage, *rusage_ptr;
6914
            abi_ulong target_rusage = arg4;
6915 6916 6917 6918 6919 6920
            if (target_rusage)
                rusage_ptr = &rusage;
            else
                rusage_ptr = NULL;
            ret = get_errno(wait4(arg1, &status, arg3, rusage_ptr));
            if (!is_error(ret)) {
6921
                if (status_ptr && ret) {
P
pbrook 已提交
6922
                    status = host_to_target_waitstatus(status);
6923 6924
                    if (put_user_s32(status, status_ptr))
                        goto efault;
6925
                }
6926 6927
                if (target_rusage)
                    host_to_target_rusage(target_rusage, &rusage);
6928 6929 6930
            }
        }
        break;
6931
#ifdef TARGET_NR_swapoff
6932
    case TARGET_NR_swapoff:
6933 6934
        if (!(p = lock_user_string(arg1)))
            goto efault;
6935 6936
        ret = get_errno(swapoff(p));
        unlock_user(p, arg1, 0);
6937
        break;
6938
#endif
6939
    case TARGET_NR_sysinfo:
B
bellard 已提交
6940
        {
6941
            struct target_sysinfo *target_value;
B
bellard 已提交
6942 6943
            struct sysinfo value;
            ret = get_errno(sysinfo(&value));
6944
            if (!is_error(ret) && arg1)
B
bellard 已提交
6945
            {
6946 6947
                if (!lock_user_struct(VERIFY_WRITE, target_value, arg1, 0))
                    goto efault;
B
bellard 已提交
6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961
                __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);
6962
                unlock_user_struct(target_value, arg1, 1);
B
bellard 已提交
6963 6964 6965
            }
        }
        break;
6966
#ifdef TARGET_NR_ipc
6967
    case TARGET_NR_ipc:
6968 6969
	ret = do_ipc(arg1, arg2, arg3, arg4, arg5, arg6);
	break;
6970
#endif
6971 6972 6973 6974 6975 6976 6977
#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:
6978
        ret = do_semop(arg1, arg2, arg3);
6979 6980 6981 6982 6983 6984 6985
        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 已提交
6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004
#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;
7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024
#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 已提交
7025
#endif
7026 7027 7028 7029
    case TARGET_NR_fsync:
        ret = get_errno(fsync(arg1));
        break;
    case TARGET_NR_clone:
7030 7031 7032 7033 7034 7035 7036
        /* 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)
7037
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg4, arg6, arg5));
7038 7039 7040
#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 已提交
7041
        ret = get_errno(do_fork(cpu_env, arg2, arg1, arg3, arg5, arg4));
A
aurel32 已提交
7042
#else
7043
        ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg5, arg4));
A
aurel32 已提交
7044
#endif
B
bellard 已提交
7045
        break;
7046 7047 7048
#ifdef __NR_exit_group
        /* new thread calls */
    case TARGET_NR_exit_group:
7049
#ifdef TARGET_GPROF
A
aurel32 已提交
7050 7051
        _mcleanup();
#endif
7052
        gdb_exit(cpu_env, arg1);
7053 7054 7055
        ret = get_errno(exit_group(arg1));
        break;
#endif
7056
    case TARGET_NR_setdomainname:
7057 7058
        if (!(p = lock_user_string(arg1)))
            goto efault;
7059 7060
        ret = get_errno(setdomainname(p, arg2));
        unlock_user(p, arg1, 0);
7061 7062 7063
        break;
    case TARGET_NR_uname:
        /* no need to transcode because we use the linux syscall */
B
bellard 已提交
7064 7065
        {
            struct new_utsname * buf;
7066

7067 7068
            if (!lock_user_struct(VERIFY_WRITE, buf, arg1, 0))
                goto efault;
B
bellard 已提交
7069 7070 7071 7072
            ret = get_errno(sys_uname(buf));
            if (!is_error(ret)) {
                /* Overrite the native machine name with whatever is being
                   emulated. */
7073
                strcpy (buf->machine, cpu_to_uname_machine(cpu_env));
7074 7075 7076
                /* Allow the user to override the reported release.  */
                if (qemu_uname_release && *qemu_uname_release)
                  strcpy (buf->release, qemu_uname_release);
B
bellard 已提交
7077
            }
7078
            unlock_user_struct(buf, arg1, 1);
B
bellard 已提交
7079
        }
7080
        break;
B
bellard 已提交
7081
#ifdef TARGET_I386
7082
    case TARGET_NR_modify_ldt:
7083
        ret = do_modify_ldt(cpu_env, arg1, arg2, arg3);
B
bellard 已提交
7084
        break;
7085
#if !defined(TARGET_X86_64)
B
bellard 已提交
7086 7087 7088
    case TARGET_NR_vm86old:
        goto unimplemented;
    case TARGET_NR_vm86:
7089
        ret = do_vm86(cpu_env, arg1, arg2);
B
bellard 已提交
7090
        break;
7091
#endif
B
bellard 已提交
7092
#endif
7093 7094
    case TARGET_NR_adjtimex:
        goto unimplemented;
7095
#ifdef TARGET_NR_create_module
7096
    case TARGET_NR_create_module:
7097
#endif
7098 7099
    case TARGET_NR_init_module:
    case TARGET_NR_delete_module:
7100
#ifdef TARGET_NR_get_kernel_syms
7101
    case TARGET_NR_get_kernel_syms:
7102
#endif
7103 7104 7105 7106 7107 7108 7109 7110 7111
        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;
7112
#ifdef TARGET_NR_bdflush /* not on x86_64 */
7113 7114
    case TARGET_NR_bdflush:
        goto unimplemented;
7115
#endif
7116
#ifdef TARGET_NR_sysfs
7117 7118
    case TARGET_NR_sysfs:
        goto unimplemented;
7119
#endif
7120
    case TARGET_NR_personality:
B
bellard 已提交
7121
        ret = get_errno(personality(arg1));
7122
        break;
7123
#ifdef TARGET_NR_afs_syscall
7124 7125
    case TARGET_NR_afs_syscall:
        goto unimplemented;
7126
#endif
7127
#ifdef TARGET_NR__llseek /* Not on alpha */
7128 7129
    case TARGET_NR__llseek:
        {
7130
            int64_t res;
R
Richard Henderson 已提交
7131
#if !defined(__NR_llseek)
7132 7133 7134 7135 7136 7137
            res = lseek(arg1, ((uint64_t)arg2 << 32) | arg3, arg5);
            if (res == -1) {
                ret = get_errno(res);
            } else {
                ret = 0;
            }
B
bellard 已提交
7138
#else
7139
            ret = get_errno(_llseek(arg1, arg2, arg3, &res, arg5));
B
bellard 已提交
7140
#endif
7141 7142 7143
            if ((ret == 0) && put_user_s64(res, arg4)) {
                goto efault;
            }
7144 7145
        }
        break;
7146
#endif
7147
    case TARGET_NR_getdents:
7148
#ifdef __NR_getdents
7149
#if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
B
bellard 已提交
7150
        {
7151
            struct target_dirent *target_dirp;
A
aurel32 已提交
7152
            struct linux_dirent *dirp;
7153
            abi_long count = arg3;
B
bellard 已提交
7154 7155

	    dirp = malloc(count);
7156
	    if (!dirp) {
7157
                ret = -TARGET_ENOMEM;
7158 7159
                goto fail;
            }
7160

B
bellard 已提交
7161 7162
            ret = get_errno(sys_getdents(arg1, dirp, count));
            if (!is_error(ret)) {
A
aurel32 已提交
7163
                struct linux_dirent *de;
B
bellard 已提交
7164 7165 7166 7167 7168 7169 7170
		struct target_dirent *tde;
                int len = ret;
                int reclen, treclen;
		int count1, tnamelen;

		count1 = 0;
                de = dirp;
7171 7172
                if (!(target_dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                    goto efault;
B
bellard 已提交
7173 7174 7175
		tde = target_dirp;
                while (len > 0) {
                    reclen = de->d_reclen;
7176 7177 7178 7179
                    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 已提交
7180
                    tde->d_reclen = tswap16(treclen);
7181 7182
                    tde->d_ino = tswapal(de->d_ino);
                    tde->d_off = tswapal(de->d_off);
7183
                    memcpy(tde->d_name, de->d_name, tnamelen);
A
aurel32 已提交
7184
                    de = (struct linux_dirent *)((char *)de + reclen);
B
bellard 已提交
7185
                    len -= reclen;
J
j_mayer 已提交
7186
                    tde = (struct target_dirent *)((char *)tde + treclen);
B
bellard 已提交
7187 7188 7189
		    count1 += treclen;
                }
		ret = count1;
7190
                unlock_user(target_dirp, arg2, ret);
B
bellard 已提交
7191 7192 7193 7194
            }
	    free(dirp);
        }
#else
7195
        {
A
aurel32 已提交
7196
            struct linux_dirent *dirp;
7197
            abi_long count = arg3;
B
bellard 已提交
7198

7199 7200
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
7201
            ret = get_errno(sys_getdents(arg1, dirp, count));
7202
            if (!is_error(ret)) {
A
aurel32 已提交
7203
                struct linux_dirent *de;
7204 7205 7206 7207
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
7208
                    reclen = de->d_reclen;
7209 7210
                    if (reclen > len)
                        break;
B
bellard 已提交
7211
                    de->d_reclen = tswap16(reclen);
7212 7213
                    tswapls(&de->d_ino);
                    tswapls(&de->d_off);
A
aurel32 已提交
7214
                    de = (struct linux_dirent *)((char *)de + reclen);
7215 7216 7217
                    len -= reclen;
                }
            }
7218
            unlock_user(dirp, arg2, ret);
7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273
        }
#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);
7274
        }
B
bellard 已提交
7275
#endif
7276
        break;
T
ths 已提交
7277
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
B
bellard 已提交
7278 7279
    case TARGET_NR_getdents64:
        {
A
aurel32 已提交
7280
            struct linux_dirent64 *dirp;
7281
            abi_long count = arg3;
7282 7283
            if (!(dirp = lock_user(VERIFY_WRITE, arg2, count, 0)))
                goto efault;
B
bellard 已提交
7284 7285
            ret = get_errno(sys_getdents64(arg1, dirp, count));
            if (!is_error(ret)) {
A
aurel32 已提交
7286
                struct linux_dirent64 *de;
B
bellard 已提交
7287 7288 7289 7290
                int len = ret;
                int reclen;
                de = dirp;
                while (len > 0) {
B
bellard 已提交
7291
                    reclen = de->d_reclen;
B
bellard 已提交
7292 7293
                    if (reclen > len)
                        break;
B
bellard 已提交
7294
                    de->d_reclen = tswap16(reclen);
B
bellard 已提交
7295 7296
                    tswap64s((uint64_t *)&de->d_ino);
                    tswap64s((uint64_t *)&de->d_off);
A
aurel32 已提交
7297
                    de = (struct linux_dirent64 *)((char *)de + reclen);
B
bellard 已提交
7298 7299 7300
                    len -= reclen;
                }
            }
7301
            unlock_user(dirp, arg2, ret);
B
bellard 已提交
7302 7303
        }
        break;
7304
#endif /* TARGET_NR_getdents64 */
7305
#if defined(TARGET_NR__newselect)
7306
    case TARGET_NR__newselect:
7307
        ret = do_select(arg1, arg2, arg3, arg4, arg5);
7308
        break;
7309
#endif
7310 7311
#if defined(TARGET_NR_poll) || defined(TARGET_NR_ppoll)
# ifdef TARGET_NR_poll
B
bellard 已提交
7312
    case TARGET_NR_poll:
7313 7314 7315 7316
# endif
# ifdef TARGET_NR_ppoll
    case TARGET_NR_ppoll:
# endif
B
bellard 已提交
7317
        {
7318
            struct target_pollfd *target_pfd;
B
bellard 已提交
7319 7320 7321
            unsigned int nfds = arg2;
            int timeout = arg3;
            struct pollfd *pfd;
B
bellard 已提交
7322
            unsigned int i;
B
bellard 已提交
7323

7324 7325 7326
            target_pfd = lock_user(VERIFY_WRITE, arg1, sizeof(struct target_pollfd) * nfds, 1);
            if (!target_pfd)
                goto efault;
7327

B
bellard 已提交
7328 7329
            pfd = alloca(sizeof(struct pollfd) * nfds);
            for(i = 0; i < nfds; i++) {
B
bellard 已提交
7330 7331
                pfd[i].fd = tswap32(target_pfd[i].fd);
                pfd[i].events = tswap16(target_pfd[i].events);
B
bellard 已提交
7332
            }
7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371

# 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 已提交
7372 7373
            if (!is_error(ret)) {
                for(i = 0; i < nfds; i++) {
B
bellard 已提交
7374
                    target_pfd[i].revents = tswap16(pfd[i].revents);
B
bellard 已提交
7375 7376
                }
            }
7377
            unlock_user(target_pfd, arg1, sizeof(struct target_pollfd) * nfds);
B
bellard 已提交
7378 7379
        }
        break;
7380
#endif
7381
    case TARGET_NR_flock:
B
bellard 已提交
7382 7383 7384
        /* NOTE: the flock constant seems to be the same for every
           Linux platform */
        ret = get_errno(flock(arg1, arg2));
7385 7386 7387
        break;
    case TARGET_NR_readv:
        {
7388 7389 7390 7391 7392 7393 7394
            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);
            }
7395 7396 7397 7398
        }
        break;
    case TARGET_NR_writev:
        {
7399 7400 7401 7402 7403 7404 7405
            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);
            }
7406 7407 7408 7409 7410
        }
        break;
    case TARGET_NR_getsid:
        ret = get_errno(getsid(arg1));
        break;
7411
#if defined(TARGET_NR_fdatasync) /* Not on alpha (osf_datasync ?) */
7412
    case TARGET_NR_fdatasync:
B
bellard 已提交
7413 7414
        ret = get_errno(fdatasync(arg1));
        break;
7415
#endif
7416
    case TARGET_NR__sysctl:
7417
        /* We don't implement this, but ENOTDIR is always a safe
B
bellard 已提交
7418
           return value. */
7419 7420
        ret = -TARGET_ENOTDIR;
        break;
7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439
    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)) {
7440
                if (copy_to_user(arg3, mask, ret)) {
7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470
                    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;
7471
    case TARGET_NR_sched_setparam:
B
bellard 已提交
7472
        {
7473
            struct sched_param *target_schp;
B
bellard 已提交
7474
            struct sched_param schp;
7475

7476 7477
            if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1))
                goto efault;
B
bellard 已提交
7478
            schp.sched_priority = tswap32(target_schp->sched_priority);
7479
            unlock_user_struct(target_schp, arg2, 0);
B
bellard 已提交
7480 7481 7482
            ret = get_errno(sched_setparam(arg1, &schp));
        }
        break;
7483
    case TARGET_NR_sched_getparam:
B
bellard 已提交
7484
        {
7485
            struct sched_param *target_schp;
B
bellard 已提交
7486 7487 7488
            struct sched_param schp;
            ret = get_errno(sched_getparam(arg1, &schp));
            if (!is_error(ret)) {
7489 7490
                if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0))
                    goto efault;
B
bellard 已提交
7491
                target_schp->sched_priority = tswap32(schp.sched_priority);
7492
                unlock_user_struct(target_schp, arg2, 1);
B
bellard 已提交
7493 7494 7495
            }
        }
        break;
7496
    case TARGET_NR_sched_setscheduler:
B
bellard 已提交
7497
        {
7498
            struct sched_param *target_schp;
B
bellard 已提交
7499
            struct sched_param schp;
7500 7501
            if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1))
                goto efault;
B
bellard 已提交
7502
            schp.sched_priority = tswap32(target_schp->sched_priority);
7503
            unlock_user_struct(target_schp, arg3, 0);
B
bellard 已提交
7504 7505 7506
            ret = get_errno(sched_setscheduler(arg1, arg2, &schp));
        }
        break;
7507
    case TARGET_NR_sched_getscheduler:
B
bellard 已提交
7508 7509
        ret = get_errno(sched_getscheduler(arg1));
        break;
7510 7511 7512 7513
    case TARGET_NR_sched_yield:
        ret = get_errno(sched_yield());
        break;
    case TARGET_NR_sched_get_priority_max:
B
bellard 已提交
7514 7515
        ret = get_errno(sched_get_priority_max(arg1));
        break;
7516
    case TARGET_NR_sched_get_priority_min:
B
bellard 已提交
7517 7518
        ret = get_errno(sched_get_priority_min(arg1));
        break;
7519
    case TARGET_NR_sched_rr_get_interval:
B
bellard 已提交
7520 7521 7522 7523
        {
            struct timespec ts;
            ret = get_errno(sched_rr_get_interval(arg1, &ts));
            if (!is_error(ret)) {
7524
                host_to_target_timespec(arg2, &ts);
B
bellard 已提交
7525 7526 7527
            }
        }
        break;
7528
    case TARGET_NR_nanosleep:
B
bellard 已提交
7529 7530
        {
            struct timespec req, rem;
7531
            target_to_host_timespec(&req, arg1);
B
bellard 已提交
7532
            ret = get_errno(nanosleep(&req, &rem));
7533 7534
            if (is_error(ret) && arg2) {
                host_to_target_timespec(arg2, &rem);
B
bellard 已提交
7535 7536 7537
            }
        }
        break;
7538
#ifdef TARGET_NR_query_module
7539
    case TARGET_NR_query_module:
B
bellard 已提交
7540
        goto unimplemented;
7541 7542
#endif
#ifdef TARGET_NR_nfsservctl
7543
    case TARGET_NR_nfsservctl:
B
bellard 已提交
7544
        goto unimplemented;
7545
#endif
7546
    case TARGET_NR_prctl:
7547 7548 7549 7550 7551 7552 7553 7554
        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;
7555
            }
7556 7557
            break;
        }
7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581
#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
7582 7583 7584 7585 7586
        default:
            /* Most prctl options have no pointer arguments */
            ret = get_errno(prctl(arg1, arg2, arg3, arg4, arg5));
            break;
        }
7587
        break;
B
bellard 已提交
7588 7589 7590 7591 7592 7593 7594 7595 7596
#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 已提交
7597 7598
#ifdef TARGET_NR_pread64
    case TARGET_NR_pread64:
7599 7600 7601 7602
        if (regpairs_aligned(cpu_env)) {
            arg4 = arg5;
            arg5 = arg6;
        }
A
aurel32 已提交
7603 7604 7605 7606 7607 7608
        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:
7609 7610 7611 7612
        if (regpairs_aligned(cpu_env)) {
            arg4 = arg5;
            arg5 = arg6;
        }
A
aurel32 已提交
7613 7614 7615 7616 7617
        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;
7618
#endif
7619
    case TARGET_NR_getcwd:
7620 7621
        if (!(p = lock_user(VERIFY_WRITE, arg1, arg2, 0)))
            goto efault;
7622 7623
        ret = get_errno(sys_getcwd1(p, arg2));
        unlock_user(p, arg1, ret);
7624 7625
        break;
    case TARGET_NR_capget:
B
bellard 已提交
7626
        goto unimplemented;
7627
    case TARGET_NR_capset:
B
bellard 已提交
7628
        goto unimplemented;
7629
    case TARGET_NR_sigaltstack:
7630
#if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) || \
7631
    defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_ALPHA) || \
J
Jia Liu 已提交
7632
    defined(TARGET_M68K) || defined(TARGET_S390X) || defined(TARGET_OPENRISC)
7633
        ret = do_sigaltstack(arg1, arg2, get_sp_from_cpustate((CPUArchState *)cpu_env));
7634 7635
        break;
#else
B
bellard 已提交
7636
        goto unimplemented;
7637
#endif
7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682

#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
7683
    case TARGET_NR_sendfile:
7684
#ifdef TARGET_NR_sendfile64
7685 7686
    case TARGET_NR_sendfile64:
#endif
B
bellard 已提交
7687
        goto unimplemented;
7688 7689
#endif

7690
#ifdef TARGET_NR_getpmsg
7691
    case TARGET_NR_getpmsg:
B
bellard 已提交
7692
        goto unimplemented;
7693 7694
#endif
#ifdef TARGET_NR_putpmsg
7695
    case TARGET_NR_putpmsg:
B
bellard 已提交
7696
        goto unimplemented;
7697
#endif
B
bellard 已提交
7698
#ifdef TARGET_NR_vfork
7699
    case TARGET_NR_vfork:
P
pbrook 已提交
7700 7701
        ret = get_errno(do_fork(cpu_env, CLONE_VFORK | CLONE_VM | SIGCHLD,
                        0, 0, 0, 0));
7702
        break;
B
bellard 已提交
7703
#endif
7704
#ifdef TARGET_NR_ugetrlimit
7705
    case TARGET_NR_ugetrlimit:
B
bellard 已提交
7706 7707
    {
	struct rlimit rlim;
7708 7709
	int resource = target_to_host_resource(arg1);
	ret = get_errno(getrlimit(resource, &rlim));
B
bellard 已提交
7710
	if (!is_error(ret)) {
7711
	    struct target_rlimit *target_rlim;
7712 7713
            if (!lock_user_struct(VERIFY_WRITE, target_rlim, arg2, 0))
                goto efault;
7714 7715
	    target_rlim->rlim_cur = host_to_target_rlim(rlim.rlim_cur);
	    target_rlim->rlim_max = host_to_target_rlim(rlim.rlim_max);
7716
            unlock_user_struct(target_rlim, arg2, 1);
B
bellard 已提交
7717 7718 7719
	}
	break;
    }
7720
#endif
B
bellard 已提交
7721
#ifdef TARGET_NR_truncate64
7722
    case TARGET_NR_truncate64:
7723 7724
        if (!(p = lock_user_string(arg1)))
            goto efault;
7725 7726
	ret = target_truncate64(cpu_env, p, arg2, arg3, arg4);
        unlock_user(p, arg1, 0);
B
bellard 已提交
7727
	break;
B
bellard 已提交
7728 7729
#endif
#ifdef TARGET_NR_ftruncate64
7730
    case TARGET_NR_ftruncate64:
P
pbrook 已提交
7731
	ret = target_ftruncate64(cpu_env, arg1, arg2, arg3, arg4);
B
bellard 已提交
7732
	break;
B
bellard 已提交
7733 7734
#endif
#ifdef TARGET_NR_stat64
7735
    case TARGET_NR_stat64:
7736 7737
        if (!(p = lock_user_string(arg1)))
            goto efault;
7738 7739
        ret = get_errno(stat(path(p), &st));
        unlock_user(p, arg1, 0);
7740 7741 7742
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
B
bellard 已提交
7743 7744
#endif
#ifdef TARGET_NR_lstat64
7745
    case TARGET_NR_lstat64:
7746 7747
        if (!(p = lock_user_string(arg1)))
            goto efault;
7748 7749
        ret = get_errno(lstat(path(p), &st));
        unlock_user(p, arg1, 0);
7750 7751 7752
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
B
bellard 已提交
7753 7754
#endif
#ifdef TARGET_NR_fstat64
7755
    case TARGET_NR_fstat64:
7756 7757 7758 7759
        ret = get_errno(fstat(arg1, &st));
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg2, &st);
        break;
P
pbrook 已提交
7760
#endif
7761
#if (defined(TARGET_NR_fstatat64) || defined(TARGET_NR_newfstatat))
7762
#ifdef TARGET_NR_fstatat64
7763
    case TARGET_NR_fstatat64:
7764 7765 7766 7767
#endif
#ifdef TARGET_NR_newfstatat
    case TARGET_NR_newfstatat:
#endif
7768 7769
        if (!(p = lock_user_string(arg2)))
            goto efault;
7770
        ret = get_errno(fstatat(arg1, path(p), &st, arg4));
7771 7772
        if (!is_error(ret))
            ret = host_to_target_stat64(cpu_env, arg3, &st);
B
bellard 已提交
7773
        break;
B
bellard 已提交
7774
#endif
7775
    case TARGET_NR_lchown:
7776 7777
        if (!(p = lock_user_string(arg1)))
            goto efault;
7778 7779
        ret = get_errno(lchown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
7780
        break;
7781
#ifdef TARGET_NR_getuid
7782 7783 7784
    case TARGET_NR_getuid:
        ret = get_errno(high2lowuid(getuid()));
        break;
7785 7786
#endif
#ifdef TARGET_NR_getgid
7787 7788 7789
    case TARGET_NR_getgid:
        ret = get_errno(high2lowgid(getgid()));
        break;
7790 7791
#endif
#ifdef TARGET_NR_geteuid
7792 7793 7794
    case TARGET_NR_geteuid:
        ret = get_errno(high2lowuid(geteuid()));
        break;
7795 7796
#endif
#ifdef TARGET_NR_getegid
7797 7798 7799
    case TARGET_NR_getegid:
        ret = get_errno(high2lowgid(getegid()));
        break;
7800
#endif
7801 7802 7803 7804 7805 7806 7807 7808 7809
    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;
7810
            target_id *target_grouplist;
7811 7812 7813 7814 7815
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
7816 7817
            if (gidsetsize == 0)
                break;
7818
            if (!is_error(ret)) {
7819
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * sizeof(target_id), 0);
7820 7821
                if (!target_grouplist)
                    goto efault;
7822
                for(i = 0;i < ret; i++)
7823
                    target_grouplist[i] = tswapid(high2lowgid(grouplist[i]));
7824
                unlock_user(target_grouplist, arg2, gidsetsize * sizeof(target_id));
7825 7826 7827 7828 7829 7830
            }
        }
        break;
    case TARGET_NR_setgroups:
        {
            int gidsetsize = arg1;
7831
            target_id *target_grouplist;
7832
            gid_t *grouplist = NULL;
7833
            int i;
7834 7835
            if (gidsetsize) {
                grouplist = alloca(gidsetsize * sizeof(gid_t));
7836
                target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * sizeof(target_id), 1);
7837 7838 7839 7840 7841 7842 7843 7844
                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);
7845
            }
7846 7847 7848 7849 7850 7851
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
    case TARGET_NR_fchown:
        ret = get_errno(fchown(arg1, low2highuid(arg2), low2highgid(arg3)));
        break;
7852
#if defined(TARGET_NR_fchownat)
7853
    case TARGET_NR_fchownat:
7854 7855
        if (!(p = lock_user_string(arg2))) 
            goto efault;
7856 7857
        ret = get_errno(fchownat(arg1, p, low2highuid(arg3),
                                 low2highgid(arg4), arg5));
7858
        unlock_user(p, arg2, 0);
7859 7860
        break;
#endif
7861 7862
#ifdef TARGET_NR_setresuid
    case TARGET_NR_setresuid:
7863 7864
        ret = get_errno(setresuid(low2highuid(arg1),
                                  low2highuid(arg2),
7865 7866 7867 7868 7869 7870
                                  low2highuid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresuid
    case TARGET_NR_getresuid:
        {
7871
            uid_t ruid, euid, suid;
7872 7873
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
7874 7875 7876 7877
                if (put_user_u16(high2lowuid(ruid), arg1)
                    || put_user_u16(high2lowuid(euid), arg2)
                    || put_user_u16(high2lowuid(suid), arg3))
                    goto efault;
7878 7879 7880 7881 7882 7883
            }
        }
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_setresgid:
7884 7885
        ret = get_errno(setresgid(low2highgid(arg1),
                                  low2highgid(arg2),
7886 7887 7888 7889 7890 7891
                                  low2highgid(arg3)));
        break;
#endif
#ifdef TARGET_NR_getresgid
    case TARGET_NR_getresgid:
        {
7892
            gid_t rgid, egid, sgid;
7893 7894
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
7895 7896 7897 7898
                if (put_user_u16(high2lowgid(rgid), arg1)
                    || put_user_u16(high2lowgid(egid), arg2)
                    || put_user_u16(high2lowgid(sgid), arg3))
                    goto efault;
7899 7900 7901 7902 7903
            }
        }
        break;
#endif
    case TARGET_NR_chown:
7904 7905
        if (!(p = lock_user_string(arg1)))
            goto efault;
7906 7907
        ret = get_errno(chown(p, low2highuid(arg2), low2highgid(arg3)));
        unlock_user(p, arg1, 0);
7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921
        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 已提交
7922
#ifdef TARGET_NR_lchown32
7923
    case TARGET_NR_lchown32:
7924 7925
        if (!(p = lock_user_string(arg1)))
            goto efault;
7926 7927
        ret = get_errno(lchown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
7928
        break;
B
bellard 已提交
7929 7930
#endif
#ifdef TARGET_NR_getuid32
7931
    case TARGET_NR_getuid32:
B
bellard 已提交
7932 7933
        ret = get_errno(getuid());
        break;
B
bellard 已提交
7934
#endif
7935 7936 7937 7938

#if defined(TARGET_NR_getxuid) && defined(TARGET_ALPHA)
   /* Alpha specific */
    case TARGET_NR_getxuid:
7939 7940 7941 7942 7943
         {
            uid_t euid;
            euid=geteuid();
            ((CPUAlphaState *)cpu_env)->ir[IR_A4]=euid;
         }
7944 7945 7946 7947 7948 7949
        ret = get_errno(getuid());
        break;
#endif
#if defined(TARGET_NR_getxgid) && defined(TARGET_ALPHA)
   /* Alpha specific */
    case TARGET_NR_getxgid:
7950 7951 7952 7953 7954
         {
            uid_t egid;
            egid=getegid();
            ((CPUAlphaState *)cpu_env)->ir[IR_A4]=egid;
         }
7955 7956 7957
        ret = get_errno(getgid());
        break;
#endif
7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 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
#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;

8005
                if (get_user_u64 (swcr, arg2)) {
8006
                    goto efault;
8007 8008
                }
                orig_fpcr = cpu_alpha_load_fpcr(cpu_env);
8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021
                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;

8022
                cpu_alpha_store_fpcr(cpu_env, fpcr);
8023
                ret = 0;
8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034
            }
            break;

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

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

8036
                orig_fpcr = cpu_alpha_load_fpcr(cpu_env);
8037

8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072
                /* 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);
8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090
                }
            }
            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;
8091
            int how;
8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109
            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);
8110
            sigprocmask(how, &set, &oldset);
8111 8112 8113 8114 8115
            host_to_target_old_sigset(&mask, &oldset);
            ret = mask;
        }
        break;
#endif
8116

B
bellard 已提交
8117
#ifdef TARGET_NR_getgid32
8118
    case TARGET_NR_getgid32:
B
bellard 已提交
8119 8120
        ret = get_errno(getgid());
        break;
B
bellard 已提交
8121 8122
#endif
#ifdef TARGET_NR_geteuid32
8123
    case TARGET_NR_geteuid32:
B
bellard 已提交
8124 8125
        ret = get_errno(geteuid());
        break;
B
bellard 已提交
8126 8127
#endif
#ifdef TARGET_NR_getegid32
8128
    case TARGET_NR_getegid32:
B
bellard 已提交
8129 8130
        ret = get_errno(getegid());
        break;
B
bellard 已提交
8131 8132
#endif
#ifdef TARGET_NR_setreuid32
8133
    case TARGET_NR_setreuid32:
B
bellard 已提交
8134 8135
        ret = get_errno(setreuid(arg1, arg2));
        break;
B
bellard 已提交
8136 8137
#endif
#ifdef TARGET_NR_setregid32
8138
    case TARGET_NR_setregid32:
B
bellard 已提交
8139 8140
        ret = get_errno(setregid(arg1, arg2));
        break;
B
bellard 已提交
8141 8142
#endif
#ifdef TARGET_NR_getgroups32
8143
    case TARGET_NR_getgroups32:
B
bellard 已提交
8144 8145
        {
            int gidsetsize = arg1;
8146
            uint32_t *target_grouplist;
B
bellard 已提交
8147 8148 8149 8150 8151
            gid_t *grouplist;
            int i;

            grouplist = alloca(gidsetsize * sizeof(gid_t));
            ret = get_errno(getgroups(gidsetsize, grouplist));
8152 8153
            if (gidsetsize == 0)
                break;
B
bellard 已提交
8154
            if (!is_error(ret)) {
8155 8156 8157 8158 8159
                target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 4, 0);
                if (!target_grouplist) {
                    ret = -TARGET_EFAULT;
                    goto fail;
                }
8160
                for(i = 0;i < ret; i++)
8161 8162
                    target_grouplist[i] = tswap32(grouplist[i]);
                unlock_user(target_grouplist, arg2, gidsetsize * 4);
B
bellard 已提交
8163 8164 8165
            }
        }
        break;
B
bellard 已提交
8166 8167
#endif
#ifdef TARGET_NR_setgroups32
8168
    case TARGET_NR_setgroups32:
B
bellard 已提交
8169 8170
        {
            int gidsetsize = arg1;
8171
            uint32_t *target_grouplist;
B
bellard 已提交
8172 8173
            gid_t *grouplist;
            int i;
8174

B
bellard 已提交
8175
            grouplist = alloca(gidsetsize * sizeof(gid_t));
8176 8177 8178 8179 8180
            target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 4, 1);
            if (!target_grouplist) {
                ret = -TARGET_EFAULT;
                goto fail;
            }
B
bellard 已提交
8181
            for(i = 0;i < gidsetsize; i++)
8182 8183
                grouplist[i] = tswap32(target_grouplist[i]);
            unlock_user(target_grouplist, arg2, 0);
B
bellard 已提交
8184 8185 8186
            ret = get_errno(setgroups(gidsetsize, grouplist));
        }
        break;
B
bellard 已提交
8187 8188
#endif
#ifdef TARGET_NR_fchown32
8189
    case TARGET_NR_fchown32:
B
bellard 已提交
8190 8191
        ret = get_errno(fchown(arg1, arg2, arg3));
        break;
B
bellard 已提交
8192 8193
#endif
#ifdef TARGET_NR_setresuid32
8194
    case TARGET_NR_setresuid32:
B
bellard 已提交
8195 8196
        ret = get_errno(setresuid(arg1, arg2, arg3));
        break;
B
bellard 已提交
8197 8198
#endif
#ifdef TARGET_NR_getresuid32
8199
    case TARGET_NR_getresuid32:
B
bellard 已提交
8200
        {
8201
            uid_t ruid, euid, suid;
B
bellard 已提交
8202 8203
            ret = get_errno(getresuid(&ruid, &euid, &suid));
            if (!is_error(ret)) {
8204 8205 8206 8207
                if (put_user_u32(ruid, arg1)
                    || put_user_u32(euid, arg2)
                    || put_user_u32(suid, arg3))
                    goto efault;
B
bellard 已提交
8208 8209 8210
            }
        }
        break;
B
bellard 已提交
8211 8212
#endif
#ifdef TARGET_NR_setresgid32
8213
    case TARGET_NR_setresgid32:
B
bellard 已提交
8214 8215
        ret = get_errno(setresgid(arg1, arg2, arg3));
        break;
B
bellard 已提交
8216 8217
#endif
#ifdef TARGET_NR_getresgid32
8218
    case TARGET_NR_getresgid32:
B
bellard 已提交
8219
        {
8220
            gid_t rgid, egid, sgid;
B
bellard 已提交
8221 8222
            ret = get_errno(getresgid(&rgid, &egid, &sgid));
            if (!is_error(ret)) {
8223 8224 8225 8226
                if (put_user_u32(rgid, arg1)
                    || put_user_u32(egid, arg2)
                    || put_user_u32(sgid, arg3))
                    goto efault;
B
bellard 已提交
8227 8228 8229
            }
        }
        break;
B
bellard 已提交
8230 8231
#endif
#ifdef TARGET_NR_chown32
8232
    case TARGET_NR_chown32:
8233 8234
        if (!(p = lock_user_string(arg1)))
            goto efault;
8235 8236
        ret = get_errno(chown(p, arg2, arg3));
        unlock_user(p, arg1, 0);
B
bellard 已提交
8237
        break;
B
bellard 已提交
8238 8239
#endif
#ifdef TARGET_NR_setuid32
8240
    case TARGET_NR_setuid32:
B
bellard 已提交
8241 8242
        ret = get_errno(setuid(arg1));
        break;
B
bellard 已提交
8243 8244
#endif
#ifdef TARGET_NR_setgid32
8245
    case TARGET_NR_setgid32:
B
bellard 已提交
8246 8247
        ret = get_errno(setgid(arg1));
        break;
B
bellard 已提交
8248 8249
#endif
#ifdef TARGET_NR_setfsuid32
8250
    case TARGET_NR_setfsuid32:
B
bellard 已提交
8251 8252
        ret = get_errno(setfsuid(arg1));
        break;
B
bellard 已提交
8253 8254
#endif
#ifdef TARGET_NR_setfsgid32
8255
    case TARGET_NR_setfsgid32:
B
bellard 已提交
8256 8257
        ret = get_errno(setfsgid(arg1));
        break;
B
bellard 已提交
8258
#endif
8259

8260
    case TARGET_NR_pivot_root:
B
bellard 已提交
8261
        goto unimplemented;
B
bellard 已提交
8262
#ifdef TARGET_NR_mincore
8263
    case TARGET_NR_mincore:
A
aurel32 已提交
8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276
        {
            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 已提交
8277
#endif
A
aurel32 已提交
8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290
#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
8291
#if defined(TARGET_NR_fadvise64_64) || defined(TARGET_NR_arm_fadvise64_64) || defined(TARGET_NR_fadvise64)
A
aurel32 已提交
8292 8293 8294
#ifdef TARGET_NR_fadvise64_64
    case TARGET_NR_fadvise64_64:
#endif
8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307
#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 已提交
8308 8309
	break;
#endif
B
bellard 已提交
8310
#ifdef TARGET_NR_madvise
8311
    case TARGET_NR_madvise:
8312
        /* A straight passthrough may not be safe because qemu sometimes
L
Lei Li 已提交
8313
           turns private file-backed mappings into anonymous mappings.
8314 8315 8316 8317
           This will break MADV_DONTNEED.
           This is a hint, so ignoring and returning success is ok.  */
        ret = get_errno(0);
        break;
B
bellard 已提交
8318
#endif
8319
#if TARGET_ABI_BITS == 32
8320
    case TARGET_NR_fcntl64:
B
bellard 已提交
8321
    {
T
ths 已提交
8322
	int cmd;
B
bellard 已提交
8323
	struct flock64 fl;
8324
	struct target_flock64 *target_fl;
P
pbrook 已提交
8325
#ifdef TARGET_ARM
8326
	struct target_eabi_flock64 *target_efl;
P
pbrook 已提交
8327
#endif
B
bellard 已提交
8328

8329
	cmd = target_to_host_fcntl_cmd(arg2);
8330 8331 8332 8333
        if (cmd == -TARGET_EINVAL) {
            ret = cmd;
            break;
        }
T
ths 已提交
8334

B
bellard 已提交
8335
        switch(arg2) {
T
ths 已提交
8336
        case TARGET_F_GETLK64:
T
ths 已提交
8337 8338
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8339 8340
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
T
ths 已提交
8341 8342 8343 8344
                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 已提交
8345
                fl.l_pid = tswap32(target_efl->l_pid);
T
ths 已提交
8346 8347 8348 8349
                unlock_user_struct(target_efl, arg3, 0);
            } else
#endif
            {
B
bellard 已提交
8350 8351
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
T
ths 已提交
8352 8353 8354 8355
                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 已提交
8356
                fl.l_pid = tswap32(target_fl->l_pid);
T
ths 已提交
8357 8358
                unlock_user_struct(target_fl, arg3, 0);
            }
T
ths 已提交
8359
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
8360
	    if (ret == 0) {
P
pbrook 已提交
8361 8362
#ifdef TARGET_ARM
                if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8363 8364
                    if (!lock_user_struct(VERIFY_WRITE, target_efl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
8365 8366 8367 8368
                    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 已提交
8369
                    target_efl->l_pid = tswap32(fl.l_pid);
8370
                    unlock_user_struct(target_efl, arg3, 1);
P
pbrook 已提交
8371 8372 8373
                } else
#endif
                {
B
bellard 已提交
8374 8375
                    if (!lock_user_struct(VERIFY_WRITE, target_fl, arg3, 0)) 
                        goto efault;
P
pbrook 已提交
8376 8377 8378 8379
                    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 已提交
8380
                    target_fl->l_pid = tswap32(fl.l_pid);
8381
                    unlock_user_struct(target_fl, arg3, 1);
P
pbrook 已提交
8382
                }
B
bellard 已提交
8383 8384 8385
	    }
	    break;

T
ths 已提交
8386 8387
        case TARGET_F_SETLK64:
        case TARGET_F_SETLKW64:
P
pbrook 已提交
8388 8389
#ifdef TARGET_ARM
            if (((CPUARMState *)cpu_env)->eabi) {
B
bellard 已提交
8390 8391
                if (!lock_user_struct(VERIFY_READ, target_efl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
8392 8393 8394 8395
                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 已提交
8396
                fl.l_pid = tswap32(target_efl->l_pid);
8397
                unlock_user_struct(target_efl, arg3, 0);
P
pbrook 已提交
8398 8399 8400
            } else
#endif
            {
B
bellard 已提交
8401 8402
                if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) 
                    goto efault;
P
pbrook 已提交
8403 8404 8405 8406
                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 已提交
8407
                fl.l_pid = tswap32(target_fl->l_pid);
8408
                unlock_user_struct(target_fl, arg3, 0);
P
pbrook 已提交
8409
            }
T
ths 已提交
8410
            ret = get_errno(fcntl(arg1, cmd, &fl));
B
bellard 已提交
8411
	    break;
B
bellard 已提交
8412
        default:
8413
            ret = do_fcntl(arg1, arg2, arg3);
B
bellard 已提交
8414 8415
            break;
        }
B
bellard 已提交
8416 8417
	break;
    }
B
bellard 已提交
8418
#endif
8419 8420 8421 8422 8423 8424
#ifdef TARGET_NR_cacheflush
    case TARGET_NR_cacheflush:
        /* self-modifying code is handled automatically, so nothing needed */
        ret = 0;
        break;
#endif
8425
#ifdef TARGET_NR_security
8426 8427
    case TARGET_NR_security:
        goto unimplemented;
B
bellard 已提交
8428 8429 8430 8431 8432
#endif
#ifdef TARGET_NR_getpagesize
    case TARGET_NR_getpagesize:
        ret = TARGET_PAGE_SIZE;
        break;
8433
#endif
8434 8435 8436
    case TARGET_NR_gettid:
        ret = get_errno(gettid());
        break;
8437
#ifdef TARGET_NR_readahead
8438
    case TARGET_NR_readahead:
A
aurel32 已提交
8439
#if TARGET_ABI_BITS == 32
8440
        if (regpairs_aligned(cpu_env)) {
A
aurel32 已提交
8441 8442 8443 8444 8445 8446 8447 8448 8449
            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;
8450
#endif
8451
#ifdef CONFIG_ATTR
8452
#ifdef TARGET_NR_setxattr
8453 8454
    case TARGET_NR_listxattr:
    case TARGET_NR_llistxattr:
8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477
    {
        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;
    }
8478
    case TARGET_NR_flistxattr:
8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489
    {
        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);
8490
        break;
8491
    }
8492
    case TARGET_NR_setxattr:
8493
    case TARGET_NR_lsetxattr:
8494
        {
8495 8496 8497 8498 8499 8500 8501 8502
            void *p, *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_READ, arg3, arg4, 1);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
8503 8504
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
8505
            if (p && n) {
8506 8507 8508 8509 8510
                if (num == TARGET_NR_setxattr) {
                    ret = get_errno(setxattr(p, n, v, arg4, arg5));
                } else {
                    ret = get_errno(lsetxattr(p, n, v, arg4, arg5));
                }
8511 8512 8513 8514 8515 8516 8517 8518
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, 0);
        }
        break;
8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538
    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;
8539
    case TARGET_NR_getxattr:
8540
    case TARGET_NR_lgetxattr:
8541
        {
8542 8543 8544 8545 8546 8547 8548 8549
            void *p, *n, *v = 0;
            if (arg3) {
                v = lock_user(VERIFY_WRITE, arg3, arg4, 0);
                if (!v) {
                    ret = -TARGET_EFAULT;
                    break;
                }
            }
8550 8551
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
8552
            if (p && n) {
8553 8554 8555 8556 8557
                if (num == TARGET_NR_getxattr) {
                    ret = get_errno(getxattr(p, n, v, arg4));
                } else {
                    ret = get_errno(lgetxattr(p, n, v, arg4));
                }
8558 8559 8560 8561 8562 8563 8564 8565
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
            unlock_user(v, arg3, arg4);
        }
        break;
8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585
    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;
8586
    case TARGET_NR_removexattr:
8587
    case TARGET_NR_lremovexattr:
8588 8589 8590 8591 8592
        {
            void *p, *n;
            p = lock_user_string(arg1);
            n = lock_user_string(arg2);
            if (p && n) {
8593 8594 8595 8596 8597
                if (num == TARGET_NR_removexattr) {
                    ret = get_errno(removexattr(p, n));
                } else {
                    ret = get_errno(lremovexattr(p, n));
                }
8598 8599 8600 8601 8602 8603 8604
            } else {
                ret = -TARGET_EFAULT;
            }
            unlock_user(p, arg1, 0);
            unlock_user(n, arg2, 0);
        }
        break;
8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616
    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;
8617
#endif
8618
#endif /* CONFIG_ATTR */
8619
#ifdef TARGET_NR_set_thread_area
B
bellard 已提交
8620
    case TARGET_NR_set_thread_area:
B
bellard 已提交
8621
#if defined(TARGET_MIPS)
8622 8623 8624
      ((CPUMIPSState *) cpu_env)->tls_value = arg1;
      ret = 0;
      break;
8625 8626 8627 8628 8629 8630 8631 8632
#elif defined(TARGET_CRIS)
      if (arg1 & 0xff)
          ret = -TARGET_EINVAL;
      else {
          ((CPUCRISState *) cpu_env)->pregs[PR_PID] = arg1;
          ret = 0;
      }
      break;
B
bellard 已提交
8633 8634 8635
#elif defined(TARGET_I386) && defined(TARGET_ABI32)
      ret = do_set_thread_area(cpu_env, arg1);
      break;
P
Peter Maydell 已提交
8636 8637 8638 8639
#elif defined(TARGET_M68K)
      {
          TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
          ts->tp_value = arg1;
8640
          ret = 0;
P
Peter Maydell 已提交
8641 8642
          break;
      }
8643 8644 8645 8646 8647
#else
      goto unimplemented_nowarn;
#endif
#endif
#ifdef TARGET_NR_get_thread_area
B
bellard 已提交
8648
    case TARGET_NR_get_thread_area:
B
bellard 已提交
8649 8650
#if defined(TARGET_I386) && defined(TARGET_ABI32)
        ret = do_get_thread_area(cpu_env, arg1);
8651
        break;
P
Peter Maydell 已提交
8652 8653 8654 8655 8656 8657
#elif defined(TARGET_M68K)
        {
            TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
            ret = ts->tp_value;
            break;
        }
B
bellard 已提交
8658
#else
B
bellard 已提交
8659
        goto unimplemented_nowarn;
B
bellard 已提交
8660
#endif
B
bellard 已提交
8661
#endif
B
bellard 已提交
8662 8663 8664
#ifdef TARGET_NR_getdomainname
    case TARGET_NR_getdomainname:
        goto unimplemented_nowarn;
8665
#endif
8666

8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688
#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 已提交
8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699
#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
8700

8701 8702
#if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address)
    case TARGET_NR_set_tid_address:
8703 8704
        ret = get_errno(set_tid_address((int *)g2h(arg1)));
        break;
8705 8706
#endif

T
ths 已提交
8707
#if defined(TARGET_NR_tkill) && defined(__NR_tkill)
T
ths 已提交
8708
    case TARGET_NR_tkill:
8709
        ret = get_errno(sys_tkill((int)arg1, target_to_host_signal(arg2)));
T
ths 已提交
8710 8711 8712
        break;
#endif

T
ths 已提交
8713
#if defined(TARGET_NR_tgkill) && defined(__NR_tgkill)
T
ths 已提交
8714
    case TARGET_NR_tgkill:
8715 8716
	ret = get_errno(sys_tgkill((int)arg1, (int)arg2,
                        target_to_host_signal(arg3)));
T
ths 已提交
8717 8718 8719
	break;
#endif

8720 8721
#ifdef TARGET_NR_set_robust_list
    case TARGET_NR_set_robust_list:
8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735
    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;
8736 8737
#endif

8738
#if defined(TARGET_NR_utimensat)
8739 8740
    case TARGET_NR_utimensat:
        {
R
Riku Voipio 已提交
8741 8742 8743 8744 8745 8746 8747 8748
            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;
            }
8749
            if (!arg2)
R
Riku Voipio 已提交
8750
                ret = get_errno(sys_utimensat(arg1, NULL, tsp, arg4));
8751
            else {
8752
                if (!(p = lock_user_string(arg2))) {
8753
                    ret = -TARGET_EFAULT;
8754 8755
                    goto fail;
                }
R
Riku Voipio 已提交
8756
                ret = get_errno(sys_utimensat(arg1, path(p), tsp, arg4));
8757
                unlock_user(p, arg2, 0);
8758 8759 8760 8761
            }
        }
	break;
#endif
8762 8763 8764
    case TARGET_NR_futex:
        ret = do_futex(arg1, arg2, arg3, arg4, arg5, arg6);
        break;
8765
#if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
A
aurel32 已提交
8766 8767 8768 8769
    case TARGET_NR_inotify_init:
        ret = get_errno(sys_inotify_init());
        break;
#endif
8770
#ifdef CONFIG_INOTIFY1
8771 8772 8773 8774 8775
#if defined(TARGET_NR_inotify_init1) && defined(__NR_inotify_init1)
    case TARGET_NR_inotify_init1:
        ret = get_errno(sys_inotify_init1(arg1));
        break;
#endif
8776
#endif
8777
#if defined(TARGET_NR_inotify_add_watch) && defined(__NR_inotify_add_watch)
A
aurel32 已提交
8778 8779 8780 8781 8782 8783
    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
8784
#if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
A
aurel32 已提交
8785 8786 8787 8788
    case TARGET_NR_inotify_rm_watch:
        ret = get_errno(sys_inotify_rm_watch(arg1, arg2));
        break;
#endif
8789

8790
#if defined(TARGET_NR_mq_open) && defined(__NR_mq_open)
8791 8792 8793 8794 8795 8796 8797 8798 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 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864
    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

8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892
#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:
        {
8893 8894 8895 8896 8897 8898 8899
            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);
            }
8900 8901 8902 8903
        }
        break;
#endif
#endif /* CONFIG_SPLICE */
R
Riku Voipio 已提交
8904 8905 8906 8907 8908 8909 8910 8911
#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:
8912 8913 8914 8915 8916 8917 8918 8919 8920
    {
        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 已提交
8921
        break;
8922
    }
R
Riku Voipio 已提交
8923 8924
#endif
#endif /* CONFIG_EVENTFD  */
8925 8926
#if defined(CONFIG_FALLOCATE) && defined(TARGET_NR_fallocate)
    case TARGET_NR_fallocate:
A
Alexander Graf 已提交
8927 8928 8929 8930
#if TARGET_ABI_BITS == 32
        ret = get_errno(fallocate(arg1, arg2, target_offset64(arg3, arg4),
                                  target_offset64(arg5, arg6)));
#else
8931
        ret = get_errno(fallocate(arg1, arg2, arg3, arg4));
A
Alexander Graf 已提交
8932
#endif
8933
        break;
8934 8935 8936 8937 8938
#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
8939 8940 8941 8942
#if defined(TARGET_MIPS)
        ret = get_errno(sync_file_range(arg1, target_offset64(arg3, arg4),
                                        target_offset64(arg5, arg6), arg7));
#else
8943 8944
        ret = get_errno(sync_file_range(arg1, target_offset64(arg2, arg3),
                                        target_offset64(arg4, arg5), arg6));
8945
#endif /* !TARGET_MIPS */
8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961
#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
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 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 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 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
#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
9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093
#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;
    }
9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106
#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;
    }
9107
#endif
9108 9109
    default:
    unimplemented:
B
bellard 已提交
9110
        gemu_log("qemu: Unsupported syscall: %d\n", num);
9111
#if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
B
bellard 已提交
9112
    unimplemented_nowarn:
B
bellard 已提交
9113
#endif
9114
        ret = -TARGET_ENOSYS;
9115 9116
        break;
    }
9117
fail:
B
bellard 已提交
9118
#ifdef DEBUG
9119
    gemu_log(" = " TARGET_ABI_FMT_ld "\n", ret);
B
bellard 已提交
9120
#endif
9121 9122
    if(do_strace)
        print_syscall_ret(num, ret);
9123
    return ret;
9124 9125 9126
efault:
    ret = -TARGET_EFAULT;
    goto fail;
9127
}