blob: aa2c55e3b55ffda84dff352114a6bf904aa07580 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070066asmlinkage unsigned long
67sys32_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
68 unsigned long flags, unsigned long fd, unsigned long pgoff)
69{
70 struct file * file = NULL;
71 unsigned long error;
72
73 error = -EINVAL;
H. Peter Anvin947df172006-02-24 21:20:29 -080074 if (pgoff & (~PAGE_MASK >> 12))
75 goto out;
76 pgoff >>= PAGE_SHIFT-12;
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (!(flags & MAP_ANONYMOUS)) {
79 error = -EBADF;
80 file = fget(fd);
81 if (!file)
82 goto out;
83 }
84 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
85
86 down_write(&current->mm->mmap_sem);
87 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
88 up_write(&current->mm->mmap_sem);
89 if (file)
90 fput(file);
91
92out:
93 return error;
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * sys_execve() executes a new program.
98 */
99asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs)
100{
101 int error;
102 char * filename;
103
104 filename = getname(compat_ptr(regs.regs[4]));
105 error = PTR_ERR(filename);
106 if (IS_ERR(filename))
107 goto out;
108 error = compat_do_execve(filename, compat_ptr(regs.regs[5]),
109 compat_ptr(regs.regs[6]), &regs);
110 putname(filename);
111
112out:
113 return error;
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define RLIM_INFINITY32 0x7fffffff
117#define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
118
119struct rlimit32 {
120 int rlim_cur;
121 int rlim_max;
122};
123
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000124asmlinkage long sys32_truncate64(const char __user * path,
125 unsigned long __dummy, int a2, int a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000127 return sys_truncate(path, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long __dummy,
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000131 int a2, int a3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Ralf Baechled4e9cff2008-01-29 10:15:02 +0000133 return sys_ftruncate(fd, merge_64(a2, a3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136asmlinkage int sys32_llseek(unsigned int fd, unsigned int offset_high,
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900137 unsigned int offset_low, loff_t __user * result,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int origin)
139{
140 return sys_llseek(fd, offset_high, offset_low, result, origin);
141}
142
143/* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
144 lseek back to original location. They fail just like lseek does on
145 non-seekable files. */
146
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900147asmlinkage ssize_t sys32_pread(unsigned int fd, char __user * buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 size_t count, u32 unused, u64 a4, u64 a5)
149{
Al Viro6ad00132006-04-26 07:28:09 +0100150 return sys_pread64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900153asmlinkage ssize_t sys32_pwrite(unsigned int fd, const char __user * buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 size_t count, u32 unused, u64 a4, u64 a5)
155{
Al Viro6ad00132006-04-26 07:28:09 +0100156 return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159asmlinkage int sys32_sched_rr_get_interval(compat_pid_t pid,
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900160 struct compat_timespec __user *interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct timespec t;
163 int ret;
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100164 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100166 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900167 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100168 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (put_user (t.tv_sec, &interval->tv_sec) ||
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100170 __put_user(t.tv_nsec, &interval->tv_nsec))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -EFAULT;
172 return ret;
173}
174
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000175#ifdef CONFIG_SYSVIPC
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177asmlinkage long
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100178sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 int version, err;
181
182 version = call >> 16; /* hack for backward compatibility */
183 call &= 0xffff;
184
185 switch (call) {
186 case SEMOP:
187 /* struct sembuf is the same on 32 and 64bit :)) */
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900188 err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
190 case SEMTIMEDOP:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900191 err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
192 compat_ptr(fifth));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 break;
194 case SEMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900195 err = sys_semget(first, second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197 case SEMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900198 err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case MSGSND:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900201 err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203 case MSGRCV:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900204 err = compat_sys_msgrcv(first, second, fifth, third,
205 version, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
207 case MSGGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900208 err = sys_msgget((key_t) first, second);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 break;
210 case MSGCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900211 err = compat_sys_msgctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 case SHMAT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900214 err = compat_sys_shmat(first, second, third, version,
215 compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 break;
217 case SHMDT:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900218 err = sys_shmdt(compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
220 case SHMGET:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900221 err = sys_shmget(first, (unsigned)second, third);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223 case SHMCTL:
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900224 err = compat_sys_shmctl(first, second, compat_ptr(ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
226 default:
227 err = -EINVAL;
228 break;
229 }
230
231 return err;
232}
233
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000234#else
235
236asmlinkage long
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100237sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth)
Ralf Baechle65f8ebe2007-03-10 18:22:25 +0000238{
239 return -ENOSYS;
240}
241
242#endif /* CONFIG_SYSVIPC */
243
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900244#ifdef CONFIG_MIPS32_N32
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900245asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900247 /* compat_sys_semctl expects a pointer to union semun */
248 u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900249 if (put_user(arg, uptr))
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900250 return -EFAULT;
251 return compat_sys_semctl(semid, semnum, cmd, uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
Atsushi Nemotoe16d8df2007-01-10 18:53:33 +0900253
254asmlinkage long sysn32_msgsnd(int msqid, u32 msgp, unsigned msgsz, int msgflg)
255{
256 return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
257}
258
259asmlinkage long sysn32_msgrcv(int msqid, u32 msgp, size_t msgsz, int msgtyp,
260 int msgflg)
261{
262 return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
263 compat_ptr(msgp));
264}
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900265#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267struct sysctl_args32
268{
269 compat_caddr_t name;
270 int nlen;
271 compat_caddr_t oldval;
272 compat_caddr_t oldlenp;
273 compat_caddr_t newval;
274 compat_size_t newlen;
275 unsigned int __unused[4];
276};
277
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700278#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900280asmlinkage long sys32_sysctl(struct sysctl_args32 __user *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct sysctl_args32 tmp;
283 int error;
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900284 size_t oldlen;
285 size_t __user *oldlenp = NULL;
286 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (copy_from_user(&tmp, args, sizeof(tmp)))
289 return -EFAULT;
290
291 if (tmp.oldval && tmp.oldlenp) {
292 /* Duh, this is ugly and might not work if sysctl_args
293 is in read-only memory, but do_sysctl does indirectly
294 a lot of uaccess in both directions and we'd have to
295 basically copy the whole sysctl.c here, and
296 glibc's __sysctl uses rw memory for the structure
297 anyway. */
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900298 if (get_user(oldlen, (u32 __user *)A(tmp.oldlenp)) ||
299 put_user(oldlen, (size_t __user *)addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -EFAULT;
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900301 oldlenp = (size_t __user *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303
304 lock_kernel();
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900305 error = do_sysctl((int __user *)A(tmp.name), tmp.nlen, (void __user *)A(tmp.oldval),
306 oldlenp, (void __user *)A(tmp.newval), tmp.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unlock_kernel();
308 if (oldlenp) {
309 if (!error) {
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900310 if (get_user(oldlen, (size_t __user *)addr) ||
311 put_user(oldlen, (u32 __user *)A(tmp.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 error = -EFAULT;
313 }
314 copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
315 }
316 return error;
317}
318
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700319#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900321asmlinkage long sys32_newuname(struct new_utsname __user * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int ret = 0;
324
325 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700326 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 ret = -EFAULT;
328 up_read(&uts_sem);
329
330 if (current->personality == PER_LINUX32 && !ret)
331 if (copy_to_user(name->machine, "mips\0\0\0", 8))
332 ret = -EFAULT;
333
334 return ret;
335}
336
337asmlinkage int sys32_personality(unsigned long personality)
338{
339 int ret;
Thiemo Seufer53571ce2006-08-13 00:53:29 +0100340 personality &= 0xffffffff;
341 if (personality(current->personality) == PER_LINUX32 &&
342 personality == PER_LINUX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 personality = PER_LINUX32;
344 ret = sys_personality(personality);
345 if (ret == PER_LINUX32)
346 ret = PER_LINUX;
347 return ret;
348}
349
350/* ustat compatibility */
351struct ustat32 {
352 compat_daddr_t f_tfree;
353 compat_ino_t f_tinode;
354 char f_fname[6];
355 char f_fpack[6];
356};
357
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900358extern asmlinkage long sys_ustat(dev_t dev, struct ustat __user * ubuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900360asmlinkage int sys32_ustat(dev_t dev, struct ustat32 __user * ubuf32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 int err;
Ralf Baechlee0daad42007-02-05 00:10:11 +0000363 struct ustat tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct ustat32 tmp32;
365 mm_segment_t old_fs = get_fs();
366
367 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900368 err = sys_ustat(dev, (struct ustat __user *)&tmp);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100369 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (err)
372 goto out;
373
Ralf Baechle21a151d2007-10-11 23:46:15 +0100374 memset(&tmp32, 0, sizeof(struct ustat32));
Ralf Baechlee0daad42007-02-05 00:10:11 +0000375 tmp32.f_tfree = tmp.f_tfree;
376 tmp32.f_tinode = tmp.f_tinode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Ralf Baechle21a151d2007-10-11 23:46:15 +0100378 err = copy_to_user(ubuf32, &tmp32, sizeof(struct ustat32)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380out:
381 return err;
382}
383
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900384asmlinkage int sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 s32 count)
386{
387 mm_segment_t old_fs = get_fs();
388 int ret;
389 off_t of;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (offset && get_user(of, offset))
392 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 set_fs(KERNEL_DS);
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900395 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 set_fs(old_fs);
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (offset && put_user(of, offset))
399 return -EFAULT;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return ret;
402}
403
404asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
405 size_t count)
406{
407 return sys_readahead(fd, merge_64(a2, a3), count);
408}
409
Ralf Baechlea8d587a2006-04-01 07:49:21 +0100410asmlinkage long sys32_sync_file_range(int fd, int __pad,
411 unsigned long a2, unsigned long a3,
412 unsigned long a4, unsigned long a5,
413 int flags)
414{
415 return sys_sync_file_range(fd,
416 merge_64(a2, a3), merge_64(a4, a5),
417 flags);
418}
419
Atsushi Nemoto8676d2e2007-05-18 00:46:13 +0900420asmlinkage long sys32_fadvise64_64(int fd, int __pad,
421 unsigned long a2, unsigned long a3,
422 unsigned long a4, unsigned long a5,
423 int flags)
424{
425 return sys_fadvise64_64(fd,
426 merge_64(a2, a3), merge_64(a4, a5),
427 flags);
428}
429
Ralf Baechle4dc46772007-07-26 03:38:24 +0100430asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
431 unsigned offset_a3, unsigned len_a4, unsigned len_a5)
432{
433 return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
434 merge_64(len_a4, len_a5));
435}
436
Ralf Baechle3c370262005-04-13 17:43:59 +0000437save_static_function(sys32_clone);
David Rientjesf5dbeaf2007-07-22 01:01:39 -0700438static int noinline __used
Ralf Baechle3c370262005-04-13 17:43:59 +0000439_sys32_clone(nabi_no_regargs struct pt_regs regs)
440{
441 unsigned long clone_flags;
442 unsigned long newsp;
443 int __user *parent_tidptr, *child_tidptr;
444
445 clone_flags = regs.regs[4];
446 newsp = regs.regs[5];
447 if (!newsp)
448 newsp = regs.regs[29];
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900449 parent_tidptr = (int __user *) regs.regs[6];
Ralf Baechle3c370262005-04-13 17:43:59 +0000450
451 /* Use __dummy4 instead of getting it off the stack, so that
452 syscall() works. */
453 child_tidptr = (int __user *) __dummy4;
454 return do_fork(clone_flags, newsp, &regs, 0,
455 parent_tidptr, child_tidptr);
456}