blob: f946bec8f1f1b92fed4b851be2053ab7b0cc84d6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/fcntl.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8#include <linux/syscalls.h>
9#include <linux/init.h>
10#include <linux/mm.h>
Ingo Molnar29930022017-02-08 18:51:36 +010011#include <linux/sched/task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/fs.h>
13#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040014#include <linux/fdtable.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080015#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/module.h>
Jens Axboe35f3d142010-05-20 10:43:18 +020019#include <linux/pipe_fs_i.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/security.h>
21#include <linux/ptrace.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070022#include <linux/signal.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070023#include <linux/rcupdate.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070024#include <linux/pid_namespace.h>
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -070025#include <linux/user_namespace.h>
Mike Kravetz5d752602018-06-07 17:06:01 -070026#include <linux/memfd.h>
Al Viro80f0cce2017-04-08 18:10:56 -040027#include <linux/compat.h>
Christian Brauner9eccd122021-01-21 14:19:38 +010028#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Al Virocfe39442018-02-01 12:14:57 -050030#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/siginfo.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080032#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jonathan Corbet76398422009-02-01 14:26:59 -070034#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36static int setfl(int fd, struct file * filp, unsigned long arg)
37{
Al Viro496ad9a2013-01-23 17:07:38 -050038 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int error = 0;
40
dean gaudet7d95c8f2006-02-03 03:04:30 -080041 /*
42 * O_APPEND cannot be cleared if the file is marked as append-only
43 * and the file is open for write.
44 */
45 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return -EPERM;
47
48 /* O_NOATIME can only be set by the owner or superuser */
49 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
Christian Brauner9eccd122021-01-21 14:19:38 +010050 if (!inode_owner_or_capable(file_mnt_user_ns(filp), inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return -EPERM;
52
53 /* required for strict SunOS emulation */
54 if (O_NONBLOCK != O_NDELAY)
55 if (arg & O_NDELAY)
56 arg |= O_NONBLOCK;
57
Stanislav Kinsburskiy0dbf5f22015-12-15 19:41:31 +040058 /* Pipe packetized mode is controlled by O_DIRECT flag */
Al Viro45063092016-12-04 18:24:56 -050059 if (!S_ISFIFO(inode->i_mode) && (arg & O_DIRECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
61 !filp->f_mapping->a_ops->direct_IO)
62 return -EINVAL;
63 }
64
Al Viro72c2d532013-09-22 16:27:52 -040065 if (filp->f_op->check_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 error = filp->f_op->check_flags(arg);
67 if (error)
68 return error;
69
Jonathan Corbet218d11a2008-12-05 16:12:48 -070070 /*
Jonathan Corbet76398422009-02-01 14:26:59 -070071 * ->fasync() is responsible for setting the FASYNC bit.
Jonathan Corbet218d11a2008-12-05 16:12:48 -070072 */
Al Viro72c2d532013-09-22 16:27:52 -040073 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) {
Jonathan Corbet76398422009-02-01 14:26:59 -070074 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
75 if (error < 0)
76 goto out;
Jonathan Corbet60aa4922009-02-01 14:52:56 -070077 if (error > 0)
78 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -070080 spin_lock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -070082 spin_unlock(&filp->f_lock);
Jonathan Corbet76398422009-02-01 14:26:59 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return error;
86}
87
Eric W. Biederman609d7fa2006-10-02 02:17:15 -070088static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
Oleg Nesterov2f38d702009-06-16 22:07:46 +020089 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Linus Torvalds80e1e822010-02-07 10:11:23 -080091 write_lock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (force || !filp->f_owner.pid) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -070093 put_pid(filp->f_owner.pid);
94 filp->f_owner.pid = get_pid(pid);
95 filp->f_owner.pid_type = type;
Oleg Nesterov2f38d702009-06-16 22:07:46 +020096
97 if (pid) {
98 const struct cred *cred = current_cred();
99 filp->f_owner.uid = cred->uid;
100 filp->f_owner.euid = cred->euid;
101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Linus Torvalds80e1e822010-02-07 10:11:23 -0800103 write_unlock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400106void __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700107 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400109 security_file_set_fowner(filp);
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200110 f_modown(filp, pid, type, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700112EXPORT_SYMBOL(__f_setown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200114int f_setown(struct file *filp, unsigned long arg, int force)
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700115{
116 enum pid_type type;
Jeff Laytonf7312732017-06-14 09:11:54 -0400117 struct pid *pid = NULL;
118 int who = arg, ret = 0;
119
Eric W. Biederman01919132017-07-16 22:05:57 -0500120 type = PIDTYPE_TGID;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700121 if (who < 0) {
Jiri Slabyfc3dc672017-06-13 13:35:51 +0200122 /* avoid overflow below */
123 if (who == INT_MIN)
124 return -EINVAL;
125
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700126 type = PIDTYPE_PGID;
127 who = -who;
128 }
Jeff Laytonf7312732017-06-14 09:11:54 -0400129
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700130 rcu_read_lock();
Jeff Laytonf7312732017-06-14 09:11:54 -0400131 if (who) {
132 pid = find_vpid(who);
133 if (!pid)
134 ret = -ESRCH;
135 }
136
137 if (!ret)
138 __f_setown(filp, pid, type, force);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700139 rcu_read_unlock();
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200140
Jeff Laytonf7312732017-06-14 09:11:54 -0400141 return ret;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143EXPORT_SYMBOL(f_setown);
144
145void f_delown(struct file *filp)
146{
Eric W. Biederman01919132017-07-16 22:05:57 -0500147 f_modown(filp, NULL, PIDTYPE_TGID, 1);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700148}
149
150pid_t f_getown(struct file *filp)
151{
Pavel Tikhomirovcc4a3f82021-02-03 15:41:56 +0300152 pid_t pid = 0;
Eric W. Biederman43fa1adb2006-10-02 02:17:27 -0700153 read_lock(&filp->f_owner.lock);
Pavel Tikhomirovcc4a3f82021-02-03 15:41:56 +0300154 rcu_read_lock();
155 if (pid_task(filp->f_owner.pid, filp->f_owner.pid_type)) {
156 pid = pid_vnr(filp->f_owner.pid);
157 if (filp->f_owner.pid_type == PIDTYPE_PGID)
158 pid = -pid;
159 }
160 rcu_read_unlock();
Eric W. Biederman43fa1adb2006-10-02 02:17:27 -0700161 read_unlock(&filp->f_owner.lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700162 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700165static int f_setown_ex(struct file *filp, unsigned long arg)
166{
Al Viro63784dd2012-09-26 21:43:05 -0400167 struct f_owner_ex __user *owner_p = (void __user *)arg;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700168 struct f_owner_ex owner;
169 struct pid *pid;
170 int type;
171 int ret;
172
173 ret = copy_from_user(&owner, owner_p, sizeof(owner));
174 if (ret)
Dan Carpenter5b544702010-06-03 12:35:42 +0200175 return -EFAULT;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700176
177 switch (owner.type) {
178 case F_OWNER_TID:
Eric W. Biederman01919132017-07-16 22:05:57 -0500179 type = PIDTYPE_PID;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700180 break;
181
182 case F_OWNER_PID:
Eric W. Biederman01919132017-07-16 22:05:57 -0500183 type = PIDTYPE_TGID;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700184 break;
185
Peter Zijlstra978b4052009-11-17 14:06:24 -0800186 case F_OWNER_PGRP:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700187 type = PIDTYPE_PGID;
188 break;
189
190 default:
191 return -EINVAL;
192 }
193
194 rcu_read_lock();
195 pid = find_vpid(owner.pid);
196 if (owner.pid && !pid)
197 ret = -ESRCH;
198 else
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400199 __f_setown(filp, pid, type, 1);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700200 rcu_read_unlock();
201
202 return ret;
203}
204
205static int f_getown_ex(struct file *filp, unsigned long arg)
206{
Al Viro63784dd2012-09-26 21:43:05 -0400207 struct f_owner_ex __user *owner_p = (void __user *)arg;
Pavel Tikhomirovcc4a3f82021-02-03 15:41:56 +0300208 struct f_owner_ex owner = {};
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700209 int ret = 0;
210
211 read_lock(&filp->f_owner.lock);
Pavel Tikhomirovcc4a3f82021-02-03 15:41:56 +0300212 rcu_read_lock();
213 if (pid_task(filp->f_owner.pid, filp->f_owner.pid_type))
214 owner.pid = pid_vnr(filp->f_owner.pid);
215 rcu_read_unlock();
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700216 switch (filp->f_owner.pid_type) {
Eric W. Biederman01919132017-07-16 22:05:57 -0500217 case PIDTYPE_PID:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700218 owner.type = F_OWNER_TID;
219 break;
220
Eric W. Biederman01919132017-07-16 22:05:57 -0500221 case PIDTYPE_TGID:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700222 owner.type = F_OWNER_PID;
223 break;
224
225 case PIDTYPE_PGID:
Peter Zijlstra978b4052009-11-17 14:06:24 -0800226 owner.type = F_OWNER_PGRP;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700227 break;
228
229 default:
230 WARN_ON(1);
231 ret = -EINVAL;
232 break;
233 }
234 read_unlock(&filp->f_owner.lock);
235
Dan Carpenter5b544702010-06-03 12:35:42 +0200236 if (!ret) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700237 ret = copy_to_user(owner_p, &owner, sizeof(owner));
Dan Carpenter5b544702010-06-03 12:35:42 +0200238 if (ret)
239 ret = -EFAULT;
240 }
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700241 return ret;
242}
243
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700244#ifdef CONFIG_CHECKPOINT_RESTORE
245static int f_getowner_uids(struct file *filp, unsigned long arg)
246{
247 struct user_namespace *user_ns = current_user_ns();
Al Viro63784dd2012-09-26 21:43:05 -0400248 uid_t __user *dst = (void __user *)arg;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700249 uid_t src[2];
250 int err;
251
252 read_lock(&filp->f_owner.lock);
253 src[0] = from_kuid(user_ns, filp->f_owner.uid);
254 src[1] = from_kuid(user_ns, filp->f_owner.euid);
255 read_unlock(&filp->f_owner.lock);
256
257 err = put_user(src[0], &dst[0]);
258 err |= put_user(src[1], &dst[1]);
259
260 return err;
261}
262#else
263static int f_getowner_uids(struct file *filp, unsigned long arg)
264{
265 return -EINVAL;
266}
267#endif
268
Jens Axboec75b1d92017-06-27 11:47:04 -0600269static bool rw_hint_valid(enum rw_hint hint)
270{
271 switch (hint) {
Eugene Syromiatnikov9a7f12e2019-09-20 17:58:21 +0200272 case RWH_WRITE_LIFE_NOT_SET:
Jens Axboec75b1d92017-06-27 11:47:04 -0600273 case RWH_WRITE_LIFE_NONE:
274 case RWH_WRITE_LIFE_SHORT:
275 case RWH_WRITE_LIFE_MEDIUM:
276 case RWH_WRITE_LIFE_LONG:
277 case RWH_WRITE_LIFE_EXTREME:
278 return true;
279 default:
280 return false;
281 }
282}
283
284static long fcntl_rw_hint(struct file *file, unsigned int cmd,
285 unsigned long arg)
286{
287 struct inode *inode = file_inode(file);
Ben Dookse2003272019-10-15 11:50:49 +0100288 u64 __user *argp = (u64 __user *)arg;
Jens Axboec75b1d92017-06-27 11:47:04 -0600289 enum rw_hint hint;
Jens Axboe5657cb02017-06-28 08:09:45 -0600290 u64 h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600291
292 switch (cmd) {
293 case F_GET_FILE_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600294 h = file_write_hint(file);
295 if (copy_to_user(argp, &h, sizeof(*argp)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600296 return -EFAULT;
297 return 0;
298 case F_SET_FILE_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600299 if (copy_from_user(&h, argp, sizeof(h)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600300 return -EFAULT;
Jens Axboe5657cb02017-06-28 08:09:45 -0600301 hint = (enum rw_hint) h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600302 if (!rw_hint_valid(hint))
303 return -EINVAL;
304
305 spin_lock(&file->f_lock);
306 file->f_write_hint = hint;
307 spin_unlock(&file->f_lock);
308 return 0;
309 case F_GET_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600310 h = inode->i_write_hint;
311 if (copy_to_user(argp, &h, sizeof(*argp)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600312 return -EFAULT;
313 return 0;
314 case F_SET_RW_HINT:
Jens Axboe5657cb02017-06-28 08:09:45 -0600315 if (copy_from_user(&h, argp, sizeof(h)))
Jens Axboec75b1d92017-06-27 11:47:04 -0600316 return -EFAULT;
Jens Axboe5657cb02017-06-28 08:09:45 -0600317 hint = (enum rw_hint) h;
Jens Axboec75b1d92017-06-27 11:47:04 -0600318 if (!rw_hint_valid(hint))
319 return -EINVAL;
320
321 inode_lock(inode);
322 inode->i_write_hint = hint;
323 inode_unlock(inode);
324 return 0;
325 default:
326 return -EINVAL;
327 }
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
331 struct file *filp)
332{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400333 void __user *argp = (void __user *)arg;
334 struct flock flock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 long err = -EINVAL;
336
337 switch (cmd) {
338 case F_DUPFD:
Al Virofe17f222012-08-21 11:48:11 -0400339 err = f_dupfd(arg, filp, 0);
340 break;
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700341 case F_DUPFD_CLOEXEC:
Al Viro12197712012-10-08 23:21:58 +0100342 err = f_dupfd(arg, filp, O_CLOEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 case F_GETFD:
345 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
346 break;
347 case F_SETFD:
348 err = 0;
349 set_close_on_exec(fd, arg & FD_CLOEXEC);
350 break;
351 case F_GETFL:
352 err = filp->f_flags;
353 break;
354 case F_SETFL:
355 err = setfl(fd, filp, arg);
356 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500357#if BITS_PER_LONG != 32
358 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400359 case F_OFD_GETLK:
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500360#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 case F_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400362 if (copy_from_user(&flock, argp, sizeof(flock)))
363 return -EFAULT;
364 err = fcntl_getlk(filp, cmd, &flock);
365 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
366 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 break;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500368#if BITS_PER_LONG != 32
369 /* 32-bit arches must use fcntl64() */
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400370 case F_OFD_SETLK:
371 case F_OFD_SETLKW:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500372 fallthrough;
Gustavo A. R. Silvae8865532021-07-12 11:09:13 -0500373#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 case F_SETLK:
375 case F_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400376 if (copy_from_user(&flock, argp, sizeof(flock)))
377 return -EFAULT;
378 err = fcntl_setlk(fd, filp, cmd, &flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
380 case F_GETOWN:
381 /*
382 * XXX If f_owner is a process group, the
383 * negative return value will get converted
384 * into an error. Oops. If we keep the
385 * current syscall conventions, the only way
386 * to fix this will be in libc.
387 */
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700388 err = f_getown(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 force_successful_syscall_return();
390 break;
391 case F_SETOWN:
Jiri Slaby393cc3f2017-06-13 13:35:50 +0200392 err = f_setown(filp, arg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 break;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700394 case F_GETOWN_EX:
395 err = f_getown_ex(filp, arg);
396 break;
397 case F_SETOWN_EX:
398 err = f_setown_ex(filp, arg);
399 break;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700400 case F_GETOWNER_UIDS:
401 err = f_getowner_uids(filp, arg);
402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 case F_GETSIG:
404 err = filp->f_owner.signum;
405 break;
406 case F_SETSIG:
407 /* arg == 0 restores default behaviour. */
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700408 if (!valid_signal(arg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 break;
410 }
411 err = 0;
412 filp->f_owner.signum = arg;
413 break;
414 case F_GETLEASE:
415 err = fcntl_getlease(filp);
416 break;
417 case F_SETLEASE:
418 err = fcntl_setlease(fd, filp, arg);
419 break;
420 case F_NOTIFY:
421 err = fcntl_dirnotify(fd, filp, arg);
422 break;
Jens Axboe35f3d142010-05-20 10:43:18 +0200423 case F_SETPIPE_SZ:
424 case F_GETPIPE_SZ:
425 err = pipe_fcntl(filp, cmd, arg);
426 break;
David Herrmann40e041a2014-08-08 14:25:27 -0700427 case F_ADD_SEALS:
428 case F_GET_SEALS:
Marc-André Lureau5aadc432018-01-31 16:19:18 -0800429 err = memfd_fcntl(filp, cmd, arg);
David Herrmann40e041a2014-08-08 14:25:27 -0700430 break;
Jens Axboec75b1d92017-06-27 11:47:04 -0600431 case F_GET_RW_HINT:
432 case F_SET_RW_HINT:
433 case F_GET_FILE_RW_HINT:
434 case F_SET_FILE_RW_HINT:
435 err = fcntl_rw_hint(filp, cmd, arg);
436 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 default:
438 break;
439 }
440 return err;
441}
442
Al Viro1abf0c72011-03-13 03:51:11 -0400443static int check_fcntl_cmd(unsigned cmd)
444{
445 switch (cmd) {
446 case F_DUPFD:
447 case F_DUPFD_CLOEXEC:
448 case F_GETFD:
449 case F_SETFD:
450 case F_GETFL:
451 return 1;
452 }
453 return 0;
454}
455
Heiko Carstensa26eab22009-01-14 14:14:17 +0100456SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Al Viro2903ff02012-08-28 12:52:22 -0400458 struct fd f = fdget_raw(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 long err = -EBADF;
460
Al Viro2903ff02012-08-28 12:52:22 -0400461 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto out;
463
Al Viro2903ff02012-08-28 12:52:22 -0400464 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400465 if (!check_fcntl_cmd(cmd))
466 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400467 }
468
Al Viro2903ff02012-08-28 12:52:22 -0400469 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400470 if (!err)
Al Viro2903ff02012-08-28 12:52:22 -0400471 err = do_fcntl(fd, cmd, arg, f.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Al Viro545ec2c2012-04-21 18:42:19 -0400473out1:
Al Viro2903ff02012-08-28 12:52:22 -0400474 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475out:
476 return err;
477}
478
479#if BITS_PER_LONG == 32
Heiko Carstensa26eab22009-01-14 14:14:17 +0100480SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
481 unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400483 void __user *argp = (void __user *)arg;
Al Viro2903ff02012-08-28 12:52:22 -0400484 struct fd f = fdget_raw(fd);
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400485 struct flock64 flock;
Al Viro545ec2c2012-04-21 18:42:19 -0400486 long err = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Al Viro2903ff02012-08-28 12:52:22 -0400488 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto out;
490
Al Viro2903ff02012-08-28 12:52:22 -0400491 if (unlikely(f.file->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400492 if (!check_fcntl_cmd(cmd))
493 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400494 }
495
Al Viro2903ff02012-08-28 12:52:22 -0400496 err = security_file_fcntl(f.file, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400497 if (err)
498 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 switch (cmd) {
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500501 case F_GETLK64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400502 case F_OFD_GETLK:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400503 err = -EFAULT;
504 if (copy_from_user(&flock, argp, sizeof(flock)))
505 break;
506 err = fcntl_getlk64(f.file, cmd, &flock);
507 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
508 err = -EFAULT;
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500509 break;
510 case F_SETLK64:
511 case F_SETLKW64:
Jeff Layton0d3f7a22014-04-22 08:23:58 -0400512 case F_OFD_SETLK:
513 case F_OFD_SETLKW:
Christoph Hellwiga75d30c2017-05-27 06:07:19 -0400514 err = -EFAULT;
515 if (copy_from_user(&flock, argp, sizeof(flock)))
516 break;
517 err = fcntl_setlk64(fd, f.file, cmd, &flock);
Jeff Layton5d50ffd2014-02-03 12:13:10 -0500518 break;
519 default:
520 err = do_fcntl(fd, cmd, arg, f.file);
521 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Al Viro545ec2c2012-04-21 18:42:19 -0400523out1:
Al Viro2903ff02012-08-28 12:52:22 -0400524 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525out:
526 return err;
527}
528#endif
529
Al Viro80f0cce2017-04-08 18:10:56 -0400530#ifdef CONFIG_COMPAT
Al Viro8c6657c2017-06-26 23:51:31 -0400531/* careful - don't use anywhere else */
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700532#define copy_flock_fields(dst, src) \
533 (dst)->l_type = (src)->l_type; \
534 (dst)->l_whence = (src)->l_whence; \
535 (dst)->l_start = (src)->l_start; \
536 (dst)->l_len = (src)->l_len; \
537 (dst)->l_pid = (src)->l_pid;
Al Viro8c6657c2017-06-26 23:51:31 -0400538
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700539static int get_compat_flock(struct flock *kfl, const struct compat_flock __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400540{
Al Viro8c6657c2017-06-26 23:51:31 -0400541 struct compat_flock fl;
542
543 if (copy_from_user(&fl, ufl, sizeof(struct compat_flock)))
Al Viro80f0cce2017-04-08 18:10:56 -0400544 return -EFAULT;
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700545 copy_flock_fields(kfl, &fl);
Al Viro8c6657c2017-06-26 23:51:31 -0400546 return 0;
547}
548
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700549static int get_compat_flock64(struct flock *kfl, const struct compat_flock64 __user *ufl)
Al Viro8c6657c2017-06-26 23:51:31 -0400550{
551 struct compat_flock64 fl;
552
553 if (copy_from_user(&fl, ufl, sizeof(struct compat_flock64)))
554 return -EFAULT;
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700555 copy_flock_fields(kfl, &fl);
Al Viro80f0cce2017-04-08 18:10:56 -0400556 return 0;
557}
558
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700559static int put_compat_flock(const struct flock *kfl, struct compat_flock __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400560{
Al Viro8c6657c2017-06-26 23:51:31 -0400561 struct compat_flock fl;
562
563 memset(&fl, 0, sizeof(struct compat_flock));
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700564 copy_flock_fields(&fl, kfl);
Al Viro8c6657c2017-06-26 23:51:31 -0400565 if (copy_to_user(ufl, &fl, sizeof(struct compat_flock)))
Al Viro80f0cce2017-04-08 18:10:56 -0400566 return -EFAULT;
567 return 0;
568}
569
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700570static int put_compat_flock64(const struct flock *kfl, struct compat_flock64 __user *ufl)
Al Viro80f0cce2017-04-08 18:10:56 -0400571{
Al Viro8c6657c2017-06-26 23:51:31 -0400572 struct compat_flock64 fl;
573
Jeff Layton4d2dc2c2017-11-14 14:42:57 -0500574 BUILD_BUG_ON(sizeof(kfl->l_start) > sizeof(ufl->l_start));
575 BUILD_BUG_ON(sizeof(kfl->l_len) > sizeof(ufl->l_len));
576
Al Viro8c6657c2017-06-26 23:51:31 -0400577 memset(&fl, 0, sizeof(struct compat_flock64));
Linus Torvaldsb59eea52017-07-07 13:48:18 -0700578 copy_flock_fields(&fl, kfl);
Al Viro8c6657c2017-06-26 23:51:31 -0400579 if (copy_to_user(ufl, &fl, sizeof(struct compat_flock64)))
Al Viro80f0cce2017-04-08 18:10:56 -0400580 return -EFAULT;
581 return 0;
582}
Al Viro8c6657c2017-06-26 23:51:31 -0400583#undef copy_flock_fields
Al Viro80f0cce2017-04-08 18:10:56 -0400584
585static unsigned int
586convert_fcntl_cmd(unsigned int cmd)
587{
588 switch (cmd) {
589 case F_GETLK64:
590 return F_GETLK;
591 case F_SETLK64:
592 return F_SETLK;
593 case F_SETLKW64:
594 return F_SETLKW;
595 }
596
597 return cmd;
598}
599
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400600/*
601 * GETLK was successful and we need to return the data, but it needs to fit in
602 * the compat structure.
603 * l_start shouldn't be too big, unless the original start + end is greater than
604 * COMPAT_OFF_T_MAX, in which case the app was asking for trouble, so we return
605 * -EOVERFLOW in that case. l_len could be too big, in which case we just
606 * truncate it, and only allow the app to see that part of the conflicting lock
607 * that might make sense to it anyway
608 */
609static int fixup_compat_flock(struct flock *flock)
610{
611 if (flock->l_start > COMPAT_OFF_T_MAX)
612 return -EOVERFLOW;
613 if (flock->l_len > COMPAT_OFF_T_MAX)
614 flock->l_len = COMPAT_OFF_T_MAX;
615 return 0;
616}
617
Dominik Brodowskie02af2f2018-03-20 19:29:53 +0100618static long do_compat_fcntl64(unsigned int fd, unsigned int cmd,
619 compat_ulong_t arg)
Al Viro80f0cce2017-04-08 18:10:56 -0400620{
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400621 struct fd f = fdget_raw(fd);
622 struct flock flock;
623 long err = -EBADF;
624
625 if (!f.file)
626 return err;
627
628 if (unlikely(f.file->f_mode & FMODE_PATH)) {
629 if (!check_fcntl_cmd(cmd))
630 goto out_put;
631 }
632
633 err = security_file_fcntl(f.file, cmd, arg);
634 if (err)
635 goto out_put;
Al Viro80f0cce2017-04-08 18:10:56 -0400636
637 switch (cmd) {
638 case F_GETLK:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400639 err = get_compat_flock(&flock, compat_ptr(arg));
640 if (err)
641 break;
642 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
643 if (err)
644 break;
645 err = fixup_compat_flock(&flock);
Jeff Layton9280a602017-11-14 14:43:56 -0500646 if (!err)
647 err = put_compat_flock(&flock, compat_ptr(arg));
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400648 break;
649 case F_GETLK64:
650 case F_OFD_GETLK:
651 err = get_compat_flock64(&flock, compat_ptr(arg));
652 if (err)
653 break;
654 err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock);
Jeff Layton4d2dc2c2017-11-14 14:42:57 -0500655 if (!err)
656 err = put_compat_flock64(&flock, compat_ptr(arg));
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400657 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400658 case F_SETLK:
659 case F_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400660 err = get_compat_flock(&flock, compat_ptr(arg));
661 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400662 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400663 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400664 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400665 case F_SETLK64:
666 case F_SETLKW64:
Al Viro80f0cce2017-04-08 18:10:56 -0400667 case F_OFD_SETLK:
668 case F_OFD_SETLKW:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400669 err = get_compat_flock64(&flock, compat_ptr(arg));
670 if (err)
Al Viro80f0cce2017-04-08 18:10:56 -0400671 break;
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400672 err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock);
Al Viro80f0cce2017-04-08 18:10:56 -0400673 break;
Al Viro80f0cce2017-04-08 18:10:56 -0400674 default:
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400675 err = do_fcntl(fd, cmd, arg, f.file);
Al Viro80f0cce2017-04-08 18:10:56 -0400676 break;
677 }
Christoph Hellwig94073ad2017-05-27 06:07:20 -0400678out_put:
679 fdput(f);
680 return err;
Al Viro80f0cce2017-04-08 18:10:56 -0400681}
682
Dominik Brodowskie02af2f2018-03-20 19:29:53 +0100683COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
684 compat_ulong_t, arg)
685{
686 return do_compat_fcntl64(fd, cmd, arg);
687}
688
Al Viro80f0cce2017-04-08 18:10:56 -0400689COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd,
690 compat_ulong_t, arg)
691{
692 switch (cmd) {
693 case F_GETLK64:
694 case F_SETLK64:
695 case F_SETLKW64:
696 case F_OFD_GETLK:
697 case F_OFD_SETLK:
698 case F_OFD_SETLKW:
699 return -EINVAL;
700 }
Dominik Brodowskie02af2f2018-03-20 19:29:53 +0100701 return do_compat_fcntl64(fd, cmd, arg);
Al Viro80f0cce2017-04-08 18:10:56 -0400702}
703#endif
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/* Table to convert sigio signal codes into poll band bitmaps */
706
Al Viro5dc533c2017-07-16 22:14:00 -0400707static const __poll_t band_table[NSIGPOLL] = {
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800708 EPOLLIN | EPOLLRDNORM, /* POLL_IN */
709 EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND, /* POLL_OUT */
710 EPOLLIN | EPOLLRDNORM | EPOLLMSG, /* POLL_MSG */
711 EPOLLERR, /* POLL_ERR */
712 EPOLLPRI | EPOLLRDBAND, /* POLL_PRI */
713 EPOLLHUP | EPOLLERR /* POLL_HUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714};
715
716static inline int sigio_perm(struct task_struct *p,
717 struct fown_struct *fown, int sig)
718{
David Howellsc69e8d92008-11-14 10:39:19 +1100719 const struct cred *cred;
720 int ret;
721
722 rcu_read_lock();
723 cred = __task_cred(p);
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800724 ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) ||
725 uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) ||
726 uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100727 !security_file_send_sigiotask(p, fown, sig));
728 rcu_read_unlock();
729 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732static void send_sigio_to_task(struct task_struct *p,
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200733 struct fown_struct *fown,
Eric W. Biederman9c2db002018-07-21 08:17:29 -0500734 int fd, int reason, enum pid_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200736 /*
737 * F_SETSIG can change ->signum lockless in parallel, make
738 * sure we read it once and use the same value throughout.
739 */
Mark Rutland6aa7de02017-10-23 14:07:29 -0700740 int signum = READ_ONCE(fown->signum);
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200741
742 if (!sigio_perm(p, fown, signum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return;
744
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200745 switch (signum) {
Kees Cook0a68ff52020-02-19 22:22:43 -0800746 default: {
747 kernel_siginfo_t si;
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* Queue a rt signal with the appropriate fd as its
750 value. We use SI_SIGIO as the source, not
751 SI_KERNEL, since kernel signals always get
752 delivered even if we can't queue. Failure to
753 queue in this case _should_ be reported; we fall
754 back to SIGIO in that case. --sct */
Eric W. Biedermanfaf1f222018-01-05 17:27:42 -0600755 clear_siginfo(&si);
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200756 si.si_signo = signum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 si.si_errno = 0;
758 si.si_code = reason;
Eric W. Biedermand08477a2017-06-29 09:28:50 -0500759 /*
760 * Posix definies POLL_IN and friends to be signal
761 * specific si_codes for SIG_POLL. Linux extended
762 * these si_codes to other signals in a way that is
763 * ambiguous if other signals also have signal
764 * specific si_codes. In that case use SI_SIGIO instead
765 * to remove the ambiguity.
766 */
Eric W. Biederman54640d22017-09-18 22:51:14 -0500767 if ((signum != SIGPOLL) && sig_specific_sicodes(signum))
Eric W. Biedermand08477a2017-06-29 09:28:50 -0500768 si.si_code = SI_SIGIO;
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* Make sure we are called with one of the POLL_*
771 reasons, otherwise we could leak kernel stack into
772 userspace. */
Eric W. Biedermand08477a2017-06-29 09:28:50 -0500773 BUG_ON((reason < POLL_IN) || ((reason - POLL_IN) >= NSIGPOLL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (reason - POLL_IN >= NSIGPOLL)
775 si.si_band = ~0L;
776 else
Al Viroc71d2272017-11-29 19:00:41 -0500777 si.si_band = mangle_poll(band_table[reason - POLL_IN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 si.si_fd = fd;
Eric W. Biederman40b3b022018-07-21 10:45:15 -0500779 if (!do_send_sig_info(signum, &si, p, type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 break;
Kees Cook0a68ff52020-02-19 22:22:43 -0800781 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500782 fallthrough; /* fall back on the old plain SIGIO signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 case 0:
Eric W. Biederman40b3b022018-07-21 10:45:15 -0500784 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786}
787
788void send_sigio(struct fown_struct *fown, int fd, int band)
789{
790 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700791 enum pid_type type;
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800792 unsigned long flags;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700793 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800795 read_lock_irqsave(&fown->lock, flags);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700796
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700797 type = fown->pid_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 pid = fown->pid;
799 if (!pid)
800 goto out_unlock_fown;
Eric W. Biederman01919132017-07-16 22:05:57 -0500801
802 if (type <= PIDTYPE_TGID) {
803 rcu_read_lock();
804 p = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman84fe4cc2018-08-15 21:20:46 -0500805 if (p)
806 send_sigio_to_task(p, fown, fd, band, type);
Eric W. Biederman01919132017-07-16 22:05:57 -0500807 rcu_read_unlock();
808 } else {
809 read_lock(&tasklist_lock);
810 do_each_pid_task(pid, type, p) {
Eric W. Biederman9c2db002018-07-21 08:17:29 -0500811 send_sigio_to_task(p, fown, fd, band, type);
Eric W. Biederman01919132017-07-16 22:05:57 -0500812 } while_each_pid_task(pid, type, p);
813 read_unlock(&tasklist_lock);
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 out_unlock_fown:
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800816 read_unlock_irqrestore(&fown->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819static void send_sigurg_to_task(struct task_struct *p,
Eric W. Biederman9c2db002018-07-21 08:17:29 -0500820 struct fown_struct *fown, enum pid_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 if (sigio_perm(p, fown, SIGURG))
Eric W. Biederman40b3b022018-07-21 10:45:15 -0500823 do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826int send_sigurg(struct fown_struct *fown)
827{
828 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700829 enum pid_type type;
830 struct pid *pid;
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800831 unsigned long flags;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700832 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800834 read_lock_irqsave(&fown->lock, flags);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700835
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700836 type = fown->pid_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 pid = fown->pid;
838 if (!pid)
839 goto out_unlock_fown;
840
841 ret = 1;
Eric W. Biederman01919132017-07-16 22:05:57 -0500842
843 if (type <= PIDTYPE_TGID) {
844 rcu_read_lock();
845 p = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman84fe4cc2018-08-15 21:20:46 -0500846 if (p)
847 send_sigurg_to_task(p, fown, type);
Eric W. Biederman01919132017-07-16 22:05:57 -0500848 rcu_read_unlock();
849 } else {
850 read_lock(&tasklist_lock);
851 do_each_pid_task(pid, type, p) {
Eric W. Biederman9c2db002018-07-21 08:17:29 -0500852 send_sigurg_to_task(p, fown, type);
Eric W. Biederman01919132017-07-16 22:05:57 -0500853 } while_each_pid_task(pid, type, p);
854 read_unlock(&tasklist_lock);
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 out_unlock_fown:
Boqun Feng8d1ddb52020-11-05 14:23:51 +0800857 read_unlock_irqrestore(&fown->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return ret;
859}
860
Eric Dumazet989a2972010-04-14 09:55:35 +0000861static DEFINE_SPINLOCK(fasync_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800862static struct kmem_cache *fasync_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Eric Dumazet989a2972010-04-14 09:55:35 +0000864static void fasync_free_rcu(struct rcu_head *head)
865{
866 kmem_cache_free(fasync_cache,
867 container_of(head, struct fasync_struct, fa_rcu));
868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870/*
Linus Torvalds53281b62009-12-16 08:23:37 -0800871 * Remove a fasync entry. If successfully removed, return
872 * positive and clear the FASYNC flag. If no entry exists,
873 * do nothing and return 0.
874 *
875 * NOTE! It is very important that the FASYNC flag always
876 * match the state "is the filp on a fasync list".
877 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400879int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct fasync_struct *fa, **fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 int result = 0;
883
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600884 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000885 spin_lock(&fasync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
Linus Torvalds53281b62009-12-16 08:23:37 -0800887 if (fa->fa_file != filp)
888 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000889
Kirill Tkhai7a107c02018-04-05 14:58:06 +0300890 write_lock_irq(&fa->fa_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000891 fa->fa_file = NULL;
Kirill Tkhai7a107c02018-04-05 14:58:06 +0300892 write_unlock_irq(&fa->fa_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000893
Linus Torvalds53281b62009-12-16 08:23:37 -0800894 *fp = fa->fa_next;
Eric Dumazet989a2972010-04-14 09:55:35 +0000895 call_rcu(&fa->fa_rcu, fasync_free_rcu);
Jonathan Corbet76398422009-02-01 14:26:59 -0700896 filp->f_flags &= ~FASYNC;
Linus Torvalds53281b62009-12-16 08:23:37 -0800897 result = 1;
898 break;
899 }
Eric Dumazet989a2972010-04-14 09:55:35 +0000900 spin_unlock(&fasync_lock);
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600901 spin_unlock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return result;
903}
904
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400905struct fasync_struct *fasync_alloc(void)
Linus Torvalds53281b62009-12-16 08:23:37 -0800906{
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400907 return kmem_cache_alloc(fasync_cache, GFP_KERNEL);
908}
Linus Torvalds53281b62009-12-16 08:23:37 -0800909
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400910/*
911 * NOTE! This can be used only for unused fasync entries:
912 * entries that actually got inserted on the fasync list
913 * need to be released by rcu - see fasync_remove_entry.
914 */
915void fasync_free(struct fasync_struct *new)
916{
917 kmem_cache_free(fasync_cache, new);
918}
919
920/*
921 * Insert a new entry into the fasync list. Return the pointer to the
922 * old one if we didn't use the new one.
Linus Torvalds55f335a2010-10-27 18:17:02 -0700923 *
924 * NOTE! It is very important that the FASYNC flag always
925 * match the state "is the filp on a fasync list".
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400926 */
927struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
928{
929 struct fasync_struct *fa, **fp;
Linus Torvalds53281b62009-12-16 08:23:37 -0800930
931 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000932 spin_lock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800933 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
934 if (fa->fa_file != filp)
935 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000936
Kirill Tkhai7a107c02018-04-05 14:58:06 +0300937 write_lock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800938 fa->fa_fd = fd;
Kirill Tkhai7a107c02018-04-05 14:58:06 +0300939 write_unlock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800940 goto out;
941 }
942
Kirill Tkhai7a107c02018-04-05 14:58:06 +0300943 rwlock_init(&new->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800944 new->magic = FASYNC_MAGIC;
945 new->fa_file = filp;
946 new->fa_fd = fd;
947 new->fa_next = *fapp;
Eric Dumazet989a2972010-04-14 09:55:35 +0000948 rcu_assign_pointer(*fapp, new);
Linus Torvalds53281b62009-12-16 08:23:37 -0800949 filp->f_flags |= FASYNC;
950
951out:
Eric Dumazet989a2972010-04-14 09:55:35 +0000952 spin_unlock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800953 spin_unlock(&filp->f_lock);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400954 return fa;
955}
956
957/*
958 * Add a fasync entry. Return negative on error, positive if
959 * added, and zero if did nothing but change an existing one.
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400960 */
961static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
962{
963 struct fasync_struct *new;
964
965 new = fasync_alloc();
966 if (!new)
967 return -ENOMEM;
968
969 /*
970 * fasync_insert_entry() returns the old (update) entry if
971 * it existed.
972 *
973 * So free the (unused) new entry and return 0 to let the
974 * caller know that we didn't add any new fasync entries.
975 */
976 if (fasync_insert_entry(fd, filp, fapp, new)) {
977 fasync_free(new);
978 return 0;
979 }
980
981 return 1;
Linus Torvalds53281b62009-12-16 08:23:37 -0800982}
983
984/*
985 * fasync_helper() is used by almost all character device drivers
986 * to set up the fasync queue, and for regular files by the file
987 * lease code. It returns negative on error, 0 if it did no changes
988 * and positive if it added/deleted the entry.
989 */
990int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
991{
992 if (!on)
993 return fasync_remove_entry(filp, fapp);
994 return fasync_add_entry(fd, filp, fapp);
995}
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997EXPORT_SYMBOL(fasync_helper);
998
Eric Dumazet989a2972010-04-14 09:55:35 +0000999/*
1000 * rcu_read_lock() is held
1001 */
1002static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 while (fa) {
Eric Dumazet989a2972010-04-14 09:55:35 +00001005 struct fown_struct *fown;
Andrew Mortonf4985dc2010-06-29 15:05:42 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (fa->magic != FASYNC_MAGIC) {
1008 printk(KERN_ERR "kill_fasync: bad magic number in "
1009 "fasync_struct!\n");
1010 return;
1011 }
Kirill Tkhai7a107c02018-04-05 14:58:06 +03001012 read_lock(&fa->fa_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +00001013 if (fa->fa_file) {
1014 fown = &fa->fa_file->f_owner;
1015 /* Don't send SIGURG to processes which have not set a
1016 queued signum: SIGURG has its own default signalling
1017 mechanism. */
1018 if (!(sig == SIGURG && fown->signum == 0))
1019 send_sigio(fown, fa->fa_fd, band);
1020 }
Kirill Tkhai7a107c02018-04-05 14:58:06 +03001021 read_unlock(&fa->fa_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +00001022 fa = rcu_dereference(fa->fa_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026void kill_fasync(struct fasync_struct **fp, int sig, int band)
1027{
1028 /* First a quick test without locking: usually
1029 * the list is empty.
1030 */
1031 if (*fp) {
Eric Dumazet989a2972010-04-14 09:55:35 +00001032 rcu_read_lock();
1033 kill_fasync_rcu(rcu_dereference(*fp), sig, band);
1034 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036}
1037EXPORT_SYMBOL(kill_fasync);
1038
Wu Fengguang454eedb2010-08-10 18:01:29 -07001039static int __init fcntl_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
James Bottomley3ab04d52010-09-09 16:38:12 -07001041 /*
1042 * Please add new bits here to ensure allocation uniqueness.
1043 * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY
1044 * is defined as O_NONBLOCK on some platforms and not on others.
1045 */
Christoph Hellwig80f18372017-04-27 09:42:24 +02001046 BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ !=
1047 HWEIGHT32(
1048 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) |
1049 __FMODE_EXEC | __FMODE_NONOTIFY));
Wu Fengguang454eedb2010-08-10 18:01:29 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 fasync_cache = kmem_cache_create("fasync_cache",
Paul Mundt20c2df82007-07-20 10:11:58 +09001052 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
1054}
1055
Wu Fengguang454eedb2010-08-10 18:01:29 -07001056module_init(fcntl_init)