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/fdtable.h>
13 #include <linux/capability.h>
14 #include <linux/dnotify.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>
21 #include <linux/pid_namespace.h>
24 #include <asm/siginfo.h>
25 #include <asm/uaccess.h>
27 void set_close_on_exec(unsigned int fd
, int flag
)
29 struct files_struct
*files
= current
->files
;
31 spin_lock(&files
->file_lock
);
32 fdt
= files_fdtable(files
);
34 FD_SET(fd
, fdt
->close_on_exec
);
36 FD_CLR(fd
, fdt
->close_on_exec
);
37 spin_unlock(&files
->file_lock
);
40 static int get_close_on_exec(unsigned int fd
)
42 struct files_struct
*files
= current
->files
;
46 fdt
= files_fdtable(files
);
47 res
= FD_ISSET(fd
, fdt
->close_on_exec
);
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.
58 static int locate_fd(unsigned int orig_start
, int cloexec
)
60 struct files_struct
*files
= current
->files
;
66 spin_lock(&files
->file_lock
);
69 if (orig_start
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
73 fdt
= files_fdtable(files
);
75 * Someone might have closed fd's in the range
76 * orig_start..fdt->next_fd
79 if (start
< files
->next_fd
)
80 start
= files
->next_fd
;
83 if (start
< fdt
->max_fds
)
84 newfd
= find_next_zero_bit(fdt
->open_fds
->fds_bits
,
88 if (newfd
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
91 error
= expand_files(files
, newfd
);
96 * If we needed to expand the fs array we
97 * might have blocked - try again.
102 if (start
<= files
->next_fd
)
103 files
->next_fd
= newfd
+ 1;
105 FD_SET(newfd
, fdt
->open_fds
);
107 FD_SET(newfd
, fdt
->close_on_exec
);
109 FD_CLR(newfd
, fdt
->close_on_exec
);
113 spin_unlock(&files
->file_lock
);
117 static int dupfd(struct file
*file
, unsigned int start
, int cloexec
)
119 int fd
= locate_fd(start
, cloexec
);
121 fd_install(fd
, file
);
128 asmlinkage
long sys_dup3(unsigned int oldfd
, unsigned int newfd
, int flags
)
131 struct file
* file
, *tofree
;
132 struct files_struct
* files
= current
->files
;
135 if ((flags
& ~O_CLOEXEC
) != 0)
138 spin_lock(&files
->file_lock
);
139 if (!(file
= fcheck(oldfd
)))
145 if (newfd
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
147 get_file(file
); /* We are now finished with oldfd */
149 err
= expand_files(files
, newfd
);
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
158 /* Doesn't work. open() might be there first. --AV */
160 /* Yes. It's a race. In user space. Nothing sane to do */
162 fdt
= files_fdtable(files
);
163 tofree
= fdt
->fd
[newfd
];
164 if (!tofree
&& FD_ISSET(newfd
, fdt
->open_fds
))
167 rcu_assign_pointer(fdt
->fd
[newfd
], file
);
168 FD_SET(newfd
, fdt
->open_fds
);
169 if (flags
& O_CLOEXEC
)
170 FD_SET(newfd
, fdt
->close_on_exec
);
172 FD_CLR(newfd
, fdt
->close_on_exec
);
173 spin_unlock(&files
->file_lock
);
176 filp_close(tofree
, files
);
181 spin_unlock(&files
->file_lock
);
185 spin_unlock(&files
->file_lock
);
190 asmlinkage
long sys_dup2(unsigned int oldfd
, unsigned int newfd
)
192 return sys_dup3(oldfd
, newfd
, 0);
195 asmlinkage
long sys_dup(unsigned int fildes
)
198 struct file
* file
= fget(fildes
);
201 ret
= dupfd(file
, 0, 0);
205 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
207 static int setfl(int fd
, struct file
* filp
, unsigned long arg
)
209 struct inode
* inode
= filp
->f_path
.dentry
->d_inode
;
213 * O_APPEND cannot be cleared if the file is marked as append-only
214 * and the file is open for write.
216 if (((arg
^ filp
->f_flags
) & O_APPEND
) && IS_APPEND(inode
))
219 /* O_NOATIME can only be set by the owner or superuser */
220 if ((arg
& O_NOATIME
) && !(filp
->f_flags
& O_NOATIME
))
221 if (!is_owner_or_cap(inode
))
224 /* required for strict SunOS emulation */
225 if (O_NONBLOCK
!= O_NDELAY
)
229 if (arg
& O_DIRECT
) {
230 if (!filp
->f_mapping
|| !filp
->f_mapping
->a_ops
||
231 !filp
->f_mapping
->a_ops
->direct_IO
)
235 if (filp
->f_op
&& filp
->f_op
->check_flags
)
236 error
= filp
->f_op
->check_flags(arg
);
240 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);
248 filp
->f_flags
= (arg
& SETFL_MASK
) | (filp
->f_flags
& ~SETFL_MASK
);
253 static void f_modown(struct file
*filp
, struct pid
*pid
, enum pid_type type
,
254 uid_t uid
, uid_t euid
, int force
)
256 write_lock_irq(&filp
->f_owner
.lock
);
257 if (force
|| !filp
->f_owner
.pid
) {
258 put_pid(filp
->f_owner
.pid
);
259 filp
->f_owner
.pid
= get_pid(pid
);
260 filp
->f_owner
.pid_type
= type
;
261 filp
->f_owner
.uid
= uid
;
262 filp
->f_owner
.euid
= euid
;
264 write_unlock_irq(&filp
->f_owner
.lock
);
267 int __f_setown(struct file
*filp
, struct pid
*pid
, enum pid_type type
,
272 err
= security_file_set_fowner(filp
);
276 f_modown(filp
, pid
, type
, current
->uid
, current
->euid
, force
);
279 EXPORT_SYMBOL(__f_setown
);
281 int f_setown(struct file
*filp
, unsigned long arg
, int force
)
293 pid
= find_vpid(who
);
294 result
= __f_setown(filp
, pid
, type
, force
);
298 EXPORT_SYMBOL(f_setown
);
300 void f_delown(struct file
*filp
)
302 f_modown(filp
, NULL
, PIDTYPE_PID
, 0, 0, 1);
305 pid_t
f_getown(struct file
*filp
)
308 read_lock(&filp
->f_owner
.lock
);
309 pid
= pid_vnr(filp
->f_owner
.pid
);
310 if (filp
->f_owner
.pid_type
== PIDTYPE_PGID
)
312 read_unlock(&filp
->f_owner
.lock
);
316 static long do_fcntl(int fd
, unsigned int cmd
, unsigned long arg
,
323 case F_DUPFD_CLOEXEC
:
325 err
= dupfd(filp
, arg
, cmd
== F_DUPFD_CLOEXEC
);
328 err
= get_close_on_exec(fd
) ? FD_CLOEXEC
: 0;
332 set_close_on_exec(fd
, arg
& FD_CLOEXEC
);
338 err
= setfl(fd
, filp
, arg
);
341 err
= fcntl_getlk(filp
, (struct flock __user
*) arg
);
345 err
= fcntl_setlk(fd
, filp
, cmd
, (struct flock __user
*) arg
);
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.
355 err
= f_getown(filp
);
356 force_successful_syscall_return();
359 err
= f_setown(filp
, arg
, 1);
362 err
= filp
->f_owner
.signum
;
365 /* arg == 0 restores default behaviour. */
366 if (!valid_signal(arg
)) {
370 filp
->f_owner
.signum
= arg
;
373 err
= fcntl_getlease(filp
);
376 err
= fcntl_setlease(fd
, filp
, arg
);
379 err
= fcntl_dirnotify(fd
, filp
, arg
);
387 asmlinkage
long sys_fcntl(unsigned int fd
, unsigned int cmd
, unsigned long arg
)
396 err
= security_file_fcntl(filp
, cmd
, arg
);
402 err
= do_fcntl(fd
, cmd
, arg
, filp
);
409 #if BITS_PER_LONG == 32
410 asmlinkage
long sys_fcntl64(unsigned int fd
, unsigned int cmd
, unsigned long arg
)
420 err
= security_file_fcntl(filp
, cmd
, arg
);
429 err
= fcntl_getlk64(filp
, (struct flock64 __user
*) arg
);
433 err
= fcntl_setlk64(fd
, filp
, cmd
,
434 (struct flock64 __user
*) arg
);
437 err
= do_fcntl(fd
, cmd
, arg
, filp
);
446 /* Table to convert sigio signal codes into poll band bitmaps */
448 static const long band_table
[NSIGPOLL
] = {
449 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 */
457 static inline int sigio_perm(struct task_struct
*p
,
458 struct fown_struct
*fown
, int sig
)
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
));
466 static void send_sigio_to_task(struct task_struct
*p
,
467 struct fown_struct
*fown
,
471 if (!sigio_perm(p
, fown
, fown
->signum
))
474 switch (fown
->signum
) {
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
;
486 /* Make sure we are called with one of the POLL_*
487 reasons, otherwise we could leak kernel stack into
489 BUG_ON((reason
& __SI_MASK
) != __SI_POLL
);
490 if (reason
- POLL_IN
>= NSIGPOLL
)
493 si
.si_band
= band_table
[reason
- POLL_IN
];
495 if (!group_send_sig_info(fown
->signum
, &si
, p
))
497 /* fall-through: fall back on the old plain SIGIO signal */
499 group_send_sig_info(SIGIO
, SEND_SIG_PRIV
, p
);
503 void send_sigio(struct fown_struct
*fown
, int fd
, int band
)
505 struct task_struct
*p
;
509 read_lock(&fown
->lock
);
510 type
= fown
->pid_type
;
513 goto out_unlock_fown
;
515 read_lock(&tasklist_lock
);
516 do_each_pid_task(pid
, type
, p
) {
517 send_sigio_to_task(p
, fown
, fd
, band
);
518 } while_each_pid_task(pid
, type
, p
);
519 read_unlock(&tasklist_lock
);
521 read_unlock(&fown
->lock
);
524 static void send_sigurg_to_task(struct task_struct
*p
,
525 struct fown_struct
*fown
)
527 if (sigio_perm(p
, fown
, SIGURG
))
528 group_send_sig_info(SIGURG
, SEND_SIG_PRIV
, p
);
531 int send_sigurg(struct fown_struct
*fown
)
533 struct task_struct
*p
;
538 read_lock(&fown
->lock
);
539 type
= fown
->pid_type
;
542 goto out_unlock_fown
;
546 read_lock(&tasklist_lock
);
547 do_each_pid_task(pid
, type
, p
) {
548 send_sigurg_to_task(p
, fown
);
549 } while_each_pid_task(pid
, type
, p
);
550 read_unlock(&tasklist_lock
);
552 read_unlock(&fown
->lock
);
556 static DEFINE_RWLOCK(fasync_lock
);
557 static struct kmem_cache
*fasync_cache __read_mostly
;
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.
564 int fasync_helper(int fd
, struct file
* filp
, int on
, struct fasync_struct
**fapp
)
566 struct fasync_struct
*fa
, **fp
;
567 struct fasync_struct
*new = NULL
;
571 new = kmem_cache_alloc(fasync_cache
, GFP_KERNEL
);
575 write_lock_irq(&fasync_lock
);
576 for (fp
= fapp
; (fa
= *fp
) != NULL
; fp
= &fa
->fa_next
) {
577 if (fa
->fa_file
== filp
) {
580 kmem_cache_free(fasync_cache
, new);
583 kmem_cache_free(fasync_cache
, fa
);
591 new->magic
= FASYNC_MAGIC
;
594 new->fa_next
= *fapp
;
599 write_unlock_irq(&fasync_lock
);
603 EXPORT_SYMBOL(fasync_helper
);
605 void __kill_fasync(struct fasync_struct
*fa
, int sig
, int band
)
608 struct fown_struct
* fown
;
609 if (fa
->magic
!= FASYNC_MAGIC
) {
610 printk(KERN_ERR
"kill_fasync: bad magic number in "
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
618 if (!(sig
== SIGURG
&& fown
->signum
== 0))
619 send_sigio(fown
, fa
->fa_fd
, band
);
624 EXPORT_SYMBOL(__kill_fasync
);
626 void kill_fasync(struct fasync_struct
**fp
, int sig
, int band
)
628 /* First a quick test without locking: usually
632 read_lock(&fasync_lock
);
633 /* reread *fp after obtaining the lock */
634 __kill_fasync(*fp
, sig
, band
);
635 read_unlock(&fasync_lock
);
638 EXPORT_SYMBOL(kill_fasync
);
640 static int __init
fasync_init(void)
642 fasync_cache
= kmem_cache_create("fasync_cache",
643 sizeof(struct fasync_struct
), 0, SLAB_PANIC
, NULL
);
647 module_init(fasync_init
)