blob: f00afdf61e6735bbee01085fa24dc42ea529bed7 [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/smp_lock.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mman.h>
44#include <asm/types.h>
45#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/ia32.h>
Arnaldo Carvalho de Melo28d23122008-02-07 21:03:04 -020048#include <asm/vgtod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define AA(__x) ((unsigned long)(__x))
51
52int cp_compat_stat(struct kstat *kbuf, struct compat_stat __user *ubuf)
53{
David Howellsafefdbb2006-10-03 01:13:46 -070054 compat_ino_t ino;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 typeof(ubuf->st_uid) uid = 0;
57 typeof(ubuf->st_gid) gid = 0;
58 SET_UID(uid, kbuf->uid);
59 SET_GID(gid, kbuf->gid);
60 if (!old_valid_dev(kbuf->dev) || !old_valid_dev(kbuf->rdev))
61 return -EOVERFLOW;
62 if (kbuf->size >= 0x7fffffff)
63 return -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -070064 ino = kbuf->ino;
65 if (sizeof(ino) < sizeof(kbuf->ino) && ino != kbuf->ino)
66 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct compat_stat)) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +010068 __put_user(old_encode_dev(kbuf->dev), &ubuf->st_dev) ||
69 __put_user(ino, &ubuf->st_ino) ||
70 __put_user(kbuf->mode, &ubuf->st_mode) ||
71 __put_user(kbuf->nlink, &ubuf->st_nlink) ||
72 __put_user(uid, &ubuf->st_uid) ||
73 __put_user(gid, &ubuf->st_gid) ||
74 __put_user(old_encode_dev(kbuf->rdev), &ubuf->st_rdev) ||
75 __put_user(kbuf->size, &ubuf->st_size) ||
76 __put_user(kbuf->atime.tv_sec, &ubuf->st_atime) ||
77 __put_user(kbuf->atime.tv_nsec, &ubuf->st_atime_nsec) ||
78 __put_user(kbuf->mtime.tv_sec, &ubuf->st_mtime) ||
79 __put_user(kbuf->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
80 __put_user(kbuf->ctime.tv_sec, &ubuf->st_ctime) ||
81 __put_user(kbuf->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
82 __put_user(kbuf->blksize, &ubuf->st_blksize) ||
83 __put_user(kbuf->blocks, &ubuf->st_blocks))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return -EFAULT;
85 return 0;
86}
87
Thomas Gleixnerc202f292008-01-30 13:30:08 +010088asmlinkage long sys32_truncate64(char __user *filename,
89 unsigned long offset_low,
90 unsigned long offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low);
93}
94
Thomas Gleixnerc202f292008-01-30 13:30:08 +010095asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
96 unsigned long offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
99}
100
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100101/*
102 * Another set for IA32/LFS -- x86_64 struct stat is different due to
103 * support for 64bit inode numbers.
104 */
105static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 typeof(ubuf->st_uid) uid = 0;
108 typeof(ubuf->st_gid) gid = 0;
109 SET_UID(uid, stat->uid);
110 SET_GID(gid, stat->gid);
111 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
112 __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100113 __put_user(stat->ino, &ubuf->__st_ino) ||
114 __put_user(stat->ino, &ubuf->st_ino) ||
115 __put_user(stat->mode, &ubuf->st_mode) ||
116 __put_user(stat->nlink, &ubuf->st_nlink) ||
117 __put_user(uid, &ubuf->st_uid) ||
118 __put_user(gid, &ubuf->st_gid) ||
119 __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) ||
120 __put_user(stat->size, &ubuf->st_size) ||
121 __put_user(stat->atime.tv_sec, &ubuf->st_atime) ||
122 __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) ||
123 __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) ||
124 __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
125 __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) ||
126 __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
127 __put_user(stat->blksize, &ubuf->st_blksize) ||
128 __put_user(stat->blocks, &ubuf->st_blocks))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -EFAULT;
130 return 0;
131}
132
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100133asmlinkage long sys32_stat64(char __user *filename,
134 struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct kstat stat;
137 int ret = vfs_stat(filename, &stat);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!ret)
140 ret = cp_stat64(statbuf, &stat);
141 return ret;
142}
143
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100144asmlinkage long sys32_lstat64(char __user *filename,
145 struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct kstat stat;
148 int ret = vfs_lstat(filename, &stat);
149 if (!ret)
150 ret = cp_stat64(statbuf, &stat);
151 return ret;
152}
153
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100154asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct kstat stat;
157 int ret = vfs_fstat(fd, &stat);
158 if (!ret)
159 ret = cp_stat64(statbuf, &stat);
160 return ret;
161}
162
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100163asmlinkage long sys32_fstatat(unsigned int dfd, char __user *filename,
164 struct stat64 __user *statbuf, int flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800165{
166 struct kstat stat;
167 int error = -EINVAL;
168
169 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
170 goto out;
171
172 if (flag & AT_SYMLINK_NOFOLLOW)
173 error = vfs_lstat_fd(dfd, filename, &stat);
174 else
175 error = vfs_stat_fd(dfd, filename, &stat);
176
177 if (!error)
178 error = cp_stat64(statbuf, &stat);
179
180out:
181 return error;
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 * Linux/i386 didn't use to be able to handle more than
186 * 4 system call parameters, so these system calls used a memory
187 * block for parameter passing..
188 */
189
190struct mmap_arg_struct {
191 unsigned int addr;
192 unsigned int len;
193 unsigned int prot;
194 unsigned int flags;
195 unsigned int fd;
196 unsigned int offset;
197};
198
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100199asmlinkage long sys32_mmap(struct mmap_arg_struct __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 struct mmap_arg_struct a;
202 struct file *file = NULL;
203 unsigned long retval;
204 struct mm_struct *mm ;
205
206 if (copy_from_user(&a, arg, sizeof(a)))
207 return -EFAULT;
208
209 if (a.offset & ~PAGE_MASK)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100210 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (!(a.flags & MAP_ANONYMOUS)) {
213 file = fget(a.fd);
214 if (!file)
215 return -EBADF;
216 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100217
218 mm = current->mm;
219 down_write(&mm->mmap_sem);
220 retval = do_mmap_pgoff(file, a.addr, a.len, a.prot, a.flags,
221 a.offset>>PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (file)
223 fput(file);
224
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100225 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return retval;
228}
229
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100230asmlinkage long sys32_mprotect(unsigned long start, size_t len,
231 unsigned long prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100233 return sys_mprotect(start, len, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100236asmlinkage long sys32_pipe(int __user *fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 int retval;
239 int fds[2];
240
241 retval = do_pipe(fds);
242 if (retval)
243 goto out;
244 if (copy_to_user(fd, fds, sizeof(fds)))
245 retval = -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100246out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return retval;
248}
249
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100250asmlinkage long sys32_rt_sigaction(int sig, struct sigaction32 __user *act,
251 struct sigaction32 __user *oact,
252 unsigned int sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct k_sigaction new_ka, old_ka;
255 int ret;
256 compat_sigset_t set32;
257
258 /* XXX: Don't preclude handling different sized sigset_t's. */
259 if (sigsetsize != sizeof(compat_sigset_t))
260 return -EINVAL;
261
262 if (act) {
263 compat_uptr_t handler, restorer;
264
265 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
266 __get_user(handler, &act->sa_handler) ||
267 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100268 __get_user(restorer, &act->sa_restorer) ||
269 __copy_from_user(&set32, &act->sa_mask,
270 sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -EFAULT;
272 new_ka.sa.sa_handler = compat_ptr(handler);
273 new_ka.sa.sa_restorer = compat_ptr(restorer);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100274
275 /*
276 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
277 * than _NSIG_WORDS << 1
278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 switch (_NSIG_WORDS) {
280 case 4: new_ka.sa.sa_mask.sig[3] = set32.sig[6]
281 | (((long)set32.sig[7]) << 32);
282 case 3: new_ka.sa.sa_mask.sig[2] = set32.sig[4]
283 | (((long)set32.sig[5]) << 32);
284 case 2: new_ka.sa.sa_mask.sig[1] = set32.sig[2]
285 | (((long)set32.sig[3]) << 32);
286 case 1: new_ka.sa.sa_mask.sig[0] = set32.sig[0]
287 | (((long)set32.sig[1]) << 32);
288 }
289 }
290
291 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
292
293 if (!ret && oact) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100294 /*
295 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
296 * than _NSIG_WORDS << 1
297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 switch (_NSIG_WORDS) {
299 case 4:
300 set32.sig[7] = (old_ka.sa.sa_mask.sig[3] >> 32);
301 set32.sig[6] = old_ka.sa.sa_mask.sig[3];
302 case 3:
303 set32.sig[5] = (old_ka.sa.sa_mask.sig[2] >> 32);
304 set32.sig[4] = old_ka.sa.sa_mask.sig[2];
305 case 2:
306 set32.sig[3] = (old_ka.sa.sa_mask.sig[1] >> 32);
307 set32.sig[2] = old_ka.sa.sa_mask.sig[1];
308 case 1:
309 set32.sig[1] = (old_ka.sa.sa_mask.sig[0] >> 32);
310 set32.sig[0] = old_ka.sa.sa_mask.sig[0];
311 }
312 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100313 __put_user(ptr_to_compat(old_ka.sa.sa_handler),
314 &oact->sa_handler) ||
315 __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
316 &oact->sa_restorer) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100318 __copy_to_user(&oact->sa_mask, &set32,
319 sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EFAULT;
321 }
322
323 return ret;
324}
325
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100326asmlinkage long sys32_sigaction(int sig, struct old_sigaction32 __user *act,
327 struct old_sigaction32 __user *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100329 struct k_sigaction new_ka, old_ka;
330 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100332 if (act) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 compat_old_sigset_t mask;
334 compat_uptr_t handler, restorer;
335
336 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
337 __get_user(handler, &act->sa_handler) ||
338 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
339 __get_user(restorer, &act->sa_restorer) ||
340 __get_user(mask, &act->sa_mask))
341 return -EFAULT;
342
343 new_ka.sa.sa_handler = compat_ptr(handler);
344 new_ka.sa.sa_restorer = compat_ptr(restorer);
345
346 siginitset(&new_ka.sa.sa_mask, mask);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100349 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (!ret && oact) {
352 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100353 __put_user(ptr_to_compat(old_ka.sa.sa_handler),
354 &oact->sa_handler) ||
355 __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
356 &oact->sa_restorer) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
358 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
359 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 return ret;
363}
364
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100365asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
366 compat_sigset_t __user *oset,
367 unsigned int sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 sigset_t s;
370 compat_sigset_t s32;
371 int ret;
372 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (set) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100375 if (copy_from_user(&s32, set, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -EFAULT;
377 switch (_NSIG_WORDS) {
378 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
379 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
380 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
381 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
382 }
383 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100384 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200385 ret = sys_rt_sigprocmask(how,
386 set ? (sigset_t __user *)&s : NULL,
387 oset ? (sigset_t __user *)&s : NULL,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100388 sigsetsize);
389 set_fs(old_fs);
390 if (ret)
391 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (oset) {
393 switch (_NSIG_WORDS) {
394 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
395 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
396 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
397 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
398 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100399 if (copy_to_user(oset, &s32, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -EFAULT;
401 }
402 return 0;
403}
404
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100405static inline long get_tv32(struct timeval *o, struct compat_timeval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100407 int err = -EFAULT;
408
409 if (access_ok(VERIFY_READ, i, sizeof(*i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 err = __get_user(o->tv_sec, &i->tv_sec);
411 err |= __get_user(o->tv_usec, &i->tv_usec);
412 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100416static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 int err = -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100419
420 if (access_ok(VERIFY_WRITE, o, sizeof(*o))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 err = __put_user(i->tv_sec, &o->tv_sec);
422 err |= __put_user(i->tv_usec, &o->tv_usec);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100423 }
424 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100427asmlinkage long sys32_alarm(unsigned int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800429 return alarm_setitimer(seconds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100432/*
433 * Translations due to time_t size differences. Which affects all
434 * sorts of things, like timeval and itimerval.
435 */
436asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv,
437 struct timezone __user *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 if (tv) {
440 struct timeval ktv;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 do_gettimeofday(&ktv);
443 if (put_tv32(tv, &ktv))
444 return -EFAULT;
445 }
446 if (tz) {
447 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
448 return -EFAULT;
449 }
450 return 0;
451}
452
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100453asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv,
454 struct timezone __user *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct timeval ktv;
457 struct timespec kts;
458 struct timezone ktz;
459
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100460 if (tv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (get_tv32(&ktv, tv))
462 return -EFAULT;
463 kts.tv_sec = ktv.tv_sec;
464 kts.tv_nsec = ktv.tv_usec * NSEC_PER_USEC;
465 }
466 if (tz) {
467 if (copy_from_user(&ktz, tz, sizeof(ktz)))
468 return -EFAULT;
469 }
470
471 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
472}
473
474struct sel_arg_struct {
475 unsigned int n;
476 unsigned int inp;
477 unsigned int outp;
478 unsigned int exp;
479 unsigned int tvp;
480};
481
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100482asmlinkage long sys32_old_select(struct sel_arg_struct __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct sel_arg_struct a;
485
486 if (copy_from_user(&a, arg, sizeof(a)))
487 return -EFAULT;
488 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
489 compat_ptr(a.exp), compat_ptr(a.tvp));
490}
491
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100492asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int *stat_addr,
493 int options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 return compat_sys_wait4(pid, stat_addr, options, NULL);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/* 32-bit timeval and related flotsam. */
499
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100500asmlinkage long sys32_sysfs(int option, u32 arg1, u32 arg2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 return sys_sysfs(option, arg1, arg2);
503}
504
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100505asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
506 struct compat_timespec __user *interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 struct timespec t;
509 int ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100510 mm_segment_t old_fs = get_fs();
511
512 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200513 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100514 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (put_compat_timespec(&t, interval))
516 return -EFAULT;
517 return ret;
518}
519
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100520asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
521 compat_size_t sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 sigset_t s;
524 compat_sigset_t s32;
525 int ret;
526 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100527
528 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200529 ret = sys_rt_sigpending((sigset_t __user *)&s, sigsetsize);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100530 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!ret) {
532 switch (_NSIG_WORDS) {
533 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
534 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
535 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
536 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
537 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100538 if (copy_to_user(set, &s32, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return -EFAULT;
540 }
541 return ret;
542}
543
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100544asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
545 compat_siginfo_t __user *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 siginfo_t info;
548 int ret;
549 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (copy_siginfo_from_user32(&info, uinfo))
552 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100553 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200554 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *)&info);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100555 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return ret;
557}
558
559/* These are here just in case some old ia32 binary calls it. */
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100560asmlinkage long sys32_pause(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 current->state = TASK_INTERRUPTIBLE;
563 schedule();
564 return -ERESTARTNOHAND;
565}
566
567
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700568#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569struct sysctl_ia32 {
570 unsigned int name;
571 int nlen;
572 unsigned int oldval;
573 unsigned int oldlenp;
574 unsigned int newval;
575 unsigned int newlen;
576 unsigned int __unused[4];
577};
578
579
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100580asmlinkage long sys32_sysctl(struct sysctl_ia32 __user *args32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 struct sysctl_ia32 a32;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100583 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 void __user *oldvalp, *newvalp;
585 size_t oldlen;
586 int __user *namep;
587 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100589 if (copy_from_user(&a32, args32, sizeof(a32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return -EFAULT;
591
592 /*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100593 * We need to pre-validate these because we have to disable
594 * address checking before calling do_sysctl() because of
595 * OLDLEN but we can't run the risk of the user specifying bad
596 * addresses here. Well, since we're dealing with 32 bit
597 * addresses, we KNOW that access_ok() will always succeed, so
598 * this is an expensive NOP, but so what...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 */
600 namep = compat_ptr(a32.name);
601 oldvalp = compat_ptr(a32.oldval);
602 newvalp = compat_ptr(a32.newval);
603
604 if ((oldvalp && get_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
605 || !access_ok(VERIFY_WRITE, namep, 0)
606 || !access_ok(VERIFY_WRITE, oldvalp, 0)
607 || !access_ok(VERIFY_WRITE, newvalp, 0))
608 return -EFAULT;
609
610 set_fs(KERNEL_DS);
611 lock_kernel();
Andi Kleenddb15ec2006-09-26 10:52:33 +0200612 ret = do_sysctl(namep, a32.nlen, oldvalp, (size_t __user *)&oldlen,
613 newvalp, (size_t) a32.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 unlock_kernel();
615 set_fs(old_fs);
616
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100617 if (oldvalp && put_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return -EFAULT;
619
620 return ret;
621}
622#endif
623
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100624/* warning: next two assume little endian */
625asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count,
626 u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 return sys_pread64(fd, ubuf, count,
629 ((loff_t)AA(poshi) << 32) | AA(poslo));
630}
631
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100632asmlinkage long sys32_pwrite(unsigned int fd, char __user *ubuf, u32 count,
633 u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 return sys_pwrite64(fd, ubuf, count,
636 ((loff_t)AA(poshi) << 32) | AA(poslo));
637}
638
639
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100640asmlinkage long sys32_personality(unsigned long personality)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 int ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100643
644 if (personality(current->personality) == PER_LINUX32 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 personality == PER_LINUX)
646 personality = PER_LINUX32;
647 ret = sys_personality(personality);
648 if (ret == PER_LINUX32)
649 ret = PER_LINUX;
650 return ret;
651}
652
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100653asmlinkage long sys32_sendfile(int out_fd, int in_fd,
654 compat_off_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 mm_segment_t old_fs = get_fs();
657 int ret;
658 off_t of;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (offset && get_user(of, offset))
661 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200664 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL,
665 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 set_fs(old_fs);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100667
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200668 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return ret;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673asmlinkage long sys32_mmap2(unsigned long addr, unsigned long len,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100674 unsigned long prot, unsigned long flags,
675 unsigned long fd, unsigned long pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct mm_struct *mm = current->mm;
678 unsigned long error;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100679 struct file *file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
682 if (!(flags & MAP_ANONYMOUS)) {
683 file = fget(fd);
684 if (!file)
685 return -EBADF;
686 }
687
688 down_write(&mm->mmap_sem);
689 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
690 up_write(&mm->mmap_sem);
691
692 if (file)
693 fput(file);
694 return error;
695}
696
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100697asmlinkage long sys32_olduname(struct oldold_utsname __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100699 char *arch = "x86_64";
Andi Kleen26c13f22006-09-26 10:52:40 +0200700 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 if (!name)
703 return -EFAULT;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700704 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return -EFAULT;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700706
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100707 down_read(&uts_sem);
708
709 err = __copy_to_user(&name->sysname, &utsname()->sysname,
710 __OLD_UTS_LEN);
711 err |= __put_user(0, name->sysname+__OLD_UTS_LEN);
712 err |= __copy_to_user(&name->nodename, &utsname()->nodename,
713 __OLD_UTS_LEN);
714 err |= __put_user(0, name->nodename+__OLD_UTS_LEN);
715 err |= __copy_to_user(&name->release, &utsname()->release,
716 __OLD_UTS_LEN);
717 err |= __put_user(0, name->release+__OLD_UTS_LEN);
718 err |= __copy_to_user(&name->version, &utsname()->version,
719 __OLD_UTS_LEN);
720 err |= __put_user(0, name->version+__OLD_UTS_LEN);
721
722 if (personality(current->personality) == PER_LINUX32)
723 arch = "i686";
724
725 err |= __copy_to_user(&name->machine, arch, strlen(arch) + 1);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700726
727 up_read(&uts_sem);
728
729 err = err ? -EFAULT : 0;
730
731 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100734long sys32_uname(struct old_utsname __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 int err;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (!name)
739 return -EFAULT;
740 down_read(&uts_sem);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100741 err = copy_to_user(name, utsname(), sizeof(*name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 up_read(&uts_sem);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100743 if (personality(current->personality) == PER_LINUX32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 err |= copy_to_user(&name->machine, "i686", 5);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100745
746 return err ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749long sys32_ustat(unsigned dev, struct ustat32 __user *u32p)
750{
751 struct ustat u;
752 mm_segment_t seg;
753 int ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100754
755 seg = get_fs();
756 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200757 ret = sys_ustat(dev, (struct ustat __user *)&u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 set_fs(seg);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100759 if (ret < 0)
760 return ret;
761
762 if (!access_ok(VERIFY_WRITE, u32p, sizeof(struct ustat32)) ||
763 __put_user((__u32) u.f_tfree, &u32p->f_tfree) ||
764 __put_user((__u32) u.f_tinode, &u32p->f_tfree) ||
765 __copy_to_user(&u32p->f_fname, u.f_fname, sizeof(u.f_fname)) ||
766 __copy_to_user(&u32p->f_fpack, u.f_fpack, sizeof(u.f_fpack)))
767 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100769}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771asmlinkage long sys32_execve(char __user *name, compat_uptr_t __user *argv,
772 compat_uptr_t __user *envp, struct pt_regs *regs)
773{
774 long error;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100775 char *filename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 filename = getname(name);
778 error = PTR_ERR(filename);
779 if (IS_ERR(filename))
780 return error;
781 error = compat_do_execve(filename, argv, envp, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 putname(filename);
783 return error;
784}
785
786asmlinkage long sys32_clone(unsigned int clone_flags, unsigned int newsp,
787 struct pt_regs *regs)
788{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100789 void __user *parent_tid = (void __user *)regs->dx;
790 void __user *child_tid = (void __user *)regs->di;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (!newsp)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100793 newsp = regs->sp;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100794 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100798 * Some system calls that need sign extended arguments. This could be
799 * done by a generic wrapper.
800 */
801long sys32_lseek(unsigned int fd, int offset, unsigned int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 return sys_lseek(fd, offset, whence);
804}
805
806long sys32_kill(int pid, int sig)
807{
808 return sys_kill(pid, sig);
809}
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100810
811long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 __u32 len_low, __u32 len_high, int advice)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100813{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return sys_fadvise64_64(fd,
815 (((u64)offset_high)<<32) | offset_low,
816 (((u64)len_high)<<32) | len_low,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100817 advice);
818}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820long sys32_vm86_warning(void)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100821{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct task_struct *me = current;
823 static char lastcomm[sizeof(me->comm)];
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (strncmp(lastcomm, me->comm, sizeof(lastcomm))) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100826 compat_printk(KERN_INFO
827 "%s: vm86 mode not supported on 64 bit kernel\n",
828 me->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 strncpy(lastcomm, me->comm, sizeof(lastcomm));
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return -ENOSYS;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100832}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834long sys32_lookup_dcookie(u32 addr_low, u32 addr_high,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100835 char __user *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
837 return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len);
838}
839
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100840asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi,
841 size_t count)
Andi Kleene412ac42007-06-20 12:23:30 +0200842{
843 return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
844}
845
846asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100847 unsigned n_low, unsigned n_hi, int flags)
Andi Kleene412ac42007-06-20 12:23:30 +0200848{
849 return sys_sync_file_range(fd,
850 ((u64)off_hi << 32) | off_low,
851 ((u64)n_hi << 32) | n_low, flags);
852}
853
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100854asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi,
855 size_t len, int advice)
Andi Kleene412ac42007-06-20 12:23:30 +0200856{
857 return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
858 len, advice);
859}
Amit Arora97ac7352007-07-17 21:42:44 -0400860
861asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo,
862 unsigned offset_hi, unsigned len_lo,
863 unsigned len_hi)
864{
865 return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
866 ((u64)len_hi << 32) | len_lo);
867}