3 * Copyright IBM Corp. 2000
8 * Conversion between 31bit and 64bit native syscalls.
10 * Heavily inspired by the 32-bit Sparc compat code which is
17 #include <linux/kernel.h>
18 #include <linux/sched.h>
21 #include <linux/file.h>
22 #include <linux/signal.h>
23 #include <linux/resource.h>
24 #include <linux/times.h>
25 #include <linux/smp.h>
26 #include <linux/sem.h>
27 #include <linux/msg.h>
28 #include <linux/shm.h>
29 #include <linux/uio.h>
30 #include <linux/quota.h>
31 #include <linux/module.h>
32 #include <linux/poll.h>
33 #include <linux/personality.h>
34 #include <linux/stat.h>
35 #include <linux/filter.h>
36 #include <linux/highmem.h>
37 #include <linux/highuid.h>
38 #include <linux/mman.h>
39 #include <linux/ipv6.h>
41 #include <linux/icmpv6.h>
42 #include <linux/syscalls.h>
43 #include <linux/sysctl.h>
44 #include <linux/binfmts.h>
45 #include <linux/capability.h>
46 #include <linux/compat.h>
47 #include <linux/vfs.h>
48 #include <linux/ptrace.h>
49 #include <linux/fadvise.h>
50 #include <linux/ipc.h>
51 #include <linux/slab.h>
53 #include <asm/types.h>
54 #include <asm/uaccess.h>
59 #include "compat_linux.h"
61 u32 psw32_user_bits = PSW32_MASK_DAT | PSW32_MASK_IO | PSW32_MASK_EXT |
62 PSW32_DEFAULT_KEY | PSW32_MASK_BASE | PSW32_MASK_MCHECK |
63 PSW32_MASK_PSTATE | PSW32_ASC_HOME;
65 /* For this source file, we want overflow handling. */
75 #undef SET_OLDSTAT_UID
76 #undef SET_OLDSTAT_GID
80 #define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
81 #define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
82 #define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
83 #define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
84 #define SET_UID16(var, uid) var = high2lowuid(uid)
85 #define SET_GID16(var, gid) var = high2lowgid(gid)
86 #define NEW_TO_OLD_UID(uid) high2lowuid(uid)
87 #define NEW_TO_OLD_GID(gid) high2lowgid(gid)
88 #define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
89 #define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
90 #define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
91 #define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
93 asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
95 return sys_chown(filename, low2highuid(user), low2highgid(group));
98 asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
100 return sys_lchown(filename, low2highuid(user), low2highgid(group));
103 asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
105 return sys_fchown(fd, low2highuid(user), low2highgid(group));
108 asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
110 return sys_setregid(low2highgid(rgid), low2highgid(egid));
113 asmlinkage long sys32_setgid16(u16 gid)
115 return sys_setgid((gid_t)gid);
118 asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
120 return sys_setreuid(low2highuid(ruid), low2highuid(euid));
123 asmlinkage long sys32_setuid16(u16 uid)
125 return sys_setuid((uid_t)uid);
128 asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
130 return sys_setresuid(low2highuid(ruid), low2highuid(euid),
134 asmlinkage long sys32_getresuid16(u16 __user *ruidp, u16 __user *euidp, u16 __user *suidp)
136 const struct cred *cred = current_cred();
138 u16 ruid, euid, suid;
140 ruid = high2lowuid(from_kuid_munged(cred->user_ns, cred->uid));
141 euid = high2lowuid(from_kuid_munged(cred->user_ns, cred->euid));
142 suid = high2lowuid(from_kuid_munged(cred->user_ns, cred->suid));
144 if (!(retval = put_user(ruid, ruidp)) &&
145 !(retval = put_user(euid, euidp)))
146 retval = put_user(suid, suidp);
151 asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
153 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
157 asmlinkage long sys32_getresgid16(u16 __user *rgidp, u16 __user *egidp, u16 __user *sgidp)
159 const struct cred *cred = current_cred();
161 u16 rgid, egid, sgid;
163 rgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->gid));
164 egid = high2lowgid(from_kgid_munged(cred->user_ns, cred->egid));
165 sgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->sgid));
167 if (!(retval = put_user(rgid, rgidp)) &&
168 !(retval = put_user(egid, egidp)))
169 retval = put_user(sgid, sgidp);
174 asmlinkage long sys32_setfsuid16(u16 uid)
176 return sys_setfsuid((uid_t)uid);
179 asmlinkage long sys32_setfsgid16(u16 gid)
181 return sys_setfsgid((gid_t)gid);
184 static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
186 struct user_namespace *user_ns = current_user_ns();
191 for (i = 0; i < group_info->ngroups; i++) {
192 kgid = GROUP_AT(group_info, i);
193 group = (u16)from_kgid_munged(user_ns, kgid);
194 if (put_user(group, grouplist+i))
201 static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
203 struct user_namespace *user_ns = current_user_ns();
208 for (i = 0; i < group_info->ngroups; i++) {
209 if (get_user(group, grouplist+i))
212 kgid = make_kgid(user_ns, (gid_t)group);
213 if (!gid_valid(kgid))
216 GROUP_AT(group_info, i) = kgid;
222 asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
229 get_group_info(current->cred->group_info);
230 i = current->cred->group_info->ngroups;
232 if (i > gidsetsize) {
236 if (groups16_to_user(grouplist, current->cred->group_info)) {
242 put_group_info(current->cred->group_info);
246 asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
248 struct group_info *group_info;
251 if (!capable(CAP_SETGID))
253 if ((unsigned)gidsetsize > NGROUPS_MAX)
256 group_info = groups_alloc(gidsetsize);
259 retval = groups16_from_user(group_info, grouplist);
261 put_group_info(group_info);
265 retval = set_current_groups(group_info);
266 put_group_info(group_info);
271 asmlinkage long sys32_getuid16(void)
273 return high2lowuid(from_kuid_munged(current_user_ns(), current_uid()));
276 asmlinkage long sys32_geteuid16(void)
278 return high2lowuid(from_kuid_munged(current_user_ns(), current_euid()));
281 asmlinkage long sys32_getgid16(void)
283 return high2lowgid(from_kgid_munged(current_user_ns(), current_gid()));
286 asmlinkage long sys32_getegid16(void)
288 return high2lowgid(from_kgid_munged(current_user_ns(), current_egid()));
292 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
294 * This is really horribly ugly.
296 #ifdef CONFIG_SYSVIPC
297 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
299 if (call >> 16) /* hack for backward compatibility */
303 return compat_sys_semtimedop(first, compat_ptr(ptr),
304 second, compat_ptr(third));
306 /* struct sembuf is the same on 32 and 64bit :)) */
307 return sys_semtimedop(first, compat_ptr(ptr),
310 return sys_semget(first, second, third);
312 return compat_sys_semctl(first, second, third,
315 return compat_sys_msgsnd(first, second, third,
318 return compat_sys_msgrcv(first, second, 0, third,
321 return sys_msgget((key_t) first, second);
323 return compat_sys_msgctl(first, second, compat_ptr(ptr));
325 return compat_sys_shmat(first, second, third,
328 return sys_shmdt(compat_ptr(ptr));
330 return sys_shmget(first, (unsigned)second, third);
332 return compat_sys_shmctl(first, second, compat_ptr(ptr));
339 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
344 return sys_truncate(path, (high << 32) | low);
347 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
352 return sys_ftruncate(fd, (high << 32) | low);
355 asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
356 size_t count, u32 poshi, u32 poslo)
358 if ((compat_ssize_t) count < 0)
360 return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
363 asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
364 size_t count, u32 poshi, u32 poslo)
366 if ((compat_ssize_t) count < 0)
368 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
371 asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
373 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
376 asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
378 mm_segment_t old_fs = get_fs();
382 if (offset && get_user(of, offset))
386 ret = sys_sendfile(out_fd, in_fd,
387 offset ? (off_t __force __user *) &of : NULL, count);
390 if (offset && put_user(of, offset))
396 asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
397 compat_loff_t __user *offset, s32 count)
399 mm_segment_t old_fs = get_fs();
403 if (offset && get_user(lof, offset))
407 ret = sys_sendfile64(out_fd, in_fd,
408 offset ? (loff_t __force __user *) &lof : NULL,
412 if (offset && put_user(lof, offset))
418 struct stat64_emu31 {
419 unsigned long long st_dev;
421 #define STAT64_HAS_BROKEN_ST_INO 1
423 unsigned int st_mode;
424 unsigned int st_nlink;
427 unsigned long long st_rdev;
431 unsigned char __pad4[4];
432 u32 __pad5; /* future possible st_blocks high bits */
433 u32 st_blocks; /* Number 512-byte blocks allocated. */
439 u32 __pad8; /* will be high 32 bits of ctime someday */
440 unsigned long st_ino;
443 static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
445 struct stat64_emu31 tmp;
447 memset(&tmp, 0, sizeof(tmp));
449 tmp.st_dev = huge_encode_dev(stat->dev);
450 tmp.st_ino = stat->ino;
451 tmp.__st_ino = (u32)stat->ino;
452 tmp.st_mode = stat->mode;
453 tmp.st_nlink = (unsigned int)stat->nlink;
454 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
455 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
456 tmp.st_rdev = huge_encode_dev(stat->rdev);
457 tmp.st_size = stat->size;
458 tmp.st_blksize = (u32)stat->blksize;
459 tmp.st_blocks = (u32)stat->blocks;
460 tmp.st_atime = (u32)stat->atime.tv_sec;
461 tmp.st_mtime = (u32)stat->mtime.tv_sec;
462 tmp.st_ctime = (u32)stat->ctime.tv_sec;
464 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
467 asmlinkage long sys32_stat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
470 int ret = vfs_stat(filename, &stat);
472 ret = cp_stat64(statbuf, &stat);
476 asmlinkage long sys32_lstat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
479 int ret = vfs_lstat(filename, &stat);
481 ret = cp_stat64(statbuf, &stat);
485 asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
488 int ret = vfs_fstat(fd, &stat);
490 ret = cp_stat64(statbuf, &stat);
494 asmlinkage long sys32_fstatat64(unsigned int dfd, const char __user *filename,
495 struct stat64_emu31 __user* statbuf, int flag)
500 error = vfs_fstatat(dfd, filename, &stat, flag);
503 return cp_stat64(statbuf, &stat);
507 * Linux/i386 didn't use to be able to handle more than
508 * 4 system call parameters, so these system calls used a memory
509 * block for parameter passing..
512 struct mmap_arg_struct_emu31 {
516 compat_ulong_t flags;
518 compat_ulong_t offset;
521 asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
523 struct mmap_arg_struct_emu31 a;
525 if (copy_from_user(&a, arg, sizeof(a)))
527 if (a.offset & ~PAGE_MASK)
529 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
530 a.offset >> PAGE_SHIFT);
533 asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
535 struct mmap_arg_struct_emu31 a;
537 if (copy_from_user(&a, arg, sizeof(a)))
539 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
542 asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
544 if ((compat_ssize_t) count < 0)
547 return sys_read(fd, buf, count);
550 asmlinkage long sys32_write(unsigned int fd, const char __user * buf, size_t count)
552 if ((compat_ssize_t) count < 0)
555 return sys_write(fd, buf, count);
559 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
560 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
561 * because the 31 bit values differ from the 64 bit values.
565 sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
568 advise = POSIX_FADV_DONTNEED;
569 else if (advise == 5)
570 advise = POSIX_FADV_NOREUSE;
571 return sys_fadvise64(fd, offset, len, advise);
574 struct fadvise64_64_args {
582 sys32_fadvise64_64(struct fadvise64_64_args __user *args)
584 struct fadvise64_64_args a;
586 if ( copy_from_user(&a, args, sizeof(a)) )
589 a.advice = POSIX_FADV_DONTNEED;
590 else if (a.advice == 5)
591 a.advice = POSIX_FADV_NOREUSE;
592 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);