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