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