4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/syscalls.h>
8 #include <linux/init.h>
11 #include <linux/file.h>
12 #include <linux/capability.h>
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>
19 #include <linux/signal.h>
20 #include <linux/rcupdate.h>
23 #include <asm/siginfo.h>
24 #include <asm/uaccess.h>
26 void fastcall set_close_on_exec(unsigned int fd, int flag)
28 struct files_struct *files = current->files;
30 spin_lock(&files->file_lock);
31 fdt = files_fdtable(files);
33 FD_SET(fd, fdt->close_on_exec);
35 FD_CLR(fd, fdt->close_on_exec);
36 spin_unlock(&files->file_lock);
39 static int get_close_on_exec(unsigned int fd)
41 struct files_struct *files = current->files;
45 fdt = files_fdtable(files);
46 res = FD_ISSET(fd, fdt->close_on_exec);
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.
57 static int locate_fd(struct files_struct *files,
58 struct file *file, unsigned int orig_start)
66 if (orig_start >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
70 fdt = files_fdtable(files);
72 * Someone might have closed fd's in the range
73 * orig_start..fdt->next_fd
76 if (start < files->next_fd)
77 start = files->next_fd;
80 if (start < fdt->max_fds)
81 newfd = find_next_zero_bit(fdt->open_fds->fds_bits,
85 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
88 error = expand_files(files, newfd);
93 * If we needed to expand the fs array we
94 * might have blocked - try again.
100 * We reacquired files_lock, so we are safe as long as
101 * we reacquire the fdtable pointer and use it while holding
102 * the lock, no one can free it during that time.
104 if (start <= files->next_fd)
105 files->next_fd = newfd + 1;
113 static int dupfd(struct file *file, unsigned int start)
115 struct files_struct * files = current->files;
119 spin_lock(&files->file_lock);
120 fd = locate_fd(files, file, start);
122 /* locate_fd() may have expanded fdtable, load the ptr */
123 fdt = files_fdtable(files);
124 FD_SET(fd, fdt->open_fds);
125 FD_CLR(fd, fdt->close_on_exec);
126 spin_unlock(&files->file_lock);
127 fd_install(fd, file);
129 spin_unlock(&files->file_lock);
136 asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
139 struct file * file, *tofree;
140 struct files_struct * files = current->files;
143 spin_lock(&files->file_lock);
144 if (!(file = fcheck(oldfd)))
150 if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
152 get_file(file); /* We are now finished with oldfd */
154 err = expand_files(files, newfd);
158 /* To avoid races with open() and dup(), we will mark the fd as
159 * in-use in the open-file bitmap throughout the entire dup2()
160 * process. This is quite safe: do_close() uses the fd array
161 * entry, not the bitmap, to decide what work needs to be
163 /* Doesn't work. open() might be there first. --AV */
165 /* Yes. It's a race. In user space. Nothing sane to do */
167 fdt = files_fdtable(files);
168 tofree = fdt->fd[newfd];
169 if (!tofree && FD_ISSET(newfd, fdt->open_fds))
172 rcu_assign_pointer(fdt->fd[newfd], file);
173 FD_SET(newfd, fdt->open_fds);
174 FD_CLR(newfd, fdt->close_on_exec);
175 spin_unlock(&files->file_lock);
178 filp_close(tofree, files);
183 spin_unlock(&files->file_lock);
187 spin_unlock(&files->file_lock);
192 asmlinkage long sys_dup(unsigned int fildes)
195 struct file * file = fget(fildes);
198 ret = dupfd(file, 0);
202 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
204 static int setfl(int fd, struct file * filp, unsigned long arg)
206 struct inode * inode = filp->f_path.dentry->d_inode;
210 * O_APPEND cannot be cleared if the file is marked as append-only
211 * and the file is open for write.
213 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
216 /* O_NOATIME can only be set by the owner or superuser */
217 if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
218 if (!is_owner_or_cap(inode))
221 /* required for strict SunOS emulation */
222 if (O_NONBLOCK != O_NDELAY)
226 if (arg & O_DIRECT) {
227 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
228 !filp->f_mapping->a_ops->direct_IO)
232 if (filp->f_op && filp->f_op->check_flags)
233 error = filp->f_op->check_flags(arg);
238 if ((arg ^ filp->f_flags) & FASYNC) {
239 if (filp->f_op && filp->f_op->fasync) {
240 error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
246 filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
252 static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
253 uid_t uid, uid_t euid, int force)
255 write_lock_irq(&filp->f_owner.lock);
256 if (force || !filp->f_owner.pid) {
257 put_pid(filp->f_owner.pid);
258 filp->f_owner.pid = get_pid(pid);
259 filp->f_owner.pid_type = type;
260 filp->f_owner.uid = uid;
261 filp->f_owner.euid = euid;
263 write_unlock_irq(&filp->f_owner.lock);
266 int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
271 err = security_file_set_fowner(filp);
275 f_modown(filp, pid, type, current->uid, current->euid, force);
278 EXPORT_SYMBOL(__f_setown);
280 int f_setown(struct file *filp, unsigned long arg, int force)
293 result = __f_setown(filp, pid, type, force);
297 EXPORT_SYMBOL(f_setown);
299 void f_delown(struct file *filp)
301 f_modown(filp, NULL, PIDTYPE_PID, 0, 0, 1);
304 pid_t f_getown(struct file *filp)
307 read_lock(&filp->f_owner.lock);
308 pid = pid_nr(filp->f_owner.pid);
309 if (filp->f_owner.pid_type == PIDTYPE_PGID)
311 read_unlock(&filp->f_owner.lock);
315 static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
323 err = dupfd(filp, arg);
326 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
330 set_close_on_exec(fd, arg & FD_CLOEXEC);
336 err = setfl(fd, filp, arg);
339 err = fcntl_getlk(filp, (struct flock __user *) arg);
343 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
347 * XXX If f_owner is a process group, the
348 * negative return value will get converted
349 * into an error. Oops. If we keep the
350 * current syscall conventions, the only way
351 * to fix this will be in libc.
353 err = f_getown(filp);
354 force_successful_syscall_return();
357 err = f_setown(filp, arg, 1);
360 err = filp->f_owner.signum;
363 /* arg == 0 restores default behaviour. */
364 if (!valid_signal(arg)) {
368 filp->f_owner.signum = arg;
371 err = fcntl_getlease(filp);
374 err = fcntl_setlease(fd, filp, arg);
377 err = fcntl_dirnotify(fd, filp, arg);
385 asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
394 err = security_file_fcntl(filp, cmd, arg);
400 err = do_fcntl(fd, cmd, arg, filp);
407 #if BITS_PER_LONG == 32
408 asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
418 err = security_file_fcntl(filp, cmd, arg);
427 err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
431 err = fcntl_setlk64(fd, filp, cmd,
432 (struct flock64 __user *) arg);
435 err = do_fcntl(fd, cmd, arg, filp);
444 /* Table to convert sigio signal codes into poll band bitmaps */
446 static const long band_table[NSIGPOLL] = {
447 POLLIN | POLLRDNORM, /* POLL_IN */
448 POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
449 POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
450 POLLERR, /* POLL_ERR */
451 POLLPRI | POLLRDBAND, /* POLL_PRI */
452 POLLHUP | POLLERR /* POLL_HUP */
455 static inline int sigio_perm(struct task_struct *p,
456 struct fown_struct *fown, int sig)
458 return (((fown->euid == 0) ||
459 (fown->euid == p->suid) || (fown->euid == p->uid) ||
460 (fown->uid == p->suid) || (fown->uid == p->uid)) &&
461 !security_file_send_sigiotask(p, fown, sig));
464 static void send_sigio_to_task(struct task_struct *p,
465 struct fown_struct *fown,
469 if (!sigio_perm(p, fown, fown->signum))
472 switch (fown->signum) {
475 /* Queue a rt signal with the appropriate fd as its
476 value. We use SI_SIGIO as the source, not
477 SI_KERNEL, since kernel signals always get
478 delivered even if we can't queue. Failure to
479 queue in this case _should_ be reported; we fall
480 back to SIGIO in that case. --sct */
481 si.si_signo = fown->signum;
484 /* Make sure we are called with one of the POLL_*
485 reasons, otherwise we could leak kernel stack into
487 BUG_ON((reason & __SI_MASK) != __SI_POLL);
488 if (reason - POLL_IN >= NSIGPOLL)
491 si.si_band = band_table[reason - POLL_IN];
493 if (!group_send_sig_info(fown->signum, &si, p))
495 /* fall-through: fall back on the old plain SIGIO signal */
497 group_send_sig_info(SIGIO, SEND_SIG_PRIV, p);
501 void send_sigio(struct fown_struct *fown, int fd, int band)
503 struct task_struct *p;
507 read_lock(&fown->lock);
508 type = fown->pid_type;
511 goto out_unlock_fown;
513 read_lock(&tasklist_lock);
514 do_each_pid_task(pid, type, p) {
515 send_sigio_to_task(p, fown, fd, band);
516 } while_each_pid_task(pid, type, p);
517 read_unlock(&tasklist_lock);
519 read_unlock(&fown->lock);
522 static void send_sigurg_to_task(struct task_struct *p,
523 struct fown_struct *fown)
525 if (sigio_perm(p, fown, SIGURG))
526 group_send_sig_info(SIGURG, SEND_SIG_PRIV, p);
529 int send_sigurg(struct fown_struct *fown)
531 struct task_struct *p;
536 read_lock(&fown->lock);
537 type = fown->pid_type;
540 goto out_unlock_fown;
544 read_lock(&tasklist_lock);
545 do_each_pid_task(pid, type, p) {
546 send_sigurg_to_task(p, fown);
547 } while_each_pid_task(pid, type, p);
548 read_unlock(&tasklist_lock);
550 read_unlock(&fown->lock);
554 static DEFINE_RWLOCK(fasync_lock);
555 static struct kmem_cache *fasync_cache __read_mostly;
558 * fasync_helper() is used by some character device drivers (mainly mice)
559 * to set up the fasync queue. It returns negative on error, 0 if it did
560 * no changes and positive if it added/deleted the entry.
562 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
564 struct fasync_struct *fa, **fp;
565 struct fasync_struct *new = NULL;
569 new = kmem_cache_alloc(fasync_cache, GFP_KERNEL);
573 write_lock_irq(&fasync_lock);
574 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
575 if (fa->fa_file == filp) {
578 kmem_cache_free(fasync_cache, new);
581 kmem_cache_free(fasync_cache, fa);
589 new->magic = FASYNC_MAGIC;
592 new->fa_next = *fapp;
597 write_unlock_irq(&fasync_lock);
601 EXPORT_SYMBOL(fasync_helper);
603 void __kill_fasync(struct fasync_struct *fa, int sig, int band)
606 struct fown_struct * fown;
607 if (fa->magic != FASYNC_MAGIC) {
608 printk(KERN_ERR "kill_fasync: bad magic number in "
612 fown = &fa->fa_file->f_owner;
613 /* Don't send SIGURG to processes which have not set a
614 queued signum: SIGURG has its own default signalling
616 if (!(sig == SIGURG && fown->signum == 0))
617 send_sigio(fown, fa->fa_fd, band);
622 EXPORT_SYMBOL(__kill_fasync);
624 void kill_fasync(struct fasync_struct **fp, int sig, int band)
626 /* First a quick test without locking: usually
630 read_lock(&fasync_lock);
631 /* reread *fp after obtaining the lock */
632 __kill_fasync(*fp, sig, band);
633 read_unlock(&fasync_lock);
636 EXPORT_SYMBOL(kill_fasync);
638 static int __init fasync_init(void)
640 fasync_cache = kmem_cache_create("fasync_cache",
641 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL);
645 module_init(fasync_init)