blob: 1a86f84fa9470f31030c53fdc9ad45c792d08425 [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>
Ralf Baechledbda6ac2009-02-08 16:00:26 +000035#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/compat.h>
37#include <linux/vfs.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070038#include <linux/ipc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <net/sock.h>
41#include <net/scm.h>
42
Ralf Baechle431dc802007-02-13 00:05:11 +000043#include <asm/compat-signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/sim.h>
45#include <asm/uaccess.h>
46#include <asm/mmu_context.h>
47#include <asm/mman.h>
48
49/* Use this to get at 32-bit user passed pointers. */
50/* A() macro should be used for places where you e.g.
51 have some internal variable u32 and just want to get
52 rid of a compiler warning. AA() has to be used in
53 places where you want to convert a function argument
54 to 32bit pointer or when you e.g. access pt_regs
55 structure and want to consider 32bit registers only.
56 */
57#define A(__x) ((unsigned long)(__x))
58#define AA(__x) ((unsigned long)((int)__x))
59
60#ifdef __MIPSEB__
Ralf Baechle21a151d2007-10-11 23:46:15 +010061#define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63#ifdef __MIPSEL__
Ralf Baechle21a151d2007-10-11 23:46:15 +010064#define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Ralf Baechledbda6ac2009-02-08 16:00:26 +000067SYSCALL_DEFINE6(32_mmap2, unsigned long, addr, unsigned long, len,
68 unsigned long, prot, unsigned long, flags, unsigned long, fd,
69 unsigned long, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 struct file * file = NULL;
72 unsigned long error;
73
74 error = -EINVAL;
H. Peter Anvin947df172006-02-24 21:20:29 -080075 if (pgoff & (~PAGE_MASK >> 12))
76 goto out;
77 pgoff >>= PAGE_SHIFT-12;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!(flags & MAP_ANONYMOUS)) {
80 error = -EBADF;
81 file = fget(fd);
82 if (!file)
83 goto out;
84 }
85 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
86
87 down_write(&current->mm->mmap_sem);
88 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
89 up_write(&current->mm->mmap_sem);
90 if (file)
91 fput(file);
92
93out:
94 return error;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * sys_execve() executes a new program.
99 */
100asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs)
101{
102 int error;
103 char * filename;
104
105 filename = getname(compat_ptr(regs.regs[4]));
106 error = PTR_ERR(filename);
107 if (IS_ERR(filename))
108 goto out;
109 error = compat_do_execve(filename, compat_ptr(regs.regs[5]),
110 compat_ptr(regs.regs[6]), &regs);
111 putname(filename);
112
113out:
114 return error;
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define RLIM_INFINITY32 0x7fffffff
118#define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
119
120struct rlimit32 {
121 int rlim_cur;
122 int rlim_max;
123};
124
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000125SYSCALL_DEFINE4(32_truncate64, const char __user *, path,
126 unsigned long, __dummy, unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000128 return sys_truncate(path, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000131SYSCALL_DEFINE4(32_ftruncate64, unsigned long, fd, unsigned long, __dummy,
132 unsigned long, a2, unsigned long, a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000134 return sys_ftruncate(fd, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000137SYSCALL_DEFINE5(32_llseek, unsigned long, fd, unsigned long, offset_high,
138 unsigned long, offset_low, loff_t __user *, result,
139 unsigned long, origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 return sys_llseek(fd, offset_high, offset_low, result, origin);
142}
143
144/* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
145 lseek back to original location. They fail just like lseek does on
146 non-seekable files. */
147
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000148SYSCALL_DEFINE6(32_pread, unsigned long, fd, char __user *, buf, size_t, count,
149 unsigned long, unused, unsigned long, a4, unsigned long, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Al Viro6ad00132006-04-26 07:28:09 +0100151 return sys_pread64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000154SYSCALL_DEFINE6(32_pwrite, unsigned int, fd, const char __user *, buf,
155 size_t, count, u32, unused, u64, a4, u64, a5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Al Viro6ad00132006-04-26 07:28:09 +0100157 return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000160SYSCALL_DEFINE2(32_sched_rr_get_interval, compat_pid_t, pid,
161 struct compat_timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct timespec t;
164 int ret;
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100165 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100167 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900168 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100169 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (put_user (t.tv_sec, &interval->tv_sec) ||
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100171 __put_user(t.tv_nsec, &interval->tv_nsec))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -EFAULT;
173 return ret;
174}
175
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000176#ifdef CONFIG_SYSVIPC
177
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000178SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third,
179 unsigned long, ptr, unsigned long, fifth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 int version, err;
182
183 version = call >> 16; /* hack for backward compatibility */
184 call &= 0xffff;
185
186 switch (call) {
187 case SEMOP:
188 /* struct sembuf is the same on 32 and 64bit :)) */
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900189 err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
191 case SEMTIMEDOP:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900192 err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
193 compat_ptr(fifth));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 case SEMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900196 err = sys_semget(first, second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 break;
198 case SEMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900199 err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 case MSGSND:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900202 err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 case MSGRCV:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900205 err = compat_sys_msgrcv(first, second, fifth, third,
206 version, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 break;
208 case MSGGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900209 err = sys_msgget((key_t) first, second);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 case MSGCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900212 err = compat_sys_msgctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 case SHMAT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900215 err = compat_sys_shmat(first, second, third, version,
216 compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 break;
218 case SHMDT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900219 err = sys_shmdt(compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
221 case SHMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900222 err = sys_shmget(first, (unsigned)second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 break;
224 case SHMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900225 err = compat_sys_shmctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 break;
227 default:
228 err = -EINVAL;
229 break;
230 }
231
232 return err;
233}
234
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000235#else
236
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000237SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
Xiaotian Fengc1898462009-03-09 09:45:12 +0800238 u32, ptr, u32, fifth)
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000239{
240 return -ENOSYS;
241}
242
243#endif /* CONFIG_SYSVIPC */
244
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900245#ifdef CONFIG_MIPS32_N32
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000246SYSCALL_DEFINE4(n32_semctl, int, semid, int, semnum, int, cmd, u32, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900248 /* compat_sys_semctl expects a pointer to union semun */
249 u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900250 if (put_user(arg, uptr))
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900251 return -EFAULT;
252 return compat_sys_semctl(semid, semnum, cmd, uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900254
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000255SYSCALL_DEFINE4(n32_msgsnd, int, msqid, u32, msgp, unsigned int, msgsz,
256 int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900257{
258 return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
259}
260
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000261SYSCALL_DEFINE5(n32_msgrcv, int, msqid, u32, msgp, size_t, msgsz,
262 int, msgtyp, int, msgflg)
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900263{
264 return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
265 compat_ptr(msgp));
266}
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269struct sysctl_args32
270{
271 compat_caddr_t name;
272 int nlen;
273 compat_caddr_t oldval;
274 compat_caddr_t oldlenp;
275 compat_caddr_t newval;
276 compat_size_t newlen;
277 unsigned int __unused[4];
278};
279
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700280#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000282SYSCALL_DEFINE1(32_sysctl, struct sysctl_args32 __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct sysctl_args32 tmp;
285 int error;
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900286 size_t oldlen;
287 size_t __user *oldlenp = NULL;
288 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (copy_from_user(&tmp, args, sizeof(tmp)))
291 return -EFAULT;
292
293 if (tmp.oldval && tmp.oldlenp) {
294 /* Duh, this is ugly and might not work if sysctl_args
295 is in read-only memory, but do_sysctl does indirectly
296 a lot of uaccess in both directions and we'd have to
297 basically copy the whole sysctl.c here, and
298 glibc's __sysctl uses rw memory for the structure
299 anyway. */
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900300 if (get_user(oldlen, (u32 __user *)A(tmp.oldlenp)) ||
301 put_user(oldlen, (size_t __user *)addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -EFAULT;
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900303 oldlenp = (size_t __user *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305
306 lock_kernel();
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900307 error = do_sysctl((int __user *)A(tmp.name), tmp.nlen, (void __user *)A(tmp.oldval),
308 oldlenp, (void __user *)A(tmp.newval), tmp.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 unlock_kernel();
310 if (oldlenp) {
311 if (!error) {
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900312 if (get_user(oldlen, (size_t __user *)addr) ||
313 put_user(oldlen, (u32 __user *)A(tmp.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 error = -EFAULT;
315 }
316 copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
317 }
318 return error;
319}
320
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000321#else
322
323SYSCALL_DEFINE1(32_sysctl, struct sysctl_args32 __user *, args)
324{
325 return -ENOSYS;
326}
327
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700328#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000330SYSCALL_DEFINE1(32_newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 int ret = 0;
333
334 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700335 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 ret = -EFAULT;
337 up_read(&uts_sem);
338
339 if (current->personality == PER_LINUX32 && !ret)
340 if (copy_to_user(name->machine, "mips\0\0\0", 8))
341 ret = -EFAULT;
342
343 return ret;
344}
345
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000346SYSCALL_DEFINE1(32_personality, unsigned long, personality)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 int ret;
Thiemo Seufer53571ce2006-08-13 00:53:29 +0100349 personality &= 0xffffffff;
350 if (personality(current->personality) == PER_LINUX32 &&
351 personality == PER_LINUX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 personality = PER_LINUX32;
353 ret = sys_personality(personality);
354 if (ret == PER_LINUX32)
355 ret = PER_LINUX;
356 return ret;
357}
358
359/* ustat compatibility */
360struct ustat32 {
361 compat_daddr_t f_tfree;
362 compat_ino_t f_tinode;
363 char f_fname[6];
364 char f_fpack[6];
365};
366
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900367extern asmlinkage long sys_ustat(dev_t dev, struct ustat __user * ubuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000369SYSCALL_DEFINE2(32_ustat, dev_t, dev, struct ustat32 __user *, ubuf32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 int err;
Ralf Baechlee0daad42007-02-05 00:10:11 +0000372 struct ustat tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct ustat32 tmp32;
374 mm_segment_t old_fs = get_fs();
375
376 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900377 err = sys_ustat(dev, (struct ustat __user *)&tmp);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100378 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (err)
381 goto out;
382
Ralf Baechle21a151d2007-10-11 23:46:15 +0100383 memset(&tmp32, 0, sizeof(struct ustat32));
Ralf Baechlee0daad42007-02-05 00:10:11 +0000384 tmp32.f_tfree = tmp.f_tfree;
385 tmp32.f_tinode = tmp.f_tinode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Ralf Baechle21a151d2007-10-11 23:46:15 +0100387 err = copy_to_user(ubuf32, &tmp32, sizeof(struct ustat32)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389out:
390 return err;
391}
392
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000393SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd,
394 compat_off_t __user *, offset, s32, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 mm_segment_t old_fs = get_fs();
397 int ret;
398 off_t of;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (offset && get_user(of, offset))
401 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900404 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 set_fs(old_fs);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (offset && put_user(of, offset))
408 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return ret;
411}
412
413asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
414 size_t count)
415{
416 return sys_readahead(fd, merge_64(a2, a3), count);
417}
418
Ralf Baechlea8d587a2006-04-01 07:49:21 +0100419asmlinkage long sys32_sync_file_range(int fd, int __pad,
420 unsigned long a2, unsigned long a3,
421 unsigned long a4, unsigned long a5,
422 int flags)
423{
424 return sys_sync_file_range(fd,
425 merge_64(a2, a3), merge_64(a4, a5),
426 flags);
427}
428
Atsushi Nemoto8676d2e2007-05-18 00:46:13 +0900429asmlinkage long sys32_fadvise64_64(int fd, int __pad,
430 unsigned long a2, unsigned long a3,
431 unsigned long a4, unsigned long a5,
432 int flags)
433{
434 return sys_fadvise64_64(fd,
435 merge_64(a2, a3), merge_64(a4, a5),
436 flags);
437}
438
Ralf Baechle4dc46772007-07-26 03:38:24 +0100439asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
440 unsigned offset_a3, unsigned len_a4, unsigned len_a5)
441{
442 return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
443 merge_64(len_a4, len_a5));
444}
445
Ralf Baechle3c370262005-04-13 17:43:59 +0000446save_static_function(sys32_clone);
David Rientjesf5dbeaf2007-07-22 01:01:39 -0700447static int noinline __used
Ralf Baechle3c370262005-04-13 17:43:59 +0000448_sys32_clone(nabi_no_regargs struct pt_regs regs)
449{
450 unsigned long clone_flags;
451 unsigned long newsp;
452 int __user *parent_tidptr, *child_tidptr;
453
454 clone_flags = regs.regs[4];
455 newsp = regs.regs[5];
456 if (!newsp)
457 newsp = regs.regs[29];
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900458 parent_tidptr = (int __user *) regs.regs[6];
Ralf Baechle3c370262005-04-13 17:43:59 +0000459
460 /* Use __dummy4 instead of getting it off the stack, so that
461 syscall() works. */
462 child_tidptr = (int __user *) __dummy4;
463 return do_fork(clone_flags, newsp, &regs, 0,
464 parent_tidptr, child_tidptr);
465}