blob: 719cd702b0a476e13abb42bfa28b0a7911204382 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
Thomas Gleixnerc202f292008-01-30 13:30:08 +01003 * sys_sparc32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2000 VA Linux Co
6 * Copyright (C) 2000 Don Dugger <n0ano@valinux.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +01007 * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com>
8 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
9 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright (C) 2000 Hewlett-Packard Co.
11 * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010012 * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * These routines maintain argument size conversion between 32bit and 64bit
Thomas Gleixnerc202f292008-01-30 13:30:08 +010015 * environment. In 2.5 most of this should be moved to a generic directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * This file assumes that there is a hole at the end of user address space.
Thomas Gleixnerc202f292008-01-30 13:30:08 +010018 *
19 * Some of the functions are LE specific currently. These are
20 * hopefully all marked. This should be fixed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
24#include <linux/sched.h>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010025#include <linux/fs.h>
26#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/signal.h>
28#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/times.h>
30#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/poll.h>
34#include <linux/personality.h>
35#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/compat.h>
38#include <linux/vfs.h>
39#include <linux/ptrace.h>
40#include <linux/highuid.h>
Andi Kleenddb15ec2006-09-26 10:52:33 +020041#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mman.h>
44#include <asm/types.h>
45#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Arnaldo Carvalho de Melo28d23122008-02-07 21:03:04 -020047#include <asm/vgtod.h>
Jaswinder Singh Rajput2f06de02008-12-27 21:37:10 +053048#include <asm/sys_ia32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define AA(__x) ((unsigned long)(__x))
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Howellsc7887322010-08-11 11:26:22 +010053asmlinkage long sys32_truncate64(const char __user *filename,
Thomas Gleixnerc202f292008-01-30 13:30:08 +010054 unsigned long offset_low,
55 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
Thomas Gleixnerc202f292008-01-30 13:30:08 +010060asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
61 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
David Howellsc7887322010-08-11 11:26:22 +010098asmlinkage long sys32_stat64(const char __user *filename,
Thomas Gleixnerc202f292008-01-30 13:30:08 +010099 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
David Howellsc7887322010-08-11 11:26:22 +0100109asmlinkage long sys32_lstat64(const char __user *filename,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100110 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
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100119asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct kstat stat;
122 int ret = vfs_fstat(fd, &stat);
123 if (!ret)
124 ret = cp_stat64(statbuf, &stat);
125 return ret;
126}
127
David Howellsc7887322010-08-11 11:26:22 +0100128asmlinkage long sys32_fstatat(unsigned int dfd, const char __user *filename,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100129 struct stat64 __user *statbuf, int flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800130{
131 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400132 int error;
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800133
Oleg Drokin0112fc22009-04-08 20:05:42 +0400134 error = vfs_fstatat(dfd, filename, &stat, flag);
135 if (error)
136 return error;
137 return cp_stat64(statbuf, &stat);
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
141 * Linux/i386 didn't use to be able to handle more than
142 * 4 system call parameters, so these system calls used a memory
143 * block for parameter passing..
144 */
145
Christoph Hellwiga4679372010-03-10 15:21:15 -0800146struct mmap_arg_struct32 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 unsigned int addr;
148 unsigned int len;
149 unsigned int prot;
150 unsigned int flags;
151 unsigned int fd;
152 unsigned int offset;
153};
154
Christoph Hellwiga4679372010-03-10 15:21:15 -0800155asmlinkage long sys32_mmap(struct mmap_arg_struct32 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Christoph Hellwiga4679372010-03-10 15:21:15 -0800157 struct mmap_arg_struct32 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 if (copy_from_user(&a, arg, sizeof(a)))
160 return -EFAULT;
161
162 if (a.offset & ~PAGE_MASK)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100163 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Al Virof8b72562009-11-30 17:37:04 -0500165 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100166 a.offset>>PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Mathias Krausef0002622012-09-02 23:31:40 +0200169asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int __user *stat_addr,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100170 int options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 return compat_sys_wait4(pid, stat_addr, options, NULL);
173}
174
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100175/* warning: next two assume little endian */
176asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count,
177 u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 return sys_pread64(fd, ubuf, count,
180 ((loff_t)AA(poshi) << 32) | AA(poslo));
181}
182
David Howellsc7887322010-08-11 11:26:22 +0100183asmlinkage long sys32_pwrite(unsigned int fd, const char __user *ubuf,
184 u32 count, u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 return sys_pwrite64(fd, ubuf, count,
187 ((loff_t)AA(poshi) << 32) | AA(poslo));
188}
189
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100192 * Some system calls that need sign extended arguments. This could be
193 * done by a generic wrapper.
194 */
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100195long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 __u32 len_low, __u32 len_high, int advice)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return sys_fadvise64_64(fd,
199 (((u64)offset_high)<<32) | offset_low,
200 (((u64)len_high)<<32) | len_low,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100201 advice);
202}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100204asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi,
205 size_t count)
Andi Kleene412ac42007-06-20 12:23:30 +0200206{
207 return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
208}
209
210asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100211 unsigned n_low, unsigned n_hi, int flags)
Andi Kleene412ac42007-06-20 12:23:30 +0200212{
213 return sys_sync_file_range(fd,
214 ((u64)off_hi << 32) | off_low,
215 ((u64)n_hi << 32) | n_low, flags);
216}
217
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100218asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi,
219 size_t len, int advice)
Andi Kleene412ac42007-06-20 12:23:30 +0200220{
221 return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
222 len, advice);
223}
Amit Arora97ac7352007-07-17 21:42:44 -0400224
225asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo,
226 unsigned offset_hi, unsigned len_lo,
227 unsigned len_hi)
228{
229 return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
230 ((u64)len_hi << 32) | len_lo);
231}