Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 3 | * sys_sparc32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2000 VA Linux Co |
| 6 | * Copyright (C) 2000 Don Dugger <n0ano@valinux.com> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 7 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Copyright (C) 2000 Hewlett-Packard Co. |
| 11 | * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 12 | * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * These routines maintain argument size conversion between 32bit and 64bit |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 15 | * 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] | 16 | * |
| 17 | * 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] | 18 | * |
| 19 | * Some of the functions are LE specific currently. These are |
| 20 | * hopefully all marked. This should be fixed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | */ |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/sched.h> |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 25 | #include <linux/fs.h> |
| 26 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/signal.h> |
| 28 | #include <linux/syscalls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/times.h> |
| 30 | #include <linux/utsname.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/uio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/poll.h> |
| 34 | #include <linux/personality.h> |
| 35 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/rwsem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/compat.h> |
| 38 | #include <linux/vfs.h> |
| 39 | #include <linux/ptrace.h> |
| 40 | #include <linux/highuid.h> |
Andi Kleen | ddb15ec | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 41 | #include <linux/sysctl.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 42 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/mman.h> |
| 44 | #include <asm/types.h> |
| 45 | #include <asm/uaccess.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 46 | #include <linux/atomic.h> |
Arnaldo Carvalho de Melo | 28d2312 | 2008-02-07 21:03:04 -0200 | [diff] [blame] | 47 | #include <asm/vgtod.h> |
Jaswinder Singh Rajput | 2f06de0 | 2008-12-27 21:37:10 +0530 | [diff] [blame] | 48 | #include <asm/sys_ia32.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #define AA(__x) ((unsigned long)(__x)) |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 53 | asmlinkage long sys32_truncate64(const char __user *filename, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 54 | unsigned long offset_low, |
| 55 | unsigned long offset_high) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
| 57 | return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low); |
| 58 | } |
| 59 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 60 | asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low, |
| 61 | unsigned long offset_high) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
| 63 | return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); |
| 64 | } |
| 65 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 66 | /* |
| 67 | * Another set for IA32/LFS -- x86_64 struct stat is different due to |
| 68 | * support for 64bit inode numbers. |
| 69 | */ |
| 70 | static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | typeof(ubuf->st_uid) uid = 0; |
| 73 | typeof(ubuf->st_gid) gid = 0; |
Eric W. Biederman | a7c1938 | 2012-02-09 09:10:30 -0800 | [diff] [blame] | 74 | SET_UID(uid, from_kuid_munged(current_user_ns(), stat->uid)); |
| 75 | SET_GID(gid, from_kgid_munged(current_user_ns(), stat->gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) || |
| 77 | __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) || |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 78 | __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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | return -EFAULT; |
| 95 | return 0; |
| 96 | } |
| 97 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 98 | asmlinkage long sys32_stat64(const char __user *filename, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 99 | struct stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | struct kstat stat; |
| 102 | int ret = vfs_stat(filename, &stat); |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | if (!ret) |
| 105 | ret = cp_stat64(statbuf, &stat); |
| 106 | return ret; |
| 107 | } |
| 108 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 109 | asmlinkage long sys32_lstat64(const char __user *filename, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 110 | struct stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
| 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 Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 119 | asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { |
| 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 Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 128 | asmlinkage long sys32_fstatat(unsigned int dfd, const char __user *filename, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 129 | struct stat64 __user *statbuf, int flag) |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 130 | { |
| 131 | struct kstat stat; |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 132 | int error; |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 133 | |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 134 | error = vfs_fstatat(dfd, filename, &stat, flag); |
| 135 | if (error) |
| 136 | return error; |
| 137 | return cp_stat64(statbuf, &stat); |
Ulrich Drepper | cff2b76 | 2006-02-11 17:55:47 -0800 | [diff] [blame] | 138 | } |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* |
| 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 Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 146 | struct mmap_arg_struct32 { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | 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 Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 155 | asmlinkage long sys32_mmap(struct mmap_arg_struct32 __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Christoph Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 157 | struct mmap_arg_struct32 a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | if (copy_from_user(&a, arg, sizeof(a))) |
| 160 | return -EFAULT; |
| 161 | |
| 162 | if (a.offset & ~PAGE_MASK) |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 163 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 165 | 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] | 166 | a.offset>>PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 169 | asmlinkage long sys32_mprotect(unsigned long start, size_t len, |
| 170 | unsigned long prot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 172 | return sys_mprotect(start, len, prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Mathias Krause | f000262 | 2012-09-02 23:31:40 +0200 | [diff] [blame] | 175 | asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int __user *stat_addr, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 176 | int options) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
| 178 | return compat_sys_wait4(pid, stat_addr, options, NULL); |
| 179 | } |
| 180 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 181 | /* warning: next two assume little endian */ |
| 182 | asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count, |
| 183 | u32 poslo, u32 poshi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | return sys_pread64(fd, ubuf, count, |
| 186 | ((loff_t)AA(poshi) << 32) | AA(poslo)); |
| 187 | } |
| 188 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 189 | asmlinkage long sys32_pwrite(unsigned int fd, const char __user *ubuf, |
| 190 | u32 count, u32 poslo, u32 poshi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
| 192 | return sys_pwrite64(fd, ubuf, count, |
| 193 | ((loff_t)AA(poshi) << 32) | AA(poslo)); |
| 194 | } |
| 195 | |
| 196 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 197 | asmlinkage long sys32_sendfile(int out_fd, int in_fd, |
| 198 | compat_off_t __user *offset, s32 count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
| 200 | mm_segment_t old_fs = get_fs(); |
| 201 | int ret; |
| 202 | off_t of; |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | if (offset && get_user(of, offset)) |
| 205 | return -EFAULT; |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | set_fs(KERNEL_DS); |
Andi Kleen | ddb15ec | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 208 | ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, |
| 209 | count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | set_fs(old_fs); |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 211 | |
Tsuneo.Yoshioka@f-secure.com | 83b942b | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 212 | if (offset && put_user(of, offset)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return ret; |
| 215 | } |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 218 | * Some system calls that need sign extended arguments. This could be |
| 219 | * done by a generic wrapper. |
| 220 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | long sys32_kill(int pid, int sig) |
| 222 | { |
| 223 | return sys_kill(pid, sig); |
| 224 | } |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 225 | |
| 226 | long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | __u32 len_low, __u32 len_high, int advice) |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 228 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return sys_fadvise64_64(fd, |
| 230 | (((u64)offset_high)<<32) | offset_low, |
| 231 | (((u64)len_high)<<32) | len_low, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 232 | advice); |
| 233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | long sys32_vm86_warning(void) |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 236 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | struct task_struct *me = current; |
| 238 | static char lastcomm[sizeof(me->comm)]; |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (strncmp(lastcomm, me->comm, sizeof(lastcomm))) { |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 241 | compat_printk(KERN_INFO |
| 242 | "%s: vm86 mode not supported on 64 bit kernel\n", |
| 243 | me->comm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | strncpy(lastcomm, me->comm, sizeof(lastcomm)); |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 245 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | return -ENOSYS; |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | long sys32_lookup_dcookie(u32 addr_low, u32 addr_high, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 250 | char __user *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
| 252 | return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len); |
| 253 | } |
| 254 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 255 | asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi, |
| 256 | size_t count) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 257 | { |
| 258 | return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count); |
| 259 | } |
| 260 | |
| 261 | asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi, |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 262 | unsigned n_low, unsigned n_hi, int flags) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 263 | { |
| 264 | return sys_sync_file_range(fd, |
| 265 | ((u64)off_hi << 32) | off_low, |
| 266 | ((u64)n_hi << 32) | n_low, flags); |
| 267 | } |
| 268 | |
Thomas Gleixner | c202f29 | 2008-01-30 13:30:08 +0100 | [diff] [blame] | 269 | asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi, |
| 270 | size_t len, int advice) |
Andi Kleen | e412ac4 | 2007-06-20 12:23:30 +0200 | [diff] [blame] | 271 | { |
| 272 | return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo, |
| 273 | len, advice); |
| 274 | } |
Amit Arora | 97ac735 | 2007-07-17 21:42:44 -0400 | [diff] [blame] | 275 | |
| 276 | asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo, |
| 277 | unsigned offset_hi, unsigned len_lo, |
| 278 | unsigned len_hi) |
| 279 | { |
| 280 | return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo, |
| 281 | ((u64)len_hi << 32) | len_lo); |
| 282 | } |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 283 | |
| 284 | asmlinkage long sys32_fanotify_mark(int fanotify_fd, unsigned int flags, |
| 285 | u32 mask_lo, u32 mask_hi, |
| 286 | int fd, const char __user *pathname) |
| 287 | { |
| 288 | return sys_fanotify_mark(fanotify_fd, flags, |
| 289 | ((u64)mask_hi << 32) | mask_lo, |
| 290 | fd, pathname); |
| 291 | } |