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