blob: 693322e287510361b3166e811c7b915020187dee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Molnar29930022017-02-08 18:51:36 +010010#include <linux/sched/task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
12#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040013#include <linux/fdtable.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/module.h>
Jens Axboe35f3d142010-05-20 10:43:18 +020018#include <linux/pipe_fs_i.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/security.h>
20#include <linux/ptrace.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070021#include <linux/signal.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070022#include <linux/rcupdate.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070023#include <linux/pid_namespace.h>
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -070024#include <linux/user_namespace.h>
David Herrmann40e041a2014-08-08 14:25:27 -070025#include <linux/shmem_fs.h>
Al Viro80f0cce2017-04-08 18:10:56 -040026#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/poll.h>
29#include <asm/siginfo.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jonathan Corbet76398422009-02-01 14:26:59 -070032#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static int setfl(int fd, struct file * filp, unsigned long arg)
35{
Al Viro496ad9a2013-01-23 17:07:38 -050036 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 int error = 0;
38
dean gaudet7d95c8f2006-02-03 03:04:30 -080039 /*
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 Torvalds1da177e2005-04-16 15:20:36 -070044 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. Hallyn2e149672011-03-23 16:43:26 -070048 if (!inode_owner_or_capable(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 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 Kinsburskiy0dbf5f22015-12-15 19:41:31 +040056 /* Pipe packetized mode is controlled by O_DIRECT flag */
Al Viro45063092016-12-04 18:24:56 -050057 if (!S_ISFIFO(inode->i_mode) && (arg & O_DIRECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
59 !filp->f_mapping->a_ops->direct_IO)
60 return -EINVAL;
61 }
62
Al Viro72c2d532013-09-22 16:27:52 -040063 if (filp->f_op->check_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 error = filp->f_op->check_flags(arg);
65 if (error)
66 return error;
67
Jonathan Corbet218d11a2008-12-05 16:12:48 -070068 /*
Jonathan Corbet76398422009-02-01 14:26:59 -070069 * ->fasync() is responsible for setting the FASYNC bit.
Jonathan Corbet218d11a2008-12-05 16:12:48 -070070 */
Al Viro72c2d532013-09-22 16:27:52 -040071 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) {
Jonathan Corbet76398422009-02-01 14:26:59 -070072 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
73 if (error < 0)
74 goto out;
Jonathan Corbet60aa4922009-02-01 14:52:56 -070075 if (error > 0)
76 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -070078 spin_lock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -070080 spin_unlock(&filp->f_lock);
Jonathan Corbet76398422009-02-01 14:26:59 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return error;
84}
85
Eric W. Biederman609d7fa2006-10-02 02:17:15 -070086static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
Oleg Nesterov2f38d702009-06-16 22:07:46 +020087 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Linus Torvalds80e1e822010-02-07 10:11:23 -080089 write_lock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (force || !filp->f_owner.pid) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -070091 put_pid(filp->f_owner.pid);
92 filp->f_owner.pid = get_pid(pid);
93 filp->f_owner.pid_type = type;
Oleg Nesterov2f38d702009-06-16 22:07:46 +020094
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 Torvalds1da177e2005-04-16 15:20:36 -0700100 }
Linus Torvalds80e1e822010-02-07 10:11:23 -0800101 write_unlock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400104void __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700105 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400107 security_file_set_fowner(filp);
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200108 f_modown(filp, pid, type, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700110EXPORT_SYMBOL(__f_setown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200112int f_setown(struct file *filp, unsigned long arg, int force)
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700113{
114 enum pid_type type;
115 struct pid *pid;
116 int who = arg;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700117 type = PIDTYPE_PID;
118 if (who < 0) {
Jiri Slabyfc3dc672017-06-13 13:35:51 +0200119 /* avoid overflow below */
120 if (who == INT_MIN)
121 return -EINVAL;
122
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700123 type = PIDTYPE_PGID;
124 who = -who;
125 }
126 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700127 pid = find_vpid(who);
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400128 __f_setown(filp, pid, type, force);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700129 rcu_read_unlock();
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200130
131 return 0;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133EXPORT_SYMBOL(f_setown);
134
135void f_delown(struct file *filp)
136{
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200137 f_modown(filp, NULL, PIDTYPE_PID, 1);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700138}
139
140pid_t f_getown(struct file *filp)
141{
142 pid_t pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700143 read_lock(&filp->f_owner.lock);
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800144 pid = pid_vnr(filp->f_owner.pid);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700145 if (filp->f_owner.pid_type == PIDTYPE_PGID)
146 pid = -pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700147 read_unlock(&filp->f_owner.lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700148 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700151static int f_setown_ex(struct file *filp, unsigned long arg)
152{
Al Viro63784dd2012-09-26 21:43:05 -0400153 struct f_owner_ex __user *owner_p = (void __user *)arg;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700154 struct f_owner_ex owner;
155 struct pid *pid;
156 int type;
157 int ret;
158
159 ret = copy_from_user(&owner, owner_p, sizeof(owner));
160 if (ret)
Dan Carpenter5b544702010-06-03 12:35:42 +0200161 return -EFAULT;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700162
163 switch (owner.type) {
164 case F_OWNER_TID:
165 type = PIDTYPE_MAX;
166 break;
167
168 case F_OWNER_PID:
169 type = PIDTYPE_PID;
170 break;
171
Peter Zijlstra978b4052009-11-17 14:06:24 -0800172 case F_OWNER_PGRP:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700173 type = PIDTYPE_PGID;
174 break;
175
176 default:
177 return -EINVAL;
178 }
179
180 rcu_read_lock();
181 pid = find_vpid(owner.pid);
182 if (owner.pid && !pid)
183 ret = -ESRCH;
184 else
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400185 __f_setown(filp, pid, type, 1);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700186 rcu_read_unlock();
187
188 return ret;
189}
190
191static int f_getown_ex(struct file *filp, unsigned long arg)
192{
Al Viro63784dd2012-09-26 21:43:05 -0400193 struct f_owner_ex __user *owner_p = (void __user *)arg;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700194 struct f_owner_ex owner;
195 int ret = 0;
196
197 read_lock(&filp->f_owner.lock);
198 owner.pid = pid_vnr(filp->f_owner.pid);
199 switch (filp->f_owner.pid_type) {
200 case PIDTYPE_MAX:
201 owner.type = F_OWNER_TID;
202 break;
203
204 case PIDTYPE_PID:
205 owner.type = F_OWNER_PID;
206 break;
207
208 case PIDTYPE_PGID:
Peter Zijlstra978b4052009-11-17 14:06:24 -0800209 owner.type = F_OWNER_PGRP;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700210 break;
211
212 default:
213 WARN_ON(1);
214 ret = -EINVAL;
215 break;
216 }
217 read_unlock(&filp->f_owner.lock);
218
Dan Carpenter5b544702010-06-03 12:35:42 +0200219 if (!ret) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700220 ret = copy_to_user(owner_p, &owner, sizeof(owner));
Dan Carpenter5b544702010-06-03 12:35:42 +0200221 if (ret)
222 ret = -EFAULT;
223 }
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700224 return ret;
225}
226
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700227#ifdef CONFIG_CHECKPOINT_RESTORE
228static int f_getowner_uids(struct file *filp, unsigned long arg)
229{
230 struct user_namespace *user_ns = current_user_ns();
Al Viro63784dd2012-09-26 21:43:05 -0400231 uid_t __user *dst = (void __user *)arg;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700232 uid_t src[2];
233 int err;
234
235 read_lock(&filp->f_owner.lock);
236 src[0] = from_kuid(user_ns, filp->f_owner.uid);
237 src[1] = from_kuid(user_ns, filp->f_owner.euid);
238 read_unlock(&filp->f_owner.lock);
239
240 err = put_user(src[0], &dst[0]);
241 err |= put_user(src[1], &dst[1]);
242
243 return err;
244}
245#else
246static int f_getowner_uids(struct file *filp, unsigned long arg)
247{
248 return -EINVAL;
249}
250#endif
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
253 struct file *filp)
254{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400255 void __user *argp = (void __user *)arg;
256 struct flock flock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 long err = -EINVAL;
258
259 switch (cmd) {
260 case F_DUPFD:
Al Virofe17f222012-08-21 11:48:11 -0400261 err = f_dupfd(arg, filp, 0);
262 break;
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700263 case F_DUPFD_CLOEXEC:
Al Viro12197712012-10-08 23:21:58 +0100264 err = f_dupfd(arg, filp, O_CLOEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266 case F_GETFD:
267 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
268 break;
269 case F_SETFD:
270 err = 0;
271 set_close_on_exec(fd, arg & FD_CLOEXEC);
272 break;
273 case F_GETFL:
274 err = filp->f_flags;
275 break;
276 case F_SETFL:
277 err = setfl(fd, filp, arg);
278 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500279#if BITS_PER_LONG != 32
280 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400281 case F_OFD_GETLK:
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500282#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 case F_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400284 if (copy_from_user(&flock, argp, sizeof(flock)))
285 return -EFAULT;
286 err = fcntl_getlk(filp, cmd, &flock);
287 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
288 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500290#if BITS_PER_LONG != 32
291 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400292 case F_OFD_SETLK:
293 case F_OFD_SETLKW:
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500294#endif
295 /* Fallthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case F_SETLK:
297 case F_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400298 if (copy_from_user(&flock, argp, sizeof(flock)))
299 return -EFAULT;
300 err = fcntl_setlk(fd, filp, cmd, &flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302 case F_GETOWN:
303 /*
304 * XXX If f_owner is a process group, the
305 * negative return value will get converted
306 * into an error. Oops. If we keep the
307 * current syscall conventions, the only way
308 * to fix this will be in libc.
309 */
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700310 err = f_getown(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 force_successful_syscall_return();
312 break;
313 case F_SETOWN:
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200314 err = f_setown(filp, arg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700316 case F_GETOWN_EX:
317 err = f_getown_ex(filp, arg);
318 break;
319 case F_SETOWN_EX:
320 err = f_setown_ex(filp, arg);
321 break;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700322 case F_GETOWNER_UIDS:
323 err = f_getowner_uids(filp, arg);
324 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 case F_GETSIG:
326 err = filp->f_owner.signum;
327 break;
328 case F_SETSIG:
329 /* arg == 0 restores default behaviour. */
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700330 if (!valid_signal(arg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332 }
333 err = 0;
334 filp->f_owner.signum = arg;
335 break;
336 case F_GETLEASE:
337 err = fcntl_getlease(filp);
338 break;
339 case F_SETLEASE:
340 err = fcntl_setlease(fd, filp, arg);
341 break;
342 case F_NOTIFY:
343 err = fcntl_dirnotify(fd, filp, arg);
344 break;
Jens Axboe35f3d142010-05-20 10:43:18 +0200345 case F_SETPIPE_SZ:
346 case F_GETPIPE_SZ:
347 err = pipe_fcntl(filp, cmd, arg);
348 break;
David Herrmann40e041a2014-08-08 14:25:27 -0700349 case F_ADD_SEALS:
350 case F_GET_SEALS:
351 err = shmem_fcntl(filp, cmd, arg);
352 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 default:
354 break;
355 }
356 return err;
357}
358
Al Viro1abf0c72011-03-13 03:51:11 -0400359static int check_fcntl_cmd(unsigned cmd)
360{
361 switch (cmd) {
362 case F_DUPFD:
363 case F_DUPFD_CLOEXEC:
364 case F_GETFD:
365 case F_SETFD:
366 case F_GETFL:
367 return 1;
368 }
369 return 0;
370}
371
Heiko Carstensa26eab22009-01-14 14:14:17 +0100372SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Al Viro2903ff02012-08-28 12:52:22 -0400374 struct fd f = fdget_raw(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 long err = -EBADF;
376
Al Viro2903ff02012-08-28 12:52:22 -0400377 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto out;
379
Al Viro2903ff02012-08-28 12:52:22 -0400380 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400381 if (!check_fcntl_cmd(cmd))
382 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400383 }
384
Al Viro2903ff02012-08-28 12:52:22 -0400385 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400386 if (!err)
Al Viro2903ff02012-08-28 12:52:22 -0400387 err = do_fcntl(fd, cmd, arg, f.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Al Viro545ec2c2012-04-21 18:42:19 -0400389out1:
Al Viro2903ff02012-08-28 12:52:22 -0400390 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391out:
392 return err;
393}
394
395#if BITS_PER_LONG == 32
Heiko Carstensa26eab22009-01-14 14:14:17 +0100396SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
397 unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400399 void __user *argp = (void __user *)arg;
Al Viro2903ff02012-08-28 12:52:22 -0400400 struct fd f = fdget_raw(fd);
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400401 struct flock64 flock;
Al Viro545ec2c2012-04-21 18:42:19 -0400402 long err = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Al Viro2903ff02012-08-28 12:52:22 -0400404 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 goto out;
406
Al Viro2903ff02012-08-28 12:52:22 -0400407 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400408 if (!check_fcntl_cmd(cmd))
409 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400410 }
411
Al Viro2903ff02012-08-28 12:52:22 -0400412 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400413 if (err)
414 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 switch (cmd) {
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500417 case F_GETLK64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400418 case F_OFD_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400419 err = -EFAULT;
420 if (copy_from_user(&flock, argp, sizeof(flock)))
421 break;
422 err = fcntl_getlk64(f.file, cmd, &flock);
423 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
424 err = -EFAULT;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500425 break;
426 case F_SETLK64:
427 case F_SETLKW64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400428 case F_OFD_SETLK:
429 case F_OFD_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400430 err = -EFAULT;
431 if (copy_from_user(&flock, argp, sizeof(flock)))
432 break;
433 err = fcntl_setlk64(fd, f.file, cmd, &flock);
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500434 break;
435 default:
436 err = do_fcntl(fd, cmd, arg, f.file);
437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Al Viro545ec2c2012-04-21 18:42:19 -0400439out1:
Al Viro2903ff02012-08-28 12:52:22 -0400440 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441out:
442 return err;
443}
444#endif
445
Al Viro80f0cce2017-04-08 18:10:56 -0400446#ifdef CONFIG_COMPAT
447static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
448{
449 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
450 __get_user(kfl->l_type, &ufl->l_type) ||
451 __get_user(kfl->l_whence, &ufl->l_whence) ||
452 __get_user(kfl->l_start, &ufl->l_start) ||
453 __get_user(kfl->l_len, &ufl->l_len) ||
454 __get_user(kfl->l_pid, &ufl->l_pid))
455 return -EFAULT;
456 return 0;
457}
458
459static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
460{
461 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
462 __put_user(kfl->l_type, &ufl->l_type) ||
463 __put_user(kfl->l_whence, &ufl->l_whence) ||
464 __put_user(kfl->l_start, &ufl->l_start) ||
465 __put_user(kfl->l_len, &ufl->l_len) ||
466 __put_user(kfl->l_pid, &ufl->l_pid))
467 return -EFAULT;
468 return 0;
469}
470
471#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
472static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
473{
474 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
475 __get_user(kfl->l_type, &ufl->l_type) ||
476 __get_user(kfl->l_whence, &ufl->l_whence) ||
477 __get_user(kfl->l_start, &ufl->l_start) ||
478 __get_user(kfl->l_len, &ufl->l_len) ||
479 __get_user(kfl->l_pid, &ufl->l_pid))
480 return -EFAULT;
481 return 0;
482}
483#endif
484
485#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
486static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
487{
488 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
489 __put_user(kfl->l_type, &ufl->l_type) ||
490 __put_user(kfl->l_whence, &ufl->l_whence) ||
491 __put_user(kfl->l_start, &ufl->l_start) ||
492 __put_user(kfl->l_len, &ufl->l_len) ||
493 __put_user(kfl->l_pid, &ufl->l_pid))
494 return -EFAULT;
495 return 0;
496}
497#endif
498
499static unsigned int
500convert_fcntl_cmd(unsigned int cmd)
501{
502 switch (cmd) {
503 case F_GETLK64:
504 return F_GETLK;
505 case F_SETLK64:
506 return F_SETLK;
507 case F_SETLKW64:
508 return F_SETLKW;
509 }
510
511 return cmd;
512}
513
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400514/*
515 * GETLK was successful and we need to return the data, but it needs to fit in
516 * the compat structure.
517 * l_start shouldn't be too big, unless the original start + end is greater than
518 * COMPAT_OFF_T_MAX, in which case the app was asking for trouble, so we return
519 * -EOVERFLOW in that case. l_len could be too big, in which case we just
520 * truncate it, and only allow the app to see that part of the conflicting lock
521 * that might make sense to it anyway
522 */
523static int fixup_compat_flock(struct flock *flock)
524{
525 if (flock->l_start > COMPAT_OFF_T_MAX)
526 return -EOVERFLOW;
527 if (flock->l_len > COMPAT_OFF_T_MAX)
528 flock->l_len = COMPAT_OFF_T_MAX;
529 return 0;
530}
531
Al Viro80f0cce2017-04-08 18:10:56 -0400532COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
533 compat_ulong_t, arg)
534{
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400535 struct fd f = fdget_raw(fd);
536 struct flock flock;
537 long err = -EBADF;
538
539 if (!f.file)
540 return err;
541
542 if (unlikely(f.file->f_mode & FMODE_PATH)) {
543 if (!check_fcntl_cmd(cmd))
544 goto out_put;
545 }
546
547 err = security_file_fcntl(f.file, cmd, arg);
548 if (err)
549 goto out_put;
Al Viro80f0cce2017-04-08 18:10:56 -0400550
551 switch (cmd) {
552 case F_GETLK:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400553 err = get_compat_flock(&flock, compat_ptr(arg));
554 if (err)
555 break;
556 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
557 if (err)
558 break;
559 err = fixup_compat_flock(&flock);
560 if (err)
561 return err;
562 err = put_compat_flock(&flock, compat_ptr(arg));
563 break;
564 case F_GETLK64:
565 case F_OFD_GETLK:
566 err = get_compat_flock64(&flock, compat_ptr(arg));
567 if (err)
568 break;
569 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
570 if (err)
571 break;
572 err = fixup_compat_flock(&flock);
573 if (err)
574 return err;
575 err = put_compat_flock64(&flock, compat_ptr(arg));
576 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400577 case F_SETLK:
578 case F_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400579 err = get_compat_flock(&flock, compat_ptr(arg));
580 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400581 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400582 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400583 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400584 case F_SETLK64:
585 case F_SETLKW64:
Al Viro80f0cce2017-04-08 18:10:56 -0400586 case F_OFD_SETLK:
587 case F_OFD_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400588 err = get_compat_flock64(&flock, compat_ptr(arg));
589 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400590 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400591 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400592 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400593 default:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400594 err = do_fcntl(fd, cmd, arg, f.file);
Al Viro80f0cce2017-04-08 18:10:56 -0400595 break;
596 }
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400597out_put:
598 fdput(f);
599 return err;
Al Viro80f0cce2017-04-08 18:10:56 -0400600}
601
602COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd,
603 compat_ulong_t, arg)
604{
605 switch (cmd) {
606 case F_GETLK64:
607 case F_SETLK64:
608 case F_SETLKW64:
609 case F_OFD_GETLK:
610 case F_OFD_SETLK:
611 case F_OFD_SETLKW:
612 return -EINVAL;
613 }
614 return compat_sys_fcntl64(fd, cmd, arg);
615}
616#endif
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/* Table to convert sigio signal codes into poll band bitmaps */
619
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800620static const long band_table[NSIGPOLL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 POLLIN | POLLRDNORM, /* POLL_IN */
622 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
623 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
624 POLLERR, /* POLL_ERR */
625 POLLPRI | POLLRDBAND, /* POLL_PRI */
626 POLLHUP | POLLERR /* POLL_HUP */
627};
628
629static inline int sigio_perm(struct task_struct *p,
630 struct fown_struct *fown, int sig)
631{
David Howellsc69e8d92008-11-14 10:39:19 +1100632 const struct cred *cred;
633 int ret;
634
635 rcu_read_lock();
636 cred = __task_cred(p);
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800637 ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) ||
638 uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) ||
639 uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100640 !security_file_send_sigiotask(p, fown, sig));
641 rcu_read_unlock();
642 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645static void send_sigio_to_task(struct task_struct *p,
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200646 struct fown_struct *fown,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700647 int fd, int reason, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200649 /*
650 * F_SETSIG can change ->signum lockless in parallel, make
651 * sure we read it once and use the same value throughout.
652 */
653 int signum = ACCESS_ONCE(fown->signum);
654
655 if (!sigio_perm(p, fown, signum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return;
657
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200658 switch (signum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 siginfo_t si;
660 default:
661 /* Queue a rt signal with the appropriate fd as its
662 value. We use SI_SIGIO as the source, not
663 SI_KERNEL, since kernel signals always get
664 delivered even if we can't queue. Failure to
665 queue in this case _should_ be reported; we fall
666 back to SIGIO in that case. --sct */
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200667 si.si_signo = signum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 si.si_errno = 0;
669 si.si_code = reason;
670 /* Make sure we are called with one of the POLL_*
671 reasons, otherwise we could leak kernel stack into
672 userspace. */
Eric Sesterhennf6298aa2006-04-02 13:37:19 +0200673 BUG_ON((reason & __SI_MASK) != __SI_POLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (reason - POLL_IN >= NSIGPOLL)
675 si.si_band = ~0L;
676 else
677 si.si_band = band_table[reason - POLL_IN];
678 si.si_fd = fd;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700679 if (!do_send_sig_info(signum, &si, p, group))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 break;
681 /* fall-through: fall back on the old plain SIGIO signal */
682 case 0:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700683 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685}
686
687void send_sigio(struct fown_struct *fown, int fd, int band)
688{
689 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700690 enum pid_type type;
691 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700692 int group = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700695
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700696 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700697 if (type == PIDTYPE_MAX) {
698 group = 0;
699 type = PIDTYPE_PID;
700 }
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 pid = fown->pid;
703 if (!pid)
704 goto out_unlock_fown;
705
706 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700707 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700708 send_sigio_to_task(p, fown, fd, band, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700709 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 read_unlock(&tasklist_lock);
711 out_unlock_fown:
712 read_unlock(&fown->lock);
713}
714
715static void send_sigurg_to_task(struct task_struct *p,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700716 struct fown_struct *fown, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 if (sigio_perm(p, fown, SIGURG))
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700719 do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722int send_sigurg(struct fown_struct *fown)
723{
724 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700725 enum pid_type type;
726 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700727 int group = 1;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700728 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700731
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700732 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700733 if (type == PIDTYPE_MAX) {
734 group = 0;
735 type = PIDTYPE_PID;
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 pid = fown->pid;
739 if (!pid)
740 goto out_unlock_fown;
741
742 ret = 1;
743
744 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700745 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700746 send_sigurg_to_task(p, fown, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700747 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 read_unlock(&tasklist_lock);
749 out_unlock_fown:
750 read_unlock(&fown->lock);
751 return ret;
752}
753
Eric Dumazet989a2972010-04-14 09:55:35 +0000754static DEFINE_SPINLOCK(fasync_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800755static struct kmem_cache *fasync_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Eric Dumazet989a2972010-04-14 09:55:35 +0000757static void fasync_free_rcu(struct rcu_head *head)
758{
759 kmem_cache_free(fasync_cache,
760 container_of(head, struct fasync_struct, fa_rcu));
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*
Linus Torvalds53281b62009-12-16 08:23:37 -0800764 * Remove a fasync entry. If successfully removed, return
765 * positive and clear the FASYNC flag. If no entry exists,
766 * do nothing and return 0.
767 *
768 * NOTE! It is very important that the FASYNC flag always
769 * match the state "is the filp on a fasync list".
770 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400772int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct fasync_struct *fa, **fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 int result = 0;
776
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600777 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000778 spin_lock(&fasync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
Linus Torvalds53281b62009-12-16 08:23:37 -0800780 if (fa->fa_file != filp)
781 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000782
783 spin_lock_irq(&fa->fa_lock);
784 fa->fa_file = NULL;
785 spin_unlock_irq(&fa->fa_lock);
786
Linus Torvalds53281b62009-12-16 08:23:37 -0800787 *fp = fa->fa_next;
Eric Dumazet989a2972010-04-14 09:55:35 +0000788 call_rcu(&fa->fa_rcu, fasync_free_rcu);
Jonathan Corbet76398422009-02-01 14:26:59 -0700789 filp->f_flags &= ~FASYNC;
Linus Torvalds53281b62009-12-16 08:23:37 -0800790 result = 1;
791 break;
792 }
Eric Dumazet989a2972010-04-14 09:55:35 +0000793 spin_unlock(&fasync_lock);
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600794 spin_unlock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return result;
796}
797
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400798struct fasync_struct *fasync_alloc(void)
Linus Torvalds53281b62009-12-16 08:23:37 -0800799{
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400800 return kmem_cache_alloc(fasync_cache, GFP_KERNEL);
801}
Linus Torvalds53281b62009-12-16 08:23:37 -0800802
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400803/*
804 * NOTE! This can be used only for unused fasync entries:
805 * entries that actually got inserted on the fasync list
806 * need to be released by rcu - see fasync_remove_entry.
807 */
808void fasync_free(struct fasync_struct *new)
809{
810 kmem_cache_free(fasync_cache, new);
811}
812
813/*
814 * Insert a new entry into the fasync list. Return the pointer to the
815 * old one if we didn't use the new one.
Linus Torvalds55f335a2010-10-27 18:17:02 -0700816 *
817 * NOTE! It is very important that the FASYNC flag always
818 * match the state "is the filp on a fasync list".
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400819 */
820struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
821{
822 struct fasync_struct *fa, **fp;
Linus Torvalds53281b62009-12-16 08:23:37 -0800823
824 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000825 spin_lock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800826 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
827 if (fa->fa_file != filp)
828 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000829
830 spin_lock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800831 fa->fa_fd = fd;
Eric Dumazet989a2972010-04-14 09:55:35 +0000832 spin_unlock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800833 goto out;
834 }
835
Eric Dumazet989a2972010-04-14 09:55:35 +0000836 spin_lock_init(&new->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800837 new->magic = FASYNC_MAGIC;
838 new->fa_file = filp;
839 new->fa_fd = fd;
840 new->fa_next = *fapp;
Eric Dumazet989a2972010-04-14 09:55:35 +0000841 rcu_assign_pointer(*fapp, new);
Linus Torvalds53281b62009-12-16 08:23:37 -0800842 filp->f_flags |= FASYNC;
843
844out:
Eric Dumazet989a2972010-04-14 09:55:35 +0000845 spin_unlock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800846 spin_unlock(&filp->f_lock);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400847 return fa;
848}
849
850/*
851 * Add a fasync entry. Return negative on error, positive if
852 * added, and zero if did nothing but change an existing one.
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400853 */
854static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
855{
856 struct fasync_struct *new;
857
858 new = fasync_alloc();
859 if (!new)
860 return -ENOMEM;
861
862 /*
863 * fasync_insert_entry() returns the old (update) entry if
864 * it existed.
865 *
866 * So free the (unused) new entry and return 0 to let the
867 * caller know that we didn't add any new fasync entries.
868 */
869 if (fasync_insert_entry(fd, filp, fapp, new)) {
870 fasync_free(new);
871 return 0;
872 }
873
874 return 1;
Linus Torvalds53281b62009-12-16 08:23:37 -0800875}
876
877/*
878 * fasync_helper() is used by almost all character device drivers
879 * to set up the fasync queue, and for regular files by the file
880 * lease code. It returns negative on error, 0 if it did no changes
881 * and positive if it added/deleted the entry.
882 */
883int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
884{
885 if (!on)
886 return fasync_remove_entry(filp, fapp);
887 return fasync_add_entry(fd, filp, fapp);
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890EXPORT_SYMBOL(fasync_helper);
891
Eric Dumazet989a2972010-04-14 09:55:35 +0000892/*
893 * rcu_read_lock() is held
894 */
895static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 while (fa) {
Eric Dumazet989a2972010-04-14 09:55:35 +0000898 struct fown_struct *fown;
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700899 unsigned long flags;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (fa->magic != FASYNC_MAGIC) {
902 printk(KERN_ERR "kill_fasync: bad magic number in "
903 "fasync_struct!\n");
904 return;
905 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700906 spin_lock_irqsave(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000907 if (fa->fa_file) {
908 fown = &fa->fa_file->f_owner;
909 /* Don't send SIGURG to processes which have not set a
910 queued signum: SIGURG has its own default signalling
911 mechanism. */
912 if (!(sig == SIGURG && fown->signum == 0))
913 send_sigio(fown, fa->fa_fd, band);
914 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700915 spin_unlock_irqrestore(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000916 fa = rcu_dereference(fa->fa_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918}
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920void kill_fasync(struct fasync_struct **fp, int sig, int band)
921{
922 /* First a quick test without locking: usually
923 * the list is empty.
924 */
925 if (*fp) {
Eric Dumazet989a2972010-04-14 09:55:35 +0000926 rcu_read_lock();
927 kill_fasync_rcu(rcu_dereference(*fp), sig, band);
928 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930}
931EXPORT_SYMBOL(kill_fasync);
932
Wu Fengguang454eedb2010-08-10 18:01:29 -0700933static int __init fcntl_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
James Bottomley3ab04d52010-09-09 16:38:12 -0700935 /*
936 * Please add new bits here to ensure allocation uniqueness.
937 * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY
938 * is defined as O_NONBLOCK on some platforms and not on others.
939 */
Christoph Hellwig80f18372017-04-27 09:42:24 +0200940 BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ !=
941 HWEIGHT32(
942 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) |
943 __FMODE_EXEC | __FMODE_NONOTIFY));
Wu Fengguang454eedb2010-08-10 18:01:29 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 fasync_cache = kmem_cache_create("fasync_cache",
Paul Mundt20c2df82007-07-20 10:11:58 +0900946 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return 0;
948}
949
Wu Fengguang454eedb2010-08-10 18:01:29 -0700950module_init(fcntl_init)