Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com), |
| 6 | * Gerhard Tonn (ton@de.ibm.com) |
| 7 | * Thomas Spatzier (tspat@de.ibm.com) |
| 8 | * |
| 9 | * Conversion between 31bit and 64bit native syscalls. |
| 10 | * |
| 11 | * Heavily inspired by the 32-bit Sparc compat code which is |
| 12 | * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) |
| 13 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/file.h> |
| 23 | #include <linux/signal.h> |
| 24 | #include <linux/resource.h> |
| 25 | #include <linux/times.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/sem.h> |
| 28 | #include <linux/msg.h> |
| 29 | #include <linux/shm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/uio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/quota.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
| 40 | #include <linux/in.h> |
| 41 | #include <linux/icmpv6.h> |
| 42 | #include <linux/syscalls.h> |
| 43 | #include <linux/sysctl.h> |
| 44 | #include <linux/binfmts.h> |
Randy Dunlap | a941564 | 2006-01-11 12:17:48 -0800 | [diff] [blame] | 45 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/compat.h> |
| 47 | #include <linux/vfs.h> |
| 48 | #include <linux/ptrace.h> |
Martin Schwidefsky | 068e1b9 | 2005-07-13 01:10:46 -0700 | [diff] [blame] | 49 | #include <linux/fadvise.h> |
Adrian Bunk | cba4fbb | 2007-10-16 23:29:24 -0700 | [diff] [blame] | 50 | #include <linux/ipc.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 51 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #include <asm/types.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 54 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #include <net/scm.h> |
| 57 | #include <net/sock.h> |
| 58 | |
| 59 | #include "compat_linux.h" |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* For this source file, we want overflow handling. */ |
| 62 | |
| 63 | #undef high2lowuid |
| 64 | #undef high2lowgid |
| 65 | #undef low2highuid |
| 66 | #undef low2highgid |
| 67 | #undef SET_UID16 |
| 68 | #undef SET_GID16 |
| 69 | #undef NEW_TO_OLD_UID |
| 70 | #undef NEW_TO_OLD_GID |
| 71 | #undef SET_OLDSTAT_UID |
| 72 | #undef SET_OLDSTAT_GID |
| 73 | #undef SET_STAT_UID |
| 74 | #undef SET_STAT_GID |
| 75 | |
| 76 | #define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid) |
| 77 | #define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid) |
| 78 | #define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid) |
| 79 | #define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid) |
| 80 | #define SET_UID16(var, uid) var = high2lowuid(uid) |
| 81 | #define SET_GID16(var, gid) var = high2lowgid(gid) |
| 82 | #define NEW_TO_OLD_UID(uid) high2lowuid(uid) |
| 83 | #define NEW_TO_OLD_GID(gid) high2lowgid(gid) |
| 84 | #define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid) |
| 85 | #define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid) |
| 86 | #define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid) |
| 87 | #define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid) |
| 88 | |
Heiko Carstens | c6c0f58 | 2014-02-25 14:08:39 +0100 | [diff] [blame] | 89 | COMPAT_SYSCALL_DEFINE3(s390_chown16, const char __user *, filename, |
| 90 | u16, user, u16, group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
| 92 | return sys_chown(filename, low2highuid(user), low2highgid(group)); |
| 93 | } |
| 94 | |
Heiko Carstens | c6c0f58 | 2014-02-25 14:08:39 +0100 | [diff] [blame] | 95 | COMPAT_SYSCALL_DEFINE3(s390_lchown16, const char __user *, |
| 96 | filename, u16, user, u16, group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
| 98 | return sys_lchown(filename, low2highuid(user), low2highgid(group)); |
| 99 | } |
| 100 | |
Heiko Carstens | c6c0f58 | 2014-02-25 14:08:39 +0100 | [diff] [blame] | 101 | COMPAT_SYSCALL_DEFINE3(s390_fchown16, unsigned int, fd, u16, user, u16, group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
| 103 | return sys_fchown(fd, low2highuid(user), low2highgid(group)); |
| 104 | } |
| 105 | |
Heiko Carstens | c6c0f58 | 2014-02-25 14:08:39 +0100 | [diff] [blame] | 106 | COMPAT_SYSCALL_DEFINE2(s390_setregid16, u16, rgid, u16, egid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | return sys_setregid(low2highgid(rgid), low2highgid(egid)); |
| 109 | } |
| 110 | |
Heiko Carstens | c6c0f58 | 2014-02-25 14:08:39 +0100 | [diff] [blame] | 111 | COMPAT_SYSCALL_DEFINE1(s390_setgid16, u16, gid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Eugene Syromiatnikov | 6dd0d2d | 2018-01-15 20:38:17 +0100 | [diff] [blame] | 113 | return sys_setgid(low2highgid(gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 116 | COMPAT_SYSCALL_DEFINE2(s390_setreuid16, u16, ruid, u16, euid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
| 118 | return sys_setreuid(low2highuid(ruid), low2highuid(euid)); |
| 119 | } |
| 120 | |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 121 | COMPAT_SYSCALL_DEFINE1(s390_setuid16, u16, uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Eugene Syromiatnikov | 6dd0d2d | 2018-01-15 20:38:17 +0100 | [diff] [blame] | 123 | return sys_setuid(low2highuid(uid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 126 | COMPAT_SYSCALL_DEFINE3(s390_setresuid16, u16, ruid, u16, euid, u16, suid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
| 128 | return sys_setresuid(low2highuid(ruid), low2highuid(euid), |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 129 | low2highuid(suid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 132 | COMPAT_SYSCALL_DEFINE3(s390_getresuid16, u16 __user *, ruidp, |
| 133 | u16 __user *, euidp, u16 __user *, suidp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 135 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | int retval; |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 137 | u16 ruid, euid, suid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 139 | ruid = high2lowuid(from_kuid_munged(cred->user_ns, cred->uid)); |
| 140 | euid = high2lowuid(from_kuid_munged(cred->user_ns, cred->euid)); |
| 141 | suid = high2lowuid(from_kuid_munged(cred->user_ns, cred->suid)); |
| 142 | |
| 143 | if (!(retval = put_user(ruid, ruidp)) && |
| 144 | !(retval = put_user(euid, euidp))) |
| 145 | retval = put_user(suid, suidp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | return retval; |
| 148 | } |
| 149 | |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 150 | COMPAT_SYSCALL_DEFINE3(s390_setresgid16, u16, rgid, u16, egid, u16, sgid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
| 152 | return sys_setresgid(low2highgid(rgid), low2highgid(egid), |
Heiko Carstens | 208096e | 2014-02-25 15:52:24 +0100 | [diff] [blame] | 153 | low2highgid(sgid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Heiko Carstens | 4ca2ea5 | 2014-02-25 16:17:41 +0100 | [diff] [blame] | 156 | COMPAT_SYSCALL_DEFINE3(s390_getresgid16, u16 __user *, rgidp, |
| 157 | u16 __user *, egidp, u16 __user *, sgidp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 159 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | int retval; |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 161 | u16 rgid, egid, sgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 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)); |
| 166 | |
| 167 | if (!(retval = put_user(rgid, rgidp)) && |
| 168 | !(retval = put_user(egid, egidp))) |
| 169 | retval = put_user(sgid, sgidp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | return retval; |
| 172 | } |
| 173 | |
Heiko Carstens | 4ca2ea5 | 2014-02-25 16:17:41 +0100 | [diff] [blame] | 174 | COMPAT_SYSCALL_DEFINE1(s390_setfsuid16, u16, uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Eugene Syromiatnikov | 6dd0d2d | 2018-01-15 20:38:17 +0100 | [diff] [blame] | 176 | return sys_setfsuid(low2highuid(uid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Heiko Carstens | 4ca2ea5 | 2014-02-25 16:17:41 +0100 | [diff] [blame] | 179 | COMPAT_SYSCALL_DEFINE1(s390_setfsgid16, u16, gid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
Eugene Syromiatnikov | 6dd0d2d | 2018-01-15 20:38:17 +0100 | [diff] [blame] | 181 | return sys_setfsgid(low2highgid(gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Al Viro | 24954a1 | 2006-02-01 05:16:15 -0500 | [diff] [blame] | 184 | static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 186 | struct user_namespace *user_ns = current_user_ns(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | int i; |
| 188 | u16 group; |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 189 | kgid_t kgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | for (i = 0; i < group_info->ngroups; i++) { |
Alexey Dobriyan | 81243ea | 2016-10-07 17:03:12 -0700 | [diff] [blame] | 192 | kgid = group_info->gid[i]; |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 193 | group = (u16)from_kgid_munged(user_ns, kgid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | if (put_user(group, grouplist+i)) |
| 195 | return -EFAULT; |
| 196 | } |
| 197 | |
| 198 | return 0; |
| 199 | } |
| 200 | |
Al Viro | 24954a1 | 2006-02-01 05:16:15 -0500 | [diff] [blame] | 201 | static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 203 | struct user_namespace *user_ns = current_user_ns(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | int i; |
| 205 | u16 group; |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 206 | kgid_t kgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | for (i = 0; i < group_info->ngroups; i++) { |
| 209 | if (get_user(group, grouplist+i)) |
| 210 | return -EFAULT; |
Eric W. Biederman | ae2975b | 2011-11-14 15:56:38 -0800 | [diff] [blame] | 211 | |
| 212 | kgid = make_kgid(user_ns, (gid_t)group); |
| 213 | if (!gid_valid(kgid)) |
| 214 | return -EINVAL; |
| 215 | |
Alexey Dobriyan | 81243ea | 2016-10-07 17:03:12 -0700 | [diff] [blame] | 216 | group_info->gid[i] = kgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
Heiko Carstens | 4ca2ea5 | 2014-02-25 16:17:41 +0100 | [diff] [blame] | 222 | COMPAT_SYSCALL_DEFINE2(s390_getgroups16, int, gidsetsize, u16 __user *, grouplist) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
Heiko Carstens | 2ec7f4a | 2013-09-07 10:19:55 +0200 | [diff] [blame] | 224 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | int i; |
| 226 | |
| 227 | if (gidsetsize < 0) |
| 228 | return -EINVAL; |
| 229 | |
Heiko Carstens | 2ec7f4a | 2013-09-07 10:19:55 +0200 | [diff] [blame] | 230 | get_group_info(cred->group_info); |
| 231 | i = cred->group_info->ngroups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | if (gidsetsize) { |
| 233 | if (i > gidsetsize) { |
| 234 | i = -EINVAL; |
| 235 | goto out; |
| 236 | } |
Heiko Carstens | 2ec7f4a | 2013-09-07 10:19:55 +0200 | [diff] [blame] | 237 | if (groups16_to_user(grouplist, cred->group_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | i = -EFAULT; |
| 239 | goto out; |
| 240 | } |
| 241 | } |
| 242 | out: |
Heiko Carstens | 2ec7f4a | 2013-09-07 10:19:55 +0200 | [diff] [blame] | 243 | put_group_info(cred->group_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | return i; |
| 245 | } |
| 246 | |
Heiko Carstens | 4ca2ea5 | 2014-02-25 16:17:41 +0100 | [diff] [blame] | 247 | COMPAT_SYSCALL_DEFINE2(s390_setgroups16, int, gidsetsize, u16 __user *, grouplist) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
| 249 | struct group_info *group_info; |
| 250 | int retval; |
| 251 | |
Eric W. Biederman | 7ff4d90 | 2014-12-05 17:19:27 -0600 | [diff] [blame] | 252 | if (!may_setgroups()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | return -EPERM; |
| 254 | if ((unsigned)gidsetsize > NGROUPS_MAX) |
| 255 | return -EINVAL; |
| 256 | |
| 257 | group_info = groups_alloc(gidsetsize); |
| 258 | if (!group_info) |
| 259 | return -ENOMEM; |
| 260 | retval = groups16_from_user(group_info, grouplist); |
| 261 | if (retval) { |
| 262 | put_group_info(group_info); |
| 263 | return retval; |
| 264 | } |
| 265 | |
Thiago Rafael Becker | bdcf0a4 | 2017-12-14 15:33:12 -0800 | [diff] [blame] | 266 | groups_sort(group_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | retval = set_current_groups(group_info); |
| 268 | put_group_info(group_info); |
| 269 | |
| 270 | return retval; |
| 271 | } |
| 272 | |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 273 | COMPAT_SYSCALL_DEFINE0(s390_getuid16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 275 | return high2lowuid(from_kuid_munged(current_user_ns(), current_uid())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 278 | COMPAT_SYSCALL_DEFINE0(s390_geteuid16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 280 | return high2lowuid(from_kuid_munged(current_user_ns(), current_euid())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 283 | COMPAT_SYSCALL_DEFINE0(s390_getgid16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 285 | return high2lowgid(from_kgid_munged(current_user_ns(), current_gid())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 288 | COMPAT_SYSCALL_DEFINE0(s390_getegid16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Eric W. Biederman | 558a447 | 2012-08-11 12:22:11 -0700 | [diff] [blame] | 290 | return high2lowgid(from_kgid_munged(current_user_ns(), current_egid())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Cedric Le Goater | 1df2395 | 2006-10-18 18:30:41 +0200 | [diff] [blame] | 293 | #ifdef CONFIG_SYSVIPC |
Heiko Carstens | 49382d9 | 2014-01-29 14:05:47 -0800 | [diff] [blame] | 294 | COMPAT_SYSCALL_DEFINE5(s390_ipc, uint, call, int, first, compat_ulong_t, second, |
| 295 | compat_ulong_t, third, compat_uptr_t, ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
| 297 | if (call >> 16) /* hack for backward compatibility */ |
| 298 | return -EINVAL; |
Al Viro | 56e41d3 | 2013-01-21 23:15:25 -0500 | [diff] [blame] | 299 | return compat_sys_ipc(call, first, second, third, ptr, third); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
Cedric Le Goater | 1df2395 | 2006-10-18 18:30:41 +0200 | [diff] [blame] | 301 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 303 | COMPAT_SYSCALL_DEFINE3(s390_truncate64, const char __user *, path, u32, high, u32, low) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Heiko Carstens | e723e0c | 2014-02-26 10:58:09 +0100 | [diff] [blame] | 305 | return sys_truncate(path, (unsigned long)high << 32 | low); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 308 | COMPAT_SYSCALL_DEFINE3(s390_ftruncate64, unsigned int, fd, u32, high, u32, low) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 310 | return sys_ftruncate(fd, (unsigned long)high << 32 | low); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 313 | COMPAT_SYSCALL_DEFINE5(s390_pread64, unsigned int, fd, char __user *, ubuf, |
| 314 | compat_size_t, count, u32, high, u32, low) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
| 316 | if ((compat_ssize_t) count < 0) |
| 317 | return -EINVAL; |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 318 | return sys_pread64(fd, ubuf, count, (unsigned long)high << 32 | low); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 321 | COMPAT_SYSCALL_DEFINE5(s390_pwrite64, unsigned int, fd, const char __user *, ubuf, |
| 322 | compat_size_t, count, u32, high, u32, low) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | { |
| 324 | if ((compat_ssize_t) count < 0) |
| 325 | return -EINVAL; |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 326 | return sys_pwrite64(fd, ubuf, count, (unsigned long)high << 32 | low); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 329 | COMPAT_SYSCALL_DEFINE4(s390_readahead, int, fd, u32, high, u32, low, s32, count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 331 | return sys_readahead(fd, (unsigned long)high << 32 | low, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | struct stat64_emu31 { |
| 335 | unsigned long long st_dev; |
| 336 | unsigned int __pad1; |
| 337 | #define STAT64_HAS_BROKEN_ST_INO 1 |
| 338 | u32 __st_ino; |
| 339 | unsigned int st_mode; |
| 340 | unsigned int st_nlink; |
| 341 | u32 st_uid; |
| 342 | u32 st_gid; |
| 343 | unsigned long long st_rdev; |
| 344 | unsigned int __pad3; |
| 345 | long st_size; |
| 346 | u32 st_blksize; |
| 347 | unsigned char __pad4[4]; |
| 348 | u32 __pad5; /* future possible st_blocks high bits */ |
| 349 | u32 st_blocks; /* Number 512-byte blocks allocated. */ |
| 350 | u32 st_atime; |
| 351 | u32 __pad6; |
| 352 | u32 st_mtime; |
| 353 | u32 __pad7; |
| 354 | u32 st_ctime; |
| 355 | u32 __pad8; /* will be high 32 bits of ctime someday */ |
| 356 | unsigned long st_ino; |
| 357 | }; |
| 358 | |
Al Viro | 24954a1 | 2006-02-01 05:16:15 -0500 | [diff] [blame] | 359 | static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
| 361 | struct stat64_emu31 tmp; |
| 362 | |
| 363 | memset(&tmp, 0, sizeof(tmp)); |
| 364 | |
| 365 | tmp.st_dev = huge_encode_dev(stat->dev); |
| 366 | tmp.st_ino = stat->ino; |
| 367 | tmp.__st_ino = (u32)stat->ino; |
| 368 | tmp.st_mode = stat->mode; |
| 369 | tmp.st_nlink = (unsigned int)stat->nlink; |
Eric W. Biederman | a7c1938 | 2012-02-09 09:10:30 -0800 | [diff] [blame] | 370 | tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid); |
| 371 | tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | tmp.st_rdev = huge_encode_dev(stat->rdev); |
| 373 | tmp.st_size = stat->size; |
| 374 | tmp.st_blksize = (u32)stat->blksize; |
| 375 | tmp.st_blocks = (u32)stat->blocks; |
| 376 | tmp.st_atime = (u32)stat->atime.tv_sec; |
| 377 | tmp.st_mtime = (u32)stat->mtime.tv_sec; |
| 378 | tmp.st_ctime = (u32)stat->ctime.tv_sec; |
| 379 | |
| 380 | return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; |
| 381 | } |
| 382 | |
Heiko Carstens | 52a0b53 | 2014-02-26 12:51:40 +0100 | [diff] [blame] | 383 | COMPAT_SYSCALL_DEFINE2(s390_stat64, const char __user *, filename, struct stat64_emu31 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { |
| 385 | struct kstat stat; |
| 386 | int ret = vfs_stat(filename, &stat); |
| 387 | if (!ret) |
| 388 | ret = cp_stat64(statbuf, &stat); |
| 389 | return ret; |
| 390 | } |
| 391 | |
Heiko Carstens | a0f8c6d | 2014-02-26 14:05:34 +0100 | [diff] [blame] | 392 | COMPAT_SYSCALL_DEFINE2(s390_lstat64, const char __user *, filename, struct stat64_emu31 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
| 394 | struct kstat stat; |
| 395 | int ret = vfs_lstat(filename, &stat); |
| 396 | if (!ret) |
| 397 | ret = cp_stat64(statbuf, &stat); |
| 398 | return ret; |
| 399 | } |
| 400 | |
Heiko Carstens | a0f8c6d | 2014-02-26 14:05:34 +0100 | [diff] [blame] | 401 | COMPAT_SYSCALL_DEFINE2(s390_fstat64, unsigned int, fd, struct stat64_emu31 __user *, statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
| 403 | struct kstat stat; |
| 404 | int ret = vfs_fstat(fd, &stat); |
| 405 | if (!ret) |
| 406 | ret = cp_stat64(statbuf, &stat); |
| 407 | return ret; |
| 408 | } |
| 409 | |
Heiko Carstens | a0f8c6d | 2014-02-26 14:05:34 +0100 | [diff] [blame] | 410 | COMPAT_SYSCALL_DEFINE4(s390_fstatat64, unsigned int, dfd, const char __user *, filename, |
| 411 | struct stat64_emu31 __user *, statbuf, int, flag) |
Heiko Carstens | 19bf9cb | 2006-02-12 12:35:03 +0100 | [diff] [blame] | 412 | { |
| 413 | struct kstat stat; |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 414 | int error; |
Heiko Carstens | 19bf9cb | 2006-02-12 12:35:03 +0100 | [diff] [blame] | 415 | |
Oleg Drokin | 0112fc2 | 2009-04-08 20:05:42 +0400 | [diff] [blame] | 416 | error = vfs_fstatat(dfd, filename, &stat, flag); |
| 417 | if (error) |
| 418 | return error; |
| 419 | return cp_stat64(statbuf, &stat); |
Heiko Carstens | 19bf9cb | 2006-02-12 12:35:03 +0100 | [diff] [blame] | 420 | } |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | /* |
| 423 | * Linux/i386 didn't use to be able to handle more than |
| 424 | * 4 system call parameters, so these system calls used a memory |
| 425 | * block for parameter passing.. |
| 426 | */ |
| 427 | |
| 428 | struct mmap_arg_struct_emu31 { |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 429 | compat_ulong_t addr; |
| 430 | compat_ulong_t len; |
| 431 | compat_ulong_t prot; |
| 432 | compat_ulong_t flags; |
| 433 | compat_ulong_t fd; |
| 434 | compat_ulong_t offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | }; |
| 436 | |
Heiko Carstens | a0f8c6d | 2014-02-26 14:05:34 +0100 | [diff] [blame] | 437 | COMPAT_SYSCALL_DEFINE1(s390_old_mmap, struct mmap_arg_struct_emu31 __user *, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
| 439 | struct mmap_arg_struct_emu31 a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | if (copy_from_user(&a, arg, sizeof(a))) |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 442 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (a.offset & ~PAGE_MASK) |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 444 | return -EINVAL; |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 445 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, |
| 446 | a.offset >> PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Heiko Carstens | a0f8c6d | 2014-02-26 14:05:34 +0100 | [diff] [blame] | 449 | COMPAT_SYSCALL_DEFINE1(s390_mmap2, struct mmap_arg_struct_emu31 __user *, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
| 451 | struct mmap_arg_struct_emu31 a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | if (copy_from_user(&a, arg, sizeof(a))) |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 454 | return -EFAULT; |
Heiko Carstens | d381589 | 2010-01-13 20:44:39 +0100 | [diff] [blame] | 455 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Heiko Carstens | 5383d2c | 2014-02-26 14:40:43 +0100 | [diff] [blame] | 458 | COMPAT_SYSCALL_DEFINE3(s390_read, unsigned int, fd, char __user *, buf, compat_size_t, count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | { |
| 460 | if ((compat_ssize_t) count < 0) |
| 461 | return -EINVAL; |
| 462 | |
| 463 | return sys_read(fd, buf, count); |
| 464 | } |
| 465 | |
Heiko Carstens | 5383d2c | 2014-02-26 14:40:43 +0100 | [diff] [blame] | 466 | COMPAT_SYSCALL_DEFINE3(s390_write, unsigned int, fd, const char __user *, buf, compat_size_t, count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | { |
| 468 | if ((compat_ssize_t) count < 0) |
| 469 | return -EINVAL; |
| 470 | |
Dominik Brodowski | e7a3e8b | 2018-03-11 11:34:41 +0100 | [diff] [blame^] | 471 | return ksys_write(fd, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* |
Martin Schwidefsky | 068e1b9 | 2005-07-13 01:10:46 -0700 | [diff] [blame] | 475 | * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64. |
| 476 | * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE} |
| 477 | * because the 31 bit values differ from the 64 bit values. |
| 478 | */ |
| 479 | |
Heiko Carstens | 5383d2c | 2014-02-26 14:40:43 +0100 | [diff] [blame] | 480 | COMPAT_SYSCALL_DEFINE5(s390_fadvise64, int, fd, u32, high, u32, low, compat_size_t, len, int, advise) |
Martin Schwidefsky | 068e1b9 | 2005-07-13 01:10:46 -0700 | [diff] [blame] | 481 | { |
| 482 | if (advise == 4) |
| 483 | advise = POSIX_FADV_DONTNEED; |
| 484 | else if (advise == 5) |
| 485 | advise = POSIX_FADV_NOREUSE; |
Heiko Carstens | 5383d2c | 2014-02-26 14:40:43 +0100 | [diff] [blame] | 486 | return sys_fadvise64(fd, (unsigned long)high << 32 | low, len, advise); |
Martin Schwidefsky | 068e1b9 | 2005-07-13 01:10:46 -0700 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | struct fadvise64_64_args { |
| 490 | int fd; |
| 491 | long long offset; |
| 492 | long long len; |
| 493 | int advice; |
| 494 | }; |
| 495 | |
Heiko Carstens | 5383d2c | 2014-02-26 14:40:43 +0100 | [diff] [blame] | 496 | COMPAT_SYSCALL_DEFINE1(s390_fadvise64_64, struct fadvise64_64_args __user *, args) |
Martin Schwidefsky | 068e1b9 | 2005-07-13 01:10:46 -0700 | [diff] [blame] | 497 | { |
| 498 | struct fadvise64_64_args a; |
| 499 | |
| 500 | if ( copy_from_user(&a, args, sizeof(a)) ) |
| 501 | return -EFAULT; |
| 502 | if (a.advice == 4) |
| 503 | a.advice = POSIX_FADV_DONTNEED; |
| 504 | else if (a.advice == 5) |
| 505 | a.advice = POSIX_FADV_NOREUSE; |
| 506 | return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice); |
| 507 | } |
Heiko Carstens | 2c81fc4 | 2014-03-01 13:09:26 +0100 | [diff] [blame] | 508 | |
| 509 | COMPAT_SYSCALL_DEFINE6(s390_sync_file_range, int, fd, u32, offhigh, u32, offlow, |
| 510 | u32, nhigh, u32, nlow, unsigned int, flags) |
| 511 | { |
| 512 | return sys_sync_file_range(fd, ((loff_t)offhigh << 32) + offlow, |
| 513 | ((u64)nhigh << 32) + nlow, flags); |
| 514 | } |
| 515 | |
| 516 | COMPAT_SYSCALL_DEFINE6(s390_fallocate, int, fd, int, mode, u32, offhigh, u32, offlow, |
| 517 | u32, lenhigh, u32, lenlow) |
| 518 | { |
| 519 | return sys_fallocate(fd, mode, ((loff_t)offhigh << 32) + offlow, |
| 520 | ((u64)lenhigh << 32) + lenlow); |
| 521 | } |