kernel: make groups_sort calling a responsibility group_info allocators
[pandora-kernel.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/smp.h>
28 #include <linux/sem.h>
29 #include <linux/msg.h>
30 #include <linux/shm.h>
31 #include <linux/uio.h>
32 #include <linux/quota.h>
33 #include <linux/module.h>
34 #include <linux/poll.h>
35 #include <linux/personality.h>
36 #include <linux/stat.h>
37 #include <linux/filter.h>
38 #include <linux/highmem.h>
39 #include <linux/highuid.h>
40 #include <linux/mman.h>
41 #include <linux/ipv6.h>
42 #include <linux/in.h>
43 #include <linux/icmpv6.h>
44 #include <linux/syscalls.h>
45 #include <linux/sysctl.h>
46 #include <linux/binfmts.h>
47 #include <linux/capability.h>
48 #include <linux/compat.h>
49 #include <linux/vfs.h>
50 #include <linux/ptrace.h>
51 #include <linux/fadvise.h>
52 #include <linux/ipc.h>
53 #include <linux/slab.h>
54
55 #include <asm/types.h>
56 #include <asm/uaccess.h>
57
58 #include <net/scm.h>
59 #include <net/sock.h>
60
61 #include "compat_linux.h"
62
63 u32 psw32_user_bits = PSW32_MASK_DAT | PSW32_MASK_IO | PSW32_MASK_EXT |
64                       PSW32_DEFAULT_KEY | PSW32_MASK_BASE | PSW32_MASK_MCHECK |
65                       PSW32_MASK_PSTATE | PSW32_ASC_HOME;
66  
67 /* For this source file, we want overflow handling. */
68
69 #undef high2lowuid
70 #undef high2lowgid
71 #undef low2highuid
72 #undef low2highgid
73 #undef SET_UID16
74 #undef SET_GID16
75 #undef NEW_TO_OLD_UID
76 #undef NEW_TO_OLD_GID
77 #undef SET_OLDSTAT_UID
78 #undef SET_OLDSTAT_GID
79 #undef SET_STAT_UID
80 #undef SET_STAT_GID
81
82 #define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
83 #define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
84 #define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
85 #define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
86 #define SET_UID16(var, uid)     var = high2lowuid(uid)
87 #define SET_GID16(var, gid)     var = high2lowgid(gid)
88 #define NEW_TO_OLD_UID(uid)     high2lowuid(uid)
89 #define NEW_TO_OLD_GID(gid)     high2lowgid(gid)
90 #define SET_OLDSTAT_UID(stat, uid)      (stat).st_uid = high2lowuid(uid)
91 #define SET_OLDSTAT_GID(stat, gid)      (stat).st_gid = high2lowgid(gid)
92 #define SET_STAT_UID(stat, uid)         (stat).st_uid = high2lowuid(uid)
93 #define SET_STAT_GID(stat, gid)         (stat).st_gid = high2lowgid(gid)
94
95 asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
96 {
97         return sys_chown(filename, low2highuid(user), low2highgid(group));
98 }
99
100 asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
101 {
102         return sys_lchown(filename, low2highuid(user), low2highgid(group));
103 }
104
105 asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
106 {
107         return sys_fchown(fd, low2highuid(user), low2highgid(group));
108 }
109
110 asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
111 {
112         return sys_setregid(low2highgid(rgid), low2highgid(egid));
113 }
114
115 asmlinkage long sys32_setgid16(u16 gid)
116 {
117         return sys_setgid((gid_t)gid);
118 }
119
120 asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
121 {
122         return sys_setreuid(low2highuid(ruid), low2highuid(euid));
123 }
124
125 asmlinkage long sys32_setuid16(u16 uid)
126 {
127         return sys_setuid((uid_t)uid);
128 }
129
130 asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
131 {
132         return sys_setresuid(low2highuid(ruid), low2highuid(euid),
133                 low2highuid(suid));
134 }
135
136 asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
137 {
138         int retval;
139
140         if (!(retval = put_user(high2lowuid(current->cred->uid), ruid)) &&
141             !(retval = put_user(high2lowuid(current->cred->euid), euid)))
142                 retval = put_user(high2lowuid(current->cred->suid), suid);
143
144         return retval;
145 }
146
147 asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
148 {
149         return sys_setresgid(low2highgid(rgid), low2highgid(egid),
150                 low2highgid(sgid));
151 }
152
153 asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
154 {
155         int retval;
156
157         if (!(retval = put_user(high2lowgid(current->cred->gid), rgid)) &&
158             !(retval = put_user(high2lowgid(current->cred->egid), egid)))
159                 retval = put_user(high2lowgid(current->cred->sgid), sgid);
160
161         return retval;
162 }
163
164 asmlinkage long sys32_setfsuid16(u16 uid)
165 {
166         return sys_setfsuid((uid_t)uid);
167 }
168
169 asmlinkage long sys32_setfsgid16(u16 gid)
170 {
171         return sys_setfsgid((gid_t)gid);
172 }
173
174 static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
175 {
176         int i;
177         u16 group;
178
179         for (i = 0; i < group_info->ngroups; i++) {
180                 group = (u16)GROUP_AT(group_info, i);
181                 if (put_user(group, grouplist+i))
182                         return -EFAULT;
183         }
184
185         return 0;
186 }
187
188 static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
189 {
190         int i;
191         u16 group;
192
193         for (i = 0; i < group_info->ngroups; i++) {
194                 if (get_user(group, grouplist+i))
195                         return  -EFAULT;
196                 GROUP_AT(group_info, i) = (gid_t)group;
197         }
198
199         return 0;
200 }
201
202 asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
203 {
204         int i;
205
206         if (gidsetsize < 0)
207                 return -EINVAL;
208
209         get_group_info(current->cred->group_info);
210         i = current->cred->group_info->ngroups;
211         if (gidsetsize) {
212                 if (i > gidsetsize) {
213                         i = -EINVAL;
214                         goto out;
215                 }
216                 if (groups16_to_user(grouplist, current->cred->group_info)) {
217                         i = -EFAULT;
218                         goto out;
219                 }
220         }
221 out:
222         put_group_info(current->cred->group_info);
223         return i;
224 }
225
226 asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
227 {
228         struct group_info *group_info;
229         int retval;
230
231         if (!capable(CAP_SETGID))
232                 return -EPERM;
233         if ((unsigned)gidsetsize > NGROUPS_MAX)
234                 return -EINVAL;
235
236         group_info = groups_alloc(gidsetsize);
237         if (!group_info)
238                 return -ENOMEM;
239         retval = groups16_from_user(group_info, grouplist);
240         if (retval) {
241                 put_group_info(group_info);
242                 return retval;
243         }
244
245         groups_sort(group_info);
246         retval = set_current_groups(group_info);
247         put_group_info(group_info);
248
249         return retval;
250 }
251
252 asmlinkage long sys32_getuid16(void)
253 {
254         return high2lowuid(current->cred->uid);
255 }
256
257 asmlinkage long sys32_geteuid16(void)
258 {
259         return high2lowuid(current->cred->euid);
260 }
261
262 asmlinkage long sys32_getgid16(void)
263 {
264         return high2lowgid(current->cred->gid);
265 }
266
267 asmlinkage long sys32_getegid16(void)
268 {
269         return high2lowgid(current->cred->egid);
270 }
271
272 /*
273  * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
274  *
275  * This is really horribly ugly.
276  */
277 #ifdef CONFIG_SYSVIPC
278 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
279 {
280         if (call >> 16)         /* hack for backward compatibility */
281                 return -EINVAL;
282
283         call &= 0xffff;
284
285         switch (call) {
286         case SEMTIMEDOP:
287                 return compat_sys_semtimedop(first, compat_ptr(ptr),
288                                              second, compat_ptr(third));
289         case SEMOP:
290                 /* struct sembuf is the same on 32 and 64bit :)) */
291                 return sys_semtimedop(first, compat_ptr(ptr),
292                                       second, NULL);
293         case SEMGET:
294                 return sys_semget(first, second, third);
295         case SEMCTL:
296                 return compat_sys_semctl(first, second, third,
297                                          compat_ptr(ptr));
298         case MSGSND:
299                 return compat_sys_msgsnd(first, second, third,
300                                          compat_ptr(ptr));
301         case MSGRCV:
302                 return compat_sys_msgrcv(first, second, 0, third,
303                                          0, compat_ptr(ptr));
304         case MSGGET:
305                 return sys_msgget((key_t) first, second);
306         case MSGCTL:
307                 return compat_sys_msgctl(first, second, compat_ptr(ptr));
308         case SHMAT:
309                 return compat_sys_shmat(first, second, third,
310                                         0, compat_ptr(ptr));
311         case SHMDT:
312                 return sys_shmdt(compat_ptr(ptr));
313         case SHMGET:
314                 return sys_shmget(first, (unsigned)second, third);
315         case SHMCTL:
316                 return compat_sys_shmctl(first, second, compat_ptr(ptr));
317         }
318
319         return -ENOSYS;
320 }
321 #endif
322
323 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
324 {
325         if ((int)high < 0)
326                 return -EINVAL;
327         else
328                 return sys_truncate(path, (high << 32) | low);
329 }
330
331 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
332 {
333         if ((int)high < 0)
334                 return -EINVAL;
335         else
336                 return sys_ftruncate(fd, (high << 32) | low);
337 }
338
339 asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
340                                 struct compat_timespec __user *interval)
341 {
342         struct timespec t;
343         int ret;
344         mm_segment_t old_fs = get_fs ();
345         
346         set_fs (KERNEL_DS);
347         ret = sys_sched_rr_get_interval(pid,
348                                         (struct timespec __force __user *) &t);
349         set_fs (old_fs);
350         if (put_compat_timespec(&t, interval))
351                 return -EFAULT;
352         return ret;
353 }
354
355 asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
356                         compat_sigset_t __user *oset, size_t sigsetsize)
357 {
358         sigset_t s;
359         compat_sigset_t s32;
360         int ret;
361         mm_segment_t old_fs = get_fs();
362         
363         if (set) {
364                 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
365                         return -EFAULT;
366                 s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
367         }
368         set_fs (KERNEL_DS);
369         ret = sys_rt_sigprocmask(how,
370                                  set ? (sigset_t __force __user *) &s : NULL,
371                                  oset ? (sigset_t __force __user *) &s : NULL,
372                                  sigsetsize);
373         set_fs (old_fs);
374         if (ret) return ret;
375         if (oset) {
376                 s32.sig[1] = (s.sig[0] >> 32);
377                 s32.sig[0] = s.sig[0];
378                 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
379                         return -EFAULT;
380         }
381         return 0;
382 }
383
384 asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
385                                 size_t sigsetsize)
386 {
387         sigset_t s;
388         compat_sigset_t s32;
389         int ret;
390         mm_segment_t old_fs = get_fs();
391                 
392         set_fs (KERNEL_DS);
393         ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
394         set_fs (old_fs);
395         if (!ret) {
396                 s32.sig[1] = (s.sig[0] >> 32);
397                 s32.sig[0] = s.sig[0];
398                 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
399                         return -EFAULT;
400         }
401         return ret;
402 }
403
404 asmlinkage long
405 sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
406 {
407         siginfo_t info;
408         int ret;
409         mm_segment_t old_fs = get_fs();
410         
411         if (copy_siginfo_from_user32(&info, uinfo))
412                 return -EFAULT;
413         set_fs (KERNEL_DS);
414         ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
415         set_fs (old_fs);
416         return ret;
417 }
418
419 /*
420  * sys32_execve() executes a new program after the asm stub has set
421  * things up for us.  This should basically do what I want it to.
422  */
423 asmlinkage long sys32_execve(const char __user *name, compat_uptr_t __user *argv,
424                              compat_uptr_t __user *envp)
425 {
426         struct pt_regs *regs = task_pt_regs(current);
427         char *filename;
428         long rc;
429
430         filename = getname(name);
431         rc = PTR_ERR(filename);
432         if (IS_ERR(filename))
433                 return rc;
434         rc = compat_do_execve(filename, argv, envp, regs);
435         if (rc)
436                 goto out;
437         current->thread.fp_regs.fpc=0;
438         asm volatile("sfpc %0,0" : : "d" (0));
439         rc = regs->gprs[2];
440 out:
441         putname(filename);
442         return rc;
443 }
444
445 asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
446                                 size_t count, u32 poshi, u32 poslo)
447 {
448         if ((compat_ssize_t) count < 0)
449                 return -EINVAL;
450         return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
451 }
452
453 asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
454                                 size_t count, u32 poshi, u32 poslo)
455 {
456         if ((compat_ssize_t) count < 0)
457                 return -EINVAL;
458         return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
459 }
460
461 asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
462 {
463         return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
464 }
465
466 asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
467 {
468         mm_segment_t old_fs = get_fs();
469         int ret;
470         off_t of;
471         
472         if (offset && get_user(of, offset))
473                 return -EFAULT;
474                 
475         set_fs(KERNEL_DS);
476         ret = sys_sendfile(out_fd, in_fd,
477                            offset ? (off_t __force __user *) &of : NULL, count);
478         set_fs(old_fs);
479         
480         if (offset && put_user(of, offset))
481                 return -EFAULT;
482                 
483         return ret;
484 }
485
486 asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
487                                 compat_loff_t __user *offset, s32 count)
488 {
489         mm_segment_t old_fs = get_fs();
490         int ret;
491         loff_t lof;
492         
493         if (offset && get_user(lof, offset))
494                 return -EFAULT;
495                 
496         set_fs(KERNEL_DS);
497         ret = sys_sendfile64(out_fd, in_fd,
498                              offset ? (loff_t __force __user *) &lof : NULL,
499                              count);
500         set_fs(old_fs);
501         
502         if (offset && put_user(lof, offset))
503                 return -EFAULT;
504                 
505         return ret;
506 }
507
508 struct stat64_emu31 {
509         unsigned long long  st_dev;
510         unsigned int    __pad1;
511 #define STAT64_HAS_BROKEN_ST_INO        1
512         u32             __st_ino;
513         unsigned int    st_mode;
514         unsigned int    st_nlink;
515         u32             st_uid;
516         u32             st_gid;
517         unsigned long long  st_rdev;
518         unsigned int    __pad3;
519         long            st_size;
520         u32             st_blksize;
521         unsigned char   __pad4[4];
522         u32             __pad5;     /* future possible st_blocks high bits */
523         u32             st_blocks;  /* Number 512-byte blocks allocated. */
524         u32             st_atime;
525         u32             __pad6;
526         u32             st_mtime;
527         u32             __pad7;
528         u32             st_ctime;
529         u32             __pad8;     /* will be high 32 bits of ctime someday */
530         unsigned long   st_ino;
531 };      
532
533 static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
534 {
535         struct stat64_emu31 tmp;
536
537         memset(&tmp, 0, sizeof(tmp));
538
539         tmp.st_dev = huge_encode_dev(stat->dev);
540         tmp.st_ino = stat->ino;
541         tmp.__st_ino = (u32)stat->ino;
542         tmp.st_mode = stat->mode;
543         tmp.st_nlink = (unsigned int)stat->nlink;
544         tmp.st_uid = stat->uid;
545         tmp.st_gid = stat->gid;
546         tmp.st_rdev = huge_encode_dev(stat->rdev);
547         tmp.st_size = stat->size;
548         tmp.st_blksize = (u32)stat->blksize;
549         tmp.st_blocks = (u32)stat->blocks;
550         tmp.st_atime = (u32)stat->atime.tv_sec;
551         tmp.st_mtime = (u32)stat->mtime.tv_sec;
552         tmp.st_ctime = (u32)stat->ctime.tv_sec;
553
554         return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; 
555 }
556
557 asmlinkage long sys32_stat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
558 {
559         struct kstat stat;
560         int ret = vfs_stat(filename, &stat);
561         if (!ret)
562                 ret = cp_stat64(statbuf, &stat);
563         return ret;
564 }
565
566 asmlinkage long sys32_lstat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
567 {
568         struct kstat stat;
569         int ret = vfs_lstat(filename, &stat);
570         if (!ret)
571                 ret = cp_stat64(statbuf, &stat);
572         return ret;
573 }
574
575 asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
576 {
577         struct kstat stat;
578         int ret = vfs_fstat(fd, &stat);
579         if (!ret)
580                 ret = cp_stat64(statbuf, &stat);
581         return ret;
582 }
583
584 asmlinkage long sys32_fstatat64(unsigned int dfd, const char __user *filename,
585                                 struct stat64_emu31 __user* statbuf, int flag)
586 {
587         struct kstat stat;
588         int error;
589
590         error = vfs_fstatat(dfd, filename, &stat, flag);
591         if (error)
592                 return error;
593         return cp_stat64(statbuf, &stat);
594 }
595
596 /*
597  * Linux/i386 didn't use to be able to handle more than
598  * 4 system call parameters, so these system calls used a memory
599  * block for parameter passing..
600  */
601
602 struct mmap_arg_struct_emu31 {
603         compat_ulong_t addr;
604         compat_ulong_t len;
605         compat_ulong_t prot;
606         compat_ulong_t flags;
607         compat_ulong_t fd;
608         compat_ulong_t offset;
609 };
610
611 asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
612 {
613         struct mmap_arg_struct_emu31 a;
614
615         if (copy_from_user(&a, arg, sizeof(a)))
616                 return -EFAULT;
617         if (a.offset & ~PAGE_MASK)
618                 return -EINVAL;
619         return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
620                               a.offset >> PAGE_SHIFT);
621 }
622
623 asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
624 {
625         struct mmap_arg_struct_emu31 a;
626
627         if (copy_from_user(&a, arg, sizeof(a)))
628                 return -EFAULT;
629         return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
630 }
631
632 asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
633 {
634         if ((compat_ssize_t) count < 0)
635                 return -EINVAL; 
636
637         return sys_read(fd, buf, count);
638 }
639
640 asmlinkage long sys32_write(unsigned int fd, const char __user * buf, size_t count)
641 {
642         if ((compat_ssize_t) count < 0)
643                 return -EINVAL; 
644
645         return sys_write(fd, buf, count);
646 }
647
648 /*
649  * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
650  * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
651  * because the 31 bit values differ from the 64 bit values.
652  */
653
654 asmlinkage long
655 sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
656 {
657         if (advise == 4)
658                 advise = POSIX_FADV_DONTNEED;
659         else if (advise == 5)
660                 advise = POSIX_FADV_NOREUSE;
661         return sys_fadvise64(fd, offset, len, advise);
662 }
663
664 struct fadvise64_64_args {
665         int fd;
666         long long offset;
667         long long len;
668         int advice;
669 };
670
671 asmlinkage long
672 sys32_fadvise64_64(struct fadvise64_64_args __user *args)
673 {
674         struct fadvise64_64_args a;
675
676         if ( copy_from_user(&a, args, sizeof(a)) )
677                 return -EFAULT;
678         if (a.advice == 4)
679                 a.advice = POSIX_FADV_DONTNEED;
680         else if (a.advice == 5)
681                 a.advice = POSIX_FADV_NOREUSE;
682         return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
683 }