blob: 3bc03446ec441065b42b25128dc644f51fa759b4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
Thomas Gleixnerc202f292008-01-30 13:30:08 +01004 * sys_sparc32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (C) 2000 VA Linux Co
7 * Copyright (C) 2000 Don Dugger <n0ano@valinux.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +01008 * 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 Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (C) 2000 Hewlett-Packard Co.
12 * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010013 * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * These routines maintain argument size conversion between 32bit and 64bit
Thomas Gleixnerc202f292008-01-30 13:30:08 +010016 * environment. In 2.5 most of this should be moved to a generic directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * This file assumes that there is a hole at the end of user address space.
Thomas Gleixnerc202f292008-01-30 13:30:08 +010019 *
20 * Some of the functions are LE specific currently. These are
21 * hopefully all marked. This should be fixed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
25#include <linux/sched.h>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010026#include <linux/fs.h>
27#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/signal.h>
29#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/times.h>
31#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/poll.h>
35#include <linux/personality.h>
36#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/compat.h>
39#include <linux/vfs.h>
40#include <linux/ptrace.h>
41#include <linux/highuid.h>
Andi Kleenddb15ec2006-09-26 10:52:33 +020042#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/mman.h>
45#include <asm/types.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080046#include <linux/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070047#include <linux/atomic.h>
Arnaldo Carvalho de Melo28d23122008-02-07 21:03:04 -020048#include <asm/vgtod.h>
Jaswinder Singh Rajput2f06de02008-12-27 21:37:10 +053049#include <asm/sys_ia32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define AA(__x) ((unsigned long)(__x))
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +010054COMPAT_SYSCALL_DEFINE3(x86_truncate64, const char __user *, filename,
55 unsigned long, offset_low, unsigned long, offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low);
58}
59
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +010060COMPAT_SYSCALL_DEFINE3(x86_ftruncate64, unsigned int, fd,
61 unsigned long, offset_low, unsigned long, offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
64}
65
Thomas Gleixnerc202f292008-01-30 13:30:08 +010066/*
67 * Another set for IA32/LFS -- x86_64 struct stat is different due to
68 * support for 64bit inode numbers.
69 */
70static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 typeof(ubuf->st_uid) uid = 0;
73 typeof(ubuf->st_gid) gid = 0;
Eric W. Biedermana7c19382012-02-09 09:10:30 -080074 SET_UID(uid, from_kuid_munged(current_user_ns(), stat->uid));
75 SET_GID(gid, from_kgid_munged(current_user_ns(), stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
77 __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +010078 __put_user(stat->ino, &ubuf->__st_ino) ||
79 __put_user(stat->ino, &ubuf->st_ino) ||
80 __put_user(stat->mode, &ubuf->st_mode) ||
81 __put_user(stat->nlink, &ubuf->st_nlink) ||
82 __put_user(uid, &ubuf->st_uid) ||
83 __put_user(gid, &ubuf->st_gid) ||
84 __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) ||
85 __put_user(stat->size, &ubuf->st_size) ||
86 __put_user(stat->atime.tv_sec, &ubuf->st_atime) ||
87 __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) ||
88 __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) ||
89 __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
90 __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) ||
91 __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
92 __put_user(stat->blksize, &ubuf->st_blksize) ||
93 __put_user(stat->blocks, &ubuf->st_blocks))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return -EFAULT;
95 return 0;
96}
97
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +010098COMPAT_SYSCALL_DEFINE2(x86_stat64, const char __user *, filename,
99 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct kstat stat;
102 int ret = vfs_stat(filename, &stat);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!ret)
105 ret = cp_stat64(statbuf, &stat);
106 return ret;
107}
108
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100109COMPAT_SYSCALL_DEFINE2(x86_lstat64, const char __user *, filename,
110 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct kstat stat;
113 int ret = vfs_lstat(filename, &stat);
114 if (!ret)
115 ret = cp_stat64(statbuf, &stat);
116 return ret;
117}
118
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100119COMPAT_SYSCALL_DEFINE2(x86_fstat64, unsigned int, fd,
120 struct stat64 __user *, statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct kstat stat;
123 int ret = vfs_fstat(fd, &stat);
124 if (!ret)
125 ret = cp_stat64(statbuf, &stat);
126 return ret;
127}
128
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100129COMPAT_SYSCALL_DEFINE4(x86_fstatat, unsigned int, dfd,
130 const char __user *, filename,
131 struct stat64 __user *, statbuf, int, flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800132{
133 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400134 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800135
Oleg Drokin0112fc22009-04-08 20:05:42 +0400136 error = vfs_fstatat(dfd, filename, &stat, flag);
137 if (error)
138 return error;
139 return cp_stat64(statbuf, &stat);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Linux/i386 didn't use to be able to handle more than
144 * 4 system call parameters, so these system calls used a memory
145 * block for parameter passing..
146 */
147
Christoph Hellwiga4679372010-03-10 15:21:15 -0800148struct mmap_arg_struct32 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned int addr;
150 unsigned int len;
151 unsigned int prot;
152 unsigned int flags;
153 unsigned int fd;
154 unsigned int offset;
155};
156
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100157COMPAT_SYSCALL_DEFINE1(x86_mmap, struct mmap_arg_struct32 __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Christoph Hellwiga4679372010-03-10 15:21:15 -0800159 struct mmap_arg_struct32 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (copy_from_user(&a, arg, sizeof(a)))
162 return -EFAULT;
163
164 if (a.offset & ~PAGE_MASK)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100165 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Al Virof8b72562009-11-30 17:37:04 -0500167 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100168 a.offset>>PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100171COMPAT_SYSCALL_DEFINE3(x86_waitpid, compat_pid_t, pid, unsigned int __user *,
172 stat_addr, int, options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 return compat_sys_wait4(pid, stat_addr, options, NULL);
175}
176
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100177/* warning: next two assume little endian */
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100178COMPAT_SYSCALL_DEFINE5(x86_pread, unsigned int, fd, char __user *, ubuf,
179 u32, count, u32, poslo, u32, poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 return sys_pread64(fd, ubuf, count,
182 ((loff_t)AA(poshi) << 32) | AA(poslo));
183}
184
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100185COMPAT_SYSCALL_DEFINE5(x86_pwrite, unsigned int, fd, const char __user *, ubuf,
186 u32, count, u32, poslo, u32, poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 return sys_pwrite64(fd, ubuf, count,
189 ((loff_t)AA(poshi) << 32) | AA(poslo));
190}
191
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100194 * Some system calls that need sign extended arguments. This could be
195 * done by a generic wrapper.
196 */
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100197COMPAT_SYSCALL_DEFINE6(x86_fadvise64_64, int, fd, __u32, offset_low,
198 __u32, offset_high, __u32, len_low, __u32, len_high,
199 int, advice)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return sys_fadvise64_64(fd,
202 (((u64)offset_high)<<32) | offset_low,
203 (((u64)len_high)<<32) | len_low,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100204 advice);
205}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100207COMPAT_SYSCALL_DEFINE4(x86_readahead, int, fd, unsigned int, off_lo,
208 unsigned int, off_hi, size_t, count)
Andi Kleene412ac42007-06-20 12:23:30 +0200209{
210 return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
211}
212
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100213COMPAT_SYSCALL_DEFINE6(x86_sync_file_range, int, fd, unsigned int, off_low,
214 unsigned int, off_hi, unsigned int, n_low,
215 unsigned int, n_hi, int, flags)
Andi Kleene412ac42007-06-20 12:23:30 +0200216{
217 return sys_sync_file_range(fd,
218 ((u64)off_hi << 32) | off_low,
219 ((u64)n_hi << 32) | n_low, flags);
220}
221
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100222COMPAT_SYSCALL_DEFINE5(x86_fadvise64, int, fd, unsigned int, offset_lo,
223 unsigned int, offset_hi, size_t, len, int, advice)
Andi Kleene412ac42007-06-20 12:23:30 +0200224{
225 return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
226 len, advice);
227}
Amit Arora97ac7352007-07-17 21:42:44 -0400228
Dominik Brodowski4ddb45d2018-03-06 22:18:07 +0100229COMPAT_SYSCALL_DEFINE6(x86_fallocate, int, fd, int, mode,
230 unsigned int, offset_lo, unsigned int, offset_hi,
231 unsigned int, len_lo, unsigned int, len_hi)
Amit Arora97ac7352007-07-17 21:42:44 -0400232{
233 return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
234 ((u64)len_hi << 32) | len_lo);
235}