blob: 9679fcbdeaa0b7440992db5baec1698e90704588 [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>
17#include <linux/security.h>
18#include <linux/ptrace.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070019#include <linux/signal.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070020#include <linux/rcupdate.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070021#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/poll.h>
24#include <asm/siginfo.h>
25#include <asm/uaccess.h>
26
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -080027void set_close_on_exec(unsigned int fd, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070030 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -070032 fdt = files_fdtable(files);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 if (flag)
Dipankar Sarmabadf1662005-09-09 13:04:10 -070034 FD_SET(fd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 else
Dipankar Sarmabadf1662005-09-09 13:04:10 -070036 FD_CLR(fd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 spin_unlock(&files->file_lock);
38}
39
Arjan van de Ven858119e2006-01-14 13:20:43 -080040static int get_close_on_exec(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070043 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 int res;
Dipankar Sarmab8359962005-09-09 13:04:14 -070045 rcu_read_lock();
Dipankar Sarmabadf1662005-09-09 13:04:10 -070046 fdt = files_fdtable(files);
47 res = FD_ISSET(fd, fdt->close_on_exec);
Dipankar Sarmab8359962005-09-09 13:04:14 -070048 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 return res;
50}
51
52/*
53 * locate_fd finds a free file descriptor in the open_fds fdset,
54 * expanding the fd arrays if necessary. Must be called with the
55 * file_lock held for write.
56 */
57
Al Virof8f95702008-04-23 20:38:10 -040058static int locate_fd(unsigned int orig_start, int cloexec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Al Virof8f95702008-04-23 20:38:10 -040060 struct files_struct *files = current->files;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 unsigned int newfd;
62 unsigned int start;
63 int error;
Dipankar Sarmabadf1662005-09-09 13:04:10 -070064 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Al Virof8f95702008-04-23 20:38:10 -040066 spin_lock(&files->file_lock);
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 error = -EINVAL;
69 if (orig_start >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
70 goto out;
71
72repeat:
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070073 fdt = files_fdtable(files);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /*
75 * Someone might have closed fd's in the range
Dipankar Sarmabadf1662005-09-09 13:04:10 -070076 * orig_start..fdt->next_fd
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
78 start = orig_start;
Eric Dumazet0c9e63f2006-03-23 03:00:12 -080079 if (start < files->next_fd)
80 start = files->next_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 newfd = start;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -080083 if (start < fdt->max_fds)
Dipankar Sarmabadf1662005-09-09 13:04:10 -070084 newfd = find_next_zero_bit(fdt->open_fds->fds_bits,
Vadim Lobanovbbea9f62006-12-10 02:21:12 -080085 fdt->max_fds, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 error = -EMFILE;
88 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
89 goto out;
90
91 error = expand_files(files, newfd);
92 if (error < 0)
93 goto out;
94
95 /*
96 * If we needed to expand the fs array we
97 * might have blocked - try again.
98 */
99 if (error)
100 goto repeat;
101
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800102 if (start <= files->next_fd)
103 files->next_fd = newfd + 1;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700104
Al Virof8f95702008-04-23 20:38:10 -0400105 FD_SET(newfd, fdt->open_fds);
106 if (cloexec)
107 FD_SET(newfd, fdt->close_on_exec);
108 else
109 FD_CLR(newfd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 error = newfd;
Al Virof8f95702008-04-23 20:38:10 -0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112out:
Al Virof8f95702008-04-23 20:38:10 -0400113 spin_unlock(&files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return error;
115}
116
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700117static int dupfd(struct file *file, unsigned int start, int cloexec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Al Virof8f95702008-04-23 20:38:10 -0400119 int fd = locate_fd(start, cloexec);
120 if (fd >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 fd_install(fd, file);
Al Virof8f95702008-04-23 20:38:10 -0400122 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 return fd;
126}
127
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700128asmlinkage long sys_dup3(unsigned int oldfd, unsigned int newfd, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 int err = -EBADF;
131 struct file * file, *tofree;
132 struct files_struct * files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700133 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700135 if ((flags & ~O_CLOEXEC) != 0)
136 return -EINVAL;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 spin_lock(&files->file_lock);
139 if (!(file = fcheck(oldfd)))
140 goto out_unlock;
141 err = newfd;
142 if (newfd == oldfd)
143 goto out_unlock;
144 err = -EBADF;
145 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
146 goto out_unlock;
147 get_file(file); /* We are now finished with oldfd */
148
149 err = expand_files(files, newfd);
150 if (err < 0)
151 goto out_fput;
152
153 /* To avoid races with open() and dup(), we will mark the fd as
154 * in-use in the open-file bitmap throughout the entire dup2()
155 * process. This is quite safe: do_close() uses the fd array
156 * entry, not the bitmap, to decide what work needs to be
157 * done. --sct */
158 /* Doesn't work. open() might be there first. --AV */
159
160 /* Yes. It's a race. In user space. Nothing sane to do */
161 err = -EBUSY;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700162 fdt = files_fdtable(files);
163 tofree = fdt->fd[newfd];
164 if (!tofree && FD_ISSET(newfd, fdt->open_fds))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 goto out_fput;
166
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700167 rcu_assign_pointer(fdt->fd[newfd], file);
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700168 FD_SET(newfd, fdt->open_fds);
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700169 if (flags & O_CLOEXEC)
170 FD_SET(newfd, fdt->close_on_exec);
171 else
172 FD_CLR(newfd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 spin_unlock(&files->file_lock);
174
175 if (tofree)
176 filp_close(tofree, files);
177 err = newfd;
178out:
179 return err;
180out_unlock:
181 spin_unlock(&files->file_lock);
182 goto out;
183
184out_fput:
185 spin_unlock(&files->file_lock);
186 fput(file);
187 goto out;
188}
189
Ulrich Drepper336dd1f2008-07-23 21:29:29 -0700190asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
191{
192 return sys_dup3(oldfd, newfd, 0);
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195asmlinkage long sys_dup(unsigned int fildes)
196{
197 int ret = -EBADF;
198 struct file * file = fget(fildes);
199
200 if (file)
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700201 ret = dupfd(file, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return ret;
203}
204
205#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
206
207static int setfl(int fd, struct file * filp, unsigned long arg)
208{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800209 struct inode * inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int error = 0;
211
dean gaudet7d95c8f2006-02-03 03:04:30 -0800212 /*
213 * O_APPEND cannot be cleared if the file is marked as append-only
214 * and the file is open for write.
215 */
216 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -EPERM;
218
219 /* O_NOATIME can only be set by the owner or superuser */
220 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
Satyam Sharma3bd858a2007-07-17 15:00:08 +0530221 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return -EPERM;
223
224 /* required for strict SunOS emulation */
225 if (O_NONBLOCK != O_NDELAY)
226 if (arg & O_NDELAY)
227 arg |= O_NONBLOCK;
228
229 if (arg & O_DIRECT) {
230 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
231 !filp->f_mapping->a_ops->direct_IO)
232 return -EINVAL;
233 }
234
235 if (filp->f_op && filp->f_op->check_flags)
236 error = filp->f_op->check_flags(arg);
237 if (error)
238 return error;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if ((arg ^ filp->f_flags) & FASYNC) {
241 if (filp->f_op && filp->f_op->fasync) {
242 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
243 if (error < 0)
244 goto out;
245 }
246 }
247
248 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
249 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return error;
251}
252
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700253static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 uid_t uid, uid_t euid, int force)
255{
256 write_lock_irq(&filp->f_owner.lock);
257 if (force || !filp->f_owner.pid) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700258 put_pid(filp->f_owner.pid);
259 filp->f_owner.pid = get_pid(pid);
260 filp->f_owner.pid_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 filp->f_owner.uid = uid;
262 filp->f_owner.euid = euid;
263 }
264 write_unlock_irq(&filp->f_owner.lock);
265}
266
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700267int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
268 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 int err;
271
272 err = security_file_set_fowner(filp);
273 if (err)
274 return err;
275
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700276 f_modown(filp, pid, type, current->uid, current->euid, force);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278}
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700279EXPORT_SYMBOL(__f_setown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700281int f_setown(struct file *filp, unsigned long arg, int force)
282{
283 enum pid_type type;
284 struct pid *pid;
285 int who = arg;
286 int result;
287 type = PIDTYPE_PID;
288 if (who < 0) {
289 type = PIDTYPE_PGID;
290 who = -who;
291 }
292 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700293 pid = find_vpid(who);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700294 result = __f_setown(filp, pid, type, force);
295 rcu_read_unlock();
296 return result;
297}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298EXPORT_SYMBOL(f_setown);
299
300void f_delown(struct file *filp)
301{
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700302 f_modown(filp, NULL, PIDTYPE_PID, 0, 0, 1);
303}
304
305pid_t f_getown(struct file *filp)
306{
307 pid_t pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700308 read_lock(&filp->f_owner.lock);
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800309 pid = pid_vnr(filp->f_owner.pid);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700310 if (filp->f_owner.pid_type == PIDTYPE_PGID)
311 pid = -pid;
Eric W. Biederman43fa1ad2006-10-02 02:17:27 -0700312 read_unlock(&filp->f_owner.lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700313 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
317 struct file *filp)
318{
319 long err = -EINVAL;
320
321 switch (cmd) {
322 case F_DUPFD:
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700323 case F_DUPFD_CLOEXEC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 get_file(filp);
Ulrich Drepper22d2b352007-10-16 23:30:26 -0700325 err = dupfd(filp, arg, cmd == F_DUPFD_CLOEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 break;
327 case F_GETFD:
328 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
329 break;
330 case F_SETFD:
331 err = 0;
332 set_close_on_exec(fd, arg & FD_CLOEXEC);
333 break;
334 case F_GETFL:
335 err = filp->f_flags;
336 break;
337 case F_SETFL:
338 err = setfl(fd, filp, arg);
339 break;
340 case F_GETLK:
341 err = fcntl_getlk(filp, (struct flock __user *) arg);
342 break;
343 case F_SETLK:
344 case F_SETLKW:
Peter Staubachc2936212005-07-27 11:45:09 -0700345 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
347 case F_GETOWN:
348 /*
349 * XXX If f_owner is a process group, the
350 * negative return value will get converted
351 * into an error. Oops. If we keep the
352 * current syscall conventions, the only way
353 * to fix this will be in libc.
354 */
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700355 err = f_getown(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 force_successful_syscall_return();
357 break;
358 case F_SETOWN:
359 err = f_setown(filp, arg, 1);
360 break;
361 case F_GETSIG:
362 err = filp->f_owner.signum;
363 break;
364 case F_SETSIG:
365 /* arg == 0 restores default behaviour. */
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700366 if (!valid_signal(arg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 break;
368 }
369 err = 0;
370 filp->f_owner.signum = arg;
371 break;
372 case F_GETLEASE:
373 err = fcntl_getlease(filp);
374 break;
375 case F_SETLEASE:
376 err = fcntl_setlease(fd, filp, arg);
377 break;
378 case F_NOTIFY:
379 err = fcntl_dirnotify(fd, filp, arg);
380 break;
381 default:
382 break;
383 }
384 return err;
385}
386
387asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
388{
389 struct file *filp;
390 long err = -EBADF;
391
392 filp = fget(fd);
393 if (!filp)
394 goto out;
395
396 err = security_file_fcntl(filp, cmd, arg);
397 if (err) {
398 fput(filp);
399 return err;
400 }
401
402 err = do_fcntl(fd, cmd, arg, filp);
403
404 fput(filp);
405out:
406 return err;
407}
408
409#if BITS_PER_LONG == 32
410asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
411{
412 struct file * filp;
413 long err;
414
415 err = -EBADF;
416 filp = fget(fd);
417 if (!filp)
418 goto out;
419
420 err = security_file_fcntl(filp, cmd, arg);
421 if (err) {
422 fput(filp);
423 return err;
424 }
425 err = -EBADF;
426
427 switch (cmd) {
428 case F_GETLK64:
429 err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
430 break;
431 case F_SETLK64:
432 case F_SETLKW64:
Peter Staubachc2936212005-07-27 11:45:09 -0700433 err = fcntl_setlk64(fd, filp, cmd,
434 (struct flock64 __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
436 default:
437 err = do_fcntl(fd, cmd, arg, filp);
438 break;
439 }
440 fput(filp);
441out:
442 return err;
443}
444#endif
445
446/* Table to convert sigio signal codes into poll band bitmaps */
447
Eric Dumazetfa3536c2006-03-26 01:37:24 -0800448static const long band_table[NSIGPOLL] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 POLLIN | POLLRDNORM, /* POLL_IN */
450 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
451 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
452 POLLERR, /* POLL_ERR */
453 POLLPRI | POLLRDBAND, /* POLL_PRI */
454 POLLHUP | POLLERR /* POLL_HUP */
455};
456
457static inline int sigio_perm(struct task_struct *p,
458 struct fown_struct *fown, int sig)
459{
460 return (((fown->euid == 0) ||
461 (fown->euid == p->suid) || (fown->euid == p->uid) ||
462 (fown->uid == p->suid) || (fown->uid == p->uid)) &&
463 !security_file_send_sigiotask(p, fown, sig));
464}
465
466static void send_sigio_to_task(struct task_struct *p,
467 struct fown_struct *fown,
468 int fd,
469 int reason)
470{
471 if (!sigio_perm(p, fown, fown->signum))
472 return;
473
474 switch (fown->signum) {
475 siginfo_t si;
476 default:
477 /* Queue a rt signal with the appropriate fd as its
478 value. We use SI_SIGIO as the source, not
479 SI_KERNEL, since kernel signals always get
480 delivered even if we can't queue. Failure to
481 queue in this case _should_ be reported; we fall
482 back to SIGIO in that case. --sct */
483 si.si_signo = fown->signum;
484 si.si_errno = 0;
485 si.si_code = reason;
486 /* Make sure we are called with one of the POLL_*
487 reasons, otherwise we could leak kernel stack into
488 userspace. */
Eric Sesterhennf6298aa2006-04-02 13:37:19 +0200489 BUG_ON((reason & __SI_MASK) != __SI_POLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (reason - POLL_IN >= NSIGPOLL)
491 si.si_band = ~0L;
492 else
493 si.si_band = band_table[reason - POLL_IN];
494 si.si_fd = fd;
Oleg Nesterov850d6fb2006-01-08 01:03:29 -0800495 if (!group_send_sig_info(fown->signum, &si, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497 /* fall-through: fall back on the old plain SIGIO signal */
498 case 0:
Oleg Nesterov850d6fb2006-01-08 01:03:29 -0800499 group_send_sig_info(SIGIO, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501}
502
503void send_sigio(struct fown_struct *fown, int fd, int band)
504{
505 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700506 enum pid_type type;
507 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 read_lock(&fown->lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700510 type = fown->pid_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 pid = fown->pid;
512 if (!pid)
513 goto out_unlock_fown;
514
515 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700516 do_each_pid_task(pid, type, p) {
517 send_sigio_to_task(p, fown, fd, band);
518 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 read_unlock(&tasklist_lock);
520 out_unlock_fown:
521 read_unlock(&fown->lock);
522}
523
524static void send_sigurg_to_task(struct task_struct *p,
525 struct fown_struct *fown)
526{
527 if (sigio_perm(p, fown, SIGURG))
Oleg Nesterov850d6fb2006-01-08 01:03:29 -0800528 group_send_sig_info(SIGURG, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531int send_sigurg(struct fown_struct *fown)
532{
533 struct task_struct *p;
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700534 enum pid_type type;
535 struct pid *pid;
536 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 read_lock(&fown->lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700539 type = fown->pid_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 pid = fown->pid;
541 if (!pid)
542 goto out_unlock_fown;
543
544 ret = 1;
545
546 read_lock(&tasklist_lock);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700547 do_each_pid_task(pid, type, p) {
548 send_sigurg_to_task(p, fown);
549 } while_each_pid_task(pid, type, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 read_unlock(&tasklist_lock);
551 out_unlock_fown:
552 read_unlock(&fown->lock);
553 return ret;
554}
555
556static DEFINE_RWLOCK(fasync_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800557static struct kmem_cache *fasync_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559/*
560 * fasync_helper() is used by some character device drivers (mainly mice)
561 * to set up the fasync queue. It returns negative on error, 0 if it did
562 * no changes and positive if it added/deleted the entry.
563 */
564int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
565{
566 struct fasync_struct *fa, **fp;
567 struct fasync_struct *new = NULL;
568 int result = 0;
569
570 if (on) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800571 new = kmem_cache_alloc(fasync_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!new)
573 return -ENOMEM;
574 }
575 write_lock_irq(&fasync_lock);
576 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
577 if (fa->fa_file == filp) {
578 if(on) {
579 fa->fa_fd = fd;
580 kmem_cache_free(fasync_cache, new);
581 } else {
582 *fp = fa->fa_next;
583 kmem_cache_free(fasync_cache, fa);
584 result = 1;
585 }
586 goto out;
587 }
588 }
589
590 if (on) {
591 new->magic = FASYNC_MAGIC;
592 new->fa_file = filp;
593 new->fa_fd = fd;
594 new->fa_next = *fapp;
595 *fapp = new;
596 result = 1;
597 }
598out:
599 write_unlock_irq(&fasync_lock);
600 return result;
601}
602
603EXPORT_SYMBOL(fasync_helper);
604
605void __kill_fasync(struct fasync_struct *fa, int sig, int band)
606{
607 while (fa) {
608 struct fown_struct * fown;
609 if (fa->magic != FASYNC_MAGIC) {
610 printk(KERN_ERR "kill_fasync: bad magic number in "
611 "fasync_struct!\n");
612 return;
613 }
614 fown = &fa->fa_file->f_owner;
615 /* Don't send SIGURG to processes which have not set a
616 queued signum: SIGURG has its own default signalling
617 mechanism. */
618 if (!(sig == SIGURG && fown->signum == 0))
619 send_sigio(fown, fa->fa_fd, band);
620 fa = fa->fa_next;
621 }
622}
623
624EXPORT_SYMBOL(__kill_fasync);
625
626void kill_fasync(struct fasync_struct **fp, int sig, int band)
627{
628 /* First a quick test without locking: usually
629 * the list is empty.
630 */
631 if (*fp) {
632 read_lock(&fasync_lock);
633 /* reread *fp after obtaining the lock */
634 __kill_fasync(*fp, sig, band);
635 read_unlock(&fasync_lock);
636 }
637}
638EXPORT_SYMBOL(kill_fasync);
639
640static int __init fasync_init(void)
641{
642 fasync_cache = kmem_cache_create("fasync_cache",
Paul Mundt20c2df82007-07-20 10:11:58 +0900643 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return 0;
645}
646
647module_init(fasync_init)