fs/locks: pass kernel struct flock to fcntl_getlk/setlk
[linux-2.6-block.git] / fs / fcntl.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/fcntl.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <linux/syscalls.h>
8#include <linux/init.h>
9#include <linux/mm.h>
29930025 10#include <linux/sched/task.h>
1da177e4
LT
11#include <linux/fs.h>
12#include <linux/file.h>
9f3acc31 13#include <linux/fdtable.h>
16f7e0fe 14#include <linux/capability.h>
1da177e4 15#include <linux/dnotify.h>
1da177e4
LT
16#include <linux/slab.h>
17#include <linux/module.h>
35f3d14d 18#include <linux/pipe_fs_i.h>
1da177e4
LT
19#include <linux/security.h>
20#include <linux/ptrace.h>
7ed20e1a 21#include <linux/signal.h>
ab2af1f5 22#include <linux/rcupdate.h>
b488893a 23#include <linux/pid_namespace.h>
1d151c33 24#include <linux/user_namespace.h>
40e041a2 25#include <linux/shmem_fs.h>
80f0cce6 26#include <linux/compat.h>
1da177e4
LT
27
28#include <asm/poll.h>
29#include <asm/siginfo.h>
7c0f6ba6 30#include <linux/uaccess.h>
1da177e4 31
76398425 32#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
1da177e4
LT
33
34static int setfl(int fd, struct file * filp, unsigned long arg)
35{
496ad9aa 36 struct inode * inode = file_inode(filp);
1da177e4
LT
37 int error = 0;
38
7d95c8f2 39 /*
40 * O_APPEND cannot be cleared if the file is marked as append-only
41 * and the file is open for write.
42 */
43 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
1da177e4
LT
44 return -EPERM;
45
46 /* O_NOATIME can only be set by the owner or superuser */
47 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
2e149670 48 if (!inode_owner_or_capable(inode))
1da177e4
LT
49 return -EPERM;
50
51 /* required for strict SunOS emulation */
52 if (O_NONBLOCK != O_NDELAY)
53 if (arg & O_NDELAY)
54 arg |= O_NONBLOCK;
55
0dbf5f20 56 /* Pipe packetized mode is controlled by O_DIRECT flag */
45063097 57 if (!S_ISFIFO(inode->i_mode) && (arg & O_DIRECT)) {
1da177e4
LT
58 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
59 !filp->f_mapping->a_ops->direct_IO)
60 return -EINVAL;
61 }
62
72c2d531 63 if (filp->f_op->check_flags)
1da177e4
LT
64 error = filp->f_op->check_flags(arg);
65 if (error)
66 return error;
67
218d11a8 68 /*
76398425 69 * ->fasync() is responsible for setting the FASYNC bit.
218d11a8 70 */
72c2d531 71 if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) {
76398425
JC
72 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
73 if (error < 0)
74 goto out;
60aa4924
JC
75 if (error > 0)
76 error = 0;
1da177e4 77 }
db1dd4d3 78 spin_lock(&filp->f_lock);
1da177e4 79 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
db1dd4d3 80 spin_unlock(&filp->f_lock);
76398425 81
1da177e4 82 out:
1da177e4
LT
83 return error;
84}
85
609d7fa9 86static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
2f38d70f 87 int force)
1da177e4 88{
80e1e823 89 write_lock_irq(&filp->f_owner.lock);
1da177e4 90 if (force || !filp->f_owner.pid) {
609d7fa9
EB
91 put_pid(filp->f_owner.pid);
92 filp->f_owner.pid = get_pid(pid);
93 filp->f_owner.pid_type = type;
2f38d70f
ON
94
95 if (pid) {
96 const struct cred *cred = current_cred();
97 filp->f_owner.uid = cred->uid;
98 filp->f_owner.euid = cred->euid;
99 }
1da177e4 100 }
80e1e823 101 write_unlock_irq(&filp->f_owner.lock);
1da177e4
LT
102}
103
e0b93edd 104void __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
609d7fa9 105 int force)
1da177e4 106{
e0b93edd 107 security_file_set_fowner(filp);
2f38d70f 108 f_modown(filp, pid, type, force);
1da177e4 109}
609d7fa9 110EXPORT_SYMBOL(__f_setown);
1da177e4 111
e0b93edd 112void f_setown(struct file *filp, unsigned long arg, int force)
609d7fa9
EB
113{
114 enum pid_type type;
115 struct pid *pid;
116 int who = arg;
609d7fa9
EB
117 type = PIDTYPE_PID;
118 if (who < 0) {
119 type = PIDTYPE_PGID;
120 who = -who;
121 }
122 rcu_read_lock();
b488893a 123 pid = find_vpid(who);
e0b93edd 124 __f_setown(filp, pid, type, force);
609d7fa9 125 rcu_read_unlock();
609d7fa9 126}
1da177e4
LT
127EXPORT_SYMBOL(f_setown);
128
129void f_delown(struct file *filp)
130{
2f38d70f 131 f_modown(filp, NULL, PIDTYPE_PID, 1);
609d7fa9
EB
132}
133
134pid_t f_getown(struct file *filp)
135{
136 pid_t pid;
43fa1adb 137 read_lock(&filp->f_owner.lock);
6c5f3e7b 138 pid = pid_vnr(filp->f_owner.pid);
609d7fa9
EB
139 if (filp->f_owner.pid_type == PIDTYPE_PGID)
140 pid = -pid;
43fa1adb 141 read_unlock(&filp->f_owner.lock);
609d7fa9 142 return pid;
1da177e4
LT
143}
144
ba0a6c9f
PZ
145static int f_setown_ex(struct file *filp, unsigned long arg)
146{
63784dd0 147 struct f_owner_ex __user *owner_p = (void __user *)arg;
ba0a6c9f
PZ
148 struct f_owner_ex owner;
149 struct pid *pid;
150 int type;
151 int ret;
152
153 ret = copy_from_user(&owner, owner_p, sizeof(owner));
154 if (ret)
5b54470d 155 return -EFAULT;
ba0a6c9f
PZ
156
157 switch (owner.type) {
158 case F_OWNER_TID:
159 type = PIDTYPE_MAX;
160 break;
161
162 case F_OWNER_PID:
163 type = PIDTYPE_PID;
164 break;
165
978b4053 166 case F_OWNER_PGRP:
ba0a6c9f
PZ
167 type = PIDTYPE_PGID;
168 break;
169
170 default:
171 return -EINVAL;
172 }
173
174 rcu_read_lock();
175 pid = find_vpid(owner.pid);
176 if (owner.pid && !pid)
177 ret = -ESRCH;
178 else
e0b93edd 179 __f_setown(filp, pid, type, 1);
ba0a6c9f
PZ
180 rcu_read_unlock();
181
182 return ret;
183}
184
185static int f_getown_ex(struct file *filp, unsigned long arg)
186{
63784dd0 187 struct f_owner_ex __user *owner_p = (void __user *)arg;
ba0a6c9f
PZ
188 struct f_owner_ex owner;
189 int ret = 0;
190
191 read_lock(&filp->f_owner.lock);
192 owner.pid = pid_vnr(filp->f_owner.pid);
193 switch (filp->f_owner.pid_type) {
194 case PIDTYPE_MAX:
195 owner.type = F_OWNER_TID;
196 break;
197
198 case PIDTYPE_PID:
199 owner.type = F_OWNER_PID;
200 break;
201
202 case PIDTYPE_PGID:
978b4053 203 owner.type = F_OWNER_PGRP;
ba0a6c9f
PZ
204 break;
205
206 default:
207 WARN_ON(1);
208 ret = -EINVAL;
209 break;
210 }
211 read_unlock(&filp->f_owner.lock);
212
5b54470d 213 if (!ret) {
ba0a6c9f 214 ret = copy_to_user(owner_p, &owner, sizeof(owner));
5b54470d
DC
215 if (ret)
216 ret = -EFAULT;
217 }
ba0a6c9f
PZ
218 return ret;
219}
220
1d151c33
CG
221#ifdef CONFIG_CHECKPOINT_RESTORE
222static int f_getowner_uids(struct file *filp, unsigned long arg)
223{
224 struct user_namespace *user_ns = current_user_ns();
63784dd0 225 uid_t __user *dst = (void __user *)arg;
1d151c33
CG
226 uid_t src[2];
227 int err;
228
229 read_lock(&filp->f_owner.lock);
230 src[0] = from_kuid(user_ns, filp->f_owner.uid);
231 src[1] = from_kuid(user_ns, filp->f_owner.euid);
232 read_unlock(&filp->f_owner.lock);
233
234 err = put_user(src[0], &dst[0]);
235 err |= put_user(src[1], &dst[1]);
236
237 return err;
238}
239#else
240static int f_getowner_uids(struct file *filp, unsigned long arg)
241{
242 return -EINVAL;
243}
244#endif
245
1da177e4
LT
246static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
247 struct file *filp)
248{
a75d30c7
CH
249 void __user *argp = (void __user *)arg;
250 struct flock flock;
1da177e4
LT
251 long err = -EINVAL;
252
253 switch (cmd) {
254 case F_DUPFD:
fe17f22d
AV
255 err = f_dupfd(arg, filp, 0);
256 break;
22d2b35b 257 case F_DUPFD_CLOEXEC:
12197718 258 err = f_dupfd(arg, filp, O_CLOEXEC);
1da177e4
LT
259 break;
260 case F_GETFD:
261 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
262 break;
263 case F_SETFD:
264 err = 0;
265 set_close_on_exec(fd, arg & FD_CLOEXEC);
266 break;
267 case F_GETFL:
268 err = filp->f_flags;
269 break;
270 case F_SETFL:
271 err = setfl(fd, filp, arg);
272 break;
5d50ffd7
JL
273#if BITS_PER_LONG != 32
274 /* 32-bit arches must use fcntl64() */
0d3f7a2d 275 case F_OFD_GETLK:
5d50ffd7 276#endif
1da177e4 277 case F_GETLK:
a75d30c7
CH
278 if (copy_from_user(&flock, argp, sizeof(flock)))
279 return -EFAULT;
280 err = fcntl_getlk(filp, cmd, &flock);
281 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
282 return -EFAULT;
1da177e4 283 break;
5d50ffd7
JL
284#if BITS_PER_LONG != 32
285 /* 32-bit arches must use fcntl64() */
0d3f7a2d
JL
286 case F_OFD_SETLK:
287 case F_OFD_SETLKW:
5d50ffd7
JL
288#endif
289 /* Fallthrough */
1da177e4
LT
290 case F_SETLK:
291 case F_SETLKW:
a75d30c7
CH
292 if (copy_from_user(&flock, argp, sizeof(flock)))
293 return -EFAULT;
294 err = fcntl_setlk(fd, filp, cmd, &flock);
1da177e4
LT
295 break;
296 case F_GETOWN:
297 /*
298 * XXX If f_owner is a process group, the
299 * negative return value will get converted
300 * into an error. Oops. If we keep the
301 * current syscall conventions, the only way
302 * to fix this will be in libc.
303 */
609d7fa9 304 err = f_getown(filp);
1da177e4
LT
305 force_successful_syscall_return();
306 break;
307 case F_SETOWN:
e0b93edd
JL
308 f_setown(filp, arg, 1);
309 err = 0;
1da177e4 310 break;
ba0a6c9f
PZ
311 case F_GETOWN_EX:
312 err = f_getown_ex(filp, arg);
313 break;
314 case F_SETOWN_EX:
315 err = f_setown_ex(filp, arg);
316 break;
1d151c33
CG
317 case F_GETOWNER_UIDS:
318 err = f_getowner_uids(filp, arg);
319 break;
1da177e4
LT
320 case F_GETSIG:
321 err = filp->f_owner.signum;
322 break;
323 case F_SETSIG:
324 /* arg == 0 restores default behaviour. */
7ed20e1a 325 if (!valid_signal(arg)) {
1da177e4
LT
326 break;
327 }
328 err = 0;
329 filp->f_owner.signum = arg;
330 break;
331 case F_GETLEASE:
332 err = fcntl_getlease(filp);
333 break;
334 case F_SETLEASE:
335 err = fcntl_setlease(fd, filp, arg);
336 break;
337 case F_NOTIFY:
338 err = fcntl_dirnotify(fd, filp, arg);
339 break;
35f3d14d
JA
340 case F_SETPIPE_SZ:
341 case F_GETPIPE_SZ:
342 err = pipe_fcntl(filp, cmd, arg);
343 break;
40e041a2
DH
344 case F_ADD_SEALS:
345 case F_GET_SEALS:
346 err = shmem_fcntl(filp, cmd, arg);
347 break;
1da177e4
LT
348 default:
349 break;
350 }
351 return err;
352}
353
1abf0c71
AV
354static int check_fcntl_cmd(unsigned cmd)
355{
356 switch (cmd) {
357 case F_DUPFD:
358 case F_DUPFD_CLOEXEC:
359 case F_GETFD:
360 case F_SETFD:
361 case F_GETFL:
362 return 1;
363 }
364 return 0;
365}
366
a26eab24 367SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
1da177e4 368{
2903ff01 369 struct fd f = fdget_raw(fd);
1da177e4
LT
370 long err = -EBADF;
371
2903ff01 372 if (!f.file)
1da177e4
LT
373 goto out;
374
2903ff01 375 if (unlikely(f.file->f_mode & FMODE_PATH)) {
545ec2c7
AV
376 if (!check_fcntl_cmd(cmd))
377 goto out1;
1abf0c71
AV
378 }
379
2903ff01 380 err = security_file_fcntl(f.file, cmd, arg);
545ec2c7 381 if (!err)
2903ff01 382 err = do_fcntl(fd, cmd, arg, f.file);
1da177e4 383
545ec2c7 384out1:
2903ff01 385 fdput(f);
1da177e4
LT
386out:
387 return err;
388}
389
390#if BITS_PER_LONG == 32
a26eab24
HC
391SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
392 unsigned long, arg)
1da177e4 393{
a75d30c7 394 void __user *argp = (void __user *)arg;
2903ff01 395 struct fd f = fdget_raw(fd);
a75d30c7 396 struct flock64 flock;
545ec2c7 397 long err = -EBADF;
1da177e4 398
2903ff01 399 if (!f.file)
1da177e4
LT
400 goto out;
401
2903ff01 402 if (unlikely(f.file->f_mode & FMODE_PATH)) {
545ec2c7
AV
403 if (!check_fcntl_cmd(cmd))
404 goto out1;
1abf0c71
AV
405 }
406
2903ff01 407 err = security_file_fcntl(f.file, cmd, arg);
545ec2c7
AV
408 if (err)
409 goto out1;
1da177e4
LT
410
411 switch (cmd) {
5d50ffd7 412 case F_GETLK64:
0d3f7a2d 413 case F_OFD_GETLK:
a75d30c7
CH
414 err = -EFAULT;
415 if (copy_from_user(&flock, argp, sizeof(flock)))
416 break;
417 err = fcntl_getlk64(f.file, cmd, &flock);
418 if (!err && copy_to_user(argp, &flock, sizeof(flock)))
419 err = -EFAULT;
5d50ffd7
JL
420 break;
421 case F_SETLK64:
422 case F_SETLKW64:
0d3f7a2d
JL
423 case F_OFD_SETLK:
424 case F_OFD_SETLKW:
a75d30c7
CH
425 err = -EFAULT;
426 if (copy_from_user(&flock, argp, sizeof(flock)))
427 break;
428 err = fcntl_setlk64(fd, f.file, cmd, &flock);
5d50ffd7
JL
429 break;
430 default:
431 err = do_fcntl(fd, cmd, arg, f.file);
432 break;
1da177e4 433 }
545ec2c7 434out1:
2903ff01 435 fdput(f);
1da177e4
LT
436out:
437 return err;
438}
439#endif
440
80f0cce6
AV
441#ifdef CONFIG_COMPAT
442static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
443{
444 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
445 __get_user(kfl->l_type, &ufl->l_type) ||
446 __get_user(kfl->l_whence, &ufl->l_whence) ||
447 __get_user(kfl->l_start, &ufl->l_start) ||
448 __get_user(kfl->l_len, &ufl->l_len) ||
449 __get_user(kfl->l_pid, &ufl->l_pid))
450 return -EFAULT;
451 return 0;
452}
453
454static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
455{
456 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
457 __put_user(kfl->l_type, &ufl->l_type) ||
458 __put_user(kfl->l_whence, &ufl->l_whence) ||
459 __put_user(kfl->l_start, &ufl->l_start) ||
460 __put_user(kfl->l_len, &ufl->l_len) ||
461 __put_user(kfl->l_pid, &ufl->l_pid))
462 return -EFAULT;
463 return 0;
464}
465
466#ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
467static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
468{
469 if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
470 __get_user(kfl->l_type, &ufl->l_type) ||
471 __get_user(kfl->l_whence, &ufl->l_whence) ||
472 __get_user(kfl->l_start, &ufl->l_start) ||
473 __get_user(kfl->l_len, &ufl->l_len) ||
474 __get_user(kfl->l_pid, &ufl->l_pid))
475 return -EFAULT;
476 return 0;
477}
478#endif
479
480#ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
481static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
482{
483 if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
484 __put_user(kfl->l_type, &ufl->l_type) ||
485 __put_user(kfl->l_whence, &ufl->l_whence) ||
486 __put_user(kfl->l_start, &ufl->l_start) ||
487 __put_user(kfl->l_len, &ufl->l_len) ||
488 __put_user(kfl->l_pid, &ufl->l_pid))
489 return -EFAULT;
490 return 0;
491}
492#endif
493
494static unsigned int
495convert_fcntl_cmd(unsigned int cmd)
496{
497 switch (cmd) {
498 case F_GETLK64:
499 return F_GETLK;
500 case F_SETLK64:
501 return F_SETLK;
502 case F_SETLKW64:
503 return F_SETLKW;
504 }
505
506 return cmd;
507}
508
509COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd,
510 compat_ulong_t, arg)
511{
512 mm_segment_t old_fs;
513 struct flock f;
514 long ret;
515 unsigned int conv_cmd;
516
517 switch (cmd) {
518 case F_GETLK:
519 case F_SETLK:
520 case F_SETLKW:
521 ret = get_compat_flock(&f, compat_ptr(arg));
522 if (ret != 0)
523 break;
524 old_fs = get_fs();
525 set_fs(KERNEL_DS);
526 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
527 set_fs(old_fs);
528 if (cmd == F_GETLK && ret == 0) {
529 /* GETLK was successful and we need to return the data...
530 * but it needs to fit in the compat structure.
531 * l_start shouldn't be too big, unless the original
532 * start + end is greater than COMPAT_OFF_T_MAX, in which
533 * case the app was asking for trouble, so we return
534 * -EOVERFLOW in that case.
535 * l_len could be too big, in which case we just truncate it,
536 * and only allow the app to see that part of the conflicting
537 * lock that might make sense to it anyway
538 */
539
540 if (f.l_start > COMPAT_OFF_T_MAX)
541 ret = -EOVERFLOW;
542 if (f.l_len > COMPAT_OFF_T_MAX)
543 f.l_len = COMPAT_OFF_T_MAX;
544 if (ret == 0)
545 ret = put_compat_flock(&f, compat_ptr(arg));
546 }
547 break;
548
549 case F_GETLK64:
550 case F_SETLK64:
551 case F_SETLKW64:
552 case F_OFD_GETLK:
553 case F_OFD_SETLK:
554 case F_OFD_SETLKW:
555 ret = get_compat_flock64(&f, compat_ptr(arg));
556 if (ret != 0)
557 break;
558 old_fs = get_fs();
559 set_fs(KERNEL_DS);
560 conv_cmd = convert_fcntl_cmd(cmd);
561 ret = sys_fcntl(fd, conv_cmd, (unsigned long)&f);
562 set_fs(old_fs);
563 if ((conv_cmd == F_GETLK || conv_cmd == F_OFD_GETLK) && ret == 0) {
564 /* need to return lock information - see above for commentary */
565 if (f.l_start > COMPAT_LOFF_T_MAX)
566 ret = -EOVERFLOW;
567 if (f.l_len > COMPAT_LOFF_T_MAX)
568 f.l_len = COMPAT_LOFF_T_MAX;
569 if (ret == 0)
570 ret = put_compat_flock64(&f, compat_ptr(arg));
571 }
572 break;
573
574 default:
575 ret = sys_fcntl(fd, cmd, arg);
576 break;
577 }
578 return ret;
579}
580
581COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd,
582 compat_ulong_t, arg)
583{
584 switch (cmd) {
585 case F_GETLK64:
586 case F_SETLK64:
587 case F_SETLKW64:
588 case F_OFD_GETLK:
589 case F_OFD_SETLK:
590 case F_OFD_SETLKW:
591 return -EINVAL;
592 }
593 return compat_sys_fcntl64(fd, cmd, arg);
594}
595#endif
596
1da177e4
LT
597/* Table to convert sigio signal codes into poll band bitmaps */
598
fa3536cc 599static const long band_table[NSIGPOLL] = {
1da177e4
LT
600 POLLIN | POLLRDNORM, /* POLL_IN */
601 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
602 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
603 POLLERR, /* POLL_ERR */
604 POLLPRI | POLLRDBAND, /* POLL_PRI */
605 POLLHUP | POLLERR /* POLL_HUP */
606};
607
608static inline int sigio_perm(struct task_struct *p,
609 struct fown_struct *fown, int sig)
610{
c69e8d9c
DH
611 const struct cred *cred;
612 int ret;
613
614 rcu_read_lock();
615 cred = __task_cred(p);
8e96e3b7
EB
616 ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) ||
617 uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) ||
618 uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) &&
c69e8d9c
DH
619 !security_file_send_sigiotask(p, fown, sig));
620 rcu_read_unlock();
621 return ret;
1da177e4
LT
622}
623
624static void send_sigio_to_task(struct task_struct *p,
8eeee4e2 625 struct fown_struct *fown,
ba0a6c9f 626 int fd, int reason, int group)
1da177e4 627{
8eeee4e2
ON
628 /*
629 * F_SETSIG can change ->signum lockless in parallel, make
630 * sure we read it once and use the same value throughout.
631 */
632 int signum = ACCESS_ONCE(fown->signum);
633
634 if (!sigio_perm(p, fown, signum))
1da177e4
LT
635 return;
636
8eeee4e2 637 switch (signum) {
1da177e4
LT
638 siginfo_t si;
639 default:
640 /* Queue a rt signal with the appropriate fd as its
641 value. We use SI_SIGIO as the source, not
642 SI_KERNEL, since kernel signals always get
643 delivered even if we can't queue. Failure to
644 queue in this case _should_ be reported; we fall
645 back to SIGIO in that case. --sct */
8eeee4e2 646 si.si_signo = signum;
1da177e4
LT
647 si.si_errno = 0;
648 si.si_code = reason;
649 /* Make sure we are called with one of the POLL_*
650 reasons, otherwise we could leak kernel stack into
651 userspace. */
f6298aab 652 BUG_ON((reason & __SI_MASK) != __SI_POLL);
1da177e4
LT
653 if (reason - POLL_IN >= NSIGPOLL)
654 si.si_band = ~0L;
655 else
656 si.si_band = band_table[reason - POLL_IN];
657 si.si_fd = fd;
ba0a6c9f 658 if (!do_send_sig_info(signum, &si, p, group))
1da177e4
LT
659 break;
660 /* fall-through: fall back on the old plain SIGIO signal */
661 case 0:
ba0a6c9f 662 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group);
1da177e4
LT
663 }
664}
665
666void send_sigio(struct fown_struct *fown, int fd, int band)
667{
668 struct task_struct *p;
609d7fa9
EB
669 enum pid_type type;
670 struct pid *pid;
ba0a6c9f 671 int group = 1;
1da177e4
LT
672
673 read_lock(&fown->lock);
ba0a6c9f 674
609d7fa9 675 type = fown->pid_type;
ba0a6c9f
PZ
676 if (type == PIDTYPE_MAX) {
677 group = 0;
678 type = PIDTYPE_PID;
679 }
680
1da177e4
LT
681 pid = fown->pid;
682 if (!pid)
683 goto out_unlock_fown;
684
685 read_lock(&tasklist_lock);
609d7fa9 686 do_each_pid_task(pid, type, p) {
ba0a6c9f 687 send_sigio_to_task(p, fown, fd, band, group);
609d7fa9 688 } while_each_pid_task(pid, type, p);
1da177e4
LT
689 read_unlock(&tasklist_lock);
690 out_unlock_fown:
691 read_unlock(&fown->lock);
692}
693
694static void send_sigurg_to_task(struct task_struct *p,
ba0a6c9f 695 struct fown_struct *fown, int group)
1da177e4
LT
696{
697 if (sigio_perm(p, fown, SIGURG))
ba0a6c9f 698 do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group);
1da177e4
LT
699}
700
701int send_sigurg(struct fown_struct *fown)
702{
703 struct task_struct *p;
609d7fa9
EB
704 enum pid_type type;
705 struct pid *pid;
ba0a6c9f 706 int group = 1;
609d7fa9 707 int ret = 0;
1da177e4
LT
708
709 read_lock(&fown->lock);
ba0a6c9f 710
609d7fa9 711 type = fown->pid_type;
ba0a6c9f
PZ
712 if (type == PIDTYPE_MAX) {
713 group = 0;
714 type = PIDTYPE_PID;
715 }
716
1da177e4
LT
717 pid = fown->pid;
718 if (!pid)
719 goto out_unlock_fown;
720
721 ret = 1;
722
723 read_lock(&tasklist_lock);
609d7fa9 724 do_each_pid_task(pid, type, p) {
ba0a6c9f 725 send_sigurg_to_task(p, fown, group);
609d7fa9 726 } while_each_pid_task(pid, type, p);
1da177e4
LT
727 read_unlock(&tasklist_lock);
728 out_unlock_fown:
729 read_unlock(&fown->lock);
730 return ret;
731}
732
989a2979 733static DEFINE_SPINLOCK(fasync_lock);
e18b890b 734static struct kmem_cache *fasync_cache __read_mostly;
1da177e4 735
989a2979
ED
736static void fasync_free_rcu(struct rcu_head *head)
737{
738 kmem_cache_free(fasync_cache,
739 container_of(head, struct fasync_struct, fa_rcu));
740}
741
1da177e4 742/*
53281b6d
LT
743 * Remove a fasync entry. If successfully removed, return
744 * positive and clear the FASYNC flag. If no entry exists,
745 * do nothing and return 0.
746 *
747 * NOTE! It is very important that the FASYNC flag always
748 * match the state "is the filp on a fasync list".
749 *
1da177e4 750 */
f7347ce4 751int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
1da177e4
LT
752{
753 struct fasync_struct *fa, **fp;
1da177e4
LT
754 int result = 0;
755
53281b6d 756 spin_lock(&filp->f_lock);
989a2979 757 spin_lock(&fasync_lock);
53281b6d
LT
758 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
759 if (fa->fa_file != filp)
760 continue;
989a2979
ED
761
762 spin_lock_irq(&fa->fa_lock);
763 fa->fa_file = NULL;
764 spin_unlock_irq(&fa->fa_lock);
765
53281b6d 766 *fp = fa->fa_next;
989a2979 767 call_rcu(&fa->fa_rcu, fasync_free_rcu);
53281b6d
LT
768 filp->f_flags &= ~FASYNC;
769 result = 1;
770 break;
1da177e4 771 }
989a2979 772 spin_unlock(&fasync_lock);
53281b6d
LT
773 spin_unlock(&filp->f_lock);
774 return result;
775}
776
f7347ce4
LT
777struct fasync_struct *fasync_alloc(void)
778{
779 return kmem_cache_alloc(fasync_cache, GFP_KERNEL);
780}
781
53281b6d 782/*
f7347ce4
LT
783 * NOTE! This can be used only for unused fasync entries:
784 * entries that actually got inserted on the fasync list
785 * need to be released by rcu - see fasync_remove_entry.
53281b6d 786 */
f7347ce4 787void fasync_free(struct fasync_struct *new)
53281b6d 788{
f7347ce4
LT
789 kmem_cache_free(fasync_cache, new);
790}
53281b6d 791
f7347ce4
LT
792/*
793 * Insert a new entry into the fasync list. Return the pointer to the
794 * old one if we didn't use the new one.
55f335a8
LT
795 *
796 * NOTE! It is very important that the FASYNC flag always
797 * match the state "is the filp on a fasync list".
f7347ce4
LT
798 */
799struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
800{
801 struct fasync_struct *fa, **fp;
4a6a4499 802
4a6a4499 803 spin_lock(&filp->f_lock);
989a2979 804 spin_lock(&fasync_lock);
1da177e4 805 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
53281b6d
LT
806 if (fa->fa_file != filp)
807 continue;
989a2979
ED
808
809 spin_lock_irq(&fa->fa_lock);
53281b6d 810 fa->fa_fd = fd;
989a2979 811 spin_unlock_irq(&fa->fa_lock);
53281b6d 812 goto out;
1da177e4
LT
813 }
814
989a2979 815 spin_lock_init(&new->fa_lock);
53281b6d
LT
816 new->magic = FASYNC_MAGIC;
817 new->fa_file = filp;
818 new->fa_fd = fd;
819 new->fa_next = *fapp;
989a2979 820 rcu_assign_pointer(*fapp, new);
53281b6d
LT
821 filp->f_flags |= FASYNC;
822
1da177e4 823out:
989a2979 824 spin_unlock(&fasync_lock);
4a6a4499 825 spin_unlock(&filp->f_lock);
f7347ce4
LT
826 return fa;
827}
828
829/*
830 * Add a fasync entry. Return negative on error, positive if
831 * added, and zero if did nothing but change an existing one.
f7347ce4
LT
832 */
833static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
834{
835 struct fasync_struct *new;
836
837 new = fasync_alloc();
838 if (!new)
839 return -ENOMEM;
840
841 /*
842 * fasync_insert_entry() returns the old (update) entry if
843 * it existed.
844 *
845 * So free the (unused) new entry and return 0 to let the
846 * caller know that we didn't add any new fasync entries.
847 */
848 if (fasync_insert_entry(fd, filp, fapp, new)) {
849 fasync_free(new);
850 return 0;
851 }
852
853 return 1;
1da177e4
LT
854}
855
53281b6d
LT
856/*
857 * fasync_helper() is used by almost all character device drivers
858 * to set up the fasync queue, and for regular files by the file
859 * lease code. It returns negative on error, 0 if it did no changes
860 * and positive if it added/deleted the entry.
861 */
862int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
863{
864 if (!on)
865 return fasync_remove_entry(filp, fapp);
866 return fasync_add_entry(fd, filp, fapp);
867}
868
1da177e4
LT
869EXPORT_SYMBOL(fasync_helper);
870
989a2979
ED
871/*
872 * rcu_read_lock() is held
873 */
874static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band)
1da177e4
LT
875{
876 while (fa) {
989a2979 877 struct fown_struct *fown;
f4985dc7
AM
878 unsigned long flags;
879
1da177e4
LT
880 if (fa->magic != FASYNC_MAGIC) {
881 printk(KERN_ERR "kill_fasync: bad magic number in "
882 "fasync_struct!\n");
883 return;
884 }
f4985dc7 885 spin_lock_irqsave(&fa->fa_lock, flags);
989a2979
ED
886 if (fa->fa_file) {
887 fown = &fa->fa_file->f_owner;
888 /* Don't send SIGURG to processes which have not set a
889 queued signum: SIGURG has its own default signalling
890 mechanism. */
891 if (!(sig == SIGURG && fown->signum == 0))
892 send_sigio(fown, fa->fa_fd, band);
893 }
f4985dc7 894 spin_unlock_irqrestore(&fa->fa_lock, flags);
989a2979 895 fa = rcu_dereference(fa->fa_next);
1da177e4
LT
896 }
897}
898
1da177e4
LT
899void kill_fasync(struct fasync_struct **fp, int sig, int band)
900{
901 /* First a quick test without locking: usually
902 * the list is empty.
903 */
904 if (*fp) {
989a2979
ED
905 rcu_read_lock();
906 kill_fasync_rcu(rcu_dereference(*fp), sig, band);
907 rcu_read_unlock();
1da177e4
LT
908 }
909}
910EXPORT_SYMBOL(kill_fasync);
911
454eedb8 912static int __init fcntl_init(void)
1da177e4 913{
3ab04d5c
JB
914 /*
915 * Please add new bits here to ensure allocation uniqueness.
916 * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY
917 * is defined as O_NONBLOCK on some platforms and not on others.
918 */
80f18379
CH
919 BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ !=
920 HWEIGHT32(
921 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) |
922 __FMODE_EXEC | __FMODE_NONOTIFY));
454eedb8 923
1da177e4 924 fasync_cache = kmem_cache_create("fasync_cache",
20c2df83 925 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
1da177e4
LT
926 return 0;
927}
928
454eedb8 929module_init(fcntl_init)