sys_ia32.c 23.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
3
 *             sys_sparc32
L
Linus Torvalds 已提交
4 5 6
 *
 * Copyright (C) 2000		VA Linux Co
 * Copyright (C) 2000		Don Dugger <n0ano@valinux.com>
7 8 9
 * Copyright (C) 1999		Arun Sharma <arun.sharma@intel.com>
 * Copyright (C) 1997,1998	Jakub Jelinek (jj@sunsite.mff.cuni.cz)
 * Copyright (C) 1997		David S. Miller (davem@caip.rutgers.edu)
L
Linus Torvalds 已提交
10 11
 * Copyright (C) 2000		Hewlett-Packard Co.
 * Copyright (C) 2000		David Mosberger-Tang <davidm@hpl.hp.com>
12
 * Copyright (C) 2000,2001,2002	Andi Kleen, SuSE Labs (x86-64 port)
L
Linus Torvalds 已提交
13 14
 *
 * These routines maintain argument size conversion between 32bit and 64bit
15
 * environment. In 2.5 most of this should be moved to a generic directory.
L
Linus Torvalds 已提交
16 17
 *
 * This file assumes that there is a hole at the end of user address space.
18 19 20
 *
 * Some of the functions are LE specific currently. These are
 * hopefully all marked.  This should be fixed.
L
Linus Torvalds 已提交
21 22 23 24
 */

#include <linux/kernel.h>
#include <linux/sched.h>
25 26
#include <linux/fs.h>
#include <linux/file.h>
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
#include <linux/signal.h>
#include <linux/syscalls.h>
#include <linux/resource.h>
#include <linux/times.h>
#include <linux/utsname.h>
#include <linux/smp.h>
#include <linux/smp_lock.h>
#include <linux/sem.h>
#include <linux/msg.h>
#include <linux/mm.h>
#include <linux/shm.h>
#include <linux/slab.h>
#include <linux/uio.h>
#include <linux/nfs_fs.h>
#include <linux/quota.h>
#include <linux/module.h>
#include <linux/sunrpc/svc.h>
#include <linux/nfsd/nfsd.h>
#include <linux/nfsd/cache.h>
#include <linux/nfsd/xdr.h>
#include <linux/nfsd/syscall.h>
#include <linux/poll.h>
#include <linux/personality.h>
#include <linux/stat.h>
#include <linux/ipc.h>
#include <linux/rwsem.h>
#include <linux/binfmts.h>
#include <linux/init.h>
#include <linux/aio_abi.h>
#include <linux/aio.h>
#include <linux/compat.h>
#include <linux/vfs.h>
#include <linux/ptrace.h>
#include <linux/highuid.h>
#include <linux/vmalloc.h>
62
#include <linux/fsnotify.h>
63
#include <linux/sysctl.h>
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#include <asm/mman.h>
#include <asm/types.h>
#include <asm/uaccess.h>
#include <asm/semaphore.h>
#include <asm/atomic.h>
#include <asm/ldt.h>

#include <net/scm.h>
#include <net/sock.h>
#include <asm/ia32.h>

#define AA(__x)		((unsigned long)(__x))

int cp_compat_stat(struct kstat *kbuf, struct compat_stat __user *ubuf)
{
79 80
	compat_ino_t ino;

L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88
	typeof(ubuf->st_uid) uid = 0;
	typeof(ubuf->st_gid) gid = 0;
	SET_UID(uid, kbuf->uid);
	SET_GID(gid, kbuf->gid);
	if (!old_valid_dev(kbuf->dev) || !old_valid_dev(kbuf->rdev))
		return -EOVERFLOW;
	if (kbuf->size >= 0x7fffffff)
		return -EOVERFLOW;
89 90 91
	ino = kbuf->ino;
	if (sizeof(ino) < sizeof(kbuf->ino) && ino != kbuf->ino)
		return -EOVERFLOW;
L
Linus Torvalds 已提交
92
	if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct compat_stat)) ||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	    __put_user(old_encode_dev(kbuf->dev), &ubuf->st_dev) ||
	    __put_user(ino, &ubuf->st_ino) ||
	    __put_user(kbuf->mode, &ubuf->st_mode) ||
	    __put_user(kbuf->nlink, &ubuf->st_nlink) ||
	    __put_user(uid, &ubuf->st_uid) ||
	    __put_user(gid, &ubuf->st_gid) ||
	    __put_user(old_encode_dev(kbuf->rdev), &ubuf->st_rdev) ||
	    __put_user(kbuf->size, &ubuf->st_size) ||
	    __put_user(kbuf->atime.tv_sec, &ubuf->st_atime) ||
	    __put_user(kbuf->atime.tv_nsec, &ubuf->st_atime_nsec) ||
	    __put_user(kbuf->mtime.tv_sec, &ubuf->st_mtime) ||
	    __put_user(kbuf->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
	    __put_user(kbuf->ctime.tv_sec, &ubuf->st_ctime) ||
	    __put_user(kbuf->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
	    __put_user(kbuf->blksize, &ubuf->st_blksize) ||
	    __put_user(kbuf->blocks, &ubuf->st_blocks))
L
Linus Torvalds 已提交
109 110 111 112
		return -EFAULT;
	return 0;
}

113 114 115
asmlinkage long sys32_truncate64(char __user *filename,
				 unsigned long offset_low,
				 unsigned long offset_high)
L
Linus Torvalds 已提交
116 117 118 119
{
       return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low);
}

120 121
asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
				  unsigned long offset_high)
L
Linus Torvalds 已提交
122 123 124 125
{
       return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
}

126 127 128 129 130
/*
 * Another set for IA32/LFS -- x86_64 struct stat is different due to
 * support for 64bit inode numbers.
 */
static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat)
L
Linus Torvalds 已提交
131 132 133 134 135 136 137
{
	typeof(ubuf->st_uid) uid = 0;
	typeof(ubuf->st_gid) gid = 0;
	SET_UID(uid, stat->uid);
	SET_GID(gid, stat->gid);
	if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
	    __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
	    __put_user(stat->ino, &ubuf->__st_ino) ||
	    __put_user(stat->ino, &ubuf->st_ino) ||
	    __put_user(stat->mode, &ubuf->st_mode) ||
	    __put_user(stat->nlink, &ubuf->st_nlink) ||
	    __put_user(uid, &ubuf->st_uid) ||
	    __put_user(gid, &ubuf->st_gid) ||
	    __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) ||
	    __put_user(stat->size, &ubuf->st_size) ||
	    __put_user(stat->atime.tv_sec, &ubuf->st_atime) ||
	    __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) ||
	    __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) ||
	    __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
	    __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) ||
	    __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
	    __put_user(stat->blksize, &ubuf->st_blksize) ||
	    __put_user(stat->blocks, &ubuf->st_blocks))
L
Linus Torvalds 已提交
154 155 156 157
		return -EFAULT;
	return 0;
}

158 159
asmlinkage long sys32_stat64(char __user *filename,
			     struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
160 161 162
{
	struct kstat stat;
	int ret = vfs_stat(filename, &stat);
163

L
Linus Torvalds 已提交
164 165 166 167 168
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

169 170
asmlinkage long sys32_lstat64(char __user *filename,
			      struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
171 172 173 174 175 176 177 178
{
	struct kstat stat;
	int ret = vfs_lstat(filename, &stat);
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

179
asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187
{
	struct kstat stat;
	int ret = vfs_fstat(fd, &stat);
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

188 189
asmlinkage long sys32_fstatat(unsigned int dfd, char __user *filename,
			      struct stat64 __user *statbuf, int flag)
U
Ulrich Drepper 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
{
	struct kstat stat;
	int error = -EINVAL;

	if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
		goto out;

	if (flag & AT_SYMLINK_NOFOLLOW)
		error = vfs_lstat_fd(dfd, filename, &stat);
	else
		error = vfs_stat_fd(dfd, filename, &stat);

	if (!error)
		error = cp_stat64(statbuf, &stat);

out:
	return error;
}

L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
/*
 * Linux/i386 didn't use to be able to handle more than
 * 4 system call parameters, so these system calls used a memory
 * block for parameter passing..
 */

struct mmap_arg_struct {
	unsigned int addr;
	unsigned int len;
	unsigned int prot;
	unsigned int flags;
	unsigned int fd;
	unsigned int offset;
};

224
asmlinkage long sys32_mmap(struct mmap_arg_struct __user *arg)
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232 233 234
{
	struct mmap_arg_struct a;
	struct file *file = NULL;
	unsigned long retval;
	struct mm_struct *mm ;

	if (copy_from_user(&a, arg, sizeof(a)))
		return -EFAULT;

	if (a.offset & ~PAGE_MASK)
235
		return -EINVAL;
L
Linus Torvalds 已提交
236 237 238 239 240 241

	if (!(a.flags & MAP_ANONYMOUS)) {
		file = fget(a.fd);
		if (!file)
			return -EBADF;
	}
242 243 244 245 246

	mm = current->mm;
	down_write(&mm->mmap_sem);
	retval = do_mmap_pgoff(file, a.addr, a.len, a.prot, a.flags,
			       a.offset>>PAGE_SHIFT);
L
Linus Torvalds 已提交
247 248 249
	if (file)
		fput(file);

250
	up_write(&mm->mmap_sem);
L
Linus Torvalds 已提交
251 252 253 254

	return retval;
}

255 256
asmlinkage long sys32_mprotect(unsigned long start, size_t len,
			       unsigned long prot)
L
Linus Torvalds 已提交
257
{
258
	return sys_mprotect(start, len, prot);
L
Linus Torvalds 已提交
259 260
}

261
asmlinkage long sys32_pipe(int __user *fd)
L
Linus Torvalds 已提交
262 263 264 265 266 267 268 269 270
{
	int retval;
	int fds[2];

	retval = do_pipe(fds);
	if (retval)
		goto out;
	if (copy_to_user(fd, fds, sizeof(fds)))
		retval = -EFAULT;
271
out:
L
Linus Torvalds 已提交
272 273 274
	return retval;
}

275 276 277
asmlinkage long sys32_rt_sigaction(int sig, struct sigaction32 __user *act,
				   struct sigaction32 __user *oact,
				   unsigned int sigsetsize)
L
Linus Torvalds 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
{
	struct k_sigaction new_ka, old_ka;
	int ret;
	compat_sigset_t set32;

	/* XXX: Don't preclude handling different sized sigset_t's.  */
	if (sigsetsize != sizeof(compat_sigset_t))
		return -EINVAL;

	if (act) {
		compat_uptr_t handler, restorer;

		if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
		    __get_user(handler, &act->sa_handler) ||
		    __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
293 294 295
		    __get_user(restorer, &act->sa_restorer) ||
		    __copy_from_user(&set32, &act->sa_mask,
				     sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
296 297 298
			return -EFAULT;
		new_ka.sa.sa_handler = compat_ptr(handler);
		new_ka.sa.sa_restorer = compat_ptr(restorer);
299 300 301 302 303

		/*
		 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
		 * than _NSIG_WORDS << 1
		 */
L
Linus Torvalds 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
		switch (_NSIG_WORDS) {
		case 4: new_ka.sa.sa_mask.sig[3] = set32.sig[6]
				| (((long)set32.sig[7]) << 32);
		case 3: new_ka.sa.sa_mask.sig[2] = set32.sig[4]
				| (((long)set32.sig[5]) << 32);
		case 2: new_ka.sa.sa_mask.sig[1] = set32.sig[2]
				| (((long)set32.sig[3]) << 32);
		case 1: new_ka.sa.sa_mask.sig[0] = set32.sig[0]
				| (((long)set32.sig[1]) << 32);
		}
	}

	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);

	if (!ret && oact) {
319 320 321 322
		/*
		 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
		 * than _NSIG_WORDS << 1
		 */
L
Linus Torvalds 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
		switch (_NSIG_WORDS) {
		case 4:
			set32.sig[7] = (old_ka.sa.sa_mask.sig[3] >> 32);
			set32.sig[6] = old_ka.sa.sa_mask.sig[3];
		case 3:
			set32.sig[5] = (old_ka.sa.sa_mask.sig[2] >> 32);
			set32.sig[4] = old_ka.sa.sa_mask.sig[2];
		case 2:
			set32.sig[3] = (old_ka.sa.sa_mask.sig[1] >> 32);
			set32.sig[2] = old_ka.sa.sa_mask.sig[1];
		case 1:
			set32.sig[1] = (old_ka.sa.sa_mask.sig[0] >> 32);
			set32.sig[0] = old_ka.sa.sa_mask.sig[0];
		}
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
338 339 340 341
		    __put_user(ptr_to_compat(old_ka.sa.sa_handler),
			       &oact->sa_handler) ||
		    __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
			       &oact->sa_restorer) ||
L
Linus Torvalds 已提交
342
		    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
343 344
		    __copy_to_user(&oact->sa_mask, &set32,
				   sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
345 346 347 348 349 350
			return -EFAULT;
	}

	return ret;
}

351 352
asmlinkage long sys32_sigaction(int sig, struct old_sigaction32 __user *act,
				struct old_sigaction32 __user *oact)
L
Linus Torvalds 已提交
353
{
354 355
	struct k_sigaction new_ka, old_ka;
	int ret;
L
Linus Torvalds 已提交
356

357
	if (act) {
L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371
		compat_old_sigset_t mask;
		compat_uptr_t handler, restorer;

		if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
		    __get_user(handler, &act->sa_handler) ||
		    __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
		    __get_user(restorer, &act->sa_restorer) ||
		    __get_user(mask, &act->sa_mask))
			return -EFAULT;

		new_ka.sa.sa_handler = compat_ptr(handler);
		new_ka.sa.sa_restorer = compat_ptr(restorer);

		siginitset(&new_ka.sa.sa_mask, mask);
372
	}
L
Linus Torvalds 已提交
373

374
	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
L
Linus Torvalds 已提交
375 376 377

	if (!ret && oact) {
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
378 379 380 381
		    __put_user(ptr_to_compat(old_ka.sa.sa_handler),
			       &oact->sa_handler) ||
		    __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
			       &oact->sa_restorer) ||
L
Linus Torvalds 已提交
382 383 384
		    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
		    __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
			return -EFAULT;
385
	}
L
Linus Torvalds 已提交
386 387 388 389

	return ret;
}

390 391 392
asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
				     compat_sigset_t __user *oset,
				     unsigned int sigsetsize)
L
Linus Torvalds 已提交
393 394 395 396 397
{
	sigset_t s;
	compat_sigset_t s32;
	int ret;
	mm_segment_t old_fs = get_fs();
398

L
Linus Torvalds 已提交
399
	if (set) {
400
		if (copy_from_user(&s32, set, sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
401 402 403 404 405 406 407 408
			return -EFAULT;
		switch (_NSIG_WORDS) {
		case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
		case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
		case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
		case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
		}
	}
409
	set_fs(KERNEL_DS);
410 411 412
	ret = sys_rt_sigprocmask(how,
				 set ? (sigset_t __user *)&s : NULL,
				 oset ? (sigset_t __user *)&s : NULL,
413 414 415 416
				 sigsetsize);
	set_fs(old_fs);
	if (ret)
		return ret;
L
Linus Torvalds 已提交
417 418 419 420 421 422 423
	if (oset) {
		switch (_NSIG_WORDS) {
		case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
		case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
		case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
		case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
		}
424
		if (copy_to_user(oset, &s32, sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
425 426 427 428 429
			return -EFAULT;
	}
	return 0;
}

430
static inline long get_tv32(struct timeval *o, struct compat_timeval __user *i)
L
Linus Torvalds 已提交
431
{
432 433 434
	int err = -EFAULT;

	if (access_ok(VERIFY_READ, i, sizeof(*i))) {
L
Linus Torvalds 已提交
435 436 437
		err = __get_user(o->tv_sec, &i->tv_sec);
		err |= __get_user(o->tv_usec, &i->tv_usec);
	}
438
	return err;
L
Linus Torvalds 已提交
439 440
}

441
static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
L
Linus Torvalds 已提交
442 443
{
	int err = -EFAULT;
444 445

	if (access_ok(VERIFY_WRITE, o, sizeof(*o))) {
L
Linus Torvalds 已提交
446 447
		err = __put_user(i->tv_sec, &o->tv_sec);
		err |= __put_user(i->tv_usec, &o->tv_usec);
448 449
	}
	return err;
L
Linus Torvalds 已提交
450 451
}

452
asmlinkage long sys32_alarm(unsigned int seconds)
L
Linus Torvalds 已提交
453
{
454
	return alarm_setitimer(seconds);
L
Linus Torvalds 已提交
455 456
}

457 458 459 460 461 462
/*
 * Translations due to time_t size differences. Which affects all
 * sorts of things, like timeval and itimerval.
 */
asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv,
				   struct timezone __user *tz)
L
Linus Torvalds 已提交
463 464 465
{
	if (tv) {
		struct timeval ktv;
466

L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475 476 477
		do_gettimeofday(&ktv);
		if (put_tv32(tv, &ktv))
			return -EFAULT;
	}
	if (tz) {
		if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
			return -EFAULT;
	}
	return 0;
}

478 479
asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv,
				   struct timezone __user *tz)
L
Linus Torvalds 已提交
480 481 482 483 484
{
	struct timeval ktv;
	struct timespec kts;
	struct timezone ktz;

485
	if (tv) {
L
Linus Torvalds 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
		if (get_tv32(&ktv, tv))
			return -EFAULT;
		kts.tv_sec = ktv.tv_sec;
		kts.tv_nsec = ktv.tv_usec * NSEC_PER_USEC;
	}
	if (tz) {
		if (copy_from_user(&ktz, tz, sizeof(ktz)))
			return -EFAULT;
	}

	return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
}

struct sel_arg_struct {
	unsigned int n;
	unsigned int inp;
	unsigned int outp;
	unsigned int exp;
	unsigned int tvp;
};

507
asmlinkage long sys32_old_select(struct sel_arg_struct __user *arg)
L
Linus Torvalds 已提交
508 509 510 511 512 513 514 515 516
{
	struct sel_arg_struct a;

	if (copy_from_user(&a, arg, sizeof(a)))
		return -EFAULT;
	return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
				 compat_ptr(a.exp), compat_ptr(a.tvp));
}

517 518
asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int *stat_addr,
			      int options)
L
Linus Torvalds 已提交
519 520 521 522 523 524
{
	return compat_sys_wait4(pid, stat_addr, options, NULL);
}

/* 32-bit timeval and related flotsam.  */

525
asmlinkage long sys32_sysfs(int option, u32 arg1, u32 arg2)
L
Linus Torvalds 已提交
526 527 528 529
{
	return sys_sysfs(option, arg1, arg2);
}

530 531
asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
				    struct compat_timespec __user *interval)
L
Linus Torvalds 已提交
532 533 534
{
	struct timespec t;
	int ret;
535 536 537
	mm_segment_t old_fs = get_fs();

	set_fs(KERNEL_DS);
538
	ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
539
	set_fs(old_fs);
L
Linus Torvalds 已提交
540 541 542 543 544
	if (put_compat_timespec(&t, interval))
		return -EFAULT;
	return ret;
}

545 546
asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
				    compat_size_t sigsetsize)
L
Linus Torvalds 已提交
547 548 549 550 551
{
	sigset_t s;
	compat_sigset_t s32;
	int ret;
	mm_segment_t old_fs = get_fs();
552 553

	set_fs(KERNEL_DS);
554
	ret = sys_rt_sigpending((sigset_t __user *)&s, sigsetsize);
555
	set_fs(old_fs);
L
Linus Torvalds 已提交
556 557 558 559 560 561 562
	if (!ret) {
		switch (_NSIG_WORDS) {
		case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
		case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
		case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
		case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
		}
563
		if (copy_to_user(set, &s32, sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
564 565 566 567 568
			return -EFAULT;
	}
	return ret;
}

569 570
asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
				      compat_siginfo_t __user *uinfo)
L
Linus Torvalds 已提交
571 572 573 574
{
	siginfo_t info;
	int ret;
	mm_segment_t old_fs = get_fs();
575

L
Linus Torvalds 已提交
576 577
	if (copy_siginfo_from_user32(&info, uinfo))
		return -EFAULT;
578
	set_fs(KERNEL_DS);
579
	ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *)&info);
580
	set_fs(old_fs);
L
Linus Torvalds 已提交
581 582 583 584
	return ret;
}

/* These are here just in case some old ia32 binary calls it. */
585
asmlinkage long sys32_pause(void)
L
Linus Torvalds 已提交
586 587 588 589 590 591 592
{
	current->state = TASK_INTERRUPTIBLE;
	schedule();
	return -ERESTARTNOHAND;
}


593
#ifdef CONFIG_SYSCTL_SYSCALL
L
Linus Torvalds 已提交
594 595 596 597 598 599 600 601 602 603 604
struct sysctl_ia32 {
	unsigned int	name;
	int		nlen;
	unsigned int	oldval;
	unsigned int	oldlenp;
	unsigned int	newval;
	unsigned int	newlen;
	unsigned int	__unused[4];
};


605
asmlinkage long sys32_sysctl(struct sysctl_ia32 __user *args32)
L
Linus Torvalds 已提交
606 607
{
	struct sysctl_ia32 a32;
608
	mm_segment_t old_fs = get_fs();
L
Linus Torvalds 已提交
609 610 611 612 613
	void __user *oldvalp, *newvalp;
	size_t oldlen;
	int __user *namep;
	long ret;

614
	if (copy_from_user(&a32, args32, sizeof(a32)))
L
Linus Torvalds 已提交
615 616 617
		return -EFAULT;

	/*
618 619 620 621 622 623
	 * We need to pre-validate these because we have to disable
	 * address checking before calling do_sysctl() because of
	 * OLDLEN but we can't run the risk of the user specifying bad
	 * addresses here.  Well, since we're dealing with 32 bit
	 * addresses, we KNOW that access_ok() will always succeed, so
	 * this is an expensive NOP, but so what...
L
Linus Torvalds 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636
	 */
	namep = compat_ptr(a32.name);
	oldvalp = compat_ptr(a32.oldval);
	newvalp =  compat_ptr(a32.newval);

	if ((oldvalp && get_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
	    || !access_ok(VERIFY_WRITE, namep, 0)
	    || !access_ok(VERIFY_WRITE, oldvalp, 0)
	    || !access_ok(VERIFY_WRITE, newvalp, 0))
		return -EFAULT;

	set_fs(KERNEL_DS);
	lock_kernel();
637 638
	ret = do_sysctl(namep, a32.nlen, oldvalp, (size_t __user *)&oldlen,
			newvalp, (size_t) a32.newlen);
L
Linus Torvalds 已提交
639 640 641
	unlock_kernel();
	set_fs(old_fs);

642
	if (oldvalp && put_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
L
Linus Torvalds 已提交
643 644 645 646 647 648
		return -EFAULT;

	return ret;
}
#endif

649 650 651
/* warning: next two assume little endian */
asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count,
			    u32 poslo, u32 poshi)
L
Linus Torvalds 已提交
652 653 654 655 656
{
	return sys_pread64(fd, ubuf, count,
			 ((loff_t)AA(poshi) << 32) | AA(poslo));
}

657 658
asmlinkage long sys32_pwrite(unsigned int fd, char __user *ubuf, u32 count,
			     u32 poslo, u32 poshi)
L
Linus Torvalds 已提交
659 660 661 662 663 664
{
	return sys_pwrite64(fd, ubuf, count,
			  ((loff_t)AA(poshi) << 32) | AA(poslo));
}


665
asmlinkage long sys32_personality(unsigned long personality)
L
Linus Torvalds 已提交
666 667
{
	int ret;
668 669

	if (personality(current->personality) == PER_LINUX32 &&
L
Linus Torvalds 已提交
670 671 672 673 674 675 676 677
		personality == PER_LINUX)
		personality = PER_LINUX32;
	ret = sys_personality(personality);
	if (ret == PER_LINUX32)
		ret = PER_LINUX;
	return ret;
}

678 679
asmlinkage long sys32_sendfile(int out_fd, int in_fd,
			       compat_off_t __user *offset, s32 count)
L
Linus Torvalds 已提交
680 681 682 683
{
	mm_segment_t old_fs = get_fs();
	int ret;
	off_t of;
684

L
Linus Torvalds 已提交
685 686
	if (offset && get_user(of, offset))
		return -EFAULT;
687

L
Linus Torvalds 已提交
688
	set_fs(KERNEL_DS);
689 690
	ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL,
			   count);
L
Linus Torvalds 已提交
691
	set_fs(old_fs);
692

693
	if (offset && put_user(of, offset))
L
Linus Torvalds 已提交
694 695 696 697 698
		return -EFAULT;
	return ret;
}

asmlinkage long sys32_mmap2(unsigned long addr, unsigned long len,
699 700
			    unsigned long prot, unsigned long flags,
			    unsigned long fd, unsigned long pgoff)
L
Linus Torvalds 已提交
701 702 703
{
	struct mm_struct *mm = current->mm;
	unsigned long error;
704
	struct file *file = NULL;
L
Linus Torvalds 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721

	flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
	if (!(flags & MAP_ANONYMOUS)) {
		file = fget(fd);
		if (!file)
			return -EBADF;
	}

	down_write(&mm->mmap_sem);
	error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
	up_write(&mm->mmap_sem);

	if (file)
		fput(file);
	return error;
}

722
asmlinkage long sys32_olduname(struct oldold_utsname __user *name)
L
Linus Torvalds 已提交
723
{
724
	char *arch = "x86_64";
725
	int err;
L
Linus Torvalds 已提交
726 727 728

	if (!name)
		return -EFAULT;
729
	if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
L
Linus Torvalds 已提交
730
		return -EFAULT;
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750

	down_read(&uts_sem);

	err = __copy_to_user(&name->sysname, &utsname()->sysname,
			     __OLD_UTS_LEN);
	err |= __put_user(0, name->sysname+__OLD_UTS_LEN);
	err |= __copy_to_user(&name->nodename, &utsname()->nodename,
			      __OLD_UTS_LEN);
	err |= __put_user(0, name->nodename+__OLD_UTS_LEN);
	err |= __copy_to_user(&name->release, &utsname()->release,
			      __OLD_UTS_LEN);
	err |= __put_user(0, name->release+__OLD_UTS_LEN);
	err |= __copy_to_user(&name->version, &utsname()->version,
			      __OLD_UTS_LEN);
	err |= __put_user(0, name->version+__OLD_UTS_LEN);

	if (personality(current->personality) == PER_LINUX32)
		arch = "i686";

	err |= __copy_to_user(&name->machine, arch, strlen(arch) + 1);
751 752 753 754 755 756

	up_read(&uts_sem);

	err = err ? -EFAULT : 0;

	return err;
L
Linus Torvalds 已提交
757 758
}

759
long sys32_uname(struct old_utsname __user *name)
L
Linus Torvalds 已提交
760 761
{
	int err;
762

L
Linus Torvalds 已提交
763 764 765
	if (!name)
		return -EFAULT;
	down_read(&uts_sem);
766
	err = copy_to_user(name, utsname(), sizeof(*name));
L
Linus Torvalds 已提交
767
	up_read(&uts_sem);
768
	if (personality(current->personality) == PER_LINUX32)
L
Linus Torvalds 已提交
769
		err |= copy_to_user(&name->machine, "i686", 5);
770 771

	return err ? -EFAULT : 0;
L
Linus Torvalds 已提交
772 773 774 775 776 777 778
}

long sys32_ustat(unsigned dev, struct ustat32 __user *u32p)
{
	struct ustat u;
	mm_segment_t seg;
	int ret;
779 780 781

	seg = get_fs();
	set_fs(KERNEL_DS);
782
	ret = sys_ustat(dev, (struct ustat __user *)&u);
L
Linus Torvalds 已提交
783
	set_fs(seg);
784 785 786 787 788 789 790 791 792
	if (ret < 0)
		return ret;

	if (!access_ok(VERIFY_WRITE, u32p, sizeof(struct ustat32)) ||
	    __put_user((__u32) u.f_tfree, &u32p->f_tfree) ||
	    __put_user((__u32) u.f_tinode, &u32p->f_tfree) ||
	    __copy_to_user(&u32p->f_fname, u.f_fname, sizeof(u.f_fname)) ||
	    __copy_to_user(&u32p->f_fpack, u.f_fpack, sizeof(u.f_fpack)))
		ret = -EFAULT;
L
Linus Torvalds 已提交
793
	return ret;
794
}
L
Linus Torvalds 已提交
795 796 797 798 799

asmlinkage long sys32_execve(char __user *name, compat_uptr_t __user *argv,
			     compat_uptr_t __user *envp, struct pt_regs *regs)
{
	long error;
800
	char *filename;
L
Linus Torvalds 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820

	filename = getname(name);
	error = PTR_ERR(filename);
	if (IS_ERR(filename))
		return error;
	error = compat_do_execve(filename, argv, envp, regs);
	if (error == 0) {
		task_lock(current);
		current->ptrace &= ~PT_DTRACE;
		task_unlock(current);
	}
	putname(filename);
	return error;
}

asmlinkage long sys32_clone(unsigned int clone_flags, unsigned int newsp,
			    struct pt_regs *regs)
{
	void __user *parent_tid = (void __user *)regs->rdx;
	void __user *child_tid = (void __user *)regs->rdi;
821

L
Linus Torvalds 已提交
822 823
	if (!newsp)
		newsp = regs->rsp;
824
	return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
L
Linus Torvalds 已提交
825 826 827
}

/*
828 829 830 831
 * Some system calls that need sign extended arguments. This could be
 * done by a generic wrapper.
 */
long sys32_lseek(unsigned int fd, int offset, unsigned int whence)
L
Linus Torvalds 已提交
832 833 834 835 836 837 838 839
{
	return sys_lseek(fd, offset, whence);
}

long sys32_kill(int pid, int sig)
{
	return sys_kill(pid, sig);
}
840 841

long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
L
Linus Torvalds 已提交
842
			__u32 len_low, __u32 len_high, int advice)
843
{
L
Linus Torvalds 已提交
844 845 846
	return sys_fadvise64_64(fd,
			       (((u64)offset_high)<<32) | offset_low,
			       (((u64)len_high)<<32) | len_low,
847 848
				advice);
}
L
Linus Torvalds 已提交
849 850

long sys32_vm86_warning(void)
851
{
L
Linus Torvalds 已提交
852 853
	struct task_struct *me = current;
	static char lastcomm[sizeof(me->comm)];
854

L
Linus Torvalds 已提交
855
	if (strncmp(lastcomm, me->comm, sizeof(lastcomm))) {
856 857 858
		compat_printk(KERN_INFO
			      "%s: vm86 mode not supported on 64 bit kernel\n",
			      me->comm);
L
Linus Torvalds 已提交
859
		strncpy(lastcomm, me->comm, sizeof(lastcomm));
860
	}
L
Linus Torvalds 已提交
861
	return -ENOSYS;
862
}
L
Linus Torvalds 已提交
863 864

long sys32_lookup_dcookie(u32 addr_low, u32 addr_high,
865
			  char __user *buf, size_t len)
L
Linus Torvalds 已提交
866 867 868 869
{
	return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len);
}

870 871
asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi,
				   size_t count)
872 873 874 875 876
{
	return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
}

asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi,
877
				      unsigned n_low, unsigned n_hi,  int flags)
878 879 880 881 882 883
{
	return sys_sync_file_range(fd,
				   ((u64)off_hi << 32) | off_low,
				   ((u64)n_hi << 32) | n_low, flags);
}

884 885
asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi,
				size_t len, int advice)
886 887 888 889
{
	return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
				len, advice);
}
890 891 892 893 894 895 896 897

asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo,
				unsigned offset_hi, unsigned len_lo,
				unsigned len_hi)
{
	return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
			     ((u64)len_hi << 32) | len_lo);
}