blob: f042563c924f66f9da2ef3a88f4e75032f55871f [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)
6 * sys32_execve from ia64/ia32 code, Feb 2000, Kanoj Sarcar (kanoj@sgi.com)
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/compiler.h>
9#include <linux/mm.h>
10#include <linux/errno.h>
11#include <linux/file.h>
12#include <linux/smp_lock.h>
13#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/resource.h>
15#include <linux/highmem.h>
16#include <linux/time.h>
17#include <linux/times.h>
18#include <linux/poll.h>
19#include <linux/slab.h>
20#include <linux/skbuff.h>
21#include <linux/filter.h>
22#include <linux/shm.h>
23#include <linux/sem.h>
24#include <linux/msg.h>
25#include <linux/icmpv6.h>
26#include <linux/syscalls.h>
27#include <linux/sysctl.h>
28#include <linux/utime.h>
29#include <linux/utsname.h>
30#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/dnotify.h>
32#include <linux/module.h>
33#include <linux/binfmts.h>
34#include <linux/security.h>
35#include <linux/compat.h>
36#include <linux/vfs.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070037#include <linux/ipc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <net/sock.h>
40#include <net/scm.h>
41
Ralf Baechle431dc802007-02-13 00:05:11 +000042#include <asm/compat-signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/sim.h>
44#include <asm/uaccess.h>
45#include <asm/mmu_context.h>
46#include <asm/mman.h>
47
48/* Use this to get at 32-bit user passed pointers. */
49/* A() macro should be used for places where you e.g.
50 have some internal variable u32 and just want to get
51 rid of a compiler warning. AA() has to be used in
52 places where you want to convert a function argument
53 to 32bit pointer or when you e.g. access pt_regs
54 structure and want to consider 32bit registers only.
55 */
56#define A(__x) ((unsigned long)(__x))
57#define AA(__x) ((unsigned long)((int)__x))
58
59#ifdef __MIPSEB__
Ralf Baechle21a151d2007-10-11 23:46:15 +010060#define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62#ifdef __MIPSEL__
Ralf Baechle21a151d2007-10-11 23:46:15 +010063#define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Ralf Baechledbda6ac2009-02-08 16:00:26 +000066SYSCALL_DEFINE6(32_mmap2, unsigned long, addr, unsigned long, len,
67 unsigned long, prot, unsigned long, flags, unsigned long, fd,
68 unsigned long, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 unsigned long error;
71
72 error = -EINVAL;
H. Peter Anvin947df172006-02-24 21:20:29 -080073 if (pgoff & (~PAGE_MASK >> 12))
74 goto out;
Al Virof8b72562009-11-30 17:37:04 -050075 error = sys_mmap_pgoff(addr, len, prot, flags, fd,
76 pgoff >> (PAGE_SHIFT-12));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077out:
78 return error;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * sys_execve() executes a new program.
83 */
84asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs)
85{
86 int error;
87 char * filename;
88
89 filename = getname(compat_ptr(regs.regs[4]));
90 error = PTR_ERR(filename);
91 if (IS_ERR(filename))
92 goto out;
93 error = compat_do_execve(filename, compat_ptr(regs.regs[5]),
94 compat_ptr(regs.regs[6]), &regs);
95 putname(filename);
96
97out:
98 return error;
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define RLIM_INFINITY32 0x7fffffff
102#define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
103
104struct rlimit32 {
105 int rlim_cur;
106 int rlim_max;
107};
108
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000109SYSCALL_DEFINE4(32_truncate64, const char __user *, path,
110 unsigned long, __dummy, unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000112 return sys_truncate(path, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000115SYSCALL_DEFINE4(32_ftruncate64, unsigned long, fd, unsigned long, __dummy,
116 unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000118 return sys_ftruncate(fd, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Ralf Baechled6c178e2009-03-28 01:36:09 +0100121SYSCALL_DEFINE5(32_llseek, unsigned int, fd, unsigned int, offset_high,
122 unsigned int, offset_low, loff_t __user *, result,
123 unsigned int, origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 return sys_llseek(fd, offset_high, offset_low, result, origin);
126}
127
128/* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
129 lseek back to original location. They fail just like lseek does on
130 non-seekable files. */
131
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000132SYSCALL_DEFINE6(32_pread, unsigned long, fd, char __user *, buf, size_t, count,
133 unsigned long, unused, unsigned long, a4, unsigned long, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Al Viro6ad00132006-04-26 07:28:09 +0100135 return sys_pread64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000138SYSCALL_DEFINE6(32_pwrite, unsigned int, fd, const char __user *, buf,
139 size_t, count, u32, unused, u64, a4, u64, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Al Viro6ad00132006-04-26 07:28:09 +0100141 return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000144SYSCALL_DEFINE2(32_sched_rr_get_interval, compat_pid_t, pid,
145 struct compat_timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct timespec t;
148 int ret;
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100149 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100151 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900152 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100153 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (put_user (t.tv_sec, &interval->tv_sec) ||
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100155 __put_user(t.tv_nsec, &interval->tv_nsec))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -EFAULT;
157 return ret;
158}
159
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000160#ifdef CONFIG_SYSVIPC
161
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000162SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third,
163 unsigned long, ptr, unsigned long, fifth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 int version, err;
166
167 version = call >> 16; /* hack for backward compatibility */
168 call &= 0xffff;
169
170 switch (call) {
171 case SEMOP:
172 /* struct sembuf is the same on 32 and 64bit :)) */
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900173 err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175 case SEMTIMEDOP:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900176 err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
177 compat_ptr(fifth));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 break;
179 case SEMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900180 err = sys_semget(first, second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 case SEMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900183 err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 case MSGSND:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900186 err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 break;
188 case MSGRCV:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900189 err = compat_sys_msgrcv(first, second, fifth, third,
190 version, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 break;
192 case MSGGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900193 err = sys_msgget((key_t) first, second);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 case MSGCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900196 err = compat_sys_msgctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 case SHMAT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900199 err = compat_sys_shmat(first, second, third, version,
200 compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202 case SHMDT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900203 err = sys_shmdt(compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205 case SHMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900206 err = sys_shmget(first, (unsigned)second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 break;
208 case SHMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900209 err = compat_sys_shmctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 default:
212 err = -EINVAL;
213 break;
214 }
215
216 return err;
217}
218
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000219#else
220
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000221SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
Xiaotian Fengc1898462009-03-09 09:45:12 +0800222 u32, ptr, u32, fifth)
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000223{
224 return -ENOSYS;
225}
226
227#endif /* CONFIG_SYSVIPC */
228
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900229#ifdef CONFIG_MIPS32_N32
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000230SYSCALL_DEFINE4(n32_semctl, int, semid, int, semnum, int, cmd, u32, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900232 /* compat_sys_semctl expects a pointer to union semun */
233 u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900234 if (put_user(arg, uptr))
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900235 return -EFAULT;
236 return compat_sys_semctl(semid, semnum, cmd, uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900238
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000239SYSCALL_DEFINE4(n32_msgsnd, int, msqid, u32, msgp, unsigned int, msgsz,
240 int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900241{
242 return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
243}
244
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000245SYSCALL_DEFINE5(n32_msgrcv, int, msqid, u32, msgp, size_t, msgsz,
246 int, msgtyp, int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900247{
248 return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
249 compat_ptr(msgp));
250}
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900251#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000253SYSCALL_DEFINE1(32_newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 int ret = 0;
256
257 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700258 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 ret = -EFAULT;
260 up_read(&uts_sem);
261
262 if (current->personality == PER_LINUX32 && !ret)
263 if (copy_to_user(name->machine, "mips\0\0\0", 8))
264 ret = -EFAULT;
265
266 return ret;
267}
268
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000269SYSCALL_DEFINE1(32_personality, unsigned long, personality)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 int ret;
Thiemo Seufer53571ce2006-08-13 00:53:29 +0100272 personality &= 0xffffffff;
273 if (personality(current->personality) == PER_LINUX32 &&
274 personality == PER_LINUX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 personality = PER_LINUX32;
276 ret = sys_personality(personality);
277 if (ret == PER_LINUX32)
278 ret = PER_LINUX;
279 return ret;
280}
281
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000282SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd,
283 compat_off_t __user *, offset, s32, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 mm_segment_t old_fs = get_fs();
286 int ret;
287 off_t of;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (offset && get_user(of, offset))
290 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900293 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 set_fs(old_fs);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (offset && put_user(of, offset))
297 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return ret;
300}
301
302asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
303 size_t count)
304{
305 return sys_readahead(fd, merge_64(a2, a3), count);
306}
307
Ralf Baechlea8d587a2006-04-01 07:49:21 +0100308asmlinkage long sys32_sync_file_range(int fd, int __pad,
309 unsigned long a2, unsigned long a3,
310 unsigned long a4, unsigned long a5,
311 int flags)
312{
313 return sys_sync_file_range(fd,
314 merge_64(a2, a3), merge_64(a4, a5),
315 flags);
316}
317
Atsushi Nemoto8676d2e2007-05-18 00:46:13 +0900318asmlinkage long sys32_fadvise64_64(int fd, int __pad,
319 unsigned long a2, unsigned long a3,
320 unsigned long a4, unsigned long a5,
321 int flags)
322{
323 return sys_fadvise64_64(fd,
324 merge_64(a2, a3), merge_64(a4, a5),
325 flags);
326}
327
Ralf Baechle4dc46772007-07-26 03:38:24 +0100328asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
329 unsigned offset_a3, unsigned len_a4, unsigned len_a5)
330{
331 return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
332 merge_64(len_a4, len_a5));
333}
334
Ralf Baechle3c370262005-04-13 17:43:59 +0000335save_static_function(sys32_clone);
David Rientjesf5dbeaf2007-07-22 01:01:39 -0700336static int noinline __used
Ralf Baechle3c370262005-04-13 17:43:59 +0000337_sys32_clone(nabi_no_regargs struct pt_regs regs)
338{
339 unsigned long clone_flags;
340 unsigned long newsp;
341 int __user *parent_tidptr, *child_tidptr;
342
343 clone_flags = regs.regs[4];
344 newsp = regs.regs[5];
345 if (!newsp)
346 newsp = regs.regs[29];
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900347 parent_tidptr = (int __user *) regs.regs[6];
Ralf Baechle3c370262005-04-13 17:43:59 +0000348
349 /* Use __dummy4 instead of getting it off the stack, so that
350 syscall() works. */
351 child_tidptr = (int __user *) __dummy4;
352 return do_fork(clone_flags, newsp, &regs, 0,
353 parent_tidptr, child_tidptr);
354}
Wu Zhangjin80b85852009-10-10 19:19:49 +0800355
356asmlinkage long sys32_lookup_dcookie(u32 a0, u32 a1, char __user *buf,
357 size_t len)
358{
359 return sys_lookup_dcookie(merge_64(a0, a1), buf, len);
360}