blob: 887b5ba8c9b56be800d4d3f7a799fc21f1c7892c [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>
10#include <linux/fs.h>
11#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040012#include <linux/fdtable.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080013#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/slab.h>
16#include <linux/module.h>
Jens Axboe35f3d142010-05-20 10:43:18 +020017#include <linux/pipe_fs_i.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/security.h>
19#include <linux/ptrace.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070020#include <linux/signal.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070021#include <linux/rcupdate.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070022#include <linux/pid_namespace.h>
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -070023#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/poll.h>
26#include <asm/siginfo.h>
27#include <asm/uaccess.h>
28
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -080029void set_close_on_exec(unsigned int fd, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070032 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -070034 fdt = files_fdtable(files);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 if (flag)
David Howells1dce27c2012-02-16 17:49:42 +000036 __set_close_on_exec(fd, fdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 else
David Howells1dce27c2012-02-16 17:49:42 +000038 __clear_close_on_exec(fd, fdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 spin_unlock(&files->file_lock);
40}
41
David Howells1dce27c2012-02-16 17:49:42 +000042static bool get_close_on_exec(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070045 struct fdtable *fdt;
David Howells1dce27c2012-02-16 17:49:42 +000046 bool res;
Dipankar Sarmab8359962005-09-09 13:04:14 -070047 rcu_read_lock();
Dipankar Sarmabadf1662005-09-09 13:04:10 -070048 fdt = files_fdtable(files);
David Howells1dce27c2012-02-16 17:49:42 +000049 res = close_on_exec(fd, fdt);
Dipankar Sarmab8359962005-09-09 13:04:14 -070050 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return res;
52}
53
Heiko Carstensa26eab22009-01-14 14:14:17 +010054SYSCALL_DEFINE3(dup3, unsigned int, oldfd, unsigned int, newfd, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 int err = -EBADF;
57 struct file * file, *tofree;
58 struct files_struct * files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070059 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ulrich Drepper336dd1f2008-07-23 21:29:29 -070061 if ((flags & ~O_CLOEXEC) != 0)
62 return -EINVAL;
63
Al Viro6c5d0512008-07-26 13:38:19 -040064 if (unlikely(oldfd == newfd))
65 return -EINVAL;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 spin_lock(&files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 err = expand_files(files, newfd);
Al Viro1b7e1902008-07-30 06:18:03 -040069 file = fcheck(oldfd);
70 if (unlikely(!file))
71 goto Ebadf;
Al Viro4e1e0182008-07-26 16:01:20 -040072 if (unlikely(err < 0)) {
73 if (err == -EMFILE)
Al Viro1b7e1902008-07-30 06:18:03 -040074 goto Ebadf;
75 goto out_unlock;
Al Viro4e1e0182008-07-26 16:01:20 -040076 }
Al Viro1b7e1902008-07-30 06:18:03 -040077 /*
78 * We need to detect attempts to do dup2() over allocated but still
79 * not finished descriptor. NB: OpenBSD avoids that at the price of
80 * extra work in their equivalent of fget() - they insert struct
81 * file immediately after grabbing descriptor, mark it larval if
82 * more work (e.g. actual opening) is needed and make sure that
83 * fget() treats larval files as absent. Potentially interesting,
84 * but while extra work in fget() is trivial, locking implications
85 * and amount of surgery on open()-related paths in VFS are not.
86 * FreeBSD fails with -EBADF in the same situation, NetBSD "solution"
87 * deadlocks in rather amusing ways, AFAICS. All of that is out of
88 * scope of POSIX or SUS, since neither considers shared descriptor
89 * tables and this condition does not arise without those.
90 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 err = -EBUSY;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070092 fdt = files_fdtable(files);
93 tofree = fdt->fd[newfd];
David Howells1dce27c2012-02-16 17:49:42 +000094 if (!tofree && fd_is_open(newfd, fdt))
Al Viro1b7e1902008-07-30 06:18:03 -040095 goto out_unlock;
96 get_file(file);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070097 rcu_assign_pointer(fdt->fd[newfd], file);
David Howells1dce27c2012-02-16 17:49:42 +000098 __set_open_fd(newfd, fdt);
Ulrich Drepper336dd1f2008-07-23 21:29:29 -070099 if (flags & O_CLOEXEC)
David Howells1dce27c2012-02-16 17:49:42 +0000100 __set_close_on_exec(newfd, fdt);
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700101 else
David Howells1dce27c2012-02-16 17:49:42 +0000102 __clear_close_on_exec(newfd, fdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 spin_unlock(&files->file_lock);
104
105 if (tofree)
106 filp_close(tofree, files);
Al Viro1b7e1902008-07-30 06:18:03 -0400107
108 return newfd;
109
110Ebadf:
111 err = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112out_unlock:
113 spin_unlock(&files->file_lock);
Al Viro1b7e1902008-07-30 06:18:03 -0400114 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Heiko Carstensa26eab22009-01-14 14:14:17 +0100117SYSCALL_DEFINE2(dup2, unsigned int, oldfd, unsigned int, newfd)
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700118{
Al Viro6c5d0512008-07-26 13:38:19 -0400119 if (unlikely(newfd == oldfd)) { /* corner case */
120 struct files_struct *files = current->files;
Jeff Mahoney2b79bc42009-05-11 14:25:34 -0400121 int retval = oldfd;
122
Al Viro6c5d0512008-07-26 13:38:19 -0400123 rcu_read_lock();
124 if (!fcheck_files(files, oldfd))
Jeff Mahoney2b79bc42009-05-11 14:25:34 -0400125 retval = -EBADF;
Al Viro6c5d0512008-07-26 13:38:19 -0400126 rcu_read_unlock();
Jeff Mahoney2b79bc42009-05-11 14:25:34 -0400127 return retval;
Al Viro6c5d0512008-07-26 13:38:19 -0400128 }
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700129 return sys_dup3(oldfd, newfd, 0);
130}
131
Heiko Carstensa26eab22009-01-14 14:14:17 +0100132SYSCALL_DEFINE1(dup, unsigned int, fildes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 int ret = -EBADF;
Al Viro1abf0c72011-03-13 03:51:11 -0400135 struct file *file = fget_raw(fildes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Al Viro1027abe2008-07-30 04:13:04 -0400137 if (file) {
138 ret = get_unused_fd();
139 if (ret >= 0)
140 fd_install(ret, file);
141 else
142 fput(file);
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return ret;
145}
146
Jonathan Corbet76398422009-02-01 14:26:59 -0700147#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149static int setfl(int fd, struct file * filp, unsigned long arg)
150{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800151 struct inode * inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int error = 0;
153
dean gaudet7d95c8f2006-02-03 03:04:30 -0800154 /*
155 * O_APPEND cannot be cleared if the file is marked as append-only
156 * and the file is open for write.
157 */
158 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return -EPERM;
160
161 /* O_NOATIME can only be set by the owner or superuser */
162 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700163 if (!inode_owner_or_capable(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -EPERM;
165
166 /* required for strict SunOS emulation */
167 if (O_NONBLOCK != O_NDELAY)
168 if (arg & O_NDELAY)
169 arg |= O_NONBLOCK;
170
171 if (arg & O_DIRECT) {
172 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
173 !filp->f_mapping->a_ops->direct_IO)
174 return -EINVAL;
175 }
176
177 if (filp->f_op && filp->f_op->check_flags)
178 error = filp->f_op->check_flags(arg);
179 if (error)
180 return error;
181
Jonathan Corbet218d11a2008-12-05 16:12:48 -0700182 /*
Jonathan Corbet76398422009-02-01 14:26:59 -0700183 * ->fasync() is responsible for setting the FASYNC bit.
Jonathan Corbet218d11a2008-12-05 16:12:48 -0700184 */
Jonathan Corbet76398422009-02-01 14:26:59 -0700185 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op &&
186 filp->f_op->fasync) {
187 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
188 if (error < 0)
189 goto out;
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700190 if (error > 0)
191 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -0700193 spin_lock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -0700195 spin_unlock(&filp->f_lock);
Jonathan Corbet76398422009-02-01 14:26:59 -0700196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return error;
199}
200
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700201static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200202 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Linus Torvalds80e1e822010-02-07 10:11:23 -0800204 write_lock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (force || !filp->f_owner.pid) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700206 put_pid(filp->f_owner.pid);
207 filp->f_owner.pid = get_pid(pid);
208 filp->f_owner.pid_type = type;
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200209
210 if (pid) {
211 const struct cred *cred = current_cred();
212 filp->f_owner.uid = cred->uid;
213 filp->f_owner.euid = cred->euid;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Linus Torvalds80e1e822010-02-07 10:11:23 -0800216 write_unlock_irq(&filp->f_owner.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700219int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
220 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 int err;
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 err = security_file_set_fowner(filp);
225 if (err)
226 return err;
227
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200228 f_modown(filp, pid, type, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700231EXPORT_SYMBOL(__f_setown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700233int f_setown(struct file *filp, unsigned long arg, int force)
234{
235 enum pid_type type;
236 struct pid *pid;
237 int who = arg;
238 int result;
239 type = PIDTYPE_PID;
240 if (who < 0) {
241 type = PIDTYPE_PGID;
242 who = -who;
243 }
244 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700245 pid = find_vpid(who);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700246 result = __f_setown(filp, pid, type, force);
247 rcu_read_unlock();
248 return result;
249}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250EXPORT_SYMBOL(f_setown);
251
252void f_delown(struct file *filp)
253{
Oleg Nesterov2f38d702009-06-16 22:07:46 +0200254 f_modown(filp, NULL, PIDTYPE_PID, 1);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700255}
256
257pid_t f_getown(struct file *filp)
258{
259 pid_t pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700260 read_lock(&filp->f_owner.lock);
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800261 pid = pid_vnr(filp->f_owner.pid);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700262 if (filp->f_owner.pid_type == PIDTYPE_PGID)
263 pid = -pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700264 read_unlock(&filp->f_owner.lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700265 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700268static int f_setown_ex(struct file *filp, unsigned long arg)
269{
270 struct f_owner_ex * __user owner_p = (void * __user)arg;
271 struct f_owner_ex owner;
272 struct pid *pid;
273 int type;
274 int ret;
275
276 ret = copy_from_user(&owner, owner_p, sizeof(owner));
277 if (ret)
Dan Carpenter5b544702010-06-03 12:35:42 +0200278 return -EFAULT;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700279
280 switch (owner.type) {
281 case F_OWNER_TID:
282 type = PIDTYPE_MAX;
283 break;
284
285 case F_OWNER_PID:
286 type = PIDTYPE_PID;
287 break;
288
Peter Zijlstra978b4052009-11-17 14:06:24 -0800289 case F_OWNER_PGRP:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700290 type = PIDTYPE_PGID;
291 break;
292
293 default:
294 return -EINVAL;
295 }
296
297 rcu_read_lock();
298 pid = find_vpid(owner.pid);
299 if (owner.pid && !pid)
300 ret = -ESRCH;
301 else
302 ret = __f_setown(filp, pid, type, 1);
303 rcu_read_unlock();
304
305 return ret;
306}
307
308static int f_getown_ex(struct file *filp, unsigned long arg)
309{
310 struct f_owner_ex * __user owner_p = (void * __user)arg;
311 struct f_owner_ex owner;
312 int ret = 0;
313
314 read_lock(&filp->f_owner.lock);
315 owner.pid = pid_vnr(filp->f_owner.pid);
316 switch (filp->f_owner.pid_type) {
317 case PIDTYPE_MAX:
318 owner.type = F_OWNER_TID;
319 break;
320
321 case PIDTYPE_PID:
322 owner.type = F_OWNER_PID;
323 break;
324
325 case PIDTYPE_PGID:
Peter Zijlstra978b4052009-11-17 14:06:24 -0800326 owner.type = F_OWNER_PGRP;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700327 break;
328
329 default:
330 WARN_ON(1);
331 ret = -EINVAL;
332 break;
333 }
334 read_unlock(&filp->f_owner.lock);
335
Dan Carpenter5b544702010-06-03 12:35:42 +0200336 if (!ret) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700337 ret = copy_to_user(owner_p, &owner, sizeof(owner));
Dan Carpenter5b544702010-06-03 12:35:42 +0200338 if (ret)
339 ret = -EFAULT;
340 }
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700341 return ret;
342}
343
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700344#ifdef CONFIG_CHECKPOINT_RESTORE
345static int f_getowner_uids(struct file *filp, unsigned long arg)
346{
347 struct user_namespace *user_ns = current_user_ns();
348 uid_t * __user dst = (void * __user)arg;
349 uid_t src[2];
350 int err;
351
352 read_lock(&filp->f_owner.lock);
353 src[0] = from_kuid(user_ns, filp->f_owner.uid);
354 src[1] = from_kuid(user_ns, filp->f_owner.euid);
355 read_unlock(&filp->f_owner.lock);
356
357 err = put_user(src[0], &dst[0]);
358 err |= put_user(src[1], &dst[1]);
359
360 return err;
361}
362#else
363static int f_getowner_uids(struct file *filp, unsigned long arg)
364{
365 return -EINVAL;
366}
367#endif
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
370 struct file *filp)
371{
372 long err = -EINVAL;
373
374 switch (cmd) {
375 case F_DUPFD:
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700376 case F_DUPFD_CLOEXEC:
Jiri Slabyd554ed892010-03-05 13:42:42 -0800377 if (arg >= rlimit(RLIMIT_NOFILE))
Al Viro4e1e0182008-07-26 16:01:20 -0400378 break;
Al Viro1027abe2008-07-30 04:13:04 -0400379 err = alloc_fd(arg, cmd == F_DUPFD_CLOEXEC ? O_CLOEXEC : 0);
380 if (err >= 0) {
381 get_file(filp);
382 fd_install(err, filp);
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 break;
385 case F_GETFD:
386 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
387 break;
388 case F_SETFD:
389 err = 0;
390 set_close_on_exec(fd, arg & FD_CLOEXEC);
391 break;
392 case F_GETFL:
393 err = filp->f_flags;
394 break;
395 case F_SETFL:
396 err = setfl(fd, filp, arg);
397 break;
398 case F_GETLK:
399 err = fcntl_getlk(filp, (struct flock __user *) arg);
400 break;
401 case F_SETLK:
402 case F_SETLKW:
Peter Staubachc2936212005-07-27 11:45:09 -0700403 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 break;
405 case F_GETOWN:
406 /*
407 * XXX If f_owner is a process group, the
408 * negative return value will get converted
409 * into an error. Oops. If we keep the
410 * current syscall conventions, the only way
411 * to fix this will be in libc.
412 */
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700413 err = f_getown(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 force_successful_syscall_return();
415 break;
416 case F_SETOWN:
417 err = f_setown(filp, arg, 1);
418 break;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700419 case F_GETOWN_EX:
420 err = f_getown_ex(filp, arg);
421 break;
422 case F_SETOWN_EX:
423 err = f_setown_ex(filp, arg);
424 break;
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -0700425 case F_GETOWNER_UIDS:
426 err = f_getowner_uids(filp, arg);
427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 case F_GETSIG:
429 err = filp->f_owner.signum;
430 break;
431 case F_SETSIG:
432 /* arg == 0 restores default behaviour. */
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700433 if (!valid_signal(arg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 break;
435 }
436 err = 0;
437 filp->f_owner.signum = arg;
438 break;
439 case F_GETLEASE:
440 err = fcntl_getlease(filp);
441 break;
442 case F_SETLEASE:
443 err = fcntl_setlease(fd, filp, arg);
444 break;
445 case F_NOTIFY:
446 err = fcntl_dirnotify(fd, filp, arg);
447 break;
Jens Axboe35f3d142010-05-20 10:43:18 +0200448 case F_SETPIPE_SZ:
449 case F_GETPIPE_SZ:
450 err = pipe_fcntl(filp, cmd, arg);
451 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 default:
453 break;
454 }
455 return err;
456}
457
Al Viro1abf0c72011-03-13 03:51:11 -0400458static int check_fcntl_cmd(unsigned cmd)
459{
460 switch (cmd) {
461 case F_DUPFD:
462 case F_DUPFD_CLOEXEC:
463 case F_GETFD:
464 case F_SETFD:
465 case F_GETFL:
466 return 1;
467 }
468 return 0;
469}
470
Heiko Carstensa26eab22009-01-14 14:14:17 +0100471SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 struct file *filp;
Al Viro545ec2c2012-04-21 18:42:19 -0400474 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 long err = -EBADF;
476
Al Viro545ec2c2012-04-21 18:42:19 -0400477 filp = fget_raw_light(fd, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (!filp)
479 goto out;
480
Al Viro1abf0c72011-03-13 03:51:11 -0400481 if (unlikely(filp->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400482 if (!check_fcntl_cmd(cmd))
483 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400484 }
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 err = security_file_fcntl(filp, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400487 if (!err)
488 err = do_fcntl(fd, cmd, arg, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Al Viro545ec2c2012-04-21 18:42:19 -0400490out1:
491 fput_light(filp, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492out:
493 return err;
494}
495
496#if BITS_PER_LONG == 32
Heiko Carstensa26eab22009-01-14 14:14:17 +0100497SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
498 unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct file * filp;
Al Viro545ec2c2012-04-21 18:42:19 -0400501 long err = -EBADF;
502 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Al Viro545ec2c2012-04-21 18:42:19 -0400504 filp = fget_raw_light(fd, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (!filp)
506 goto out;
507
Al Viro1abf0c72011-03-13 03:51:11 -0400508 if (unlikely(filp->f_mode & FMODE_PATH)) {
Al Viro545ec2c2012-04-21 18:42:19 -0400509 if (!check_fcntl_cmd(cmd))
510 goto out1;
Al Viro1abf0c72011-03-13 03:51:11 -0400511 }
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 err = security_file_fcntl(filp, cmd, arg);
Al Viro545ec2c2012-04-21 18:42:19 -0400514 if (err)
515 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 switch (cmd) {
518 case F_GETLK64:
519 err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
520 break;
521 case F_SETLK64:
522 case F_SETLKW64:
Peter Staubachc2936212005-07-27 11:45:09 -0700523 err = fcntl_setlk64(fd, filp, cmd,
524 (struct flock64 __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526 default:
527 err = do_fcntl(fd, cmd, arg, filp);
528 break;
529 }
Al Viro545ec2c2012-04-21 18:42:19 -0400530out1:
531 fput_light(filp, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532out:
533 return err;
534}
535#endif
536
537/* Table to convert sigio signal codes into poll band bitmaps */
538
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800539static const long band_table[NSIGPOLL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 POLLIN | POLLRDNORM, /* POLL_IN */
541 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
542 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
543 POLLERR, /* POLL_ERR */
544 POLLPRI | POLLRDBAND, /* POLL_PRI */
545 POLLHUP | POLLERR /* POLL_HUP */
546};
547
548static inline int sigio_perm(struct task_struct *p,
549 struct fown_struct *fown, int sig)
550{
David Howellsc69e8d92008-11-14 10:39:19 +1100551 const struct cred *cred;
552 int ret;
553
554 rcu_read_lock();
555 cred = __task_cred(p);
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800556 ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) ||
557 uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) ||
558 uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100559 !security_file_send_sigiotask(p, fown, sig));
560 rcu_read_unlock();
561 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564static void send_sigio_to_task(struct task_struct *p,
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200565 struct fown_struct *fown,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700566 int fd, int reason, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200568 /*
569 * F_SETSIG can change ->signum lockless in parallel, make
570 * sure we read it once and use the same value throughout.
571 */
572 int signum = ACCESS_ONCE(fown->signum);
573
574 if (!sigio_perm(p, fown, signum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return;
576
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200577 switch (signum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 siginfo_t si;
579 default:
580 /* Queue a rt signal with the appropriate fd as its
581 value. We use SI_SIGIO as the source, not
582 SI_KERNEL, since kernel signals always get
583 delivered even if we can't queue. Failure to
584 queue in this case _should_ be reported; we fall
585 back to SIGIO in that case. --sct */
Oleg Nesterov8eeee4e2009-06-17 00:27:10 +0200586 si.si_signo = signum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 si.si_errno = 0;
588 si.si_code = reason;
589 /* Make sure we are called with one of the POLL_*
590 reasons, otherwise we could leak kernel stack into
591 userspace. */
Eric Sesterhennf6298aa2006-04-02 13:37:19 +0200592 BUG_ON((reason & __SI_MASK) != __SI_POLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (reason - POLL_IN >= NSIGPOLL)
594 si.si_band = ~0L;
595 else
596 si.si_band = band_table[reason - POLL_IN];
597 si.si_fd = fd;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700598 if (!do_send_sig_info(signum, &si, p, group))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 break;
600 /* fall-through: fall back on the old plain SIGIO signal */
601 case 0:
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700602 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604}
605
606void send_sigio(struct fown_struct *fown, int fd, int band)
607{
608 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700609 enum pid_type type;
610 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700611 int group = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700614
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700615 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700616 if (type == PIDTYPE_MAX) {
617 group = 0;
618 type = PIDTYPE_PID;
619 }
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 pid = fown->pid;
622 if (!pid)
623 goto out_unlock_fown;
624
625 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700626 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700627 send_sigio_to_task(p, fown, fd, band, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700628 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 read_unlock(&tasklist_lock);
630 out_unlock_fown:
631 read_unlock(&fown->lock);
632}
633
634static void send_sigurg_to_task(struct task_struct *p,
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700635 struct fown_struct *fown, int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 if (sigio_perm(p, fown, SIGURG))
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700638 do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641int send_sigurg(struct fown_struct *fown)
642{
643 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700644 enum pid_type type;
645 struct pid *pid;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700646 int group = 1;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700647 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 read_lock(&fown->lock);
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700650
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700651 type = fown->pid_type;
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700652 if (type == PIDTYPE_MAX) {
653 group = 0;
654 type = PIDTYPE_PID;
655 }
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 pid = fown->pid;
658 if (!pid)
659 goto out_unlock_fown;
660
661 ret = 1;
662
663 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700664 do_each_pid_task(pid, type, p) {
Peter Zijlstraba0a6c92009-09-23 15:57:03 -0700665 send_sigurg_to_task(p, fown, group);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700666 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 read_unlock(&tasklist_lock);
668 out_unlock_fown:
669 read_unlock(&fown->lock);
670 return ret;
671}
672
Eric Dumazet989a2972010-04-14 09:55:35 +0000673static DEFINE_SPINLOCK(fasync_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800674static struct kmem_cache *fasync_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Eric Dumazet989a2972010-04-14 09:55:35 +0000676static void fasync_free_rcu(struct rcu_head *head)
677{
678 kmem_cache_free(fasync_cache,
679 container_of(head, struct fasync_struct, fa_rcu));
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/*
Linus Torvalds53281b62009-12-16 08:23:37 -0800683 * Remove a fasync entry. If successfully removed, return
684 * positive and clear the FASYNC flag. If no entry exists,
685 * do nothing and return 0.
686 *
687 * NOTE! It is very important that the FASYNC flag always
688 * match the state "is the filp on a fasync list".
689 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400691int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct fasync_struct *fa, **fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int result = 0;
695
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600696 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000697 spin_lock(&fasync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
Linus Torvalds53281b62009-12-16 08:23:37 -0800699 if (fa->fa_file != filp)
700 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000701
702 spin_lock_irq(&fa->fa_lock);
703 fa->fa_file = NULL;
704 spin_unlock_irq(&fa->fa_lock);
705
Linus Torvalds53281b62009-12-16 08:23:37 -0800706 *fp = fa->fa_next;
Eric Dumazet989a2972010-04-14 09:55:35 +0000707 call_rcu(&fa->fa_rcu, fasync_free_rcu);
Jonathan Corbet76398422009-02-01 14:26:59 -0700708 filp->f_flags &= ~FASYNC;
Linus Torvalds53281b62009-12-16 08:23:37 -0800709 result = 1;
710 break;
711 }
Eric Dumazet989a2972010-04-14 09:55:35 +0000712 spin_unlock(&fasync_lock);
Jonathan Corbet4a6a4492009-03-27 12:24:31 -0600713 spin_unlock(&filp->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return result;
715}
716
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400717struct fasync_struct *fasync_alloc(void)
Linus Torvalds53281b62009-12-16 08:23:37 -0800718{
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400719 return kmem_cache_alloc(fasync_cache, GFP_KERNEL);
720}
Linus Torvalds53281b62009-12-16 08:23:37 -0800721
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400722/*
723 * NOTE! This can be used only for unused fasync entries:
724 * entries that actually got inserted on the fasync list
725 * need to be released by rcu - see fasync_remove_entry.
726 */
727void fasync_free(struct fasync_struct *new)
728{
729 kmem_cache_free(fasync_cache, new);
730}
731
732/*
733 * Insert a new entry into the fasync list. Return the pointer to the
734 * old one if we didn't use the new one.
Linus Torvalds55f335a2010-10-27 18:17:02 -0700735 *
736 * NOTE! It is very important that the FASYNC flag always
737 * match the state "is the filp on a fasync list".
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400738 */
739struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
740{
741 struct fasync_struct *fa, **fp;
Linus Torvalds53281b62009-12-16 08:23:37 -0800742
743 spin_lock(&filp->f_lock);
Eric Dumazet989a2972010-04-14 09:55:35 +0000744 spin_lock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800745 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
746 if (fa->fa_file != filp)
747 continue;
Eric Dumazet989a2972010-04-14 09:55:35 +0000748
749 spin_lock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800750 fa->fa_fd = fd;
Eric Dumazet989a2972010-04-14 09:55:35 +0000751 spin_unlock_irq(&fa->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800752 goto out;
753 }
754
Eric Dumazet989a2972010-04-14 09:55:35 +0000755 spin_lock_init(&new->fa_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800756 new->magic = FASYNC_MAGIC;
757 new->fa_file = filp;
758 new->fa_fd = fd;
759 new->fa_next = *fapp;
Eric Dumazet989a2972010-04-14 09:55:35 +0000760 rcu_assign_pointer(*fapp, new);
Linus Torvalds53281b62009-12-16 08:23:37 -0800761 filp->f_flags |= FASYNC;
762
763out:
Eric Dumazet989a2972010-04-14 09:55:35 +0000764 spin_unlock(&fasync_lock);
Linus Torvalds53281b62009-12-16 08:23:37 -0800765 spin_unlock(&filp->f_lock);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400766 return fa;
767}
768
769/*
770 * Add a fasync entry. Return negative on error, positive if
771 * added, and zero if did nothing but change an existing one.
Linus Torvaldsf7347ce2010-10-27 12:38:12 -0400772 */
773static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
774{
775 struct fasync_struct *new;
776
777 new = fasync_alloc();
778 if (!new)
779 return -ENOMEM;
780
781 /*
782 * fasync_insert_entry() returns the old (update) entry if
783 * it existed.
784 *
785 * So free the (unused) new entry and return 0 to let the
786 * caller know that we didn't add any new fasync entries.
787 */
788 if (fasync_insert_entry(fd, filp, fapp, new)) {
789 fasync_free(new);
790 return 0;
791 }
792
793 return 1;
Linus Torvalds53281b62009-12-16 08:23:37 -0800794}
795
796/*
797 * fasync_helper() is used by almost all character device drivers
798 * to set up the fasync queue, and for regular files by the file
799 * lease code. It returns negative on error, 0 if it did no changes
800 * and positive if it added/deleted the entry.
801 */
802int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
803{
804 if (!on)
805 return fasync_remove_entry(filp, fapp);
806 return fasync_add_entry(fd, filp, fapp);
807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809EXPORT_SYMBOL(fasync_helper);
810
Eric Dumazet989a2972010-04-14 09:55:35 +0000811/*
812 * rcu_read_lock() is held
813 */
814static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 while (fa) {
Eric Dumazet989a2972010-04-14 09:55:35 +0000817 struct fown_struct *fown;
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700818 unsigned long flags;
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (fa->magic != FASYNC_MAGIC) {
821 printk(KERN_ERR "kill_fasync: bad magic number in "
822 "fasync_struct!\n");
823 return;
824 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700825 spin_lock_irqsave(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000826 if (fa->fa_file) {
827 fown = &fa->fa_file->f_owner;
828 /* Don't send SIGURG to processes which have not set a
829 queued signum: SIGURG has its own default signalling
830 mechanism. */
831 if (!(sig == SIGURG && fown->signum == 0))
832 send_sigio(fown, fa->fa_fd, band);
833 }
Andrew Mortonf4985dc2010-06-29 15:05:42 -0700834 spin_unlock_irqrestore(&fa->fa_lock, flags);
Eric Dumazet989a2972010-04-14 09:55:35 +0000835 fa = rcu_dereference(fa->fa_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839void kill_fasync(struct fasync_struct **fp, int sig, int band)
840{
841 /* First a quick test without locking: usually
842 * the list is empty.
843 */
844 if (*fp) {
Eric Dumazet989a2972010-04-14 09:55:35 +0000845 rcu_read_lock();
846 kill_fasync_rcu(rcu_dereference(*fp), sig, band);
847 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849}
850EXPORT_SYMBOL(kill_fasync);
851
Wu Fengguang454eedb2010-08-10 18:01:29 -0700852static int __init fcntl_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
James Bottomley3ab04d52010-09-09 16:38:12 -0700854 /*
855 * Please add new bits here to ensure allocation uniqueness.
856 * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY
857 * is defined as O_NONBLOCK on some platforms and not on others.
858 */
Al Viro1abf0c72011-03-13 03:51:11 -0400859 BUILD_BUG_ON(19 - 1 /* for O_RDONLY being 0 */ != HWEIGHT32(
Wu Fengguang454eedb2010-08-10 18:01:29 -0700860 O_RDONLY | O_WRONLY | O_RDWR |
861 O_CREAT | O_EXCL | O_NOCTTY |
James Bottomley3ab04d52010-09-09 16:38:12 -0700862 O_TRUNC | O_APPEND | /* O_NONBLOCK | */
Wu Fengguang454eedb2010-08-10 18:01:29 -0700863 __O_SYNC | O_DSYNC | FASYNC |
864 O_DIRECT | O_LARGEFILE | O_DIRECTORY |
865 O_NOFOLLOW | O_NOATIME | O_CLOEXEC |
Al Viro1abf0c72011-03-13 03:51:11 -0400866 __FMODE_EXEC | O_PATH
Wu Fengguang454eedb2010-08-10 18:01:29 -0700867 ));
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 fasync_cache = kmem_cache_create("fasync_cache",
Paul Mundt20c2df82007-07-20 10:11:58 +0900870 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return 0;
872}
873
Wu Fengguang454eedb2010-08-10 18:01:29 -0700874module_init(fcntl_init)