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 | /* |
| 3 | * linux/fs/fcntl.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | */ |
| 7 | |
| 8 | #include <linux/syscalls.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/mm.h> |
Ingo Molnar | 2993002 | 2017-02-08 18:51:36 +0100 | [diff] [blame] | 11 | #include <linux/sched/task.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/fs.h> |
| 13 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 14 | #include <linux/fdtable.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 15 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/dnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/module.h> |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 19 | #include <linux/pipe_fs_i.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/security.h> |
| 21 | #include <linux/ptrace.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 22 | #include <linux/signal.h> |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 23 | #include <linux/rcupdate.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 24 | #include <linux/pid_namespace.h> |
Cyrill Gorcunov | 1d151c3 | 2012-07-30 14:43:00 -0700 | [diff] [blame] | 25 | #include <linux/user_namespace.h> |
Mike Kravetz | 5d75260 | 2018-06-07 17:06:01 -0700 | [diff] [blame] | 26 | #include <linux/memfd.h> |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 27 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Al Viro | cfe3944 | 2018-02-01 12:14:57 -0500 | [diff] [blame] | 29 | #include <linux/poll.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/siginfo.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 33 | #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static int setfl(int fd, struct file * filp, unsigned long arg) |
| 36 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 37 | struct inode * inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | int error = 0; |
| 39 | |
dean gaudet | 7d95c8f | 2006-02-03 03:04:30 -0800 | [diff] [blame] | 40 | /* |
| 41 | * O_APPEND cannot be cleared if the file is marked as append-only |
| 42 | * and the file is open for write. |
| 43 | */ |
| 44 | if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | return -EPERM; |
| 46 | |
| 47 | /* O_NOATIME can only be set by the owner or superuser */ |
| 48 | if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME)) |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 49 | if (!inode_owner_or_capable(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | return -EPERM; |
| 51 | |
| 52 | /* required for strict SunOS emulation */ |
| 53 | if (O_NONBLOCK != O_NDELAY) |
| 54 | if (arg & O_NDELAY) |
| 55 | arg |= O_NONBLOCK; |
| 56 | |
Stanislav Kinsburskiy | 0dbf5f2 | 2015-12-15 19:41:31 +0400 | [diff] [blame] | 57 | /* Pipe packetized mode is controlled by O_DIRECT flag */ |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 58 | if (!S_ISFIFO(inode->i_mode) && (arg & O_DIRECT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | if (!filp->f_mapping || !filp->f_mapping->a_ops || |
| 60 | !filp->f_mapping->a_ops->direct_IO) |
| 61 | return -EINVAL; |
| 62 | } |
| 63 | |
Al Viro | 72c2d53 | 2013-09-22 16:27:52 -0400 | [diff] [blame] | 64 | if (filp->f_op->check_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | error = filp->f_op->check_flags(arg); |
| 66 | if (error) |
| 67 | return error; |
| 68 | |
Jonathan Corbet | 218d11a | 2008-12-05 16:12:48 -0700 | [diff] [blame] | 69 | /* |
Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 70 | * ->fasync() is responsible for setting the FASYNC bit. |
Jonathan Corbet | 218d11a | 2008-12-05 16:12:48 -0700 | [diff] [blame] | 71 | */ |
Al Viro | 72c2d53 | 2013-09-22 16:27:52 -0400 | [diff] [blame] | 72 | if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) { |
Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 73 | error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0); |
| 74 | if (error < 0) |
| 75 | goto out; |
Jonathan Corbet | 60aa492 | 2009-02-01 14:52:56 -0700 | [diff] [blame] | 76 | if (error > 0) |
| 77 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
Jonathan Corbet | db1dd4d | 2009-02-06 15:25:24 -0700 | [diff] [blame] | 79 | spin_lock(&filp->f_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK); |
Jonathan Corbet | db1dd4d | 2009-02-06 15:25:24 -0700 | [diff] [blame] | 81 | spin_unlock(&filp->f_lock); |
Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | return error; |
| 85 | } |
| 86 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 87 | static void f_modown(struct file *filp, struct pid *pid, enum pid_type type, |
Oleg Nesterov | 2f38d70 | 2009-06-16 22:07:46 +0200 | [diff] [blame] | 88 | int force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Linus Torvalds | 80e1e82 | 2010-02-07 10:11:23 -0800 | [diff] [blame] | 90 | write_lock_irq(&filp->f_owner.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | if (force || !filp->f_owner.pid) { |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 92 | put_pid(filp->f_owner.pid); |
| 93 | filp->f_owner.pid = get_pid(pid); |
| 94 | filp->f_owner.pid_type = type; |
Oleg Nesterov | 2f38d70 | 2009-06-16 22:07:46 +0200 | [diff] [blame] | 95 | |
| 96 | if (pid) { |
| 97 | const struct cred *cred = current_cred(); |
| 98 | filp->f_owner.uid = cred->uid; |
| 99 | filp->f_owner.euid = cred->euid; |
| 100 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } |
Linus Torvalds | 80e1e82 | 2010-02-07 10:11:23 -0800 | [diff] [blame] | 102 | write_unlock_irq(&filp->f_owner.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 105 | void __f_setown(struct file *filp, struct pid *pid, enum pid_type type, |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 106 | int force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 108 | security_file_set_fowner(filp); |
Oleg Nesterov | 2f38d70 | 2009-06-16 22:07:46 +0200 | [diff] [blame] | 109 | f_modown(filp, pid, type, force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 111 | EXPORT_SYMBOL(__f_setown); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Jiri Slaby | 393cc3f | 2017-06-13 13:35:50 +0200 | [diff] [blame] | 113 | int f_setown(struct file *filp, unsigned long arg, int force) |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 114 | { |
| 115 | enum pid_type type; |
Jeff Layton | f731273 | 2017-06-14 09:11:54 -0400 | [diff] [blame] | 116 | struct pid *pid = NULL; |
| 117 | int who = arg, ret = 0; |
| 118 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 119 | type = PIDTYPE_PID; |
| 120 | if (who < 0) { |
Jiri Slaby | fc3dc67 | 2017-06-13 13:35:51 +0200 | [diff] [blame] | 121 | /* avoid overflow below */ |
| 122 | if (who == INT_MIN) |
| 123 | return -EINVAL; |
| 124 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 125 | type = PIDTYPE_PGID; |
| 126 | who = -who; |
| 127 | } |
Jeff Layton | f731273 | 2017-06-14 09:11:54 -0400 | [diff] [blame] | 128 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 129 | rcu_read_lock(); |
Jeff Layton | f731273 | 2017-06-14 09:11:54 -0400 | [diff] [blame] | 130 | if (who) { |
| 131 | pid = find_vpid(who); |
| 132 | if (!pid) |
| 133 | ret = -ESRCH; |
| 134 | } |
| 135 | |
| 136 | if (!ret) |
| 137 | __f_setown(filp, pid, type, force); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 138 | rcu_read_unlock(); |
Jiri Slaby | 393cc3f | 2017-06-13 13:35:50 +0200 | [diff] [blame] | 139 | |
Jeff Layton | f731273 | 2017-06-14 09:11:54 -0400 | [diff] [blame] | 140 | return ret; |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | EXPORT_SYMBOL(f_setown); |
| 143 | |
| 144 | void f_delown(struct file *filp) |
| 145 | { |
Oleg Nesterov | 2f38d70 | 2009-06-16 22:07:46 +0200 | [diff] [blame] | 146 | f_modown(filp, NULL, PIDTYPE_PID, 1); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | pid_t f_getown(struct file *filp) |
| 150 | { |
| 151 | pid_t pid; |
Eric W. Biederman | 43fa1ad | 2006-10-02 02:17:27 -0700 | [diff] [blame] | 152 | read_lock(&filp->f_owner.lock); |
Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 153 | pid = pid_vnr(filp->f_owner.pid); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 154 | if (filp->f_owner.pid_type == PIDTYPE_PGID) |
| 155 | pid = -pid; |
Eric W. Biederman | 43fa1ad | 2006-10-02 02:17:27 -0700 | [diff] [blame] | 156 | read_unlock(&filp->f_owner.lock); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 157 | return pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 160 | static int f_setown_ex(struct file *filp, unsigned long arg) |
| 161 | { |
Al Viro | 63784dd | 2012-09-26 21:43:05 -0400 | [diff] [blame] | 162 | struct f_owner_ex __user *owner_p = (void __user *)arg; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 163 | struct f_owner_ex owner; |
| 164 | struct pid *pid; |
| 165 | int type; |
| 166 | int ret; |
| 167 | |
| 168 | ret = copy_from_user(&owner, owner_p, sizeof(owner)); |
| 169 | if (ret) |
Dan Carpenter | 5b54470 | 2010-06-03 12:35:42 +0200 | [diff] [blame] | 170 | return -EFAULT; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 171 | |
| 172 | switch (owner.type) { |
| 173 | case F_OWNER_TID: |
| 174 | type = PIDTYPE_MAX; |
| 175 | break; |
| 176 | |
| 177 | case F_OWNER_PID: |
| 178 | type = PIDTYPE_PID; |
| 179 | break; |
| 180 | |
Peter Zijlstra | 978b405 | 2009-11-17 14:06:24 -0800 | [diff] [blame] | 181 | case F_OWNER_PGRP: |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 182 | type = PIDTYPE_PGID; |
| 183 | break; |
| 184 | |
| 185 | default: |
| 186 | return -EINVAL; |
| 187 | } |
| 188 | |
| 189 | rcu_read_lock(); |
| 190 | pid = find_vpid(owner.pid); |
| 191 | if (owner.pid && !pid) |
| 192 | ret = -ESRCH; |
| 193 | else |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 194 | __f_setown(filp, pid, type, 1); |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 195 | rcu_read_unlock(); |
| 196 | |
| 197 | return ret; |
| 198 | } |
| 199 | |
| 200 | static int f_getown_ex(struct file *filp, unsigned long arg) |
| 201 | { |
Al Viro | 63784dd | 2012-09-26 21:43:05 -0400 | [diff] [blame] | 202 | struct f_owner_ex __user *owner_p = (void __user *)arg; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 203 | struct f_owner_ex owner; |
| 204 | int ret = 0; |
| 205 | |
| 206 | read_lock(&filp->f_owner.lock); |
| 207 | owner.pid = pid_vnr(filp->f_owner.pid); |
| 208 | switch (filp->f_owner.pid_type) { |
| 209 | case PIDTYPE_MAX: |
| 210 | owner.type = F_OWNER_TID; |
| 211 | break; |
| 212 | |
| 213 | case PIDTYPE_PID: |
| 214 | owner.type = F_OWNER_PID; |
| 215 | break; |
| 216 | |
| 217 | case PIDTYPE_PGID: |
Peter Zijlstra | 978b405 | 2009-11-17 14:06:24 -0800 | [diff] [blame] | 218 | owner.type = F_OWNER_PGRP; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 219 | break; |
| 220 | |
| 221 | default: |
| 222 | WARN_ON(1); |
| 223 | ret = -EINVAL; |
| 224 | break; |
| 225 | } |
| 226 | read_unlock(&filp->f_owner.lock); |
| 227 | |
Dan Carpenter | 5b54470 | 2010-06-03 12:35:42 +0200 | [diff] [blame] | 228 | if (!ret) { |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 229 | ret = copy_to_user(owner_p, &owner, sizeof(owner)); |
Dan Carpenter | 5b54470 | 2010-06-03 12:35:42 +0200 | [diff] [blame] | 230 | if (ret) |
| 231 | ret = -EFAULT; |
| 232 | } |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 233 | return ret; |
| 234 | } |
| 235 | |
Cyrill Gorcunov | 1d151c3 | 2012-07-30 14:43:00 -0700 | [diff] [blame] | 236 | #ifdef CONFIG_CHECKPOINT_RESTORE |
| 237 | static int f_getowner_uids(struct file *filp, unsigned long arg) |
| 238 | { |
| 239 | struct user_namespace *user_ns = current_user_ns(); |
Al Viro | 63784dd | 2012-09-26 21:43:05 -0400 | [diff] [blame] | 240 | uid_t __user *dst = (void __user *)arg; |
Cyrill Gorcunov | 1d151c3 | 2012-07-30 14:43:00 -0700 | [diff] [blame] | 241 | uid_t src[2]; |
| 242 | int err; |
| 243 | |
| 244 | read_lock(&filp->f_owner.lock); |
| 245 | src[0] = from_kuid(user_ns, filp->f_owner.uid); |
| 246 | src[1] = from_kuid(user_ns, filp->f_owner.euid); |
| 247 | read_unlock(&filp->f_owner.lock); |
| 248 | |
| 249 | err = put_user(src[0], &dst[0]); |
| 250 | err |= put_user(src[1], &dst[1]); |
| 251 | |
| 252 | return err; |
| 253 | } |
| 254 | #else |
| 255 | static int f_getowner_uids(struct file *filp, unsigned long arg) |
| 256 | { |
| 257 | return -EINVAL; |
| 258 | } |
| 259 | #endif |
| 260 | |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 261 | static bool rw_hint_valid(enum rw_hint hint) |
| 262 | { |
| 263 | switch (hint) { |
| 264 | case RWF_WRITE_LIFE_NOT_SET: |
| 265 | case RWH_WRITE_LIFE_NONE: |
| 266 | case RWH_WRITE_LIFE_SHORT: |
| 267 | case RWH_WRITE_LIFE_MEDIUM: |
| 268 | case RWH_WRITE_LIFE_LONG: |
| 269 | case RWH_WRITE_LIFE_EXTREME: |
| 270 | return true; |
| 271 | default: |
| 272 | return false; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | static long fcntl_rw_hint(struct file *file, unsigned int cmd, |
| 277 | unsigned long arg) |
| 278 | { |
| 279 | struct inode *inode = file_inode(file); |
| 280 | u64 *argp = (u64 __user *)arg; |
| 281 | enum rw_hint hint; |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 282 | u64 h; |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 283 | |
| 284 | switch (cmd) { |
| 285 | case F_GET_FILE_RW_HINT: |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 286 | h = file_write_hint(file); |
| 287 | if (copy_to_user(argp, &h, sizeof(*argp))) |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 288 | return -EFAULT; |
| 289 | return 0; |
| 290 | case F_SET_FILE_RW_HINT: |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 291 | if (copy_from_user(&h, argp, sizeof(h))) |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 292 | return -EFAULT; |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 293 | hint = (enum rw_hint) h; |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 294 | if (!rw_hint_valid(hint)) |
| 295 | return -EINVAL; |
| 296 | |
| 297 | spin_lock(&file->f_lock); |
| 298 | file->f_write_hint = hint; |
| 299 | spin_unlock(&file->f_lock); |
| 300 | return 0; |
| 301 | case F_GET_RW_HINT: |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 302 | h = inode->i_write_hint; |
| 303 | if (copy_to_user(argp, &h, sizeof(*argp))) |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 304 | return -EFAULT; |
| 305 | return 0; |
| 306 | case F_SET_RW_HINT: |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 307 | if (copy_from_user(&h, argp, sizeof(h))) |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 308 | return -EFAULT; |
Jens Axboe | 5657cb0 | 2017-06-28 08:09:45 -0600 | [diff] [blame] | 309 | hint = (enum rw_hint) h; |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 310 | if (!rw_hint_valid(hint)) |
| 311 | return -EINVAL; |
| 312 | |
| 313 | inode_lock(inode); |
| 314 | inode->i_write_hint = hint; |
| 315 | inode_unlock(inode); |
| 316 | return 0; |
| 317 | default: |
| 318 | return -EINVAL; |
| 319 | } |
| 320 | } |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | static long do_fcntl(int fd, unsigned int cmd, unsigned long arg, |
| 323 | struct file *filp) |
| 324 | { |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 325 | void __user *argp = (void __user *)arg; |
| 326 | struct flock flock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | long err = -EINVAL; |
| 328 | |
| 329 | switch (cmd) { |
| 330 | case F_DUPFD: |
Al Viro | fe17f22 | 2012-08-21 11:48:11 -0400 | [diff] [blame] | 331 | err = f_dupfd(arg, filp, 0); |
| 332 | break; |
Ulrich Drepper | 22d2b35 | 2007-10-16 23:30:26 -0700 | [diff] [blame] | 333 | case F_DUPFD_CLOEXEC: |
Al Viro | 1219771 | 2012-10-08 23:21:58 +0100 | [diff] [blame] | 334 | err = f_dupfd(arg, filp, O_CLOEXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | break; |
| 336 | case F_GETFD: |
| 337 | err = get_close_on_exec(fd) ? FD_CLOEXEC : 0; |
| 338 | break; |
| 339 | case F_SETFD: |
| 340 | err = 0; |
| 341 | set_close_on_exec(fd, arg & FD_CLOEXEC); |
| 342 | break; |
| 343 | case F_GETFL: |
| 344 | err = filp->f_flags; |
| 345 | break; |
| 346 | case F_SETFL: |
| 347 | err = setfl(fd, filp, arg); |
| 348 | break; |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 349 | #if BITS_PER_LONG != 32 |
| 350 | /* 32-bit arches must use fcntl64() */ |
Jeff Layton | 0d3f7a2 | 2014-04-22 08:23:58 -0400 | [diff] [blame] | 351 | case F_OFD_GETLK: |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 352 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | case F_GETLK: |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 354 | if (copy_from_user(&flock, argp, sizeof(flock))) |
| 355 | return -EFAULT; |
| 356 | err = fcntl_getlk(filp, cmd, &flock); |
| 357 | if (!err && copy_to_user(argp, &flock, sizeof(flock))) |
| 358 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | break; |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 360 | #if BITS_PER_LONG != 32 |
| 361 | /* 32-bit arches must use fcntl64() */ |
Jeff Layton | 0d3f7a2 | 2014-04-22 08:23:58 -0400 | [diff] [blame] | 362 | case F_OFD_SETLK: |
| 363 | case F_OFD_SETLKW: |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 364 | #endif |
| 365 | /* Fallthrough */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | case F_SETLK: |
| 367 | case F_SETLKW: |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 368 | if (copy_from_user(&flock, argp, sizeof(flock))) |
| 369 | return -EFAULT; |
| 370 | err = fcntl_setlk(fd, filp, cmd, &flock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | break; |
| 372 | case F_GETOWN: |
| 373 | /* |
| 374 | * XXX If f_owner is a process group, the |
| 375 | * negative return value will get converted |
| 376 | * into an error. Oops. If we keep the |
| 377 | * current syscall conventions, the only way |
| 378 | * to fix this will be in libc. |
| 379 | */ |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 380 | err = f_getown(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | force_successful_syscall_return(); |
| 382 | break; |
| 383 | case F_SETOWN: |
Jiri Slaby | 393cc3f | 2017-06-13 13:35:50 +0200 | [diff] [blame] | 384 | err = f_setown(filp, arg, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | break; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 386 | case F_GETOWN_EX: |
| 387 | err = f_getown_ex(filp, arg); |
| 388 | break; |
| 389 | case F_SETOWN_EX: |
| 390 | err = f_setown_ex(filp, arg); |
| 391 | break; |
Cyrill Gorcunov | 1d151c3 | 2012-07-30 14:43:00 -0700 | [diff] [blame] | 392 | case F_GETOWNER_UIDS: |
| 393 | err = f_getowner_uids(filp, arg); |
| 394 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | case F_GETSIG: |
| 396 | err = filp->f_owner.signum; |
| 397 | break; |
| 398 | case F_SETSIG: |
| 399 | /* arg == 0 restores default behaviour. */ |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 400 | if (!valid_signal(arg)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | break; |
| 402 | } |
| 403 | err = 0; |
| 404 | filp->f_owner.signum = arg; |
| 405 | break; |
| 406 | case F_GETLEASE: |
| 407 | err = fcntl_getlease(filp); |
| 408 | break; |
| 409 | case F_SETLEASE: |
| 410 | err = fcntl_setlease(fd, filp, arg); |
| 411 | break; |
| 412 | case F_NOTIFY: |
| 413 | err = fcntl_dirnotify(fd, filp, arg); |
| 414 | break; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 415 | case F_SETPIPE_SZ: |
| 416 | case F_GETPIPE_SZ: |
| 417 | err = pipe_fcntl(filp, cmd, arg); |
| 418 | break; |
David Herrmann | 40e041a | 2014-08-08 14:25:27 -0700 | [diff] [blame] | 419 | case F_ADD_SEALS: |
| 420 | case F_GET_SEALS: |
Marc-André Lureau | 5aadc43 | 2018-01-31 16:19:18 -0800 | [diff] [blame] | 421 | err = memfd_fcntl(filp, cmd, arg); |
David Herrmann | 40e041a | 2014-08-08 14:25:27 -0700 | [diff] [blame] | 422 | break; |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 423 | case F_GET_RW_HINT: |
| 424 | case F_SET_RW_HINT: |
| 425 | case F_GET_FILE_RW_HINT: |
| 426 | case F_SET_FILE_RW_HINT: |
| 427 | err = fcntl_rw_hint(filp, cmd, arg); |
| 428 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | default: |
| 430 | break; |
| 431 | } |
| 432 | return err; |
| 433 | } |
| 434 | |
Al Viro | 1abf0c7 | 2011-03-13 03:51:11 -0400 | [diff] [blame] | 435 | static int check_fcntl_cmd(unsigned cmd) |
| 436 | { |
| 437 | switch (cmd) { |
| 438 | case F_DUPFD: |
| 439 | case F_DUPFD_CLOEXEC: |
| 440 | case F_GETFD: |
| 441 | case F_SETFD: |
| 442 | case F_GETFL: |
| 443 | return 1; |
| 444 | } |
| 445 | return 0; |
| 446 | } |
| 447 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 448 | SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 450 | struct fd f = fdget_raw(fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | long err = -EBADF; |
| 452 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 453 | if (!f.file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | goto out; |
| 455 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 456 | if (unlikely(f.file->f_mode & FMODE_PATH)) { |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 457 | if (!check_fcntl_cmd(cmd)) |
| 458 | goto out1; |
Al Viro | 1abf0c7 | 2011-03-13 03:51:11 -0400 | [diff] [blame] | 459 | } |
| 460 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 461 | err = security_file_fcntl(f.file, cmd, arg); |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 462 | if (!err) |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 463 | err = do_fcntl(fd, cmd, arg, f.file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 465 | out1: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 466 | fdput(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | out: |
| 468 | return err; |
| 469 | } |
| 470 | |
| 471 | #if BITS_PER_LONG == 32 |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 472 | SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, |
| 473 | unsigned long, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 475 | void __user *argp = (void __user *)arg; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 476 | struct fd f = fdget_raw(fd); |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 477 | struct flock64 flock; |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 478 | long err = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 480 | if (!f.file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | goto out; |
| 482 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 483 | if (unlikely(f.file->f_mode & FMODE_PATH)) { |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 484 | if (!check_fcntl_cmd(cmd)) |
| 485 | goto out1; |
Al Viro | 1abf0c7 | 2011-03-13 03:51:11 -0400 | [diff] [blame] | 486 | } |
| 487 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 488 | err = security_file_fcntl(f.file, cmd, arg); |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 489 | if (err) |
| 490 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
| 492 | switch (cmd) { |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 493 | case F_GETLK64: |
Jeff Layton | 0d3f7a2 | 2014-04-22 08:23:58 -0400 | [diff] [blame] | 494 | case F_OFD_GETLK: |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 495 | err = -EFAULT; |
| 496 | if (copy_from_user(&flock, argp, sizeof(flock))) |
| 497 | break; |
| 498 | err = fcntl_getlk64(f.file, cmd, &flock); |
| 499 | if (!err && copy_to_user(argp, &flock, sizeof(flock))) |
| 500 | err = -EFAULT; |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 501 | break; |
| 502 | case F_SETLK64: |
| 503 | case F_SETLKW64: |
Jeff Layton | 0d3f7a2 | 2014-04-22 08:23:58 -0400 | [diff] [blame] | 504 | case F_OFD_SETLK: |
| 505 | case F_OFD_SETLKW: |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 506 | err = -EFAULT; |
| 507 | if (copy_from_user(&flock, argp, sizeof(flock))) |
| 508 | break; |
| 509 | err = fcntl_setlk64(fd, f.file, cmd, &flock); |
Jeff Layton | 5d50ffd | 2014-02-03 12:13:10 -0500 | [diff] [blame] | 510 | break; |
| 511 | default: |
| 512 | err = do_fcntl(fd, cmd, arg, f.file); |
| 513 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
Al Viro | 545ec2c | 2012-04-21 18:42:19 -0400 | [diff] [blame] | 515 | out1: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 516 | fdput(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | out: |
| 518 | return err; |
| 519 | } |
| 520 | #endif |
| 521 | |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 522 | #ifdef CONFIG_COMPAT |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 523 | /* careful - don't use anywhere else */ |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 524 | #define copy_flock_fields(dst, src) \ |
| 525 | (dst)->l_type = (src)->l_type; \ |
| 526 | (dst)->l_whence = (src)->l_whence; \ |
| 527 | (dst)->l_start = (src)->l_start; \ |
| 528 | (dst)->l_len = (src)->l_len; \ |
| 529 | (dst)->l_pid = (src)->l_pid; |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 530 | |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 531 | static int get_compat_flock(struct flock *kfl, const struct compat_flock __user *ufl) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 532 | { |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 533 | struct compat_flock fl; |
| 534 | |
| 535 | if (copy_from_user(&fl, ufl, sizeof(struct compat_flock))) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 536 | return -EFAULT; |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 537 | copy_flock_fields(kfl, &fl); |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 538 | return 0; |
| 539 | } |
| 540 | |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 541 | static int get_compat_flock64(struct flock *kfl, const struct compat_flock64 __user *ufl) |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 542 | { |
| 543 | struct compat_flock64 fl; |
| 544 | |
| 545 | if (copy_from_user(&fl, ufl, sizeof(struct compat_flock64))) |
| 546 | return -EFAULT; |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 547 | copy_flock_fields(kfl, &fl); |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 548 | return 0; |
| 549 | } |
| 550 | |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 551 | static int put_compat_flock(const struct flock *kfl, struct compat_flock __user *ufl) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 552 | { |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 553 | struct compat_flock fl; |
| 554 | |
| 555 | memset(&fl, 0, sizeof(struct compat_flock)); |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 556 | copy_flock_fields(&fl, kfl); |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 557 | if (copy_to_user(ufl, &fl, sizeof(struct compat_flock))) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 558 | return -EFAULT; |
| 559 | return 0; |
| 560 | } |
| 561 | |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 562 | static int put_compat_flock64(const struct flock *kfl, struct compat_flock64 __user *ufl) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 563 | { |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 564 | struct compat_flock64 fl; |
| 565 | |
Jeff Layton | 4d2dc2c | 2017-11-14 14:42:57 -0500 | [diff] [blame] | 566 | BUILD_BUG_ON(sizeof(kfl->l_start) > sizeof(ufl->l_start)); |
| 567 | BUILD_BUG_ON(sizeof(kfl->l_len) > sizeof(ufl->l_len)); |
| 568 | |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 569 | memset(&fl, 0, sizeof(struct compat_flock64)); |
Linus Torvalds | b59eea5 | 2017-07-07 13:48:18 -0700 | [diff] [blame] | 570 | copy_flock_fields(&fl, kfl); |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 571 | if (copy_to_user(ufl, &fl, sizeof(struct compat_flock64))) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 572 | return -EFAULT; |
| 573 | return 0; |
| 574 | } |
Al Viro | 8c6657c | 2017-06-26 23:51:31 -0400 | [diff] [blame] | 575 | #undef copy_flock_fields |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 576 | |
| 577 | static unsigned int |
| 578 | convert_fcntl_cmd(unsigned int cmd) |
| 579 | { |
| 580 | switch (cmd) { |
| 581 | case F_GETLK64: |
| 582 | return F_GETLK; |
| 583 | case F_SETLK64: |
| 584 | return F_SETLK; |
| 585 | case F_SETLKW64: |
| 586 | return F_SETLKW; |
| 587 | } |
| 588 | |
| 589 | return cmd; |
| 590 | } |
| 591 | |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 592 | /* |
| 593 | * GETLK was successful and we need to return the data, but it needs to fit in |
| 594 | * the compat structure. |
| 595 | * l_start shouldn't be too big, unless the original start + end is greater than |
| 596 | * COMPAT_OFF_T_MAX, in which case the app was asking for trouble, so we return |
| 597 | * -EOVERFLOW in that case. l_len could be too big, in which case we just |
| 598 | * truncate it, and only allow the app to see that part of the conflicting lock |
| 599 | * that might make sense to it anyway |
| 600 | */ |
| 601 | static int fixup_compat_flock(struct flock *flock) |
| 602 | { |
| 603 | if (flock->l_start > COMPAT_OFF_T_MAX) |
| 604 | return -EOVERFLOW; |
| 605 | if (flock->l_len > COMPAT_OFF_T_MAX) |
| 606 | flock->l_len = COMPAT_OFF_T_MAX; |
| 607 | return 0; |
| 608 | } |
| 609 | |
Dominik Brodowski | e02af2f | 2018-03-20 19:29:53 +0100 | [diff] [blame] | 610 | static long do_compat_fcntl64(unsigned int fd, unsigned int cmd, |
| 611 | compat_ulong_t arg) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 612 | { |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 613 | struct fd f = fdget_raw(fd); |
| 614 | struct flock flock; |
| 615 | long err = -EBADF; |
| 616 | |
| 617 | if (!f.file) |
| 618 | return err; |
| 619 | |
| 620 | if (unlikely(f.file->f_mode & FMODE_PATH)) { |
| 621 | if (!check_fcntl_cmd(cmd)) |
| 622 | goto out_put; |
| 623 | } |
| 624 | |
| 625 | err = security_file_fcntl(f.file, cmd, arg); |
| 626 | if (err) |
| 627 | goto out_put; |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 628 | |
| 629 | switch (cmd) { |
| 630 | case F_GETLK: |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 631 | err = get_compat_flock(&flock, compat_ptr(arg)); |
| 632 | if (err) |
| 633 | break; |
| 634 | err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock); |
| 635 | if (err) |
| 636 | break; |
| 637 | err = fixup_compat_flock(&flock); |
Jeff Layton | 9280a60 | 2017-11-14 14:43:56 -0500 | [diff] [blame] | 638 | if (!err) |
| 639 | err = put_compat_flock(&flock, compat_ptr(arg)); |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 640 | break; |
| 641 | case F_GETLK64: |
| 642 | case F_OFD_GETLK: |
| 643 | err = get_compat_flock64(&flock, compat_ptr(arg)); |
| 644 | if (err) |
| 645 | break; |
| 646 | err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock); |
Jeff Layton | 4d2dc2c | 2017-11-14 14:42:57 -0500 | [diff] [blame] | 647 | if (!err) |
| 648 | err = put_compat_flock64(&flock, compat_ptr(arg)); |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 649 | break; |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 650 | case F_SETLK: |
| 651 | case F_SETLKW: |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 652 | err = get_compat_flock(&flock, compat_ptr(arg)); |
| 653 | if (err) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 654 | break; |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 655 | err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock); |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 656 | break; |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 657 | case F_SETLK64: |
| 658 | case F_SETLKW64: |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 659 | case F_OFD_SETLK: |
| 660 | case F_OFD_SETLKW: |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 661 | err = get_compat_flock64(&flock, compat_ptr(arg)); |
| 662 | if (err) |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 663 | break; |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 664 | err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock); |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 665 | break; |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 666 | default: |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 667 | err = do_fcntl(fd, cmd, arg, f.file); |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 668 | break; |
| 669 | } |
Christoph Hellwig | 94073ad | 2017-05-27 06:07:20 -0400 | [diff] [blame] | 670 | out_put: |
| 671 | fdput(f); |
| 672 | return err; |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 673 | } |
| 674 | |
Dominik Brodowski | e02af2f | 2018-03-20 19:29:53 +0100 | [diff] [blame] | 675 | COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, |
| 676 | compat_ulong_t, arg) |
| 677 | { |
| 678 | return do_compat_fcntl64(fd, cmd, arg); |
| 679 | } |
| 680 | |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 681 | COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, |
| 682 | compat_ulong_t, arg) |
| 683 | { |
| 684 | switch (cmd) { |
| 685 | case F_GETLK64: |
| 686 | case F_SETLK64: |
| 687 | case F_SETLKW64: |
| 688 | case F_OFD_GETLK: |
| 689 | case F_OFD_SETLK: |
| 690 | case F_OFD_SETLKW: |
| 691 | return -EINVAL; |
| 692 | } |
Dominik Brodowski | e02af2f | 2018-03-20 19:29:53 +0100 | [diff] [blame] | 693 | return do_compat_fcntl64(fd, cmd, arg); |
Al Viro | 80f0cce | 2017-04-08 18:10:56 -0400 | [diff] [blame] | 694 | } |
| 695 | #endif |
| 696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | /* Table to convert sigio signal codes into poll band bitmaps */ |
| 698 | |
Al Viro | 5dc533c | 2017-07-16 22:14:00 -0400 | [diff] [blame] | 699 | static const __poll_t band_table[NSIGPOLL] = { |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 700 | EPOLLIN | EPOLLRDNORM, /* POLL_IN */ |
| 701 | EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND, /* POLL_OUT */ |
| 702 | EPOLLIN | EPOLLRDNORM | EPOLLMSG, /* POLL_MSG */ |
| 703 | EPOLLERR, /* POLL_ERR */ |
| 704 | EPOLLPRI | EPOLLRDBAND, /* POLL_PRI */ |
| 705 | EPOLLHUP | EPOLLERR /* POLL_HUP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | }; |
| 707 | |
| 708 | static inline int sigio_perm(struct task_struct *p, |
| 709 | struct fown_struct *fown, int sig) |
| 710 | { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 711 | const struct cred *cred; |
| 712 | int ret; |
| 713 | |
| 714 | rcu_read_lock(); |
| 715 | cred = __task_cred(p); |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 716 | ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) || |
| 717 | uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) || |
| 718 | uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) && |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 719 | !security_file_send_sigiotask(p, fown, sig)); |
| 720 | rcu_read_unlock(); |
| 721 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | static void send_sigio_to_task(struct task_struct *p, |
Oleg Nesterov | 8eeee4e | 2009-06-17 00:27:10 +0200 | [diff] [blame] | 725 | struct fown_struct *fown, |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 726 | int fd, int reason, int group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | { |
Oleg Nesterov | 8eeee4e | 2009-06-17 00:27:10 +0200 | [diff] [blame] | 728 | /* |
| 729 | * F_SETSIG can change ->signum lockless in parallel, make |
| 730 | * sure we read it once and use the same value throughout. |
| 731 | */ |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 732 | int signum = READ_ONCE(fown->signum); |
Oleg Nesterov | 8eeee4e | 2009-06-17 00:27:10 +0200 | [diff] [blame] | 733 | |
| 734 | if (!sigio_perm(p, fown, signum)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | return; |
| 736 | |
Oleg Nesterov | 8eeee4e | 2009-06-17 00:27:10 +0200 | [diff] [blame] | 737 | switch (signum) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | siginfo_t si; |
| 739 | default: |
| 740 | /* Queue a rt signal with the appropriate fd as its |
| 741 | value. We use SI_SIGIO as the source, not |
| 742 | SI_KERNEL, since kernel signals always get |
| 743 | delivered even if we can't queue. Failure to |
| 744 | queue in this case _should_ be reported; we fall |
| 745 | back to SIGIO in that case. --sct */ |
Eric W. Biederman | faf1f22 | 2018-01-05 17:27:42 -0600 | [diff] [blame] | 746 | clear_siginfo(&si); |
Oleg Nesterov | 8eeee4e | 2009-06-17 00:27:10 +0200 | [diff] [blame] | 747 | si.si_signo = signum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | si.si_errno = 0; |
| 749 | si.si_code = reason; |
Eric W. Biederman | d08477a | 2017-06-29 09:28:50 -0500 | [diff] [blame] | 750 | /* |
| 751 | * Posix definies POLL_IN and friends to be signal |
| 752 | * specific si_codes for SIG_POLL. Linux extended |
| 753 | * these si_codes to other signals in a way that is |
| 754 | * ambiguous if other signals also have signal |
| 755 | * specific si_codes. In that case use SI_SIGIO instead |
| 756 | * to remove the ambiguity. |
| 757 | */ |
Eric W. Biederman | 54640d2 | 2017-09-18 22:51:14 -0500 | [diff] [blame] | 758 | if ((signum != SIGPOLL) && sig_specific_sicodes(signum)) |
Eric W. Biederman | d08477a | 2017-06-29 09:28:50 -0500 | [diff] [blame] | 759 | si.si_code = SI_SIGIO; |
| 760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | /* Make sure we are called with one of the POLL_* |
| 762 | reasons, otherwise we could leak kernel stack into |
| 763 | userspace. */ |
Eric W. Biederman | d08477a | 2017-06-29 09:28:50 -0500 | [diff] [blame] | 764 | BUG_ON((reason < POLL_IN) || ((reason - POLL_IN) >= NSIGPOLL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | if (reason - POLL_IN >= NSIGPOLL) |
| 766 | si.si_band = ~0L; |
| 767 | else |
Al Viro | c71d227 | 2017-11-29 19:00:41 -0500 | [diff] [blame] | 768 | si.si_band = mangle_poll(band_table[reason - POLL_IN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | si.si_fd = fd; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 770 | if (!do_send_sig_info(signum, &si, p, group)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | break; |
| 772 | /* fall-through: fall back on the old plain SIGIO signal */ |
| 773 | case 0: |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 774 | do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | } |
| 776 | } |
| 777 | |
| 778 | void send_sigio(struct fown_struct *fown, int fd, int band) |
| 779 | { |
| 780 | struct task_struct *p; |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 781 | enum pid_type type; |
| 782 | struct pid *pid; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 783 | int group = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
| 785 | read_lock(&fown->lock); |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 786 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 787 | type = fown->pid_type; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 788 | if (type == PIDTYPE_MAX) { |
| 789 | group = 0; |
| 790 | type = PIDTYPE_PID; |
| 791 | } |
| 792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | pid = fown->pid; |
| 794 | if (!pid) |
| 795 | goto out_unlock_fown; |
| 796 | |
| 797 | read_lock(&tasklist_lock); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 798 | do_each_pid_task(pid, type, p) { |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 799 | send_sigio_to_task(p, fown, fd, band, group); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 800 | } while_each_pid_task(pid, type, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | read_unlock(&tasklist_lock); |
| 802 | out_unlock_fown: |
| 803 | read_unlock(&fown->lock); |
| 804 | } |
| 805 | |
| 806 | static void send_sigurg_to_task(struct task_struct *p, |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 807 | struct fown_struct *fown, int group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
| 809 | if (sigio_perm(p, fown, SIGURG)) |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 810 | do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | int send_sigurg(struct fown_struct *fown) |
| 814 | { |
| 815 | struct task_struct *p; |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 816 | enum pid_type type; |
| 817 | struct pid *pid; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 818 | int group = 1; |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 819 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | read_lock(&fown->lock); |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 822 | |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 823 | type = fown->pid_type; |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 824 | if (type == PIDTYPE_MAX) { |
| 825 | group = 0; |
| 826 | type = PIDTYPE_PID; |
| 827 | } |
| 828 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | pid = fown->pid; |
| 830 | if (!pid) |
| 831 | goto out_unlock_fown; |
| 832 | |
| 833 | ret = 1; |
| 834 | |
| 835 | read_lock(&tasklist_lock); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 836 | do_each_pid_task(pid, type, p) { |
Peter Zijlstra | ba0a6c9 | 2009-09-23 15:57:03 -0700 | [diff] [blame] | 837 | send_sigurg_to_task(p, fown, group); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 838 | } while_each_pid_task(pid, type, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | read_unlock(&tasklist_lock); |
| 840 | out_unlock_fown: |
| 841 | read_unlock(&fown->lock); |
| 842 | return ret; |
| 843 | } |
| 844 | |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 845 | static DEFINE_SPINLOCK(fasync_lock); |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 846 | static struct kmem_cache *fasync_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 848 | static void fasync_free_rcu(struct rcu_head *head) |
| 849 | { |
| 850 | kmem_cache_free(fasync_cache, |
| 851 | container_of(head, struct fasync_struct, fa_rcu)); |
| 852 | } |
| 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | /* |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 855 | * Remove a fasync entry. If successfully removed, return |
| 856 | * positive and clear the FASYNC flag. If no entry exists, |
| 857 | * do nothing and return 0. |
| 858 | * |
| 859 | * NOTE! It is very important that the FASYNC flag always |
| 860 | * match the state "is the filp on a fasync list". |
| 861 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | */ |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 863 | int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | { |
| 865 | struct fasync_struct *fa, **fp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | int result = 0; |
| 867 | |
Jonathan Corbet | 4a6a449 | 2009-03-27 12:24:31 -0600 | [diff] [blame] | 868 | spin_lock(&filp->f_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 869 | spin_lock(&fasync_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) { |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 871 | if (fa->fa_file != filp) |
| 872 | continue; |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 873 | |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 874 | write_lock_irq(&fa->fa_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 875 | fa->fa_file = NULL; |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 876 | write_unlock_irq(&fa->fa_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 877 | |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 878 | *fp = fa->fa_next; |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 879 | call_rcu(&fa->fa_rcu, fasync_free_rcu); |
Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 880 | filp->f_flags &= ~FASYNC; |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 881 | result = 1; |
| 882 | break; |
| 883 | } |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 884 | spin_unlock(&fasync_lock); |
Jonathan Corbet | 4a6a449 | 2009-03-27 12:24:31 -0600 | [diff] [blame] | 885 | spin_unlock(&filp->f_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | return result; |
| 887 | } |
| 888 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 889 | struct fasync_struct *fasync_alloc(void) |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 890 | { |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 891 | return kmem_cache_alloc(fasync_cache, GFP_KERNEL); |
| 892 | } |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 893 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 894 | /* |
| 895 | * NOTE! This can be used only for unused fasync entries: |
| 896 | * entries that actually got inserted on the fasync list |
| 897 | * need to be released by rcu - see fasync_remove_entry. |
| 898 | */ |
| 899 | void fasync_free(struct fasync_struct *new) |
| 900 | { |
| 901 | kmem_cache_free(fasync_cache, new); |
| 902 | } |
| 903 | |
| 904 | /* |
| 905 | * Insert a new entry into the fasync list. Return the pointer to the |
| 906 | * old one if we didn't use the new one. |
Linus Torvalds | 55f335a | 2010-10-27 18:17:02 -0700 | [diff] [blame] | 907 | * |
| 908 | * NOTE! It is very important that the FASYNC flag always |
| 909 | * match the state "is the filp on a fasync list". |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 910 | */ |
| 911 | struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new) |
| 912 | { |
| 913 | struct fasync_struct *fa, **fp; |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 914 | |
| 915 | spin_lock(&filp->f_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 916 | spin_lock(&fasync_lock); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 917 | for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) { |
| 918 | if (fa->fa_file != filp) |
| 919 | continue; |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 920 | |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 921 | write_lock_irq(&fa->fa_lock); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 922 | fa->fa_fd = fd; |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 923 | write_unlock_irq(&fa->fa_lock); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 924 | goto out; |
| 925 | } |
| 926 | |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 927 | rwlock_init(&new->fa_lock); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 928 | new->magic = FASYNC_MAGIC; |
| 929 | new->fa_file = filp; |
| 930 | new->fa_fd = fd; |
| 931 | new->fa_next = *fapp; |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 932 | rcu_assign_pointer(*fapp, new); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 933 | filp->f_flags |= FASYNC; |
| 934 | |
| 935 | out: |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 936 | spin_unlock(&fasync_lock); |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 937 | spin_unlock(&filp->f_lock); |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 938 | return fa; |
| 939 | } |
| 940 | |
| 941 | /* |
| 942 | * Add a fasync entry. Return negative on error, positive if |
| 943 | * added, and zero if did nothing but change an existing one. |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 944 | */ |
| 945 | static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp) |
| 946 | { |
| 947 | struct fasync_struct *new; |
| 948 | |
| 949 | new = fasync_alloc(); |
| 950 | if (!new) |
| 951 | return -ENOMEM; |
| 952 | |
| 953 | /* |
| 954 | * fasync_insert_entry() returns the old (update) entry if |
| 955 | * it existed. |
| 956 | * |
| 957 | * So free the (unused) new entry and return 0 to let the |
| 958 | * caller know that we didn't add any new fasync entries. |
| 959 | */ |
| 960 | if (fasync_insert_entry(fd, filp, fapp, new)) { |
| 961 | fasync_free(new); |
| 962 | return 0; |
| 963 | } |
| 964 | |
| 965 | return 1; |
Linus Torvalds | 53281b6 | 2009-12-16 08:23:37 -0800 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | /* |
| 969 | * fasync_helper() is used by almost all character device drivers |
| 970 | * to set up the fasync queue, and for regular files by the file |
| 971 | * lease code. It returns negative on error, 0 if it did no changes |
| 972 | * and positive if it added/deleted the entry. |
| 973 | */ |
| 974 | int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp) |
| 975 | { |
| 976 | if (!on) |
| 977 | return fasync_remove_entry(filp, fapp); |
| 978 | return fasync_add_entry(fd, filp, fapp); |
| 979 | } |
| 980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | EXPORT_SYMBOL(fasync_helper); |
| 982 | |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 983 | /* |
| 984 | * rcu_read_lock() is held |
| 985 | */ |
| 986 | static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | { |
| 988 | while (fa) { |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 989 | struct fown_struct *fown; |
Andrew Morton | f4985dc | 2010-06-29 15:05:42 -0700 | [diff] [blame] | 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | if (fa->magic != FASYNC_MAGIC) { |
| 992 | printk(KERN_ERR "kill_fasync: bad magic number in " |
| 993 | "fasync_struct!\n"); |
| 994 | return; |
| 995 | } |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 996 | read_lock(&fa->fa_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 997 | if (fa->fa_file) { |
| 998 | fown = &fa->fa_file->f_owner; |
| 999 | /* Don't send SIGURG to processes which have not set a |
| 1000 | queued signum: SIGURG has its own default signalling |
| 1001 | mechanism. */ |
| 1002 | if (!(sig == SIGURG && fown->signum == 0)) |
| 1003 | send_sigio(fown, fa->fa_fd, band); |
| 1004 | } |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 1005 | read_unlock(&fa->fa_lock); |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1006 | fa = rcu_dereference(fa->fa_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | } |
| 1009 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | void kill_fasync(struct fasync_struct **fp, int sig, int band) |
| 1011 | { |
| 1012 | /* First a quick test without locking: usually |
| 1013 | * the list is empty. |
| 1014 | */ |
| 1015 | if (*fp) { |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1016 | rcu_read_lock(); |
| 1017 | kill_fasync_rcu(rcu_dereference(*fp), sig, band); |
| 1018 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | } |
| 1020 | } |
| 1021 | EXPORT_SYMBOL(kill_fasync); |
| 1022 | |
Wu Fengguang | 454eedb | 2010-08-10 18:01:29 -0700 | [diff] [blame] | 1023 | static int __init fcntl_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | { |
James Bottomley | 3ab04d5 | 2010-09-09 16:38:12 -0700 | [diff] [blame] | 1025 | /* |
| 1026 | * Please add new bits here to ensure allocation uniqueness. |
| 1027 | * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY |
| 1028 | * is defined as O_NONBLOCK on some platforms and not on others. |
| 1029 | */ |
Christoph Hellwig | 80f1837 | 2017-04-27 09:42:24 +0200 | [diff] [blame] | 1030 | BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ != |
| 1031 | HWEIGHT32( |
| 1032 | (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | |
| 1033 | __FMODE_EXEC | __FMODE_NONOTIFY)); |
Wu Fengguang | 454eedb | 2010-08-10 18:01:29 -0700 | [diff] [blame] | 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | fasync_cache = kmem_cache_create("fasync_cache", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1036 | sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | return 0; |
| 1038 | } |
| 1039 | |
Wu Fengguang | 454eedb | 2010-08-10 18:01:29 -0700 | [diff] [blame] | 1040 | module_init(fcntl_init) |