fedora core 6 1.2949 + vserver 2.2.0
[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 #ifdef CONFIG_SYSVIPC
299 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
300 {
301         if (call >> 16)         /* hack for backward compatibility */
302                 return -EINVAL;
303
304         call &= 0xffff;
305
306         switch (call) {
307         case SEMTIMEDOP:
308                 return compat_sys_semtimedop(first, compat_ptr(ptr),
309                                              second, compat_ptr(third));
310         case SEMOP:
311                 /* struct sembuf is the same on 32 and 64bit :)) */
312                 return sys_semtimedop(first, compat_ptr(ptr),
313                                       second, NULL);
314         case SEMGET:
315                 return sys_semget(first, second, third);
316         case SEMCTL:
317                 return compat_sys_semctl(first, second, third,
318                                          compat_ptr(ptr));
319         case MSGSND:
320                 return compat_sys_msgsnd(first, second, third,
321                                          compat_ptr(ptr));
322         case MSGRCV:
323                 return compat_sys_msgrcv(first, second, 0, third,
324                                          0, compat_ptr(ptr));
325         case MSGGET:
326                 return sys_msgget((key_t) first, second);
327         case MSGCTL:
328                 return compat_sys_msgctl(first, second, compat_ptr(ptr));
329         case SHMAT:
330                 return compat_sys_shmat(first, second, third,
331                                         0, compat_ptr(ptr));
332         case SHMDT:
333                 return sys_shmdt(compat_ptr(ptr));
334         case SHMGET:
335                 return sys_shmget(first, (unsigned)second, third);
336         case SHMCTL:
337                 return compat_sys_shmctl(first, second, compat_ptr(ptr));
338         }
339
340         return -ENOSYS;
341 }
342 #endif
343
344 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
345 {
346         if ((int)high < 0)
347                 return -EINVAL;
348         else
349                 return sys_truncate(path, (high << 32) | low);
350 }
351
352 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
353 {
354         if ((int)high < 0)
355                 return -EINVAL;
356         else
357                 return sys_ftruncate(fd, (high << 32) | low);
358 }
359
360 int cp_compat_stat(struct kstat *stat, struct compat_stat __user *statbuf)
361 {
362         compat_ino_t ino;
363         int err;
364
365         if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev))
366                 return -EOVERFLOW;
367
368         ino = stat->ino;
369         if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
370                 return -EOVERFLOW;
371
372         err = put_user(old_encode_dev(stat->dev), &statbuf->st_dev);
373         err |= put_user(stat->ino, &statbuf->st_ino);
374         err |= put_user(stat->mode, &statbuf->st_mode);
375         err |= put_user(stat->nlink, &statbuf->st_nlink);
376         err |= put_user(high2lowuid(stat->uid), &statbuf->st_uid);
377         err |= put_user(high2lowgid(stat->gid), &statbuf->st_gid);
378         err |= put_user(old_encode_dev(stat->rdev), &statbuf->st_rdev);
379         err |= put_user(stat->size, &statbuf->st_size);
380         err |= put_user(stat->atime.tv_sec, &statbuf->st_atime);
381         err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
382         err |= put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
383         err |= put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
384         err |= put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
385         err |= put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
386         err |= put_user(stat->blksize, &statbuf->st_blksize);
387         err |= put_user(stat->blocks, &statbuf->st_blocks);
388 /* fixme
389         err |= put_user(0, &statbuf->__unused4[0]);
390         err |= put_user(0, &statbuf->__unused4[1]);
391 */
392         return err;
393 }
394
395 struct sysinfo32 {
396         s32 uptime;
397         u32 loads[3];
398         u32 totalram;
399         u32 freeram;
400         u32 sharedram;
401         u32 bufferram;
402         u32 totalswap;
403         u32 freeswap;
404         unsigned short procs;
405         unsigned short pads;
406         u32 totalhigh;
407         u32 freehigh;
408         unsigned int mem_unit;
409         char _f[8];
410 };
411
412 asmlinkage long sys32_sysinfo(struct sysinfo32 __user *info)
413 {
414         struct sysinfo s;
415         int ret, err;
416         mm_segment_t old_fs = get_fs ();
417         
418         set_fs (KERNEL_DS);
419         ret = sys_sysinfo((struct sysinfo __user *) &s);
420         set_fs (old_fs);
421         err = put_user (s.uptime, &info->uptime);
422         err |= __put_user (s.loads[0], &info->loads[0]);
423         err |= __put_user (s.loads[1], &info->loads[1]);
424         err |= __put_user (s.loads[2], &info->loads[2]);
425         err |= __put_user (s.totalram, &info->totalram);
426         err |= __put_user (s.freeram, &info->freeram);
427         err |= __put_user (s.sharedram, &info->sharedram);
428         err |= __put_user (s.bufferram, &info->bufferram);
429         err |= __put_user (s.totalswap, &info->totalswap);
430         err |= __put_user (s.freeswap, &info->freeswap);
431         err |= __put_user (s.procs, &info->procs);
432         err |= __put_user (s.totalhigh, &info->totalhigh);
433         err |= __put_user (s.freehigh, &info->freehigh);
434         err |= __put_user (s.mem_unit, &info->mem_unit);
435         if (err)
436                 return -EFAULT;
437         return ret;
438 }
439
440 asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
441                                 struct compat_timespec __user *interval)
442 {
443         struct timespec t;
444         int ret;
445         mm_segment_t old_fs = get_fs ();
446         
447         set_fs (KERNEL_DS);
448         ret = sys_sched_rr_get_interval(pid, (struct timespec __user *) &t);
449         set_fs (old_fs);
450         if (put_compat_timespec(&t, interval))
451                 return -EFAULT;
452         return ret;
453 }
454
455 asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
456                         compat_sigset_t __user *oset, size_t sigsetsize)
457 {
458         sigset_t s;
459         compat_sigset_t s32;
460         int ret;
461         mm_segment_t old_fs = get_fs();
462         
463         if (set) {
464                 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
465                         return -EFAULT;
466                 switch (_NSIG_WORDS) {
467                 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
468                 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
469                 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
470                 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
471                 }
472         }
473         set_fs (KERNEL_DS);
474         ret = sys_rt_sigprocmask(how,
475                                  set ? (sigset_t __user *) &s : NULL,
476                                  oset ? (sigset_t __user *) &s : NULL,
477                                  sigsetsize);
478         set_fs (old_fs);
479         if (ret) return ret;
480         if (oset) {
481                 switch (_NSIG_WORDS) {
482                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
483                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
484                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
485                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
486                 }
487                 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
488                         return -EFAULT;
489         }
490         return 0;
491 }
492
493 asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
494                                 size_t sigsetsize)
495 {
496         sigset_t s;
497         compat_sigset_t s32;
498         int ret;
499         mm_segment_t old_fs = get_fs();
500                 
501         set_fs (KERNEL_DS);
502         ret = sys_rt_sigpending((sigset_t __user *) &s, sigsetsize);
503         set_fs (old_fs);
504         if (!ret) {
505                 switch (_NSIG_WORDS) {
506                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
507                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
508                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
509                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
510                 }
511                 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
512                         return -EFAULT;
513         }
514         return ret;
515 }
516
517 asmlinkage long
518 sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
519 {
520         siginfo_t info;
521         int ret;
522         mm_segment_t old_fs = get_fs();
523         
524         if (copy_siginfo_from_user32(&info, uinfo))
525                 return -EFAULT;
526         set_fs (KERNEL_DS);
527         ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *) &info);
528         set_fs (old_fs);
529         return ret;
530 }
531
532 /*
533  * sys32_execve() executes a new program after the asm stub has set
534  * things up for us.  This should basically do what I want it to.
535  */
536 asmlinkage long
537 sys32_execve(struct pt_regs regs)
538 {
539         int error;
540         char * filename;
541
542         filename = getname(compat_ptr(regs.orig_gpr2));
543         error = PTR_ERR(filename);
544         if (IS_ERR(filename))
545                 goto out;
546         error = compat_do_execve(filename, compat_ptr(regs.gprs[3]),
547                                  compat_ptr(regs.gprs[4]), &regs);
548         if (error == 0)
549         {
550                 current->thread.fp_regs.fpc=0;
551                 asm volatile("sfpc %0,0" : : "d" (0));
552         }
553         putname(filename);
554 out:
555         return error;
556 }
557
558
559 #ifdef CONFIG_MODULES
560
561 asmlinkage long
562 sys32_init_module(void __user *umod, unsigned long len,
563                 const char __user *uargs)
564 {
565         return sys_init_module(umod, len, uargs);
566 }
567
568 asmlinkage long
569 sys32_delete_module(const char __user *name_user, unsigned int flags)
570 {
571         return sys_delete_module(name_user, flags);
572 }
573
574 #else /* CONFIG_MODULES */
575
576 asmlinkage long
577 sys32_init_module(void __user *umod, unsigned long len,
578                 const char __user *uargs)
579 {
580         return -ENOSYS;
581 }
582
583 asmlinkage long
584 sys32_delete_module(const char __user *name_user, unsigned int flags)
585 {
586         return -ENOSYS;
587 }
588
589 #endif  /* CONFIG_MODULES */
590
591 /* Translations due to time_t size differences.  Which affects all
592    sorts of things, like timeval and itimerval.  */
593
594 extern struct timezone sys_tz;
595
596 asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
597 {
598         if (tv) {
599                 struct timeval ktv;
600                 vx_gettimeofday(&ktv);
601                 if (put_tv32(tv, &ktv))
602                         return -EFAULT;
603         }
604         if (tz) {
605                 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
606                         return -EFAULT;
607         }
608         return 0;
609 }
610
611 static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
612 {
613         long usec;
614
615         if (!access_ok(VERIFY_READ, i, sizeof(*i)))
616                 return -EFAULT;
617         if (__get_user(o->tv_sec, &i->tv_sec))
618                 return -EFAULT;
619         if (__get_user(usec, &i->tv_usec))
620                 return -EFAULT;
621         o->tv_nsec = usec * 1000;
622         return 0;
623 }
624
625 asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
626 {
627         struct timespec kts;
628         struct timezone ktz;
629
630         if (tv) {
631                 if (get_ts32(&kts, tv))
632                         return -EFAULT;
633         }
634         if (tz) {
635                 if (copy_from_user(&ktz, tz, sizeof(ktz)))
636                         return -EFAULT;
637         }
638
639         return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
640 }
641
642 /* These are here just in case some old sparc32 binary calls it. */
643 asmlinkage long sys32_pause(void)
644 {
645         current->state = TASK_INTERRUPTIBLE;
646         schedule();
647         return -ERESTARTNOHAND;
648 }
649
650 asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
651                                 size_t count, u32 poshi, u32 poslo)
652 {
653         if ((compat_ssize_t) count < 0)
654                 return -EINVAL;
655         return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
656 }
657
658 asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
659                                 size_t count, u32 poshi, u32 poslo)
660 {
661         if ((compat_ssize_t) count < 0)
662                 return -EINVAL;
663         return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
664 }
665
666 asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
667 {
668         return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
669 }
670
671 asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
672 {
673         mm_segment_t old_fs = get_fs();
674         int ret;
675         off_t of;
676         
677         if (offset && get_user(of, offset))
678                 return -EFAULT;
679                 
680         set_fs(KERNEL_DS);
681         ret = sys_sendfile(out_fd, in_fd,
682                            offset ? (off_t __user *) &of : NULL, count);
683         set_fs(old_fs);
684         
685         if (offset && put_user(of, offset))
686                 return -EFAULT;
687                 
688         return ret;
689 }
690
691 asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
692                                 compat_loff_t __user *offset, s32 count)
693 {
694         mm_segment_t old_fs = get_fs();
695         int ret;
696         loff_t lof;
697         
698         if (offset && get_user(lof, offset))
699                 return -EFAULT;
700                 
701         set_fs(KERNEL_DS);
702         ret = sys_sendfile64(out_fd, in_fd,
703                              offset ? (loff_t __user *) &lof : NULL, count);
704         set_fs(old_fs);
705         
706         if (offset && put_user(lof, offset))
707                 return -EFAULT;
708                 
709         return ret;
710 }
711
712 #ifdef CONFIG_SYSCTL_SYSCALL
713 struct __sysctl_args32 {
714         u32 name;
715         int nlen;
716         u32 oldval;
717         u32 oldlenp;
718         u32 newval;
719         u32 newlen;
720         u32 __unused[4];
721 };
722
723 asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
724 {
725         struct __sysctl_args32 tmp;
726         int error;
727         size_t oldlen;
728         size_t __user *oldlenp = NULL;
729         unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
730
731         if (copy_from_user(&tmp, args, sizeof(tmp)))
732                 return -EFAULT;
733
734         if (tmp.oldval && tmp.oldlenp) {
735                 /* Duh, this is ugly and might not work if sysctl_args
736                    is in read-only memory, but do_sysctl does indirectly
737                    a lot of uaccess in both directions and we'd have to
738                    basically copy the whole sysctl.c here, and
739                    glibc's __sysctl uses rw memory for the structure
740                    anyway.  */
741                 if (get_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)) ||
742                     put_user(oldlen, (size_t __user *)addr))
743                         return -EFAULT;
744                 oldlenp = (size_t __user *)addr;
745         }
746
747         lock_kernel();
748         error = do_sysctl(compat_ptr(tmp.name), tmp.nlen, compat_ptr(tmp.oldval),
749                           oldlenp, compat_ptr(tmp.newval), tmp.newlen);
750         unlock_kernel();
751         if (oldlenp) {
752                 if (!error) {
753                         if (get_user(oldlen, (size_t __user *)addr) ||
754                             put_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)))
755                                 error = -EFAULT;
756                 }
757                 if (copy_to_user(args->__unused, tmp.__unused,
758                                  sizeof(tmp.__unused)))
759                         error = -EFAULT;
760         }
761         return error;
762 }
763 #endif
764
765 struct stat64_emu31 {
766         unsigned long long  st_dev;
767         unsigned int    __pad1;
768 #define STAT64_HAS_BROKEN_ST_INO        1
769         u32             __st_ino;
770         unsigned int    st_mode;
771         unsigned int    st_nlink;
772         u32             st_uid;
773         u32             st_gid;
774         unsigned long long  st_rdev;
775         unsigned int    __pad3;
776         long            st_size;
777         u32             st_blksize;
778         unsigned char   __pad4[4];
779         u32             __pad5;     /* future possible st_blocks high bits */
780         u32             st_blocks;  /* Number 512-byte blocks allocated. */
781         u32             st_atime;
782         u32             __pad6;
783         u32             st_mtime;
784         u32             __pad7;
785         u32             st_ctime;
786         u32             __pad8;     /* will be high 32 bits of ctime someday */
787         unsigned long   st_ino;
788 };      
789
790 static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
791 {
792         struct stat64_emu31 tmp;
793
794         memset(&tmp, 0, sizeof(tmp));
795
796         tmp.st_dev = huge_encode_dev(stat->dev);
797         tmp.st_ino = stat->ino;
798         tmp.__st_ino = (u32)stat->ino;
799         tmp.st_mode = stat->mode;
800         tmp.st_nlink = (unsigned int)stat->nlink;
801         tmp.st_uid = stat->uid;
802         tmp.st_gid = stat->gid;
803         tmp.st_rdev = huge_encode_dev(stat->rdev);
804         tmp.st_size = stat->size;
805         tmp.st_blksize = (u32)stat->blksize;
806         tmp.st_blocks = (u32)stat->blocks;
807         tmp.st_atime = (u32)stat->atime.tv_sec;
808         tmp.st_mtime = (u32)stat->mtime.tv_sec;
809         tmp.st_ctime = (u32)stat->ctime.tv_sec;
810
811         return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 
812 }
813
814 asmlinkage long sys32_stat64(char __user * filename, struct stat64_emu31 __user * statbuf)
815 {
816         struct kstat stat;
817         int ret = vfs_stat(filename, &stat);
818         if (!ret)
819                 ret = cp_stat64(statbuf, &stat);
820         return ret;
821 }
822
823 asmlinkage long sys32_lstat64(char __user * filename, struct stat64_emu31 __user * statbuf)
824 {
825         struct kstat stat;
826         int ret = vfs_lstat(filename, &stat);
827         if (!ret)
828                 ret = cp_stat64(statbuf, &stat);
829         return ret;
830 }
831
832 asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
833 {
834         struct kstat stat;
835         int ret = vfs_fstat(fd, &stat);
836         if (!ret)
837                 ret = cp_stat64(statbuf, &stat);
838         return ret;
839 }
840
841 asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename,
842                                 struct stat64_emu31 __user* statbuf, int flag)
843 {
844         struct kstat stat;
845         int error = -EINVAL;
846
847         if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
848                 goto out;
849
850         if (flag & AT_SYMLINK_NOFOLLOW)
851                 error = vfs_lstat_fd(dfd, filename, &stat);
852         else
853                 error = vfs_stat_fd(dfd, filename, &stat);
854
855         if (!error)
856                 error = cp_stat64(statbuf, &stat);
857 out:
858         return error;
859 }
860
861 /*
862  * Linux/i386 didn't use to be able to handle more than
863  * 4 system call parameters, so these system calls used a memory
864  * block for parameter passing..
865  */
866
867 struct mmap_arg_struct_emu31 {
868         u32     addr;
869         u32     len;
870         u32     prot;
871         u32     flags;
872         u32     fd;
873         u32     offset;
874 };
875
876 /* common code for old and new mmaps */
877 static inline long do_mmap2(
878         unsigned long addr, unsigned long len,
879         unsigned long prot, unsigned long flags,
880         unsigned long fd, unsigned long pgoff)
881 {
882         struct file * file = NULL;
883         unsigned long error = -EBADF;
884
885         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
886         if (!(flags & MAP_ANONYMOUS)) {
887                 file = fget(fd);
888                 if (!file)
889                         goto out;
890         }
891
892         down_write(&current->mm->mmap_sem);
893         error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
894         if (!IS_ERR((void *) error) && error + len >= 0x80000000ULL) {
895                 /* Result is out of bounds.  */
896                 do_munmap(current->mm, addr, len);
897                 error = -ENOMEM;
898         }
899         up_write(&current->mm->mmap_sem);
900
901         if (file)
902                 fput(file);
903 out:    
904         return error;
905 }
906
907
908 asmlinkage unsigned long
909 old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
910 {
911         struct mmap_arg_struct_emu31 a;
912         int error = -EFAULT;
913
914         if (copy_from_user(&a, arg, sizeof(a)))
915                 goto out;
916
917         error = -EINVAL;
918         if (a.offset & ~PAGE_MASK)
919                 goto out;
920
921         error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT); 
922 out:
923         return error;
924 }
925
926 asmlinkage long 
927 sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
928 {
929         struct mmap_arg_struct_emu31 a;
930         int error = -EFAULT;
931
932         if (copy_from_user(&a, arg, sizeof(a)))
933                 goto out;
934         error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
935 out:
936         return error;
937 }
938
939 asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
940 {
941         if ((compat_ssize_t) count < 0)
942                 return -EINVAL; 
943
944         return sys_read(fd, buf, count);
945 }
946
947 asmlinkage long sys32_write(unsigned int fd, char __user * buf, size_t count)
948 {
949         if ((compat_ssize_t) count < 0)
950                 return -EINVAL; 
951
952         return sys_write(fd, buf, count);
953 }
954
955 asmlinkage long sys32_clone(struct pt_regs regs)
956 {
957         unsigned long clone_flags;
958         unsigned long newsp;
959         int __user *parent_tidptr, *child_tidptr;
960
961         clone_flags = regs.gprs[3] & 0xffffffffUL;
962         newsp = regs.orig_gpr2 & 0x7fffffffUL;
963         parent_tidptr = compat_ptr(regs.gprs[4]);
964         child_tidptr = compat_ptr(regs.gprs[5]);
965         if (!newsp)
966                 newsp = regs.gprs[15];
967         return do_fork(clone_flags, newsp, &regs, 0,
968                        parent_tidptr, child_tidptr);
969 }
970
971 /*
972  * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
973  * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
974  * because the 31 bit values differ from the 64 bit values.
975  */
976
977 asmlinkage long
978 sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
979 {
980         if (advise == 4)
981                 advise = POSIX_FADV_DONTNEED;
982         else if (advise == 5)
983                 advise = POSIX_FADV_NOREUSE;
984         return sys_fadvise64(fd, offset, len, advise);
985 }
986
987 struct fadvise64_64_args {
988         int fd;
989         long long offset;
990         long long len;
991         int advice;
992 };
993
994 asmlinkage long
995 sys32_fadvise64_64(struct fadvise64_64_args __user *args)
996 {
997         struct fadvise64_64_args a;
998
999         if ( copy_from_user(&a, args, sizeof(a)) )
1000                 return -EFAULT;
1001         if (a.advice == 4)
1002                 a.advice = POSIX_FADV_DONTNEED;
1003         else if (a.advice == 5)
1004                 a.advice = POSIX_FADV_NOREUSE;
1005         return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
1006 }