]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/fcntl.c
[PATCH] update mq_notify to use a struct pid
[net-next-2.6.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>
10#include <linux/fs.h>
11#include <linux/file.h>
16f7e0fe 12#include <linux/capability.h>
1da177e4
LT
13#include <linux/dnotify.h>
14#include <linux/smp_lock.h>
15#include <linux/slab.h>
16#include <linux/module.h>
17#include <linux/security.h>
18#include <linux/ptrace.h>
7ed20e1a 19#include <linux/signal.h>
ab2af1f5 20#include <linux/rcupdate.h>
1da177e4
LT
21
22#include <asm/poll.h>
23#include <asm/siginfo.h>
24#include <asm/uaccess.h>
25
26void fastcall set_close_on_exec(unsigned int fd, int flag)
27{
28 struct files_struct *files = current->files;
badf1662 29 struct fdtable *fdt;
1da177e4 30 spin_lock(&files->file_lock);
badf1662 31 fdt = files_fdtable(files);
1da177e4 32 if (flag)
badf1662 33 FD_SET(fd, fdt->close_on_exec);
1da177e4 34 else
badf1662 35 FD_CLR(fd, fdt->close_on_exec);
1da177e4
LT
36 spin_unlock(&files->file_lock);
37}
38
858119e1 39static int get_close_on_exec(unsigned int fd)
1da177e4
LT
40{
41 struct files_struct *files = current->files;
badf1662 42 struct fdtable *fdt;
1da177e4 43 int res;
b835996f 44 rcu_read_lock();
badf1662
DS
45 fdt = files_fdtable(files);
46 res = FD_ISSET(fd, fdt->close_on_exec);
b835996f 47 rcu_read_unlock();
1da177e4
LT
48 return res;
49}
50
51/*
52 * locate_fd finds a free file descriptor in the open_fds fdset,
53 * expanding the fd arrays if necessary. Must be called with the
54 * file_lock held for write.
55 */
56
57static int locate_fd(struct files_struct *files,
58 struct file *file, unsigned int orig_start)
59{
60 unsigned int newfd;
61 unsigned int start;
62 int error;
badf1662 63 struct fdtable *fdt;
1da177e4
LT
64
65 error = -EINVAL;
66 if (orig_start >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
67 goto out;
68
69repeat:
ab2af1f5 70 fdt = files_fdtable(files);
1da177e4
LT
71 /*
72 * Someone might have closed fd's in the range
badf1662 73 * orig_start..fdt->next_fd
1da177e4
LT
74 */
75 start = orig_start;
0c9e63fd
ED
76 if (start < files->next_fd)
77 start = files->next_fd;
1da177e4
LT
78
79 newfd = start;
badf1662
DS
80 if (start < fdt->max_fdset) {
81 newfd = find_next_zero_bit(fdt->open_fds->fds_bits,
82 fdt->max_fdset, start);
1da177e4
LT
83 }
84
85 error = -EMFILE;
86 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
87 goto out;
88
89 error = expand_files(files, newfd);
90 if (error < 0)
91 goto out;
92
93 /*
94 * If we needed to expand the fs array we
95 * might have blocked - try again.
96 */
97 if (error)
98 goto repeat;
99
ab2af1f5
DS
100 /*
101 * We reacquired files_lock, so we are safe as long as
102 * we reacquire the fdtable pointer and use it while holding
103 * the lock, no one can free it during that time.
104 */
0c9e63fd
ED
105 if (start <= files->next_fd)
106 files->next_fd = newfd + 1;
ab2af1f5 107
1da177e4
LT
108 error = newfd;
109
110out:
111 return error;
112}
113
114static int dupfd(struct file *file, unsigned int start)
115{
116 struct files_struct * files = current->files;
badf1662 117 struct fdtable *fdt;
1da177e4
LT
118 int fd;
119
120 spin_lock(&files->file_lock);
121 fd = locate_fd(files, file, start);
122 if (fd >= 0) {
badf1662
DS
123 /* locate_fd() may have expanded fdtable, load the ptr */
124 fdt = files_fdtable(files);
125 FD_SET(fd, fdt->open_fds);
126 FD_CLR(fd, fdt->close_on_exec);
1da177e4
LT
127 spin_unlock(&files->file_lock);
128 fd_install(fd, file);
129 } else {
130 spin_unlock(&files->file_lock);
131 fput(file);
132 }
133
134 return fd;
135}
136
137asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
138{
139 int err = -EBADF;
140 struct file * file, *tofree;
141 struct files_struct * files = current->files;
badf1662 142 struct fdtable *fdt;
1da177e4
LT
143
144 spin_lock(&files->file_lock);
145 if (!(file = fcheck(oldfd)))
146 goto out_unlock;
147 err = newfd;
148 if (newfd == oldfd)
149 goto out_unlock;
150 err = -EBADF;
151 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
152 goto out_unlock;
153 get_file(file); /* We are now finished with oldfd */
154
155 err = expand_files(files, newfd);
156 if (err < 0)
157 goto out_fput;
158
159 /* To avoid races with open() and dup(), we will mark the fd as
160 * in-use in the open-file bitmap throughout the entire dup2()
161 * process. This is quite safe: do_close() uses the fd array
162 * entry, not the bitmap, to decide what work needs to be
163 * done. --sct */
164 /* Doesn't work. open() might be there first. --AV */
165
166 /* Yes. It's a race. In user space. Nothing sane to do */
167 err = -EBUSY;
badf1662
DS
168 fdt = files_fdtable(files);
169 tofree = fdt->fd[newfd];
170 if (!tofree && FD_ISSET(newfd, fdt->open_fds))
1da177e4
LT
171 goto out_fput;
172
ab2af1f5 173 rcu_assign_pointer(fdt->fd[newfd], file);
badf1662
DS
174 FD_SET(newfd, fdt->open_fds);
175 FD_CLR(newfd, fdt->close_on_exec);
1da177e4
LT
176 spin_unlock(&files->file_lock);
177
178 if (tofree)
179 filp_close(tofree, files);
180 err = newfd;
181out:
182 return err;
183out_unlock:
184 spin_unlock(&files->file_lock);
185 goto out;
186
187out_fput:
188 spin_unlock(&files->file_lock);
189 fput(file);
190 goto out;
191}
192
193asmlinkage long sys_dup(unsigned int fildes)
194{
195 int ret = -EBADF;
196 struct file * file = fget(fildes);
197
198 if (file)
199 ret = dupfd(file, 0);
200 return ret;
201}
202
203#define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
204
205static int setfl(int fd, struct file * filp, unsigned long arg)
206{
207 struct inode * inode = filp->f_dentry->d_inode;
208 int error = 0;
209
7d95c8f2 210 /*
211 * O_APPEND cannot be cleared if the file is marked as append-only
212 * and the file is open for write.
213 */
214 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
1da177e4
LT
215 return -EPERM;
216
217 /* O_NOATIME can only be set by the owner or superuser */
218 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
219 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
220 return -EPERM;
221
222 /* required for strict SunOS emulation */
223 if (O_NONBLOCK != O_NDELAY)
224 if (arg & O_NDELAY)
225 arg |= O_NONBLOCK;
226
227 if (arg & O_DIRECT) {
228 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
229 !filp->f_mapping->a_ops->direct_IO)
230 return -EINVAL;
231 }
232
233 if (filp->f_op && filp->f_op->check_flags)
234 error = filp->f_op->check_flags(arg);
235 if (error)
236 return error;
237
238 lock_kernel();
239 if ((arg ^ filp->f_flags) & FASYNC) {
240 if (filp->f_op && filp->f_op->fasync) {
241 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
242 if (error < 0)
243 goto out;
244 }
245 }
246
247 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
248 out:
249 unlock_kernel();
250 return error;
251}
252
609d7fa9 253static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
1da177e4
LT
254 uid_t uid, uid_t euid, int force)
255{
256 write_lock_irq(&filp->f_owner.lock);
257 if (force || !filp->f_owner.pid) {
609d7fa9
EB
258 put_pid(filp->f_owner.pid);
259 filp->f_owner.pid = get_pid(pid);
260 filp->f_owner.pid_type = type;
1da177e4
LT
261 filp->f_owner.uid = uid;
262 filp->f_owner.euid = euid;
263 }
264 write_unlock_irq(&filp->f_owner.lock);
265}
266
609d7fa9
EB
267int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
268 int force)
1da177e4
LT
269{
270 int err;
271
272 err = security_file_set_fowner(filp);
273 if (err)
274 return err;
275
609d7fa9 276 f_modown(filp, pid, type, current->uid, current->euid, force);
1da177e4
LT
277 return 0;
278}
609d7fa9 279EXPORT_SYMBOL(__f_setown);
1da177e4 280
609d7fa9
EB
281int 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();
293 pid = find_pid(who);
294 result = __f_setown(filp, pid, type, force);
295 rcu_read_unlock();
296 return result;
297}
1da177e4
LT
298EXPORT_SYMBOL(f_setown);
299
300void f_delown(struct file *filp)
301{
609d7fa9
EB
302 f_modown(filp, NULL, PIDTYPE_PID, 0, 0, 1);
303}
304
305pid_t f_getown(struct file *filp)
306{
307 pid_t pid;
308 pid = pid_nr(filp->f_owner.pid);
309 if (filp->f_owner.pid_type == PIDTYPE_PGID)
310 pid = -pid;
311 return pid;
1da177e4
LT
312}
313
314static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
315 struct file *filp)
316{
317 long err = -EINVAL;
318
319 switch (cmd) {
320 case F_DUPFD:
321 get_file(filp);
322 err = dupfd(filp, arg);
323 break;
324 case F_GETFD:
325 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
326 break;
327 case F_SETFD:
328 err = 0;
329 set_close_on_exec(fd, arg & FD_CLOEXEC);
330 break;
331 case F_GETFL:
332 err = filp->f_flags;
333 break;
334 case F_SETFL:
335 err = setfl(fd, filp, arg);
336 break;
337 case F_GETLK:
338 err = fcntl_getlk(filp, (struct flock __user *) arg);
339 break;
340 case F_SETLK:
341 case F_SETLKW:
c293621b 342 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
1da177e4
LT
343 break;
344 case F_GETOWN:
345 /*
346 * XXX If f_owner is a process group, the
347 * negative return value will get converted
348 * into an error. Oops. If we keep the
349 * current syscall conventions, the only way
350 * to fix this will be in libc.
351 */
609d7fa9 352 err = f_getown(filp);
1da177e4
LT
353 force_successful_syscall_return();
354 break;
355 case F_SETOWN:
356 err = f_setown(filp, arg, 1);
357 break;
358 case F_GETSIG:
359 err = filp->f_owner.signum;
360 break;
361 case F_SETSIG:
362 /* arg == 0 restores default behaviour. */
7ed20e1a 363 if (!valid_signal(arg)) {
1da177e4
LT
364 break;
365 }
366 err = 0;
367 filp->f_owner.signum = arg;
368 break;
369 case F_GETLEASE:
370 err = fcntl_getlease(filp);
371 break;
372 case F_SETLEASE:
373 err = fcntl_setlease(fd, filp, arg);
374 break;
375 case F_NOTIFY:
376 err = fcntl_dirnotify(fd, filp, arg);
377 break;
378 default:
379 break;
380 }
381 return err;
382}
383
384asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
385{
386 struct file *filp;
387 long err = -EBADF;
388
389 filp = fget(fd);
390 if (!filp)
391 goto out;
392
393 err = security_file_fcntl(filp, cmd, arg);
394 if (err) {
395 fput(filp);
396 return err;
397 }
398
399 err = do_fcntl(fd, cmd, arg, filp);
400
401 fput(filp);
402out:
403 return err;
404}
405
406#if BITS_PER_LONG == 32
407asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
408{
409 struct file * filp;
410 long err;
411
412 err = -EBADF;
413 filp = fget(fd);
414 if (!filp)
415 goto out;
416
417 err = security_file_fcntl(filp, cmd, arg);
418 if (err) {
419 fput(filp);
420 return err;
421 }
422 err = -EBADF;
423
424 switch (cmd) {
425 case F_GETLK64:
426 err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
427 break;
428 case F_SETLK64:
429 case F_SETLKW64:
c293621b
PS
430 err = fcntl_setlk64(fd, filp, cmd,
431 (struct flock64 __user *) arg);
1da177e4
LT
432 break;
433 default:
434 err = do_fcntl(fd, cmd, arg, filp);
435 break;
436 }
437 fput(filp);
438out:
439 return err;
440}
441#endif
442
443/* Table to convert sigio signal codes into poll band bitmaps */
444
fa3536cc 445static const long band_table[NSIGPOLL] = {
1da177e4
LT
446 POLLIN | POLLRDNORM, /* POLL_IN */
447 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
448 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
449 POLLERR, /* POLL_ERR */
450 POLLPRI | POLLRDBAND, /* POLL_PRI */
451 POLLHUP | POLLERR /* POLL_HUP */
452};
453
454static inline int sigio_perm(struct task_struct *p,
455 struct fown_struct *fown, int sig)
456{
457 return (((fown->euid == 0) ||
458 (fown->euid == p->suid) || (fown->euid == p->uid) ||
459 (fown->uid == p->suid) || (fown->uid == p->uid)) &&
460 !security_file_send_sigiotask(p, fown, sig));
461}
462
463static void send_sigio_to_task(struct task_struct *p,
464 struct fown_struct *fown,
465 int fd,
466 int reason)
467{
468 if (!sigio_perm(p, fown, fown->signum))
469 return;
470
471 switch (fown->signum) {
472 siginfo_t si;
473 default:
474 /* Queue a rt signal with the appropriate fd as its
475 value. We use SI_SIGIO as the source, not
476 SI_KERNEL, since kernel signals always get
477 delivered even if we can't queue. Failure to
478 queue in this case _should_ be reported; we fall
479 back to SIGIO in that case. --sct */
480 si.si_signo = fown->signum;
481 si.si_errno = 0;
482 si.si_code = reason;
483 /* Make sure we are called with one of the POLL_*
484 reasons, otherwise we could leak kernel stack into
485 userspace. */
f6298aab 486 BUG_ON((reason & __SI_MASK) != __SI_POLL);
1da177e4
LT
487 if (reason - POLL_IN >= NSIGPOLL)
488 si.si_band = ~0L;
489 else
490 si.si_band = band_table[reason - POLL_IN];
491 si.si_fd = fd;
850d6fbe 492 if (!group_send_sig_info(fown->signum, &si, p))
1da177e4
LT
493 break;
494 /* fall-through: fall back on the old plain SIGIO signal */
495 case 0:
850d6fbe 496 group_send_sig_info(SIGIO, SEND_SIG_PRIV, p);
1da177e4
LT
497 }
498}
499
500void send_sigio(struct fown_struct *fown, int fd, int band)
501{
502 struct task_struct *p;
609d7fa9
EB
503 enum pid_type type;
504 struct pid *pid;
1da177e4
LT
505
506 read_lock(&fown->lock);
609d7fa9 507 type = fown->pid_type;
1da177e4
LT
508 pid = fown->pid;
509 if (!pid)
510 goto out_unlock_fown;
511
512 read_lock(&tasklist_lock);
609d7fa9
EB
513 do_each_pid_task(pid, type, p) {
514 send_sigio_to_task(p, fown, fd, band);
515 } while_each_pid_task(pid, type, p);
1da177e4
LT
516 read_unlock(&tasklist_lock);
517 out_unlock_fown:
518 read_unlock(&fown->lock);
519}
520
521static void send_sigurg_to_task(struct task_struct *p,
522 struct fown_struct *fown)
523{
524 if (sigio_perm(p, fown, SIGURG))
850d6fbe 525 group_send_sig_info(SIGURG, SEND_SIG_PRIV, p);
1da177e4
LT
526}
527
528int send_sigurg(struct fown_struct *fown)
529{
530 struct task_struct *p;
609d7fa9
EB
531 enum pid_type type;
532 struct pid *pid;
533 int ret = 0;
1da177e4
LT
534
535 read_lock(&fown->lock);
609d7fa9 536 type = fown->pid_type;
1da177e4
LT
537 pid = fown->pid;
538 if (!pid)
539 goto out_unlock_fown;
540
541 ret = 1;
542
543 read_lock(&tasklist_lock);
609d7fa9
EB
544 do_each_pid_task(pid, type, p) {
545 send_sigurg_to_task(p, fown);
546 } while_each_pid_task(pid, type, p);
1da177e4
LT
547 read_unlock(&tasklist_lock);
548 out_unlock_fown:
549 read_unlock(&fown->lock);
550 return ret;
551}
552
553static DEFINE_RWLOCK(fasync_lock);
fa3536cc 554static kmem_cache_t *fasync_cache __read_mostly;
1da177e4
LT
555
556/*
557 * fasync_helper() is used by some character device drivers (mainly mice)
558 * to set up the fasync queue. It returns negative on error, 0 if it did
559 * no changes and positive if it added/deleted the entry.
560 */
561int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
562{
563 struct fasync_struct *fa, **fp;
564 struct fasync_struct *new = NULL;
565 int result = 0;
566
567 if (on) {
568 new = kmem_cache_alloc(fasync_cache, SLAB_KERNEL);
569 if (!new)
570 return -ENOMEM;
571 }
572 write_lock_irq(&fasync_lock);
573 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
574 if (fa->fa_file == filp) {
575 if(on) {
576 fa->fa_fd = fd;
577 kmem_cache_free(fasync_cache, new);
578 } else {
579 *fp = fa->fa_next;
580 kmem_cache_free(fasync_cache, fa);
581 result = 1;
582 }
583 goto out;
584 }
585 }
586
587 if (on) {
588 new->magic = FASYNC_MAGIC;
589 new->fa_file = filp;
590 new->fa_fd = fd;
591 new->fa_next = *fapp;
592 *fapp = new;
593 result = 1;
594 }
595out:
596 write_unlock_irq(&fasync_lock);
597 return result;
598}
599
600EXPORT_SYMBOL(fasync_helper);
601
602void __kill_fasync(struct fasync_struct *fa, int sig, int band)
603{
604 while (fa) {
605 struct fown_struct * fown;
606 if (fa->magic != FASYNC_MAGIC) {
607 printk(KERN_ERR "kill_fasync: bad magic number in "
608 "fasync_struct!\n");
609 return;
610 }
611 fown = &fa->fa_file->f_owner;
612 /* Don't send SIGURG to processes which have not set a
613 queued signum: SIGURG has its own default signalling
614 mechanism. */
615 if (!(sig == SIGURG && fown->signum == 0))
616 send_sigio(fown, fa->fa_fd, band);
617 fa = fa->fa_next;
618 }
619}
620
621EXPORT_SYMBOL(__kill_fasync);
622
623void kill_fasync(struct fasync_struct **fp, int sig, int band)
624{
625 /* First a quick test without locking: usually
626 * the list is empty.
627 */
628 if (*fp) {
629 read_lock(&fasync_lock);
630 /* reread *fp after obtaining the lock */
631 __kill_fasync(*fp, sig, band);
632 read_unlock(&fasync_lock);
633 }
634}
635EXPORT_SYMBOL(kill_fasync);
636
637static int __init fasync_init(void)
638{
639 fasync_cache = kmem_cache_create("fasync_cache",
640 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL, NULL);
641 return 0;
642}
643
644module_init(fasync_init)