sys_ia32.c 7.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3
/*
 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
4
 *             sys_sparc32
L
Linus Torvalds 已提交
5 6 7
 *
 * Copyright (C) 2000		VA Linux Co
 * Copyright (C) 2000		Don Dugger <n0ano@valinux.com>
8 9 10
 * 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 已提交
11 12
 * Copyright (C) 2000		Hewlett-Packard Co.
 * Copyright (C) 2000		David Mosberger-Tang <davidm@hpl.hp.com>
13
 * Copyright (C) 2000,2001,2002	Andi Kleen, SuSE Labs (x86-64 port)
L
Linus Torvalds 已提交
14 15
 *
 * These routines maintain argument size conversion between 32bit and 64bit
16
 * environment. In 2.5 most of this should be moved to a generic directory.
L
Linus Torvalds 已提交
17 18
 *
 * This file assumes that there is a hole at the end of user address space.
19 20 21
 *
 * Some of the functions are LE specific currently. These are
 * hopefully all marked.  This should be fixed.
L
Linus Torvalds 已提交
22 23 24 25
 */

#include <linux/kernel.h>
#include <linux/sched.h>
26 27
#include <linux/fs.h>
#include <linux/file.h>
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41
#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>
42
#include <linux/sysctl.h>
43
#include <linux/slab.h>
L
Linus Torvalds 已提交
44 45
#include <asm/mman.h>
#include <asm/types.h>
46
#include <linux/uaccess.h>
A
Arun Sharma 已提交
47
#include <linux/atomic.h>
48
#include <asm/vgtod.h>
49
#include <asm/sys_ia32.h>
L
Linus Torvalds 已提交
50 51 52 53

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


54 55
COMPAT_SYSCALL_DEFINE3(x86_truncate64, const char __user *, filename,
		       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
COMPAT_SYSCALL_DEFINE3(x86_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 99
COMPAT_SYSCALL_DEFINE2(x86_stat64, const char __user *, filename,
		       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 110
COMPAT_SYSCALL_DEFINE2(x86_lstat64, const char __user *, filename,
		       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 120
COMPAT_SYSCALL_DEFINE2(x86_fstat64, unsigned int, fd,
		       struct stat64 __user *, statbuf)
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128
{
	struct kstat stat;
	int ret = vfs_fstat(fd, &stat);
	if (!ret)
		ret = cp_stat64(statbuf, &stat);
	return ret;
}

129 130 131
COMPAT_SYSCALL_DEFINE4(x86_fstatat, unsigned int, dfd,
		       const char __user *, filename,
		       struct stat64 __user *, statbuf, int, flag)
U
Ulrich Drepper 已提交
132 133
{
	struct kstat stat;
134
	int error;
U
Ulrich Drepper 已提交
135

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

L
Linus Torvalds 已提交
142 143 144 145 146 147
/*
 * 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 已提交
148
struct mmap_arg_struct32 {
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156
	unsigned int addr;
	unsigned int len;
	unsigned int prot;
	unsigned int flags;
	unsigned int fd;
	unsigned int offset;
};

157
COMPAT_SYSCALL_DEFINE1(x86_mmap, struct mmap_arg_struct32 __user *, arg)
L
Linus Torvalds 已提交
158
{
C
Christoph Hellwig 已提交
159
	struct mmap_arg_struct32 a;
L
Linus Torvalds 已提交
160 161 162 163 164

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

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

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

171 172
COMPAT_SYSCALL_DEFINE3(x86_waitpid, compat_pid_t, pid, unsigned int __user *,
		       stat_addr, int, options)
L
Linus Torvalds 已提交
173 174 175 176
{
	return compat_sys_wait4(pid, stat_addr, options, NULL);
}

177
/* warning: next two assume little endian */
178 179
COMPAT_SYSCALL_DEFINE5(x86_pread, unsigned int, fd, char __user *, ubuf,
		       u32, count, u32, poslo, u32, poshi)
L
Linus Torvalds 已提交
180 181 182 183 184
{
	return sys_pread64(fd, ubuf, count,
			 ((loff_t)AA(poshi) << 32) | AA(poslo));
}

185 186
COMPAT_SYSCALL_DEFINE5(x86_pwrite, unsigned int, fd, const char __user *, ubuf,
		       u32, count, u32, poslo, u32, poshi)
L
Linus Torvalds 已提交
187 188 189 190 191 192 193
{
	return sys_pwrite64(fd, ubuf, count,
			  ((loff_t)AA(poshi) << 32) | AA(poslo));
}


/*
194 195 196
 * Some system calls that need sign extended arguments. This could be
 * done by a generic wrapper.
 */
197 198 199
COMPAT_SYSCALL_DEFINE6(x86_fadvise64_64, int, fd, __u32, offset_low,
		       __u32, offset_high, __u32, len_low, __u32, len_high,
		       int, advice)
200
{
L
Linus Torvalds 已提交
201 202 203
	return sys_fadvise64_64(fd,
			       (((u64)offset_high)<<32) | offset_low,
			       (((u64)len_high)<<32) | len_low,
204 205
				advice);
}
L
Linus Torvalds 已提交
206

207 208
COMPAT_SYSCALL_DEFINE4(x86_readahead, int, fd, unsigned int, off_lo,
		       unsigned int, off_hi, size_t, count)
209 210 211 212
{
	return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
}

213 214 215
COMPAT_SYSCALL_DEFINE6(x86_sync_file_range, int, fd, unsigned int, off_low,
		       unsigned int, off_hi, unsigned int, n_low,
		       unsigned int, n_hi, int, flags)
216 217 218 219 220 221
{
	return sys_sync_file_range(fd,
				   ((u64)off_hi << 32) | off_low,
				   ((u64)n_hi << 32) | n_low, flags);
}

222 223
COMPAT_SYSCALL_DEFINE5(x86_fadvise64, int, fd, unsigned int, offset_lo,
		       unsigned int, offset_hi, size_t, len, int, advice)
224 225 226 227
{
	return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
				len, advice);
}
228

229 230 231
COMPAT_SYSCALL_DEFINE6(x86_fallocate, int, fd, int, mode,
		       unsigned int, offset_lo, unsigned int, offset_hi,
		       unsigned int, len_lo, unsigned int, len_hi)
232 233 234 235
{
	return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
			     ((u64)len_hi << 32) | len_lo);
}
236 237 238 239 240 241 242 243 244 245 246

/*
 * The 32-bit clone ABI is CONFIG_CLONE_BACKWARDS
 */
COMPAT_SYSCALL_DEFINE5(x86_clone, unsigned long, clone_flags,
		       unsigned long, newsp, int __user *, parent_tidptr,
		       unsigned long, tls_val, int __user *, child_tidptr)
{
	return sys_clone(clone_flags, newsp, parent_tidptr, child_tidptr,
			tls_val);
}