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