| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Conversion between 32-bit and 64-bit native system calls. | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2000 Silicon Graphics, Inc. | 
|  | 5 | * Written by Ulf Carlsson (ulfc@engr.sgi.com) | 
|  | 6 | * sys32_execve from ia64/ia32 code, Feb 2000, Kanoj Sarcar (kanoj@sgi.com) | 
|  | 7 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/compiler.h> | 
|  | 9 | #include <linux/mm.h> | 
|  | 10 | #include <linux/errno.h> | 
|  | 11 | #include <linux/file.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/highuid.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/resource.h> | 
|  | 14 | #include <linux/highmem.h> | 
|  | 15 | #include <linux/time.h> | 
|  | 16 | #include <linux/times.h> | 
|  | 17 | #include <linux/poll.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/skbuff.h> | 
|  | 19 | #include <linux/filter.h> | 
|  | 20 | #include <linux/shm.h> | 
|  | 21 | #include <linux/sem.h> | 
|  | 22 | #include <linux/msg.h> | 
|  | 23 | #include <linux/icmpv6.h> | 
|  | 24 | #include <linux/syscalls.h> | 
|  | 25 | #include <linux/sysctl.h> | 
|  | 26 | #include <linux/utime.h> | 
|  | 27 | #include <linux/utsname.h> | 
|  | 28 | #include <linux/personality.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/dnotify.h> | 
|  | 30 | #include <linux/module.h> | 
|  | 31 | #include <linux/binfmts.h> | 
|  | 32 | #include <linux/security.h> | 
|  | 33 | #include <linux/compat.h> | 
|  | 34 | #include <linux/vfs.h> | 
| Adrian Bunk | cba4fbb | 2007-10-16 23:29:24 -0700 | [diff] [blame] | 35 | #include <linux/ipc.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
|  | 38 | #include <net/sock.h> | 
|  | 39 | #include <net/scm.h> | 
|  | 40 |  | 
| Ralf Baechle | 431dc80 | 2007-02-13 00:05:11 +0000 | [diff] [blame] | 41 | #include <asm/compat-signal.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/sim.h> | 
|  | 43 | #include <asm/uaccess.h> | 
|  | 44 | #include <asm/mmu_context.h> | 
|  | 45 | #include <asm/mman.h> | 
|  | 46 |  | 
|  | 47 | /* Use this to get at 32-bit user passed pointers. */ | 
|  | 48 | /* A() macro should be used for places where you e.g. | 
|  | 49 | have some internal variable u32 and just want to get | 
|  | 50 | rid of a compiler warning. AA() has to be used in | 
|  | 51 | places where you want to convert a function argument | 
|  | 52 | to 32bit pointer or when you e.g. access pt_regs | 
|  | 53 | structure and want to consider 32bit registers only. | 
|  | 54 | */ | 
|  | 55 | #define A(__x) ((unsigned long)(__x)) | 
|  | 56 | #define AA(__x) ((unsigned long)((int)__x)) | 
|  | 57 |  | 
|  | 58 | #ifdef __MIPSEB__ | 
| Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 59 | #define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif | 
|  | 61 | #ifdef __MIPSEL__ | 
| Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 62 | #define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif | 
|  | 64 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 65 | SYSCALL_DEFINE6(32_mmap2, unsigned long, addr, unsigned long, len, | 
|  | 66 | unsigned long, prot, unsigned long, flags, unsigned long, fd, | 
|  | 67 | unsigned long, pgoff) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | unsigned long error; | 
|  | 70 |  | 
|  | 71 | error = -EINVAL; | 
| H. Peter Anvin | 947df17 | 2006-02-24 21:20:29 -0800 | [diff] [blame] | 72 | if (pgoff & (~PAGE_MASK >> 12)) | 
|  | 73 | goto out; | 
| Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 74 | error = sys_mmap_pgoff(addr, len, prot, flags, fd, | 
|  | 75 | pgoff >> (PAGE_SHIFT-12)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | out: | 
|  | 77 | return error; | 
|  | 78 | } | 
|  | 79 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* | 
|  | 81 | * sys_execve() executes a new program. | 
|  | 82 | */ | 
|  | 83 | asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs) | 
|  | 84 | { | 
|  | 85 | int error; | 
|  | 86 | char * filename; | 
|  | 87 |  | 
|  | 88 | filename = getname(compat_ptr(regs.regs[4])); | 
|  | 89 | error = PTR_ERR(filename); | 
|  | 90 | if (IS_ERR(filename)) | 
|  | 91 | goto out; | 
|  | 92 | error = compat_do_execve(filename, compat_ptr(regs.regs[5]), | 
|  | 93 | compat_ptr(regs.regs[6]), ®s); | 
|  | 94 | putname(filename); | 
|  | 95 |  | 
|  | 96 | out: | 
|  | 97 | return error; | 
|  | 98 | } | 
|  | 99 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | #define RLIM_INFINITY32	0x7fffffff | 
|  | 101 | #define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x) | 
|  | 102 |  | 
|  | 103 | struct rlimit32 { | 
|  | 104 | int	rlim_cur; | 
|  | 105 | int	rlim_max; | 
|  | 106 | }; | 
|  | 107 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 108 | SYSCALL_DEFINE4(32_truncate64, const char __user *, path, | 
|  | 109 | unsigned long, __dummy, unsigned long, a2, unsigned long, a3) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { | 
| Ralf Baechle | d4e9cff | 2008-01-29 10:15:02 +0000 | [diff] [blame] | 111 | return sys_truncate(path, merge_64(a2, a3)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } | 
|  | 113 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 114 | SYSCALL_DEFINE4(32_ftruncate64, unsigned long, fd, unsigned long, __dummy, | 
|  | 115 | unsigned long, a2, unsigned long, a3) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { | 
| Ralf Baechle | d4e9cff | 2008-01-29 10:15:02 +0000 | [diff] [blame] | 117 | return sys_ftruncate(fd, merge_64(a2, a3)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } | 
|  | 119 |  | 
| Ralf Baechle | d6c178e | 2009-03-28 01:36:09 +0100 | [diff] [blame] | 120 | SYSCALL_DEFINE5(32_llseek, unsigned int, fd, unsigned int, offset_high, | 
|  | 121 | unsigned int, offset_low, loff_t __user *, result, | 
|  | 122 | unsigned int, origin) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { | 
|  | 124 | return sys_llseek(fd, offset_high, offset_low, result, origin); | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | /* From the Single Unix Spec: pread & pwrite act like lseek to pos + op + | 
|  | 128 | lseek back to original location.  They fail just like lseek does on | 
|  | 129 | non-seekable files.  */ | 
|  | 130 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 131 | SYSCALL_DEFINE6(32_pread, unsigned long, fd, char __user *, buf, size_t, count, | 
|  | 132 | unsigned long, unused, unsigned long, a4, unsigned long, a5) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { | 
| Al Viro | 6ad0013 | 2006-04-26 07:28:09 +0100 | [diff] [blame] | 134 | return sys_pread64(fd, buf, count, merge_64(a4, a5)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } | 
|  | 136 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 137 | SYSCALL_DEFINE6(32_pwrite, unsigned int, fd, const char __user *, buf, | 
|  | 138 | size_t, count, u32, unused, u64, a4, u64, a5) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { | 
| Al Viro | 6ad0013 | 2006-04-26 07:28:09 +0100 | [diff] [blame] | 140 | return sys_pwrite64(fd, buf, count, merge_64(a4, a5)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } | 
|  | 142 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 143 | SYSCALL_DEFINE2(32_sched_rr_get_interval, compat_pid_t, pid, | 
|  | 144 | struct compat_timespec __user *, interval) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { | 
|  | 146 | struct timespec t; | 
|  | 147 | int ret; | 
| Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 148 | mm_segment_t old_fs = get_fs(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 |  | 
| Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 150 | set_fs(KERNEL_DS); | 
| Atsushi Nemoto | 219ac73 | 2006-02-21 16:05:11 +0900 | [diff] [blame] | 151 | ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t); | 
| Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 152 | set_fs(old_fs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | if (put_user (t.tv_sec, &interval->tv_sec) || | 
| Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 154 | __put_user(t.tv_nsec, &interval->tv_nsec)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | return -EFAULT; | 
|  | 156 | return ret; | 
|  | 157 | } | 
|  | 158 |  | 
| Ralf Baechle | 65f8ebe | 2007-03-10 18:22:25 +0000 | [diff] [blame] | 159 | #ifdef CONFIG_SYSVIPC | 
|  | 160 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 161 | SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third, | 
|  | 162 | unsigned long, ptr, unsigned long, fifth) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { | 
|  | 164 | int version, err; | 
|  | 165 |  | 
|  | 166 | version = call >> 16; /* hack for backward compatibility */ | 
|  | 167 | call &= 0xffff; | 
|  | 168 |  | 
|  | 169 | switch (call) { | 
|  | 170 | case SEMOP: | 
|  | 171 | /* struct sembuf is the same on 32 and 64bit :)) */ | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 172 | err = sys_semtimedop(first, compat_ptr(ptr), second, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | break; | 
|  | 174 | case SEMTIMEDOP: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 175 | err = compat_sys_semtimedop(first, compat_ptr(ptr), second, | 
|  | 176 | compat_ptr(fifth)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | break; | 
|  | 178 | case SEMGET: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 179 | err = sys_semget(first, second, third); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | break; | 
|  | 181 | case SEMCTL: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 182 | err = compat_sys_semctl(first, second, third, compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | case MSGSND: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 185 | err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | break; | 
|  | 187 | case MSGRCV: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 188 | err = compat_sys_msgrcv(first, second, fifth, third, | 
|  | 189 | version, compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | break; | 
|  | 191 | case MSGGET: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 192 | err = sys_msgget((key_t) first, second); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | break; | 
|  | 194 | case MSGCTL: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 195 | err = compat_sys_msgctl(first, second, compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | case SHMAT: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 198 | err = compat_sys_shmat(first, second, third, version, | 
|  | 199 | compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | break; | 
|  | 201 | case SHMDT: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 202 | err = sys_shmdt(compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | break; | 
|  | 204 | case SHMGET: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 205 | err = sys_shmget(first, (unsigned)second, third); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | break; | 
|  | 207 | case SHMCTL: | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 208 | err = compat_sys_shmctl(first, second, compat_ptr(ptr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | break; | 
|  | 210 | default: | 
|  | 211 | err = -EINVAL; | 
|  | 212 | break; | 
|  | 213 | } | 
|  | 214 |  | 
|  | 215 | return err; | 
|  | 216 | } | 
|  | 217 |  | 
| Ralf Baechle | 65f8ebe | 2007-03-10 18:22:25 +0000 | [diff] [blame] | 218 | #else | 
|  | 219 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 220 | SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third, | 
| Xiaotian Feng | c189846 | 2009-03-09 09:45:12 +0800 | [diff] [blame] | 221 | u32, ptr, u32, fifth) | 
| Ralf Baechle | 65f8ebe | 2007-03-10 18:22:25 +0000 | [diff] [blame] | 222 | { | 
|  | 223 | return -ENOSYS; | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | #endif /* CONFIG_SYSVIPC */ | 
|  | 227 |  | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 228 | #ifdef CONFIG_MIPS32_N32 | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 229 | SYSCALL_DEFINE4(n32_semctl, int, semid, int, semnum, int, cmd, u32, arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 231 | /* compat_sys_semctl expects a pointer to union semun */ | 
|  | 232 | u32 __user *uptr = compat_alloc_user_space(sizeof(u32)); | 
| Atsushi Nemoto | e16d8df | 2007-01-10 18:53:33 +0900 | [diff] [blame] | 233 | if (put_user(arg, uptr)) | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 234 | return -EFAULT; | 
|  | 235 | return compat_sys_semctl(semid, semnum, cmd, uptr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } | 
| Atsushi Nemoto | e16d8df | 2007-01-10 18:53:33 +0900 | [diff] [blame] | 237 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 238 | SYSCALL_DEFINE4(n32_msgsnd, int, msqid, u32, msgp, unsigned int, msgsz, | 
|  | 239 | int, msgflg) | 
| Atsushi Nemoto | e16d8df | 2007-01-10 18:53:33 +0900 | [diff] [blame] | 240 | { | 
|  | 241 | return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp)); | 
|  | 242 | } | 
|  | 243 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 244 | SYSCALL_DEFINE5(n32_msgrcv, int, msqid, u32, msgp, size_t, msgsz, | 
|  | 245 | int, msgtyp, int, msgflg) | 
| Atsushi Nemoto | e16d8df | 2007-01-10 18:53:33 +0900 | [diff] [blame] | 246 | { | 
|  | 247 | return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64, | 
|  | 248 | compat_ptr(msgp)); | 
|  | 249 | } | 
| Atsushi Nemoto | 05e4396 | 2006-11-07 18:02:44 +0900 | [diff] [blame] | 250 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 252 | SYSCALL_DEFINE1(32_personality, unsigned long, personality) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { | 
| David Daney | d62c9ce | 2010-11-01 17:43:08 -0700 | [diff] [blame] | 254 | unsigned int p = personality & 0xffffffff; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | int ret; | 
| David Daney | d62c9ce | 2010-11-01 17:43:08 -0700 | [diff] [blame] | 256 |  | 
| Thiemo Seufer | 53571ce | 2006-08-13 00:53:29 +0100 | [diff] [blame] | 257 | if (personality(current->personality) == PER_LINUX32 && | 
| David Daney | d62c9ce | 2010-11-01 17:43:08 -0700 | [diff] [blame] | 258 | personality(p) == PER_LINUX) | 
|  | 259 | p = (p & ~PER_MASK) | PER_LINUX32; | 
|  | 260 | ret = sys_personality(p); | 
|  | 261 | if (ret != -1 && personality(ret) == PER_LINUX32) | 
|  | 262 | ret = (ret & ~PER_MASK) | PER_LINUX; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | return ret; | 
|  | 264 | } | 
|  | 265 |  | 
| Ralf Baechle | dbda6ac | 2009-02-08 16:00:26 +0000 | [diff] [blame] | 266 | SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd, | 
|  | 267 | compat_off_t __user *, offset, s32, count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { | 
|  | 269 | mm_segment_t old_fs = get_fs(); | 
|  | 270 | int ret; | 
|  | 271 | off_t of; | 
| Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 272 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | if (offset && get_user(of, offset)) | 
|  | 274 | return -EFAULT; | 
| Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 275 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | set_fs(KERNEL_DS); | 
| Atsushi Nemoto | 219ac73 | 2006-02-21 16:05:11 +0900 | [diff] [blame] | 277 | ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | set_fs(old_fs); | 
| Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 279 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | if (offset && put_user(of, offset)) | 
|  | 281 | return -EFAULT; | 
| Ralf Baechle | 42a3b4f | 2005-09-03 15:56:17 -0700 | [diff] [blame] | 282 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | return ret; | 
|  | 284 | } | 
|  | 285 |  | 
|  | 286 | asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3, | 
|  | 287 | size_t count) | 
|  | 288 | { | 
|  | 289 | return sys_readahead(fd, merge_64(a2, a3), count); | 
|  | 290 | } | 
|  | 291 |  | 
| Ralf Baechle | a8d587a | 2006-04-01 07:49:21 +0100 | [diff] [blame] | 292 | asmlinkage long sys32_sync_file_range(int fd, int __pad, | 
|  | 293 | unsigned long a2, unsigned long a3, | 
|  | 294 | unsigned long a4, unsigned long a5, | 
|  | 295 | int flags) | 
|  | 296 | { | 
|  | 297 | return sys_sync_file_range(fd, | 
|  | 298 | merge_64(a2, a3), merge_64(a4, a5), | 
|  | 299 | flags); | 
|  | 300 | } | 
|  | 301 |  | 
| Atsushi Nemoto | 8676d2e | 2007-05-18 00:46:13 +0900 | [diff] [blame] | 302 | asmlinkage long sys32_fadvise64_64(int fd, int __pad, | 
|  | 303 | unsigned long a2, unsigned long a3, | 
|  | 304 | unsigned long a4, unsigned long a5, | 
|  | 305 | int flags) | 
|  | 306 | { | 
|  | 307 | return sys_fadvise64_64(fd, | 
|  | 308 | merge_64(a2, a3), merge_64(a4, a5), | 
|  | 309 | flags); | 
|  | 310 | } | 
|  | 311 |  | 
| Ralf Baechle | 4dc4677 | 2007-07-26 03:38:24 +0100 | [diff] [blame] | 312 | asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2, | 
|  | 313 | unsigned offset_a3, unsigned len_a4, unsigned len_a5) | 
|  | 314 | { | 
|  | 315 | return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3), | 
|  | 316 | merge_64(len_a4, len_a5)); | 
|  | 317 | } | 
|  | 318 |  | 
| Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 319 | save_static_function(sys32_clone); | 
| David Rientjes | f5dbeaf | 2007-07-22 01:01:39 -0700 | [diff] [blame] | 320 | static int noinline __used | 
| Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 321 | _sys32_clone(nabi_no_regargs struct pt_regs regs) | 
|  | 322 | { | 
|  | 323 | unsigned long clone_flags; | 
|  | 324 | unsigned long newsp; | 
|  | 325 | int __user *parent_tidptr, *child_tidptr; | 
|  | 326 |  | 
|  | 327 | clone_flags = regs.regs[4]; | 
|  | 328 | newsp = regs.regs[5]; | 
|  | 329 | if (!newsp) | 
|  | 330 | newsp = regs.regs[29]; | 
| Atsushi Nemoto | 219ac73 | 2006-02-21 16:05:11 +0900 | [diff] [blame] | 331 | parent_tidptr = (int __user *) regs.regs[6]; | 
| Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 332 |  | 
|  | 333 | /* Use __dummy4 instead of getting it off the stack, so that | 
|  | 334 | syscall() works.  */ | 
|  | 335 | child_tidptr = (int __user *) __dummy4; | 
|  | 336 | return do_fork(clone_flags, newsp, ®s, 0, | 
|  | 337 | parent_tidptr, child_tidptr); | 
|  | 338 | } | 
| Wu Zhangjin | 80b8585 | 2009-10-10 19:19:49 +0800 | [diff] [blame] | 339 |  | 
|  | 340 | asmlinkage long sys32_lookup_dcookie(u32 a0, u32 a1, char __user *buf, | 
|  | 341 | size_t len) | 
|  | 342 | { | 
|  | 343 | return sys_lookup_dcookie(merge_64(a0, a1), buf, len); | 
|  | 344 | } | 
| David Daney | 5e844b3 | 2010-08-23 14:10:37 -0700 | [diff] [blame] | 345 |  | 
|  | 346 | SYSCALL_DEFINE6(32_fanotify_mark, int, fanotify_fd, unsigned int, flags, | 
|  | 347 | u64, a3, u64, a4, int, dfd, const char  __user *, pathname) | 
|  | 348 | { | 
|  | 349 | return sys_fanotify_mark(fanotify_fd, flags, merge_64(a3, a4), | 
|  | 350 | dfd, pathname); | 
|  | 351 | } |