blob: 3b01b646e528e189b57a1876abf2d4f13364a1bb [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;
Jeff Laytonf7312732017-06-14 09:11:54 -0400115 struct pid *pid = NULL;
116 int who = arg, ret = 0;
117
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700118 type = PIDTYPE_PID;
119 if (who < 0) {
Jiri Slabyfc3dc672017-06-13 13:35:51 +0200120 /* avoid overflow below */
121 if (who == INT_MIN)
122 return -EINVAL;
123
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700124 type = PIDTYPE_PGID;
125 who = -who;
126 }
Jeff Laytonf7312732017-06-14 09:11:54 -0400127
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700128 rcu_read_lock();
Jeff Laytonf7312732017-06-14 09:11:54 -0400129 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. Biederman609d7fa2006-10-02 02:17:15 -0700137 rcu_read_unlock();
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200138
Jeff Laytonf7312732017-06-14 09:11:54 -0400139 return ret;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700140}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141EXPORT_SYMBOL(f_setown);
142
143void f_delown(struct file *filp)
144{
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200145 f_modown(filp, NULL, PIDTYPE_PID, 1);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700146}
147
148pid_t f_getown(struct file *filp)
149{
150 pid_t pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700151 read_lock(&filp->f_owner.lock);
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800152 pid = pid_vnr(filp->f_owner.pid);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700153 if (filp->f_owner.pid_type == PIDTYPE_PGID)
154 pid = -pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700155 read_unlock(&filp->f_owner.lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700156 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700159static int f_setown_ex(struct file *filp, unsigned long arg)
160{
Al Viro63784dd2012-09-26 21:43:05 -0400161 struct f_owner_ex __user *owner_p = (void __user *)arg;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700162 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 Carpenter5b544702010-06-03 12:35:42 +0200169 return -EFAULT;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700170
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 Zijlstra978b4052009-11-17 14:06:24 -0800180 case F_OWNER_PGRP:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700181 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 Laytone0b93ed2014-08-22 11:27:32 -0400193 __f_setown(filp, pid, type, 1);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700194 rcu_read_unlock();
195
196 return ret;
197}
198
199static int f_getown_ex(struct file *filp, unsigned long arg)
200{
Al Viro63784dd2012-09-26 21:43:05 -0400201 struct f_owner_ex __user *owner_p = (void __user *)arg;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700202 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 Zijlstra978b4052009-11-17 14:06:24 -0800217 owner.type = F_OWNER_PGRP;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700218 break;
219
220 default:
221 WARN_ON(1);
222 ret = -EINVAL;
223 break;
224 }
225 read_unlock(&filp->f_owner.lock);
226
Dan Carpenter5b544702010-06-03 12:35:42 +0200227 if (!ret) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700228 ret = copy_to_user(owner_p, &owner, sizeof(owner));
Dan Carpenter5b544702010-06-03 12:35:42 +0200229 if (ret)
230 ret = -EFAULT;
231 }
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700232 return ret;
233}
234
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700235#ifdef CONFIG_CHECKPOINT_RESTORE
236static int f_getowner_uids(struct file *filp, unsigned long arg)
237{
238 struct user_namespace *user_ns = current_user_ns();
Al Viro63784dd2012-09-26 21:43:05 -0400239 uid_t __user *dst = (void __user *)arg;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700240 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
254static int f_getowner_uids(struct file *filp, unsigned long arg)
255{
256 return -EINVAL;
257}
258#endif
259
Jens Axboec75b1d92017-06-27 11:47:04 -0600260static bool rw_hint_valid(enum rw_hint hint)
261{
262 switch (hint) {
263 case RWF_WRITE_LIFE_NOT_SET:
264 case RWH_WRITE_LIFE_NONE:
265 case RWH_WRITE_LIFE_SHORT:
266 case RWH_WRITE_LIFE_MEDIUM:
267 case RWH_WRITE_LIFE_LONG:
268 case RWH_WRITE_LIFE_EXTREME:
269 return true;
270 default:
271 return false;
272 }
273}
274
275static long fcntl_rw_hint(struct file *file, unsigned int cmd,
276 unsigned long arg)
277{
278 struct inode *inode = file_inode(file);
279 u64 *argp = (u64 __user *)arg;
280 enum rw_hint hint;
Jens Axboe5657cb02017-06-28 08:09:45 -0600281 u64 h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600282
283 switch (cmd) {
284 case F_GET_FILE_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600285 h = file_write_hint(file);
286 if (copy_to_user(argp, &h, sizeof(*argp)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600287 return -EFAULT;
288 return 0;
289 case F_SET_FILE_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600290 if (copy_from_user(&h, argp, sizeof(h)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600291 return -EFAULT;
Jens Axboe5657cb02017-06-28 08:09:45 -0600292 hint = (enum rw_hint) h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600293 if (!rw_hint_valid(hint))
294 return -EINVAL;
295
296 spin_lock(&file->f_lock);
297 file->f_write_hint = hint;
298 spin_unlock(&file->f_lock);
299 return 0;
300 case F_GET_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600301 h = inode->i_write_hint;
302 if (copy_to_user(argp, &h, sizeof(*argp)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600303 return -EFAULT;
304 return 0;
305 case F_SET_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600306 if (copy_from_user(&h, argp, sizeof(h)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600307 return -EFAULT;
Jens Axboe5657cb02017-06-28 08:09:45 -0600308 hint = (enum rw_hint) h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600309 if (!rw_hint_valid(hint))
310 return -EINVAL;
311
312 inode_lock(inode);
313 inode->i_write_hint = hint;
314 inode_unlock(inode);
315 return 0;
316 default:
317 return -EINVAL;
318 }
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
322 struct file *filp)
323{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400324 void __user *argp = (void __user *)arg;
325 struct flock flock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 long err = -EINVAL;
327
328 switch (cmd) {
329 case F_DUPFD:
Al Virofe17f222012-08-21 11:48:11 -0400330 err = f_dupfd(arg, filp, 0);
331 break;
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700332 case F_DUPFD_CLOEXEC:
Al Viro12197712012-10-08 23:21:58 +0100333 err = f_dupfd(arg, filp, O_CLOEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 break;
335 case F_GETFD:
336 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
337 break;
338 case F_SETFD:
339 err = 0;
340 set_close_on_exec(fd, arg & FD_CLOEXEC);
341 break;
342 case F_GETFL:
343 err = filp->f_flags;
344 break;
345 case F_SETFL:
346 err = setfl(fd, filp, arg);
347 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500348#if BITS_PER_LONG != 32
349 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400350 case F_OFD_GETLK:
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 case F_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400353 if (copy_from_user(&flock, argp, sizeof(flock)))
354 return -EFAULT;
355 err = fcntl_getlk(filp, cmd, &flock);
356 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
357 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500359#if BITS_PER_LONG != 32
360 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400361 case F_OFD_SETLK:
362 case F_OFD_SETLKW:
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500363#endif
364 /* Fallthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 case F_SETLK:
366 case F_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400367 if (copy_from_user(&flock, argp, sizeof(flock)))
368 return -EFAULT;
369 err = fcntl_setlk(fd, filp, cmd, &flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 break;
371 case F_GETOWN:
372 /*
373 * XXX If f_owner is a process group, the
374 * negative return value will get converted
375 * into an error. Oops. If we keep the
376 * current syscall conventions, the only way
377 * to fix this will be in libc.
378 */
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700379 err = f_getown(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 force_successful_syscall_return();
381 break;
382 case F_SETOWN:
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200383 err = f_setown(filp, arg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 break;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700385 case F_GETOWN_EX:
386 err = f_getown_ex(filp, arg);
387 break;
388 case F_SETOWN_EX:
389 err = f_setown_ex(filp, arg);
390 break;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700391 case F_GETOWNER_UIDS:
392 err = f_getowner_uids(filp, arg);
393 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 case F_GETSIG:
395 err = filp->f_owner.signum;
396 break;
397 case F_SETSIG:
398 /* arg == 0 restores default behaviour. */
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700399 if (!valid_signal(arg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
401 }
402 err = 0;
403 filp->f_owner.signum = arg;
404 break;
405 case F_GETLEASE:
406 err = fcntl_getlease(filp);
407 break;
408 case F_SETLEASE:
409 err = fcntl_setlease(fd, filp, arg);
410 break;
411 case F_NOTIFY:
412 err = fcntl_dirnotify(fd, filp, arg);
413 break;
Jens Axboe35f3d142010-05-20 10:43:18 +0200414 case F_SETPIPE_SZ:
415 case F_GETPIPE_SZ:
416 err = pipe_fcntl(filp, cmd, arg);
417 break;
David Herrmann40e041a2014-08-08 14:25:27 -0700418 case F_ADD_SEALS:
419 case F_GET_SEALS:
420 err = shmem_fcntl(filp, cmd, arg);
421 break;
Jens Axboec75b1d92017-06-27 11:47:04 -0600422 case F_GET_RW_HINT:
423 case F_SET_RW_HINT:
424 case F_GET_FILE_RW_HINT:
425 case F_SET_FILE_RW_HINT:
426 err = fcntl_rw_hint(filp, cmd, arg);
427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 default:
429 break;
430 }
431 return err;
432}
433
Al Viro1abf0c72011-03-13 03:51:11 -0400434static int check_fcntl_cmd(unsigned cmd)
435{
436 switch (cmd) {
437 case F_DUPFD:
438 case F_DUPFD_CLOEXEC:
439 case F_GETFD:
440 case F_SETFD:
441 case F_GETFL:
442 return 1;
443 }
444 return 0;
445}
446
Heiko Carstensa26eab22009-01-14 14:14:17 +0100447SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Al Viro2903ff02012-08-28 12:52:22 -0400449 struct fd f = fdget_raw(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 long err = -EBADF;
451
Al Viro2903ff02012-08-28 12:52:22 -0400452 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 goto out;
454
Al Viro2903ff02012-08-28 12:52:22 -0400455 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400456 if (!check_fcntl_cmd(cmd))
457 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400458 }
459
Al Viro2903ff02012-08-28 12:52:22 -0400460 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400461 if (!err)
Al Viro2903ff02012-08-28 12:52:22 -0400462 err = do_fcntl(fd, cmd, arg, f.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Al Viro545ec2c2012-04-21 18:42:19 -0400464out1:
Al Viro2903ff02012-08-28 12:52:22 -0400465 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466out:
467 return err;
468}
469
470#if BITS_PER_LONG == 32
Heiko Carstensa26eab22009-01-14 14:14:17 +0100471SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
472 unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400474 void __user *argp = (void __user *)arg;
Al Viro2903ff02012-08-28 12:52:22 -0400475 struct fd f = fdget_raw(fd);
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400476 struct flock64 flock;
Al Viro545ec2c2012-04-21 18:42:19 -0400477 long err = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Al Viro2903ff02012-08-28 12:52:22 -0400479 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 goto out;
481
Al Viro2903ff02012-08-28 12:52:22 -0400482 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400483 if (!check_fcntl_cmd(cmd))
484 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400485 }
486
Al Viro2903ff02012-08-28 12:52:22 -0400487 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400488 if (err)
489 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 switch (cmd) {
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500492 case F_GETLK64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400493 case F_OFD_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400494 err = -EFAULT;
495 if (copy_from_user(&flock, argp, sizeof(flock)))
496 break;
497 err = fcntl_getlk64(f.file, cmd, &flock);
498 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
499 err = -EFAULT;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500500 break;
501 case F_SETLK64:
502 case F_SETLKW64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400503 case F_OFD_SETLK:
504 case F_OFD_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400505 err = -EFAULT;
506 if (copy_from_user(&flock, argp, sizeof(flock)))
507 break;
508 err = fcntl_setlk64(fd, f.file, cmd, &flock);
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500509 break;
510 default:
511 err = do_fcntl(fd, cmd, arg, f.file);
512 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Al Viro545ec2c2012-04-21 18:42:19 -0400514out1:
Al Viro2903ff02012-08-28 12:52:22 -0400515 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516out:
517 return err;
518}
519#endif
520
Al Viro80f0cce2017-04-08 18:10:56 -0400521#ifdef CONFIG_COMPAT
Al Viro8c6657c2017-06-26 23:51:31 -0400522/* careful - don't use anywhere else */
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700523#define copy_flock_fields(dst, src) \
524 (dst)->l_type = (src)->l_type; \
525 (dst)->l_whence = (src)->l_whence; \
526 (dst)->l_start = (src)->l_start; \
527 (dst)->l_len = (src)->l_len; \
528 (dst)->l_pid = (src)->l_pid;
Al Viro8c6657c2017-06-26 23:51:31 -0400529
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700530static int get_compat_flock(struct flock *kfl, const struct compat_flock __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400531{
Al Viro8c6657c2017-06-26 23:51:31 -0400532 struct compat_flock fl;
533
534 if (copy_from_user(&fl, ufl, sizeof(struct compat_flock)))
Al Viro80f0cce2017-04-08 18:10:56 -0400535 return -EFAULT;
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700536 copy_flock_fields(kfl, &fl);
Al Viro8c6657c2017-06-26 23:51:31 -0400537 return 0;
538}
539
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700540static int get_compat_flock64(struct flock *kfl, const struct compat_flock64 __user *ufl)
Al Viro8c6657c2017-06-26 23:51:31 -0400541{
542 struct compat_flock64 fl;
543
544 if (copy_from_user(&fl, ufl, sizeof(struct compat_flock64)))
545 return -EFAULT;
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700546 copy_flock_fields(kfl, &fl);
Al Viro80f0cce2017-04-08 18:10:56 -0400547 return 0;
548}
549
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700550static int put_compat_flock(const struct flock *kfl, struct compat_flock __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400551{
Al Viro8c6657c2017-06-26 23:51:31 -0400552 struct compat_flock fl;
553
554 memset(&fl, 0, sizeof(struct compat_flock));
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700555 copy_flock_fields(&fl, kfl);
Al Viro8c6657c2017-06-26 23:51:31 -0400556 if (copy_to_user(ufl, &fl, sizeof(struct compat_flock)))
Al Viro80f0cce2017-04-08 18:10:56 -0400557 return -EFAULT;
558 return 0;
559}
560
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700561static int put_compat_flock64(const struct flock *kfl, struct compat_flock64 __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400562{
Al Viro8c6657c2017-06-26 23:51:31 -0400563 struct compat_flock64 fl;
564
565 memset(&fl, 0, sizeof(struct compat_flock64));
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700566 copy_flock_fields(&fl, kfl);
Al Viro8c6657c2017-06-26 23:51:31 -0400567 if (copy_to_user(ufl, &fl, sizeof(struct compat_flock64)))
Al Viro80f0cce2017-04-08 18:10:56 -0400568 return -EFAULT;
569 return 0;
570}
Al Viro8c6657c2017-06-26 23:51:31 -0400571#undef copy_flock_fields
Al Viro80f0cce2017-04-08 18:10:56 -0400572
573static unsigned int
574convert_fcntl_cmd(unsigned int cmd)
575{
576 switch (cmd) {
577 case F_GETLK64:
578 return F_GETLK;
579 case F_SETLK64:
580 return F_SETLK;
581 case F_SETLKW64:
582 return F_SETLKW;
583 }
584
585 return cmd;
586}
587
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400588/*
589 * GETLK was successful and we need to return the data, but it needs to fit in
590 * the compat structure.
591 * l_start shouldn't be too big, unless the original start + end is greater than
592 * COMPAT_OFF_T_MAX, in which case the app was asking for trouble, so we return
593 * -EOVERFLOW in that case. l_len could be too big, in which case we just
594 * truncate it, and only allow the app to see that part of the conflicting lock
595 * that might make sense to it anyway
596 */
597static int fixup_compat_flock(struct flock *flock)
598{
599 if (flock->l_start > COMPAT_OFF_T_MAX)
600 return -EOVERFLOW;
601 if (flock->l_len > COMPAT_OFF_T_MAX)
602 flock->l_len = COMPAT_OFF_T_MAX;
603 return 0;
604}
605
Al Viro80f0cce2017-04-08 18:10:56 -0400606COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
607 compat_ulong_t, arg)
608{
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400609 struct fd f = fdget_raw(fd);
610 struct flock flock;
611 long err = -EBADF;
612
613 if (!f.file)
614 return err;
615
616 if (unlikely(f.file->f_mode & FMODE_PATH)) {
617 if (!check_fcntl_cmd(cmd))
618 goto out_put;
619 }
620
621 err = security_file_fcntl(f.file, cmd, arg);
622 if (err)
623 goto out_put;
Al Viro80f0cce2017-04-08 18:10:56 -0400624
625 switch (cmd) {
626 case F_GETLK:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400627 err = get_compat_flock(&flock, compat_ptr(arg));
628 if (err)
629 break;
630 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
631 if (err)
632 break;
633 err = fixup_compat_flock(&flock);
634 if (err)
635 return err;
636 err = put_compat_flock(&flock, compat_ptr(arg));
637 break;
638 case F_GETLK64:
639 case F_OFD_GETLK:
640 err = get_compat_flock64(&flock, compat_ptr(arg));
641 if (err)
642 break;
643 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
644 if (err)
645 break;
646 err = fixup_compat_flock(&flock);
647 if (err)
648 return err;
649 err = put_compat_flock64(&flock, compat_ptr(arg));
650 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400651 case F_SETLK:
652 case F_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400653 err = get_compat_flock(&flock, compat_ptr(arg));
654 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400655 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400656 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400657 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400658 case F_SETLK64:
659 case F_SETLKW64:
Al Viro80f0cce2017-04-08 18:10:56 -0400660 case F_OFD_SETLK:
661 case F_OFD_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400662 err = get_compat_flock64(&flock, compat_ptr(arg));
663 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400664 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400665 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400666 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400667 default:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400668 err = do_fcntl(fd, cmd, arg, f.file);
Al Viro80f0cce2017-04-08 18:10:56 -0400669 break;
670 }
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400671out_put:
672 fdput(f);
673 return err;
Al Viro80f0cce2017-04-08 18:10:56 -0400674}
675
676COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd,
677 compat_ulong_t, arg)
678{
679 switch (cmd) {
680 case F_GETLK64:
681 case F_SETLK64:
682 case F_SETLKW64:
683 case F_OFD_GETLK:
684 case F_OFD_SETLK:
685 case F_OFD_SETLKW:
686 return -EINVAL;
687 }
688 return compat_sys_fcntl64(fd, cmd, arg);
689}
690#endif
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/* Table to convert sigio signal codes into poll band bitmaps */
693
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800694static const long band_table[NSIGPOLL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 POLLIN | POLLRDNORM, /* POLL_IN */
696 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
697 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
698 POLLERR, /* POLL_ERR */
699 POLLPRI | POLLRDBAND, /* POLL_PRI */
700 POLLHUP | POLLERR /* POLL_HUP */
701};
702
703static inline int sigio_perm(struct task_struct *p,
704 struct fown_struct *fown, int sig)
705{
David Howellsc69e8d92008-11-14 10:39:19 +1100706 const struct cred *cred;
707 int ret;
708
709 rcu_read_lock();
710 cred = __task_cred(p);
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800711 ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) ||
712 uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) ||
713 uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100714 !security_file_send_sigiotask(p, fown, sig));
715 rcu_read_unlock();
716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719static void send_sigio_to_task(struct task_struct *p,
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200720 struct fown_struct *fown,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700721 int fd, int reason, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200723 /*
724 * F_SETSIG can change ->signum lockless in parallel, make
725 * sure we read it once and use the same value throughout.
726 */
727 int signum = ACCESS_ONCE(fown->signum);
728
729 if (!sigio_perm(p, fown, signum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return;
731
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200732 switch (signum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 siginfo_t si;
734 default:
735 /* Queue a rt signal with the appropriate fd as its
736 value. We use SI_SIGIO as the source, not
737 SI_KERNEL, since kernel signals always get
738 delivered even if we can't queue. Failure to
739 queue in this case _should_ be reported; we fall
740 back to SIGIO in that case. --sct */
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200741 si.si_signo = signum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 si.si_errno = 0;
743 si.si_code = reason;
744 /* Make sure we are called with one of the POLL_*
745 reasons, otherwise we could leak kernel stack into
746 userspace. */
Eric Sesterhennf6298aa2006-04-02 13:37:19 +0200747 BUG_ON((reason & __SI_MASK) != __SI_POLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (reason - POLL_IN >= NSIGPOLL)
749 si.si_band = ~0L;
750 else
751 si.si_band = band_table[reason - POLL_IN];
752 si.si_fd = fd;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700753 if (!do_send_sig_info(signum, &si, p, group))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 break;
755 /* fall-through: fall back on the old plain SIGIO signal */
756 case 0:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700757 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759}
760
761void send_sigio(struct fown_struct *fown, int fd, int band)
762{
763 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700764 enum pid_type type;
765 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700766 int group = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700769
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700770 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700771 if (type == PIDTYPE_MAX) {
772 group = 0;
773 type = PIDTYPE_PID;
774 }
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 pid = fown->pid;
777 if (!pid)
778 goto out_unlock_fown;
779
780 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700781 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700782 send_sigio_to_task(p, fown, fd, band, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700783 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 read_unlock(&tasklist_lock);
785 out_unlock_fown:
786 read_unlock(&fown->lock);
787}
788
789static void send_sigurg_to_task(struct task_struct *p,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700790 struct fown_struct *fown, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 if (sigio_perm(p, fown, SIGURG))
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700793 do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796int send_sigurg(struct fown_struct *fown)
797{
798 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700799 enum pid_type type;
800 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700801 int group = 1;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700802 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700805
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700806 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700807 if (type == PIDTYPE_MAX) {
808 group = 0;
809 type = PIDTYPE_PID;
810 }
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 pid = fown->pid;
813 if (!pid)
814 goto out_unlock_fown;
815
816 ret = 1;
817
818 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700819 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700820 send_sigurg_to_task(p, fown, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700821 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 read_unlock(&tasklist_lock);
823 out_unlock_fown:
824 read_unlock(&fown->lock);
825 return ret;
826}
827
Eric Dumazet989a2972010-04-14 09:55:35 +0000828static DEFINE_SPINLOCK(fasync_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800829static struct kmem_cache *fasync_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Eric Dumazet989a2972010-04-14 09:55:35 +0000831static void fasync_free_rcu(struct rcu_head *head)
832{
833 kmem_cache_free(fasync_cache,
834 container_of(head, struct fasync_struct, fa_rcu));
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837/*
Linus Torvalds53281b62009-12-16 08:23:37 -0800838 * Remove a fasync entry. If successfully removed, return
839 * positive and clear the FASYNC flag. If no entry exists,
840 * do nothing and return 0.
841 *
842 * NOTE! It is very important that the FASYNC flag always
843 * match the state "is the filp on a fasync list".
844 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400846int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct fasync_struct *fa, **fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int result = 0;
850
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600851 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000852 spin_lock(&fasync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
Linus Torvalds53281b62009-12-16 08:23:37 -0800854 if (fa->fa_file != filp)
855 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000856
857 spin_lock_irq(&fa->fa_lock);
858 fa->fa_file = NULL;
859 spin_unlock_irq(&fa->fa_lock);
860
Linus Torvalds53281b62009-12-16 08:23:37 -0800861 *fp = fa->fa_next;
Eric Dumazet989a2972010-04-14 09:55:35 +0000862 call_rcu(&fa->fa_rcu, fasync_free_rcu);
Jonathan Corbet76398422009-02-01 14:26:59 -0700863 filp->f_flags &= ~FASYNC;
Linus Torvalds53281b62009-12-16 08:23:37 -0800864 result = 1;
865 break;
866 }
Eric Dumazet989a2972010-04-14 09:55:35 +0000867 spin_unlock(&fasync_lock);
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600868 spin_unlock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return result;
870}
871
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400872struct fasync_struct *fasync_alloc(void)
Linus Torvalds53281b62009-12-16 08:23:37 -0800873{
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400874 return kmem_cache_alloc(fasync_cache, GFP_KERNEL);
875}
Linus Torvalds53281b62009-12-16 08:23:37 -0800876
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400877/*
878 * NOTE! This can be used only for unused fasync entries:
879 * entries that actually got inserted on the fasync list
880 * need to be released by rcu - see fasync_remove_entry.
881 */
882void fasync_free(struct fasync_struct *new)
883{
884 kmem_cache_free(fasync_cache, new);
885}
886
887/*
888 * Insert a new entry into the fasync list. Return the pointer to the
889 * old one if we didn't use the new one.
Linus Torvalds55f335a2010-10-27 18:17:02 -0700890 *
891 * NOTE! It is very important that the FASYNC flag always
892 * match the state "is the filp on a fasync list".
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400893 */
894struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
895{
896 struct fasync_struct *fa, **fp;
Linus Torvalds53281b62009-12-16 08:23:37 -0800897
898 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000899 spin_lock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800900 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
901 if (fa->fa_file != filp)
902 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000903
904 spin_lock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800905 fa->fa_fd = fd;
Eric Dumazet989a2972010-04-14 09:55:35 +0000906 spin_unlock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800907 goto out;
908 }
909
Eric Dumazet989a2972010-04-14 09:55:35 +0000910 spin_lock_init(&new->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800911 new->magic = FASYNC_MAGIC;
912 new->fa_file = filp;
913 new->fa_fd = fd;
914 new->fa_next = *fapp;
Eric Dumazet989a2972010-04-14 09:55:35 +0000915 rcu_assign_pointer(*fapp, new);
Linus Torvalds53281b62009-12-16 08:23:37 -0800916 filp->f_flags |= FASYNC;
917
918out:
Eric Dumazet989a2972010-04-14 09:55:35 +0000919 spin_unlock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800920 spin_unlock(&filp->f_lock);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400921 return fa;
922}
923
924/*
925 * Add a fasync entry. Return negative on error, positive if
926 * added, and zero if did nothing but change an existing one.
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400927 */
928static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
929{
930 struct fasync_struct *new;
931
932 new = fasync_alloc();
933 if (!new)
934 return -ENOMEM;
935
936 /*
937 * fasync_insert_entry() returns the old (update) entry if
938 * it existed.
939 *
940 * So free the (unused) new entry and return 0 to let the
941 * caller know that we didn't add any new fasync entries.
942 */
943 if (fasync_insert_entry(fd, filp, fapp, new)) {
944 fasync_free(new);
945 return 0;
946 }
947
948 return 1;
Linus Torvalds53281b62009-12-16 08:23:37 -0800949}
950
951/*
952 * fasync_helper() is used by almost all character device drivers
953 * to set up the fasync queue, and for regular files by the file
954 * lease code. It returns negative on error, 0 if it did no changes
955 * and positive if it added/deleted the entry.
956 */
957int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
958{
959 if (!on)
960 return fasync_remove_entry(filp, fapp);
961 return fasync_add_entry(fd, filp, fapp);
962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964EXPORT_SYMBOL(fasync_helper);
965
Eric Dumazet989a2972010-04-14 09:55:35 +0000966/*
967 * rcu_read_lock() is held
968 */
969static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 while (fa) {
Eric Dumazet989a2972010-04-14 09:55:35 +0000972 struct fown_struct *fown;
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700973 unsigned long flags;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (fa->magic != FASYNC_MAGIC) {
976 printk(KERN_ERR "kill_fasync: bad magic number in "
977 "fasync_struct!\n");
978 return;
979 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700980 spin_lock_irqsave(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000981 if (fa->fa_file) {
982 fown = &fa->fa_file->f_owner;
983 /* Don't send SIGURG to processes which have not set a
984 queued signum: SIGURG has its own default signalling
985 mechanism. */
986 if (!(sig == SIGURG && fown->signum == 0))
987 send_sigio(fown, fa->fa_fd, band);
988 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700989 spin_unlock_irqrestore(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000990 fa = rcu_dereference(fa->fa_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994void kill_fasync(struct fasync_struct **fp, int sig, int band)
995{
996 /* First a quick test without locking: usually
997 * the list is empty.
998 */
999 if (*fp) {
Eric Dumazet989a2972010-04-14 09:55:35 +00001000 rcu_read_lock();
1001 kill_fasync_rcu(rcu_dereference(*fp), sig, band);
1002 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004}
1005EXPORT_SYMBOL(kill_fasync);
1006
Wu Fengguang454eedb2010-08-10 18:01:29 -07001007static int __init fcntl_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
James Bottomley3ab04d52010-09-09 16:38:12 -07001009 /*
1010 * Please add new bits here to ensure allocation uniqueness.
1011 * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY
1012 * is defined as O_NONBLOCK on some platforms and not on others.
1013 */
Christoph Hellwig80f18372017-04-27 09:42:24 +02001014 BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ !=
1015 HWEIGHT32(
1016 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) |
1017 __FMODE_EXEC | __FMODE_NONOTIFY));
Wu Fengguang454eedb2010-08-10 18:01:29 -07001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 fasync_cache = kmem_cache_create("fasync_cache",
Paul Mundt20c2df82007-07-20 10:11:58 +09001020 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return 0;
1022}
1023
Wu Fengguang454eedb2010-08-10 18:01:29 -07001024module_init(fcntl_init)