Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 4 | * sys_sparc32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (C) 2000 VA Linux Co |
| 7 | * Copyright (C) 2000 Don Dugger <n0ano@valinux.com> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 8 | * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com> |
| 9 | * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) |
| 10 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Copyright (C) 2000 Hewlett-Packard Co. |
| 12 | * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 13 | * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
| 15 | * These routines maintain argument size conversion between 32bit and 64bit |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 16 | * environment. In 2.5 most of this should be moved to a generic directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * |
| 18 | * This file assumes that there is a hole at the end of user address space. |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 19 | * |
| 20 | * Some of the functions are LE specific currently. These are |
| 21 | * hopefully all marked. This should be fixed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/kernel.h> |
| 25 | #include <linux/sched.h> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 26 | #include <linux/fs.h> |
| 27 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/signal.h> |
| 29 | #include <linux/syscalls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/times.h> |
| 31 | #include <linux/utsname.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/uio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/poll.h> |
| 35 | #include <linux/personality.h> |
| 36 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/rwsem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/compat.h> |
| 39 | #include <linux/vfs.h> |
| 40 | #include <linux/ptrace.h> |
| 41 | #include <linux/highuid.h> |
Andi Kleen | ddb15ec | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 42 | #include <linux/sysctl.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 43 | #include <linux/slab.h> |
Dominik Brodowski | 37db219 | 2018-03-18 08:11:26 +0100 | [diff] [blame] | 44 | #include <linux/sched/task.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/mman.h> |
| 46 | #include <asm/types.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 47 | #include <linux/uaccess.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 48 | #include <linux/atomic.h> |
Arnaldo Carvalho de Melo | 28d2312 | 2008-02-07 21:03:04 -0200 | [diff] [blame] | 49 | #include <asm/vgtod.h> |
Jaswinder Singh Rajput | 2f06de0 | 2008-12-27 21:37:10 +0530 | [diff] [blame] | 50 | #include <asm/sys_ia32.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | #define AA(__x) ((unsigned long)(__x)) |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 55 | COMPAT_SYSCALL_DEFINE3(x86_truncate64, const char __user *, filename, |
| 56 | unsigned long, offset_low, unsigned long, offset_high) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
| 58 | return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low); |
| 59 | } |
| 60 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 61 | COMPAT_SYSCALL_DEFINE3(x86_ftruncate64, unsigned int, fd, |
| 62 | unsigned long, offset_low, unsigned long, offset_high) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
| 64 | return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); |
| 65 | } |
| 66 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 67 | /* |
| 68 | * Another set for IA32/LFS -- x86_64 struct stat is different due to |
| 69 | * support for 64bit inode numbers. |
| 70 | */ |
| 71 | static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
| 73 | typeof(ubuf->st_uid) uid = 0; |
| 74 | typeof(ubuf->st_gid) gid = 0; |
Eric W. Biederman | a7c1938 | 2012-02-09 09:10:30 -0800 | [diff] [blame] | 75 | SET_UID(uid, from_kuid_munged(current_user_ns(), stat->uid)); |
| 76 | SET_GID(gid, from_kgid_munged(current_user_ns(), stat->gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) || |
| 78 | __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) || |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 79 | __put_user(stat->ino, &ubuf->__st_ino) || |
| 80 | __put_user(stat->ino, &ubuf->st_ino) || |
| 81 | __put_user(stat->mode, &ubuf->st_mode) || |
| 82 | __put_user(stat->nlink, &ubuf->st_nlink) || |
| 83 | __put_user(uid, &ubuf->st_uid) || |
| 84 | __put_user(gid, &ubuf->st_gid) || |
| 85 | __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) || |
| 86 | __put_user(stat->size, &ubuf->st_size) || |
| 87 | __put_user(stat->atime.tv_sec, &ubuf->st_atime) || |
| 88 | __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) || |
| 89 | __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) || |
| 90 | __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) || |
| 91 | __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) || |
| 92 | __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) || |
| 93 | __put_user(stat->blksize, &ubuf->st_blksize) || |
| 94 | __put_user(stat->blocks, &ubuf->st_blocks)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | return -EFAULT; |
| 96 | return 0; |
| 97 | } |
| 98 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 99 | COMPAT_SYSCALL_DEFINE2(x86_stat64, const char __user *, filename, |
| 100 | struct stat64 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
| 102 | struct kstat stat; |
| 103 | int ret = vfs_stat(filename, &stat); |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (!ret) |
| 106 | ret = cp_stat64(statbuf, &stat); |
| 107 | return ret; |
| 108 | } |
| 109 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 110 | COMPAT_SYSCALL_DEFINE2(x86_lstat64, const char __user *, filename, |
| 111 | struct stat64 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
| 113 | struct kstat stat; |
| 114 | int ret = vfs_lstat(filename, &stat); |
| 115 | if (!ret) |
| 116 | ret = cp_stat64(statbuf, &stat); |
| 117 | return ret; |
| 118 | } |
| 119 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 120 | COMPAT_SYSCALL_DEFINE2(x86_fstat64, unsigned int, fd, |
| 121 | struct stat64 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | struct kstat stat; |
| 124 | int ret = vfs_fstat(fd, &stat); |
| 125 | if (!ret) |
| 126 | ret = cp_stat64(statbuf, &stat); |
| 127 | return ret; |
| 128 | } |
| 129 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 130 | COMPAT_SYSCALL_DEFINE4(x86_fstatat, unsigned int, dfd, |
| 131 | const char __user *, filename, |
| 132 | struct stat64 __user *, statbuf, int, flag) |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 133 | { |
| 134 | struct kstat stat; |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 135 | int error; |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 136 | |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 137 | error = vfs_fstatat(dfd, filename, &stat, flag); |
| 138 | if (error) |
| 139 | return error; |
| 140 | return cp_stat64(statbuf, &stat); |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 141 | } |
| 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /* |
| 144 | * Linux/i386 didn't use to be able to handle more than |
| 145 | * 4 system call parameters, so these system calls used a memory |
| 146 | * block for parameter passing.. |
| 147 | */ |
| 148 | |
Christoph Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 149 | struct mmap_arg_struct32 { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | unsigned int addr; |
| 151 | unsigned int len; |
| 152 | unsigned int prot; |
| 153 | unsigned int flags; |
| 154 | unsigned int fd; |
| 155 | unsigned int offset; |
| 156 | }; |
| 157 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 158 | COMPAT_SYSCALL_DEFINE1(x86_mmap, struct mmap_arg_struct32 __user *, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Christoph Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 160 | struct mmap_arg_struct32 a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | if (copy_from_user(&a, arg, sizeof(a))) |
| 163 | return -EFAULT; |
| 164 | |
| 165 | if (a.offset & ~PAGE_MASK) |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 166 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 168 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 169 | a.offset>>PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 172 | /* warning: next two assume little endian */ |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 173 | COMPAT_SYSCALL_DEFINE5(x86_pread, unsigned int, fd, char __user *, ubuf, |
| 174 | u32, count, u32, poslo, u32, poshi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
| 176 | return sys_pread64(fd, ubuf, count, |
| 177 | ((loff_t)AA(poshi) << 32) | AA(poslo)); |
| 178 | } |
| 179 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 180 | COMPAT_SYSCALL_DEFINE5(x86_pwrite, unsigned int, fd, const char __user *, ubuf, |
| 181 | u32, count, u32, poslo, u32, poshi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { |
| 183 | return sys_pwrite64(fd, ubuf, count, |
| 184 | ((loff_t)AA(poshi) << 32) | AA(poslo)); |
| 185 | } |
| 186 | |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /* |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 189 | * Some system calls that need sign extended arguments. This could be |
| 190 | * done by a generic wrapper. |
| 191 | */ |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 192 | COMPAT_SYSCALL_DEFINE6(x86_fadvise64_64, int, fd, __u32, offset_low, |
| 193 | __u32, offset_high, __u32, len_low, __u32, len_high, |
| 194 | int, advice) |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 195 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | return sys_fadvise64_64(fd, |
| 197 | (((u64)offset_high)<<32) | offset_low, |
| 198 | (((u64)len_high)<<32) | len_low, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 199 | advice); |
| 200 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 202 | COMPAT_SYSCALL_DEFINE4(x86_readahead, int, fd, unsigned int, off_lo, |
| 203 | unsigned int, off_hi, size_t, count) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 204 | { |
| 205 | return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count); |
| 206 | } |
| 207 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 208 | COMPAT_SYSCALL_DEFINE6(x86_sync_file_range, int, fd, unsigned int, off_low, |
| 209 | unsigned int, off_hi, unsigned int, n_low, |
| 210 | unsigned int, n_hi, int, flags) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 211 | { |
| 212 | return sys_sync_file_range(fd, |
| 213 | ((u64)off_hi << 32) | off_low, |
| 214 | ((u64)n_hi << 32) | n_low, flags); |
| 215 | } |
| 216 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 217 | COMPAT_SYSCALL_DEFINE5(x86_fadvise64, int, fd, unsigned int, offset_lo, |
| 218 | unsigned int, offset_hi, size_t, len, int, advice) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 219 | { |
| 220 | return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo, |
| 221 | len, advice); |
| 222 | } |
Amit Arora | 97ac735 | 2007-07-17 21:42:44 -0400 | [diff] [blame] | 223 | |
Dominik Brodowski | 4ddb45d | 2018-03-06 22:18:07 +0100 | [diff] [blame] | 224 | COMPAT_SYSCALL_DEFINE6(x86_fallocate, int, fd, int, mode, |
| 225 | unsigned int, offset_lo, unsigned int, offset_hi, |
| 226 | unsigned int, len_lo, unsigned int, len_hi) |
Amit Arora | 97ac735 | 2007-07-17 21:42:44 -0400 | [diff] [blame] | 227 | { |
| 228 | return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo, |
| 229 | ((u64)len_hi << 32) | len_lo); |
| 230 | } |
Dominik Brodowski | af52201 | 2018-03-06 22:18:08 +0100 | [diff] [blame] | 231 | |
| 232 | /* |
| 233 | * The 32-bit clone ABI is CONFIG_CLONE_BACKWARDS |
| 234 | */ |
| 235 | COMPAT_SYSCALL_DEFINE5(x86_clone, unsigned long, clone_flags, |
| 236 | unsigned long, newsp, int __user *, parent_tidptr, |
| 237 | unsigned long, tls_val, int __user *, child_tidptr) |
| 238 | { |
Dominik Brodowski | 37db219 | 2018-03-18 08:11:26 +0100 | [diff] [blame] | 239 | return _do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr, |
Dominik Brodowski | af52201 | 2018-03-06 22:18:08 +0100 | [diff] [blame] | 240 | tls_val); |
| 241 | } |