]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/s390/kernel/compat_linux.c
compat: move cp_compat_stat to common code
[linux-2.6-omap-h63xx.git] / arch / s390 / kernel / compat_linux.c
1 /*
2  *  arch/s390x/kernel/linux32.c
3  *
4  *  S390 version
5  *    Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6  *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7  *               Gerhard Tonn (ton@de.ibm.com)   
8  *               Thomas Spatzier (tspat@de.ibm.com)
9  *
10  *  Conversion between 31bit and 64bit native syscalls.
11  *
12  * Heavily inspired by the 32-bit Sparc compat code which is 
13  * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
14  * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
15  *
16  */
17
18
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/fs.h> 
22 #include <linux/mm.h> 
23 #include <linux/file.h> 
24 #include <linux/signal.h>
25 #include <linux/resource.h>
26 #include <linux/times.h>
27 #include <linux/utsname.h>
28 #include <linux/smp.h>
29 #include <linux/smp_lock.h>
30 #include <linux/sem.h>
31 #include <linux/msg.h>
32 #include <linux/shm.h>
33 #include <linux/slab.h>
34 #include <linux/uio.h>
35 #include <linux/nfs_fs.h>
36 #include <linux/quota.h>
37 #include <linux/module.h>
38 #include <linux/sunrpc/svc.h>
39 #include <linux/nfsd/nfsd.h>
40 #include <linux/nfsd/cache.h>
41 #include <linux/nfsd/xdr.h>
42 #include <linux/nfsd/syscall.h>
43 #include <linux/poll.h>
44 #include <linux/personality.h>
45 #include <linux/stat.h>
46 #include <linux/filter.h>
47 #include <linux/highmem.h>
48 #include <linux/highuid.h>
49 #include <linux/mman.h>
50 #include <linux/ipv6.h>
51 #include <linux/in.h>
52 #include <linux/icmpv6.h>
53 #include <linux/syscalls.h>
54 #include <linux/sysctl.h>
55 #include <linux/binfmts.h>
56 #include <linux/capability.h>
57 #include <linux/compat.h>
58 #include <linux/vfs.h>
59 #include <linux/ptrace.h>
60 #include <linux/fadvise.h>
61 #include <linux/ipc.h>
62
63 #include <asm/types.h>
64 #include <asm/uaccess.h>
65
66 #include <net/scm.h>
67 #include <net/sock.h>
68
69 #include "compat_linux.h"
70
71 long psw_user32_bits    = (PSW_BASE32_BITS | PSW_MASK_DAT | PSW_ASC_HOME |
72                            PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK |
73                            PSW_MASK_PSTATE | PSW_DEFAULT_KEY);
74 long psw32_user_bits    = (PSW32_BASE_BITS | PSW32_MASK_DAT | PSW32_ASC_HOME |
75                            PSW32_MASK_IO | PSW32_MASK_EXT | PSW32_MASK_MCHECK |
76                            PSW32_MASK_PSTATE);
77  
78 /* For this source file, we want overflow handling. */
79
80 #undef high2lowuid
81 #undef high2lowgid
82 #undef low2highuid
83 #undef low2highgid
84 #undef SET_UID16
85 #undef SET_GID16
86 #undef NEW_TO_OLD_UID
87 #undef NEW_TO_OLD_GID
88 #undef SET_OLDSTAT_UID
89 #undef SET_OLDSTAT_GID
90 #undef SET_STAT_UID
91 #undef SET_STAT_GID
92
93 #define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
94 #define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
95 #define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
96 #define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
97 #define SET_UID16(var, uid)     var = high2lowuid(uid)
98 #define SET_GID16(var, gid)     var = high2lowgid(gid)
99 #define NEW_TO_OLD_UID(uid)     high2lowuid(uid)
100 #define NEW_TO_OLD_GID(gid)     high2lowgid(gid)
101 #define SET_OLDSTAT_UID(stat, uid)      (stat).st_uid = high2lowuid(uid)
102 #define SET_OLDSTAT_GID(stat, gid)      (stat).st_gid = high2lowgid(gid)
103 #define SET_STAT_UID(stat, uid)         (stat).st_uid = high2lowuid(uid)
104 #define SET_STAT_GID(stat, gid)         (stat).st_gid = high2lowgid(gid)
105
106 asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
107 {
108         return sys_chown(filename, low2highuid(user), low2highgid(group));
109 }
110
111 asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
112 {
113         return sys_lchown(filename, low2highuid(user), low2highgid(group));
114 }
115
116 asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
117 {
118         return sys_fchown(fd, low2highuid(user), low2highgid(group));
119 }
120
121 asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
122 {
123         return sys_setregid(low2highgid(rgid), low2highgid(egid));
124 }
125
126 asmlinkage long sys32_setgid16(u16 gid)
127 {
128         return sys_setgid((gid_t)gid);
129 }
130
131 asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
132 {
133         return sys_setreuid(low2highuid(ruid), low2highuid(euid));
134 }
135
136 asmlinkage long sys32_setuid16(u16 uid)
137 {
138         return sys_setuid((uid_t)uid);
139 }
140
141 asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
142 {
143         return sys_setresuid(low2highuid(ruid), low2highuid(euid),
144                 low2highuid(suid));
145 }
146
147 asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
148 {
149         int retval;
150
151         if (!(retval = put_user(high2lowuid(current->uid), ruid)) &&
152             !(retval = put_user(high2lowuid(current->euid), euid)))
153                 retval = put_user(high2lowuid(current->suid), suid);
154
155         return retval;
156 }
157
158 asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
159 {
160         return sys_setresgid(low2highgid(rgid), low2highgid(egid),
161                 low2highgid(sgid));
162 }
163
164 asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
165 {
166         int retval;
167
168         if (!(retval = put_user(high2lowgid(current->gid), rgid)) &&
169             !(retval = put_user(high2lowgid(current->egid), egid)))
170                 retval = put_user(high2lowgid(current->sgid), sgid);
171
172         return retval;
173 }
174
175 asmlinkage long sys32_setfsuid16(u16 uid)
176 {
177         return sys_setfsuid((uid_t)uid);
178 }
179
180 asmlinkage long sys32_setfsgid16(u16 gid)
181 {
182         return sys_setfsgid((gid_t)gid);
183 }
184
185 static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
186 {
187         int i;
188         u16 group;
189
190         for (i = 0; i < group_info->ngroups; i++) {
191                 group = (u16)GROUP_AT(group_info, i);
192                 if (put_user(group, grouplist+i))
193                         return -EFAULT;
194         }
195
196         return 0;
197 }
198
199 static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
200 {
201         int i;
202         u16 group;
203
204         for (i = 0; i < group_info->ngroups; i++) {
205                 if (get_user(group, grouplist+i))
206                         return  -EFAULT;
207                 GROUP_AT(group_info, i) = (gid_t)group;
208         }
209
210         return 0;
211 }
212
213 asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
214 {
215         int i;
216
217         if (gidsetsize < 0)
218                 return -EINVAL;
219
220         get_group_info(current->group_info);
221         i = current->group_info->ngroups;
222         if (gidsetsize) {
223                 if (i > gidsetsize) {
224                         i = -EINVAL;
225                         goto out;
226                 }
227                 if (groups16_to_user(grouplist, current->group_info)) {
228                         i = -EFAULT;
229                         goto out;
230                 }
231         }
232 out:
233         put_group_info(current->group_info);
234         return i;
235 }
236
237 asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
238 {
239         struct group_info *group_info;
240         int retval;
241
242         if (!capable(CAP_SETGID))
243                 return -EPERM;
244         if ((unsigned)gidsetsize > NGROUPS_MAX)
245                 return -EINVAL;
246
247         group_info = groups_alloc(gidsetsize);
248         if (!group_info)
249                 return -ENOMEM;
250         retval = groups16_from_user(group_info, grouplist);
251         if (retval) {
252                 put_group_info(group_info);
253                 return retval;
254         }
255
256         retval = set_current_groups(group_info);
257         put_group_info(group_info);
258
259         return retval;
260 }
261
262 asmlinkage long sys32_getuid16(void)
263 {
264         return high2lowuid(current->uid);
265 }
266
267 asmlinkage long sys32_geteuid16(void)
268 {
269         return high2lowuid(current->euid);
270 }
271
272 asmlinkage long sys32_getgid16(void)
273 {
274         return high2lowgid(current->gid);
275 }
276
277 asmlinkage long sys32_getegid16(void)
278 {
279         return high2lowgid(current->egid);
280 }
281
282 /* 32-bit timeval and related flotsam.  */
283
284 static inline long get_tv32(struct timeval *o, struct compat_timeval __user *i)
285 {
286         return (!access_ok(VERIFY_READ, o, sizeof(*o)) ||
287                 (__get_user(o->tv_sec, &i->tv_sec) ||
288                  __get_user(o->tv_usec, &i->tv_usec)));
289 }
290
291 static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
292 {
293         return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
294                 (__put_user(i->tv_sec, &o->tv_sec) ||
295                  __put_user(i->tv_usec, &o->tv_usec)));
296 }
297
298 /*
299  * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
300  *
301  * This is really horribly ugly.
302  */
303 #ifdef CONFIG_SYSVIPC
304 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
305 {
306         if (call >> 16)         /* hack for backward compatibility */
307                 return -EINVAL;
308
309         call &= 0xffff;
310
311         switch (call) {
312         case SEMTIMEDOP:
313                 return compat_sys_semtimedop(first, compat_ptr(ptr),
314                                              second, compat_ptr(third));
315         case SEMOP:
316                 /* struct sembuf is the same on 32 and 64bit :)) */
317                 return sys_semtimedop(first, compat_ptr(ptr),
318                                       second, NULL);
319         case SEMGET:
320                 return sys_semget(first, second, third);
321         case SEMCTL:
322                 return compat_sys_semctl(first, second, third,
323                                          compat_ptr(ptr));
324         case MSGSND:
325                 return compat_sys_msgsnd(first, second, third,
326                                          compat_ptr(ptr));
327         case MSGRCV:
328                 return compat_sys_msgrcv(first, second, 0, third,
329                                          0, compat_ptr(ptr));
330         case MSGGET:
331                 return sys_msgget((key_t) first, second);
332         case MSGCTL:
333                 return compat_sys_msgctl(first, second, compat_ptr(ptr));
334         case SHMAT:
335                 return compat_sys_shmat(first, second, third,
336                                         0, compat_ptr(ptr));
337         case SHMDT:
338                 return sys_shmdt(compat_ptr(ptr));
339         case SHMGET:
340                 return sys_shmget(first, (unsigned)second, third);
341         case SHMCTL:
342                 return compat_sys_shmctl(first, second, compat_ptr(ptr));
343         }
344
345         return -ENOSYS;
346 }
347 #endif
348
349 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
350 {
351         if ((int)high < 0)
352                 return -EINVAL;
353         else
354                 return sys_truncate(path, (high << 32) | low);
355 }
356
357 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
358 {
359         if ((int)high < 0)
360                 return -EINVAL;
361         else
362                 return sys_ftruncate(fd, (high << 32) | low);
363 }
364
365 asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
366                                 struct compat_timespec __user *interval)
367 {
368         struct timespec t;
369         int ret;
370         mm_segment_t old_fs = get_fs ();
371         
372         set_fs (KERNEL_DS);
373         ret = sys_sched_rr_get_interval(pid,
374                                         (struct timespec __force __user *) &t);
375         set_fs (old_fs);
376         if (put_compat_timespec(&t, interval))
377                 return -EFAULT;
378         return ret;
379 }
380
381 asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
382                         compat_sigset_t __user *oset, size_t sigsetsize)
383 {
384         sigset_t s;
385         compat_sigset_t s32;
386         int ret;
387         mm_segment_t old_fs = get_fs();
388         
389         if (set) {
390                 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
391                         return -EFAULT;
392                 switch (_NSIG_WORDS) {
393                 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
394                 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
395                 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
396                 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
397                 }
398         }
399         set_fs (KERNEL_DS);
400         ret = sys_rt_sigprocmask(how,
401                                  set ? (sigset_t __force __user *) &s : NULL,
402                                  oset ? (sigset_t __force __user *) &s : NULL,
403                                  sigsetsize);
404         set_fs (old_fs);
405         if (ret) return ret;
406         if (oset) {
407                 switch (_NSIG_WORDS) {
408                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
409                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
410                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
411                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
412                 }
413                 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
414                         return -EFAULT;
415         }
416         return 0;
417 }
418
419 asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
420                                 size_t sigsetsize)
421 {
422         sigset_t s;
423         compat_sigset_t s32;
424         int ret;
425         mm_segment_t old_fs = get_fs();
426                 
427         set_fs (KERNEL_DS);
428         ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
429         set_fs (old_fs);
430         if (!ret) {
431                 switch (_NSIG_WORDS) {
432                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
433                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
434                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
435                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
436                 }
437                 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
438                         return -EFAULT;
439         }
440         return ret;
441 }
442
443 asmlinkage long
444 sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
445 {
446         siginfo_t info;
447         int ret;
448         mm_segment_t old_fs = get_fs();
449         
450         if (copy_siginfo_from_user32(&info, uinfo))
451                 return -EFAULT;
452         set_fs (KERNEL_DS);
453         ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
454         set_fs (old_fs);
455         return ret;
456 }
457
458 /*
459  * sys32_execve() executes a new program after the asm stub has set
460  * things up for us.  This should basically do what I want it to.
461  */
462 asmlinkage long sys32_execve(void)
463 {
464         struct pt_regs *regs = task_pt_regs(current);
465         char *filename;
466         unsigned long result;
467         int rc;
468
469         filename = getname(compat_ptr(regs->orig_gpr2));
470         if (IS_ERR(filename)) {
471                 result = PTR_ERR(filename);
472                 goto out;
473         }
474         rc = compat_do_execve(filename, compat_ptr(regs->gprs[3]),
475                               compat_ptr(regs->gprs[4]), regs);
476         if (rc) {
477                 result = rc;
478                 goto out_putname;
479         }
480         task_lock(current);
481         current->ptrace &= ~PT_DTRACE;
482         task_unlock(current);
483         current->thread.fp_regs.fpc=0;
484         asm volatile("sfpc %0,0" : : "d" (0));
485         result = regs->gprs[2];
486 out_putname:
487         putname(filename);
488 out:
489         return result;
490 }
491
492
493 #ifdef CONFIG_MODULES
494
495 asmlinkage long
496 sys32_init_module(void __user *umod, unsigned long len,
497                 const char __user *uargs)
498 {
499         return sys_init_module(umod, len, uargs);
500 }
501
502 asmlinkage long
503 sys32_delete_module(const char __user *name_user, unsigned int flags)
504 {
505         return sys_delete_module(name_user, flags);
506 }
507
508 #else /* CONFIG_MODULES */
509
510 asmlinkage long
511 sys32_init_module(void __user *umod, unsigned long len,
512                 const char __user *uargs)
513 {
514         return -ENOSYS;
515 }
516
517 asmlinkage long
518 sys32_delete_module(const char __user *name_user, unsigned int flags)
519 {
520         return -ENOSYS;
521 }
522
523 #endif  /* CONFIG_MODULES */
524
525 /* Translations due to time_t size differences.  Which affects all
526    sorts of things, like timeval and itimerval.  */
527
528 extern struct timezone sys_tz;
529
530 asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
531 {
532         if (tv) {
533                 struct timeval ktv;
534                 do_gettimeofday(&ktv);
535                 if (put_tv32(tv, &ktv))
536                         return -EFAULT;
537         }
538         if (tz) {
539                 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
540                         return -EFAULT;
541         }
542         return 0;
543 }
544
545 static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
546 {
547         long usec;
548
549         if (!access_ok(VERIFY_READ, i, sizeof(*i)))
550                 return -EFAULT;
551         if (__get_user(o->tv_sec, &i->tv_sec))
552                 return -EFAULT;
553         if (__get_user(usec, &i->tv_usec))
554                 return -EFAULT;
555         o->tv_nsec = usec * 1000;
556         return 0;
557 }
558
559 asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
560 {
561         struct timespec kts;
562         struct timezone ktz;
563
564         if (tv) {
565                 if (get_ts32(&kts, tv))
566                         return -EFAULT;
567         }
568         if (tz) {
569                 if (copy_from_user(&ktz, tz, sizeof(ktz)))
570                         return -EFAULT;
571         }
572
573         return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
574 }
575
576 asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
577                                 size_t count, u32 poshi, u32 poslo)
578 {
579         if ((compat_ssize_t) count < 0)
580                 return -EINVAL;
581         return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
582 }
583
584 asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
585                                 size_t count, u32 poshi, u32 poslo)
586 {
587         if ((compat_ssize_t) count < 0)
588                 return -EINVAL;
589         return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
590 }
591
592 asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
593 {
594         return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
595 }
596
597 asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
598 {
599         mm_segment_t old_fs = get_fs();
600         int ret;
601         off_t of;
602         
603         if (offset && get_user(of, offset))
604                 return -EFAULT;
605                 
606         set_fs(KERNEL_DS);
607         ret = sys_sendfile(out_fd, in_fd,
608                            offset ? (off_t __force __user *) &of : NULL, count);
609         set_fs(old_fs);
610         
611         if (offset && put_user(of, offset))
612                 return -EFAULT;
613                 
614         return ret;
615 }
616
617 asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
618                                 compat_loff_t __user *offset, s32 count)
619 {
620         mm_segment_t old_fs = get_fs();
621         int ret;
622         loff_t lof;
623         
624         if (offset && get_user(lof, offset))
625                 return -EFAULT;
626                 
627         set_fs(KERNEL_DS);
628         ret = sys_sendfile64(out_fd, in_fd,
629                              offset ? (loff_t __force __user *) &lof : NULL,
630                              count);
631         set_fs(old_fs);
632         
633         if (offset && put_user(lof, offset))
634                 return -EFAULT;
635                 
636         return ret;
637 }
638
639 #ifdef CONFIG_SYSCTL_SYSCALL
640 struct __sysctl_args32 {
641         u32 name;
642         int nlen;
643         u32 oldval;
644         u32 oldlenp;
645         u32 newval;
646         u32 newlen;
647         u32 __unused[4];
648 };
649
650 asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
651 {
652         struct __sysctl_args32 tmp;
653         int error;
654         size_t oldlen;
655         size_t __user *oldlenp = NULL;
656         unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
657
658         if (copy_from_user(&tmp, args, sizeof(tmp)))
659                 return -EFAULT;
660
661         if (tmp.oldval && tmp.oldlenp) {
662                 /* Duh, this is ugly and might not work if sysctl_args
663                    is in read-only memory, but do_sysctl does indirectly
664                    a lot of uaccess in both directions and we'd have to
665                    basically copy the whole sysctl.c here, and
666                    glibc's __sysctl uses rw memory for the structure
667                    anyway.  */
668                 if (get_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)) ||
669                     put_user(oldlen, (size_t __user *)addr))
670                         return -EFAULT;
671                 oldlenp = (size_t __user *)addr;
672         }
673
674         lock_kernel();
675         error = do_sysctl(compat_ptr(tmp.name), tmp.nlen, compat_ptr(tmp.oldval),
676                           oldlenp, compat_ptr(tmp.newval), tmp.newlen);
677         unlock_kernel();
678         if (oldlenp) {
679                 if (!error) {
680                         if (get_user(oldlen, (size_t __user *)addr) ||
681                             put_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)))
682                                 error = -EFAULT;
683                 }
684                 if (copy_to_user(args->__unused, tmp.__unused,
685                                  sizeof(tmp.__unused)))
686                         error = -EFAULT;
687         }
688         return error;
689 }
690 #endif
691
692 struct stat64_emu31 {
693         unsigned long long  st_dev;
694         unsigned int    __pad1;
695 #define STAT64_HAS_BROKEN_ST_INO        1
696         u32             __st_ino;
697         unsigned int    st_mode;
698         unsigned int    st_nlink;
699         u32             st_uid;
700         u32             st_gid;
701         unsigned long long  st_rdev;
702         unsigned int    __pad3;
703         long            st_size;
704         u32             st_blksize;
705         unsigned char   __pad4[4];
706         u32             __pad5;     /* future possible st_blocks high bits */
707         u32             st_blocks;  /* Number 512-byte blocks allocated. */
708         u32             st_atime;
709         u32             __pad6;
710         u32             st_mtime;
711         u32             __pad7;
712         u32             st_ctime;
713         u32             __pad8;     /* will be high 32 bits of ctime someday */
714         unsigned long   st_ino;
715 };      
716
717 static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
718 {
719         struct stat64_emu31 tmp;
720
721         memset(&tmp, 0, sizeof(tmp));
722
723         tmp.st_dev = huge_encode_dev(stat->dev);
724         tmp.st_ino = stat->ino;
725         tmp.__st_ino = (u32)stat->ino;
726         tmp.st_mode = stat->mode;
727         tmp.st_nlink = (unsigned int)stat->nlink;
728         tmp.st_uid = stat->uid;
729         tmp.st_gid = stat->gid;
730         tmp.st_rdev = huge_encode_dev(stat->rdev);
731         tmp.st_size = stat->size;
732         tmp.st_blksize = (u32)stat->blksize;
733         tmp.st_blocks = (u32)stat->blocks;
734         tmp.st_atime = (u32)stat->atime.tv_sec;
735         tmp.st_mtime = (u32)stat->mtime.tv_sec;
736         tmp.st_ctime = (u32)stat->ctime.tv_sec;
737
738         return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 
739 }
740
741 asmlinkage long sys32_stat64(char __user * filename, struct stat64_emu31 __user * statbuf)
742 {
743         struct kstat stat;
744         int ret = vfs_stat(filename, &stat);
745         if (!ret)
746                 ret = cp_stat64(statbuf, &stat);
747         return ret;
748 }
749
750 asmlinkage long sys32_lstat64(char __user * filename, struct stat64_emu31 __user * statbuf)
751 {
752         struct kstat stat;
753         int ret = vfs_lstat(filename, &stat);
754         if (!ret)
755                 ret = cp_stat64(statbuf, &stat);
756         return ret;
757 }
758
759 asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
760 {
761         struct kstat stat;
762         int ret = vfs_fstat(fd, &stat);
763         if (!ret)
764                 ret = cp_stat64(statbuf, &stat);
765         return ret;
766 }
767
768 asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename,
769                                 struct stat64_emu31 __user* statbuf, int flag)
770 {
771         struct kstat stat;
772         int error = -EINVAL;
773
774         if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
775                 goto out;
776
777         if (flag & AT_SYMLINK_NOFOLLOW)
778                 error = vfs_lstat_fd(dfd, filename, &stat);
779         else
780                 error = vfs_stat_fd(dfd, filename, &stat);
781
782         if (!error)
783                 error = cp_stat64(statbuf, &stat);
784 out:
785         return error;
786 }
787
788 /*
789  * Linux/i386 didn't use to be able to handle more than
790  * 4 system call parameters, so these system calls used a memory
791  * block for parameter passing..
792  */
793
794 struct mmap_arg_struct_emu31 {
795         u32     addr;
796         u32     len;
797         u32     prot;
798         u32     flags;
799         u32     fd;
800         u32     offset;
801 };
802
803 /* common code for old and new mmaps */
804 static inline long do_mmap2(
805         unsigned long addr, unsigned long len,
806         unsigned long prot, unsigned long flags,
807         unsigned long fd, unsigned long pgoff)
808 {
809         struct file * file = NULL;
810         unsigned long error = -EBADF;
811
812         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
813         if (!(flags & MAP_ANONYMOUS)) {
814                 file = fget(fd);
815                 if (!file)
816                         goto out;
817         }
818
819         down_write(&current->mm->mmap_sem);
820         error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
821         if (!IS_ERR((void *) error) && error + len >= 0x80000000ULL) {
822                 /* Result is out of bounds.  */
823                 do_munmap(current->mm, addr, len);
824                 error = -ENOMEM;
825         }
826         up_write(&current->mm->mmap_sem);
827
828         if (file)
829                 fput(file);
830 out:    
831         return error;
832 }
833
834
835 asmlinkage unsigned long
836 old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
837 {
838         struct mmap_arg_struct_emu31 a;
839         int error = -EFAULT;
840
841         if (copy_from_user(&a, arg, sizeof(a)))
842                 goto out;
843
844         error = -EINVAL;
845         if (a.offset & ~PAGE_MASK)
846                 goto out;
847
848         error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT); 
849 out:
850         return error;
851 }
852
853 asmlinkage long 
854 sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
855 {
856         struct mmap_arg_struct_emu31 a;
857         int error = -EFAULT;
858
859         if (copy_from_user(&a, arg, sizeof(a)))
860                 goto out;
861         error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
862 out:
863         return error;
864 }
865
866 asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
867 {
868         if ((compat_ssize_t) count < 0)
869                 return -EINVAL; 
870
871         return sys_read(fd, buf, count);
872 }
873
874 asmlinkage long sys32_write(unsigned int fd, char __user * buf, size_t count)
875 {
876         if ((compat_ssize_t) count < 0)
877                 return -EINVAL; 
878
879         return sys_write(fd, buf, count);
880 }
881
882 asmlinkage long sys32_clone(void)
883 {
884         struct pt_regs *regs = task_pt_regs(current);
885         unsigned long clone_flags;
886         unsigned long newsp;
887         int __user *parent_tidptr, *child_tidptr;
888
889         clone_flags = regs->gprs[3] & 0xffffffffUL;
890         newsp = regs->orig_gpr2 & 0x7fffffffUL;
891         parent_tidptr = compat_ptr(regs->gprs[4]);
892         child_tidptr = compat_ptr(regs->gprs[5]);
893         if (!newsp)
894                 newsp = regs->gprs[15];
895         return do_fork(clone_flags, newsp, regs, 0,
896                        parent_tidptr, child_tidptr);
897 }
898
899 /*
900  * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
901  * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
902  * because the 31 bit values differ from the 64 bit values.
903  */
904
905 asmlinkage long
906 sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
907 {
908         if (advise == 4)
909                 advise = POSIX_FADV_DONTNEED;
910         else if (advise == 5)
911                 advise = POSIX_FADV_NOREUSE;
912         return sys_fadvise64(fd, offset, len, advise);
913 }
914
915 struct fadvise64_64_args {
916         int fd;
917         long long offset;
918         long long len;
919         int advice;
920 };
921
922 asmlinkage long
923 sys32_fadvise64_64(struct fadvise64_64_args __user *args)
924 {
925         struct fadvise64_64_args a;
926
927         if ( copy_from_user(&a, args, sizeof(a)) )
928                 return -EFAULT;
929         if (a.advice == 4)
930                 a.advice = POSIX_FADV_DONTNEED;
931         else if (a.advice == 5)
932                 a.advice = POSIX_FADV_NOREUSE;
933         return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
934 }