blob: 16bf4a5d3d1ad1cc4de5e061345536878ada2871 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/compiler.h>
8#include <linux/mm.h>
9#include <linux/errno.h>
10#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/resource.h>
13#include <linux/highmem.h>
14#include <linux/time.h>
15#include <linux/times.h>
16#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/skbuff.h>
18#include <linux/filter.h>
19#include <linux/shm.h>
20#include <linux/sem.h>
21#include <linux/msg.h>
22#include <linux/icmpv6.h>
23#include <linux/syscalls.h>
24#include <linux/sysctl.h>
25#include <linux/utime.h>
26#include <linux/utsname.h>
27#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/dnotify.h>
29#include <linux/module.h>
30#include <linux/binfmts.h>
31#include <linux/security.h>
32#include <linux/compat.h>
33#include <linux/vfs.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070034#include <linux/ipc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <net/sock.h>
38#include <net/scm.h>
39
Ralf Baechle431dc802007-02-13 00:05:11 +000040#include <asm/compat-signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/sim.h>
42#include <asm/uaccess.h>
43#include <asm/mmu_context.h>
44#include <asm/mman.h>
45
46/* Use this to get at 32-bit user passed pointers. */
47/* A() macro should be used for places where you e.g.
48 have some internal variable u32 and just want to get
49 rid of a compiler warning. AA() has to be used in
50 places where you want to convert a function argument
51 to 32bit pointer or when you e.g. access pt_regs
52 structure and want to consider 32bit registers only.
53 */
54#define A(__x) ((unsigned long)(__x))
55#define AA(__x) ((unsigned long)((int)__x))
56
57#ifdef __MIPSEB__
Ralf Baechle21a151d2007-10-11 23:46:15 +010058#define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60#ifdef __MIPSEL__
Ralf Baechle21a151d2007-10-11 23:46:15 +010061#define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63
Ralf Baechledbda6ac2009-02-08 16:00:26 +000064SYSCALL_DEFINE6(32_mmap2, unsigned long, addr, unsigned long, len,
65 unsigned long, prot, unsigned long, flags, unsigned long, fd,
66 unsigned long, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned long error;
69
70 error = -EINVAL;
H. Peter Anvin947df172006-02-24 21:20:29 -080071 if (pgoff & (~PAGE_MASK >> 12))
72 goto out;
Al Virof8b72562009-11-30 17:37:04 -050073 error = sys_mmap_pgoff(addr, len, prot, flags, fd,
74 pgoff >> (PAGE_SHIFT-12));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075out:
76 return error;
77}
78
Ralf Baechle70342282013-01-22 12:59:30 +010079#define RLIM_INFINITY32 0x7fffffff
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
81
82struct rlimit32 {
83 int rlim_cur;
84 int rlim_max;
85};
86
Ralf Baechledbda6ac2009-02-08 16:00:26 +000087SYSCALL_DEFINE4(32_truncate64, const char __user *, path,
88 unsigned long, __dummy, unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Ralf Baechled4e9cff2008-01-29 10:15:02 +000090 return sys_truncate(path, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Ralf Baechledbda6ac2009-02-08 16:00:26 +000093SYSCALL_DEFINE4(32_ftruncate64, unsigned long, fd, unsigned long, __dummy,
94 unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Ralf Baechled4e9cff2008-01-29 10:15:02 +000096 return sys_ftruncate(fd, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Ralf Baechled6c178e2009-03-28 01:36:09 +010099SYSCALL_DEFINE5(32_llseek, unsigned int, fd, unsigned int, offset_high,
100 unsigned int, offset_low, loff_t __user *, result,
101 unsigned int, origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 return sys_llseek(fd, offset_high, offset_low, result, origin);
104}
105
106/* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
107 lseek back to original location. They fail just like lseek does on
Ralf Baechle70342282013-01-22 12:59:30 +0100108 non-seekable files. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000110SYSCALL_DEFINE6(32_pread, unsigned long, fd, char __user *, buf, size_t, count,
111 unsigned long, unused, unsigned long, a4, unsigned long, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Al Viro6ad00132006-04-26 07:28:09 +0100113 return sys_pread64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000116SYSCALL_DEFINE6(32_pwrite, unsigned int, fd, const char __user *, buf,
117 size_t, count, u32, unused, u64, a4, u64, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Al Viro6ad00132006-04-26 07:28:09 +0100119 return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000122SYSCALL_DEFINE2(32_sched_rr_get_interval, compat_pid_t, pid,
123 struct compat_timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct timespec t;
126 int ret;
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100127 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100129 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900130 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100131 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (put_user (t.tv_sec, &interval->tv_sec) ||
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100133 __put_user(t.tv_nsec, &interval->tv_nsec))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -EFAULT;
135 return ret;
136}
137
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000138#ifdef CONFIG_SYSVIPC
139
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000140SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third,
141 unsigned long, ptr, unsigned long, fifth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 int version, err;
144
145 version = call >> 16; /* hack for backward compatibility */
146 call &= 0xffff;
147
148 switch (call) {
149 case SEMOP:
150 /* struct sembuf is the same on 32 and 64bit :)) */
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900151 err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153 case SEMTIMEDOP:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900154 err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
155 compat_ptr(fifth));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 break;
157 case SEMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900158 err = sys_semget(first, second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160 case SEMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900161 err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 case MSGSND:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900164 err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 break;
166 case MSGRCV:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900167 err = compat_sys_msgrcv(first, second, fifth, third,
168 version, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 break;
170 case MSGGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900171 err = sys_msgget((key_t) first, second);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 break;
173 case MSGCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900174 err = compat_sys_msgctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 case SHMAT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900177 err = compat_sys_shmat(first, second, third, version,
178 compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 break;
180 case SHMDT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900181 err = sys_shmdt(compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 break;
183 case SHMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900184 err = sys_shmget(first, (unsigned)second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 break;
186 case SHMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900187 err = compat_sys_shmctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 break;
189 default:
190 err = -EINVAL;
191 break;
192 }
193
194 return err;
195}
196
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000197#else
198
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000199SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
Xiaotian Fengc1898462009-03-09 09:45:12 +0800200 u32, ptr, u32, fifth)
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000201{
202 return -ENOSYS;
203}
204
205#endif /* CONFIG_SYSVIPC */
206
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900207#ifdef CONFIG_MIPS32_N32
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000208SYSCALL_DEFINE4(n32_semctl, int, semid, int, semnum, int, cmd, u32, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900210 /* compat_sys_semctl expects a pointer to union semun */
211 u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900212 if (put_user(arg, uptr))
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900213 return -EFAULT;
214 return compat_sys_semctl(semid, semnum, cmd, uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900216
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000217SYSCALL_DEFINE4(n32_msgsnd, int, msqid, u32, msgp, unsigned int, msgsz,
218 int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900219{
220 return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
221}
222
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000223SYSCALL_DEFINE5(n32_msgrcv, int, msqid, u32, msgp, size_t, msgsz,
224 int, msgtyp, int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900225{
226 return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
227 compat_ptr(msgp));
228}
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900229#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000231SYSCALL_DEFINE1(32_personality, unsigned long, personality)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
David Daneyd62c9ce2010-11-01 17:43:08 -0700233 unsigned int p = personality & 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int ret;
David Daneyd62c9ce2010-11-01 17:43:08 -0700235
Thiemo Seufer53571ce2006-08-13 00:53:29 +0100236 if (personality(current->personality) == PER_LINUX32 &&
David Daneyd62c9ce2010-11-01 17:43:08 -0700237 personality(p) == PER_LINUX)
238 p = (p & ~PER_MASK) | PER_LINUX32;
239 ret = sys_personality(p);
240 if (ret != -1 && personality(ret) == PER_LINUX32)
241 ret = (ret & ~PER_MASK) | PER_LINUX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return ret;
243}
244
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000245SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd,
246 compat_off_t __user *, offset, s32, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 mm_segment_t old_fs = get_fs();
249 int ret;
250 off_t of;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (offset && get_user(of, offset))
253 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900256 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 set_fs(old_fs);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (offset && put_user(of, offset))
260 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return ret;
263}
264
265asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
Ralf Baechle70342282013-01-22 12:59:30 +0100266 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 return sys_readahead(fd, merge_64(a2, a3), count);
269}
270
Ralf Baechlea8d587a2006-04-01 07:49:21 +0100271asmlinkage long sys32_sync_file_range(int fd, int __pad,
272 unsigned long a2, unsigned long a3,
273 unsigned long a4, unsigned long a5,
274 int flags)
275{
276 return sys_sync_file_range(fd,
277 merge_64(a2, a3), merge_64(a4, a5),
278 flags);
279}
280
Atsushi Nemoto8676d2e2007-05-18 00:46:13 +0900281asmlinkage long sys32_fadvise64_64(int fd, int __pad,
282 unsigned long a2, unsigned long a3,
283 unsigned long a4, unsigned long a5,
284 int flags)
285{
286 return sys_fadvise64_64(fd,
287 merge_64(a2, a3), merge_64(a4, a5),
288 flags);
289}
290
Ralf Baechle4dc46772007-07-26 03:38:24 +0100291asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
292 unsigned offset_a3, unsigned len_a4, unsigned len_a5)
293{
294 return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
Ralf Baechle70342282013-01-22 12:59:30 +0100295 merge_64(len_a4, len_a5));
Ralf Baechle4dc46772007-07-26 03:38:24 +0100296}
297
Ralf Baechle3c370262005-04-13 17:43:59 +0000298save_static_function(sys32_clone);
David Rientjesf5dbeaf2007-07-22 01:01:39 -0700299static int noinline __used
Ralf Baechle3c370262005-04-13 17:43:59 +0000300_sys32_clone(nabi_no_regargs struct pt_regs regs)
301{
302 unsigned long clone_flags;
303 unsigned long newsp;
304 int __user *parent_tidptr, *child_tidptr;
305
306 clone_flags = regs.regs[4];
307 newsp = regs.regs[5];
308 if (!newsp)
309 newsp = regs.regs[29];
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900310 parent_tidptr = (int __user *) regs.regs[6];
Ralf Baechle3c370262005-04-13 17:43:59 +0000311
312 /* Use __dummy4 instead of getting it off the stack, so that
313 syscall() works. */
314 child_tidptr = (int __user *) __dummy4;
Al Viroe80d6662012-10-22 23:10:08 -0400315 return do_fork(clone_flags, newsp, 0,
Ralf Baechle70342282013-01-22 12:59:30 +0100316 parent_tidptr, child_tidptr);
Ralf Baechle3c370262005-04-13 17:43:59 +0000317}
Wu Zhangjin80b85852009-10-10 19:19:49 +0800318
319asmlinkage long sys32_lookup_dcookie(u32 a0, u32 a1, char __user *buf,
320 size_t len)
321{
322 return sys_lookup_dcookie(merge_64(a0, a1), buf, len);
323}
David Daney5e844b32010-08-23 14:10:37 -0700324
325SYSCALL_DEFINE6(32_fanotify_mark, int, fanotify_fd, unsigned int, flags,
Ralf Baechle70342282013-01-22 12:59:30 +0100326 u64, a3, u64, a4, int, dfd, const char __user *, pathname)
David Daney5e844b32010-08-23 14:10:37 -0700327{
328 return sys_fanotify_mark(fanotify_fd, flags, merge_64(a3, a4),
329 dfd, pathname);
330}
Yong Zhang1eec6cd2011-08-16 09:54:54 +0800331
332SYSCALL_DEFINE6(32_futex, u32 __user *, uaddr, int, op, u32, val,
333 struct compat_timespec __user *, utime, u32 __user *, uaddr2,
334 u32, val3)
335{
336 return compat_sys_futex(uaddr, op, val, utime, uaddr2, val3);
337}