sys_ia32.c 12.8 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
#include <linux/signal.h>
#include <linux/syscalls.h>
#include <linux/times.h>
#include <linux/utsname.h>
#include <linux/mm.h>
#include <linux/uio.h>
#include <linux/poll.h>
#include <linux/personality.h>
#include <linux/stat.h>
#include <linux/rwsem.h>
#include <linux/compat.h>
#include <linux/vfs.h>
#include <linux/ptrace.h>
#include <linux/highuid.h>
41
#include <linux/sysctl.h>
42
#include <linux/slab.h>
L
Linus Torvalds 已提交
43 44 45
#include <asm/mman.h>
#include <asm/types.h>
#include <asm/uaccess.h>
A
Arun Sharma 已提交
46
#include <linux/atomic.h>
47
#include <asm/vgtod.h>
48
#include <asm/sys_ia32.h>
L
Linus Torvalds 已提交
49 50 51 52

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


53
asmlinkage long sys32_truncate64(const char __user *filename,
54 55
				 unsigned long offset_low,
				 unsigned long offset_high)
L
Linus Torvalds 已提交
56 57 58 59
{
       return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low);
}

60 61
asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
				  unsigned long offset_high)
L
Linus Torvalds 已提交
62 63 64 65
{
       return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
}

66 67 68 69 70
/*
 * 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 已提交
71 72 73
{
	typeof(ubuf->st_uid) uid = 0;
	typeof(ubuf->st_gid) gid = 0;
74 75
	SET_UID(uid, from_kuid_munged(current_user_ns(), stat->uid));
	SET_GID(gid, from_kgid_munged(current_user_ns(), stat->gid));
L
Linus Torvalds 已提交
76 77
	if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
	    __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
	    __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 已提交
94 95 96 97
		return -EFAULT;
	return 0;
}

98
asmlinkage long sys32_stat64(const char __user *filename,
99
			     struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
100 101 102
{
	struct kstat stat;
	int ret = vfs_stat(filename, &stat);
103

L
Linus Torvalds 已提交
104 105 106 107 108
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

109
asmlinkage long sys32_lstat64(const char __user *filename,
110
			      struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118
{
	struct kstat stat;
	int ret = vfs_lstat(filename, &stat);
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

119
asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127
{
	struct kstat stat;
	int ret = vfs_fstat(fd, &stat);
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

128
asmlinkage long sys32_fstatat(unsigned int dfd, const char __user *filename,
129
			      struct stat64 __user *statbuf, int flag)
U
Ulrich Drepper 已提交
130 131
{
	struct kstat stat;
132
	int error;
U
Ulrich Drepper 已提交
133

134 135 136 137
	error = vfs_fstatat(dfd, filename, &stat, flag);
	if (error)
		return error;
	return cp_stat64(statbuf, &stat);
U
Ulrich Drepper 已提交
138 139
}

L
Linus Torvalds 已提交
140 141 142 143 144 145
/*
 * 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..
 */

C
Christoph Hellwig 已提交
146
struct mmap_arg_struct32 {
L
Linus Torvalds 已提交
147 148 149 150 151 152 153 154
	unsigned int addr;
	unsigned int len;
	unsigned int prot;
	unsigned int flags;
	unsigned int fd;
	unsigned int offset;
};

C
Christoph Hellwig 已提交
155
asmlinkage long sys32_mmap(struct mmap_arg_struct32 __user *arg)
L
Linus Torvalds 已提交
156
{
C
Christoph Hellwig 已提交
157
	struct mmap_arg_struct32 a;
L
Linus Torvalds 已提交
158 159 160 161 162

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

	if (a.offset & ~PAGE_MASK)
163
		return -EINVAL;
L
Linus Torvalds 已提交
164

A
Al Viro 已提交
165
	return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
166
			       a.offset>>PAGE_SHIFT);
L
Linus Torvalds 已提交
167 168
}

169 170
asmlinkage long sys32_mprotect(unsigned long start, size_t len,
			       unsigned long prot)
L
Linus Torvalds 已提交
171
{
172
	return sys_mprotect(start, len, prot);
L
Linus Torvalds 已提交
173 174
}

175 176 177
asmlinkage long sys32_rt_sigaction(int sig, struct sigaction32 __user *act,
				   struct sigaction32 __user *oact,
				   unsigned int sigsetsize)
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
{
	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) ||
193 194 195
		    __get_user(restorer, &act->sa_restorer) ||
		    __copy_from_user(&set32, &act->sa_mask,
				     sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
196 197 198
			return -EFAULT;
		new_ka.sa.sa_handler = compat_ptr(handler);
		new_ka.sa.sa_restorer = compat_ptr(restorer);
199 200 201 202 203

		/*
		 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
		 * than _NSIG_WORDS << 1
		 */
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
		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) {
219 220 221 222
		/*
		 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
		 * than _NSIG_WORDS << 1
		 */
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
		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)) ||
238 239 240 241
		    __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 已提交
242
		    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
243 244
		    __copy_to_user(&oact->sa_mask, &set32,
				   sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
245 246 247 248 249 250
			return -EFAULT;
	}

	return ret;
}

251 252
asmlinkage long sys32_sigaction(int sig, struct old_sigaction32 __user *act,
				struct old_sigaction32 __user *oact)
L
Linus Torvalds 已提交
253
{
254 255
	struct k_sigaction new_ka, old_ka;
	int ret;
L
Linus Torvalds 已提交
256

257
	if (act) {
L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271
		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);
272
	}
L
Linus Torvalds 已提交
273

274
	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
L
Linus Torvalds 已提交
275 276 277

	if (!ret && oact) {
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
278 279 280 281
		    __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 已提交
282 283 284
		    __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
		    __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
			return -EFAULT;
285
	}
L
Linus Torvalds 已提交
286 287 288 289

	return ret;
}

290
asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int __user *stat_addr,
291
			      int options)
L
Linus Torvalds 已提交
292 293 294 295 296 297
{
	return compat_sys_wait4(pid, stat_addr, options, NULL);
}

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

298 299
asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
				    struct compat_timespec __user *interval)
L
Linus Torvalds 已提交
300 301 302
{
	struct timespec t;
	int ret;
303 304 305
	mm_segment_t old_fs = get_fs();

	set_fs(KERNEL_DS);
306
	ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
307
	set_fs(old_fs);
L
Linus Torvalds 已提交
308 309 310 311 312
	if (put_compat_timespec(&t, interval))
		return -EFAULT;
	return ret;
}

313 314
asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
				    compat_size_t sigsetsize)
L
Linus Torvalds 已提交
315 316 317 318 319
{
	sigset_t s;
	compat_sigset_t s32;
	int ret;
	mm_segment_t old_fs = get_fs();
320 321

	set_fs(KERNEL_DS);
322
	ret = sys_rt_sigpending((sigset_t __user *)&s, sigsetsize);
323
	set_fs(old_fs);
L
Linus Torvalds 已提交
324 325 326 327 328 329 330
	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];
		}
331
		if (copy_to_user(set, &s32, sizeof(compat_sigset_t)))
L
Linus Torvalds 已提交
332 333 334 335 336
			return -EFAULT;
	}
	return ret;
}

337 338
asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
				      compat_siginfo_t __user *uinfo)
L
Linus Torvalds 已提交
339 340 341 342
{
	siginfo_t info;
	int ret;
	mm_segment_t old_fs = get_fs();
343

L
Linus Torvalds 已提交
344 345
	if (copy_siginfo_from_user32(&info, uinfo))
		return -EFAULT;
346
	set_fs(KERNEL_DS);
347
	ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *)&info);
348
	set_fs(old_fs);
L
Linus Torvalds 已提交
349 350 351
	return ret;
}

352 353 354
/* 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 已提交
355 356 357 358 359
{
	return sys_pread64(fd, ubuf, count,
			 ((loff_t)AA(poshi) << 32) | AA(poslo));
}

360 361
asmlinkage long sys32_pwrite(unsigned int fd, const char __user *ubuf,
			     u32 count, u32 poslo, u32 poshi)
L
Linus Torvalds 已提交
362 363 364 365 366 367
{
	return sys_pwrite64(fd, ubuf, count,
			  ((loff_t)AA(poshi) << 32) | AA(poslo));
}


368 369
asmlinkage long sys32_sendfile(int out_fd, int in_fd,
			       compat_off_t __user *offset, s32 count)
L
Linus Torvalds 已提交
370 371 372 373
{
	mm_segment_t old_fs = get_fs();
	int ret;
	off_t of;
374

L
Linus Torvalds 已提交
375 376
	if (offset && get_user(of, offset))
		return -EFAULT;
377

L
Linus Torvalds 已提交
378
	set_fs(KERNEL_DS);
379 380
	ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL,
			   count);
L
Linus Torvalds 已提交
381
	set_fs(old_fs);
382

383
	if (offset && put_user(of, offset))
L
Linus Torvalds 已提交
384 385 386 387 388
		return -EFAULT;
	return ret;
}

/*
389 390 391 392
 * 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 已提交
393 394 395 396 397 398 399 400
{
	return sys_lseek(fd, offset, whence);
}

long sys32_kill(int pid, int sig)
{
	return sys_kill(pid, sig);
}
401 402

long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
L
Linus Torvalds 已提交
403
			__u32 len_low, __u32 len_high, int advice)
404
{
L
Linus Torvalds 已提交
405 406 407
	return sys_fadvise64_64(fd,
			       (((u64)offset_high)<<32) | offset_low,
			       (((u64)len_high)<<32) | len_low,
408 409
				advice);
}
L
Linus Torvalds 已提交
410 411

long sys32_vm86_warning(void)
412
{
L
Linus Torvalds 已提交
413 414
	struct task_struct *me = current;
	static char lastcomm[sizeof(me->comm)];
415

L
Linus Torvalds 已提交
416
	if (strncmp(lastcomm, me->comm, sizeof(lastcomm))) {
417 418 419
		compat_printk(KERN_INFO
			      "%s: vm86 mode not supported on 64 bit kernel\n",
			      me->comm);
L
Linus Torvalds 已提交
420
		strncpy(lastcomm, me->comm, sizeof(lastcomm));
421
	}
L
Linus Torvalds 已提交
422
	return -ENOSYS;
423
}
L
Linus Torvalds 已提交
424 425

long sys32_lookup_dcookie(u32 addr_low, u32 addr_high,
426
			  char __user *buf, size_t len)
L
Linus Torvalds 已提交
427 428 429 430
{
	return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len);
}

431 432
asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi,
				   size_t count)
433 434 435 436 437
{
	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,
438
				      unsigned n_low, unsigned n_hi,  int flags)
439 440 441 442 443 444
{
	return sys_sync_file_range(fd,
				   ((u64)off_hi << 32) | off_low,
				   ((u64)n_hi << 32) | n_low, flags);
}

445 446
asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi,
				size_t len, int advice)
447 448 449 450
{
	return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
				len, advice);
}
451 452 453 454 455 456 457 458

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);
}
459 460 461 462 463 464 465 466 467

asmlinkage long sys32_fanotify_mark(int fanotify_fd, unsigned int flags,
				    u32 mask_lo, u32 mask_hi,
				    int fd, const char  __user *pathname)
{
	return sys_fanotify_mark(fanotify_fd, flags,
				 ((u64)mask_hi << 32) | mask_lo,
				 fd, pathname);
}