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>
21 #include <linux/pid_namespace.h>
24 #include <asm/siginfo.h>
25 #include <asm/uaccess.h>
27 void fastcall
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(struct files_struct
*files
,
59 struct file
*file
, unsigned int orig_start
)
67 if (orig_start
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
71 fdt
= files_fdtable(files
);
73 * Someone might have closed fd's in the range
74 * orig_start..fdt->next_fd
77 if (start
< files
->next_fd
)
78 start
= files
->next_fd
;
81 if (start
< fdt
->max_fds
)
82 newfd
= find_next_zero_bit(fdt
->open_fds
->fds_bits
,
86 if (newfd
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
89 error
= expand_files(files
, newfd
);
94 * If we needed to expand the fs array we
95 * might have blocked - try again.
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.
105 if (start
<= files
->next_fd
)
106 files
->next_fd
= newfd
+ 1;
114 static int dupfd(struct file
*file
, unsigned int start
, int cloexec
)
116 struct files_struct
* files
= current
->files
;
120 spin_lock(&files
->file_lock
);
121 fd
= locate_fd(files
, file
, start
);
123 /* locate_fd() may have expanded fdtable, load the ptr */
124 fdt
= files_fdtable(files
);
125 FD_SET(fd
, fdt
->open_fds
);
127 FD_SET(fd
, fdt
->close_on_exec
);
129 FD_CLR(fd
, fdt
->close_on_exec
);
130 spin_unlock(&files
->file_lock
);
131 fd_install(fd
, file
);
133 spin_unlock(&files
->file_lock
);
140 asmlinkage
long sys_dup2(unsigned int oldfd
, unsigned int newfd
)
143 struct file
* file
, *tofree
;
144 struct files_struct
* files
= current
->files
;
147 spin_lock(&files
->file_lock
);
148 if (!(file
= fcheck(oldfd
)))
154 if (newfd
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
156 get_file(file
); /* We are now finished with oldfd */
158 err
= expand_files(files
, newfd
);
162 /* To avoid races with open() and dup(), we will mark the fd as
163 * in-use in the open-file bitmap throughout the entire dup2()
164 * process. This is quite safe: do_close() uses the fd array
165 * entry, not the bitmap, to decide what work needs to be
167 /* Doesn't work. open() might be there first. --AV */
169 /* Yes. It's a race. In user space. Nothing sane to do */
171 fdt
= files_fdtable(files
);
172 tofree
= fdt
->fd
[newfd
];
173 if (!tofree
&& FD_ISSET(newfd
, fdt
->open_fds
))
176 rcu_assign_pointer(fdt
->fd
[newfd
], file
);
177 FD_SET(newfd
, fdt
->open_fds
);
178 FD_CLR(newfd
, fdt
->close_on_exec
);
179 spin_unlock(&files
->file_lock
);
182 filp_close(tofree
, files
);
187 spin_unlock(&files
->file_lock
);
191 spin_unlock(&files
->file_lock
);
196 asmlinkage
long sys_dup(unsigned int fildes
)
199 struct file
* file
= fget(fildes
);
202 ret
= dupfd(file
, 0, 0);
206 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
208 static int setfl(int fd
, struct file
* filp
, unsigned long arg
)
210 struct inode
* inode
= filp
->f_path
.dentry
->d_inode
;
214 * O_APPEND cannot be cleared if the file is marked as append-only
215 * and the file is open for write.
217 if (((arg
^ filp
->f_flags
) & O_APPEND
) && IS_APPEND(inode
))
220 /* O_NOATIME can only be set by the owner or superuser */
221 if ((arg
& O_NOATIME
) && !(filp
->f_flags
& O_NOATIME
))
222 if (!is_owner_or_cap(inode
))
225 /* required for strict SunOS emulation */
226 if (O_NONBLOCK
!= O_NDELAY
)
230 if (arg
& O_DIRECT
) {
231 if (!filp
->f_mapping
|| !filp
->f_mapping
->a_ops
||
232 !filp
->f_mapping
->a_ops
->direct_IO
)
236 if (filp
->f_op
&& filp
->f_op
->check_flags
)
237 error
= filp
->f_op
->check_flags(arg
);
242 if ((arg
^ filp
->f_flags
) & FASYNC
) {
243 if (filp
->f_op
&& filp
->f_op
->fasync
) {
244 error
= filp
->f_op
->fasync(fd
, filp
, (arg
& FASYNC
) != 0);
250 filp
->f_flags
= (arg
& SETFL_MASK
) | (filp
->f_flags
& ~SETFL_MASK
);
256 static void f_modown(struct file
*filp
, struct pid
*pid
, enum pid_type type
,
257 uid_t uid
, uid_t euid
, int force
)
259 write_lock_irq(&filp
->f_owner
.lock
);
260 if (force
|| !filp
->f_owner
.pid
) {
261 put_pid(filp
->f_owner
.pid
);
262 filp
->f_owner
.pid
= get_pid(pid
);
263 filp
->f_owner
.pid_type
= type
;
264 filp
->f_owner
.uid
= uid
;
265 filp
->f_owner
.euid
= euid
;
267 write_unlock_irq(&filp
->f_owner
.lock
);
270 int __f_setown(struct file
*filp
, struct pid
*pid
, enum pid_type type
,
275 err
= security_file_set_fowner(filp
);
279 f_modown(filp
, pid
, type
, current
->uid
, current
->euid
, force
);
282 EXPORT_SYMBOL(__f_setown
);
284 int f_setown(struct file
*filp
, unsigned long arg
, int force
)
296 pid
= find_vpid(who
);
297 result
= __f_setown(filp
, pid
, type
, force
);
301 EXPORT_SYMBOL(f_setown
);
303 void f_delown(struct file
*filp
)
305 f_modown(filp
, NULL
, PIDTYPE_PID
, 0, 0, 1);
308 pid_t
f_getown(struct file
*filp
)
311 read_lock(&filp
->f_owner
.lock
);
312 pid
= pid_nr_ns(filp
->f_owner
.pid
, current
->nsproxy
->pid_ns
);
313 if (filp
->f_owner
.pid_type
== PIDTYPE_PGID
)
315 read_unlock(&filp
->f_owner
.lock
);
319 static long do_fcntl(int fd
, unsigned int cmd
, unsigned long arg
,
326 case F_DUPFD_CLOEXEC
:
328 err
= dupfd(filp
, arg
, cmd
== F_DUPFD_CLOEXEC
);
331 err
= get_close_on_exec(fd
) ? FD_CLOEXEC
: 0;
335 set_close_on_exec(fd
, arg
& FD_CLOEXEC
);
341 err
= setfl(fd
, filp
, arg
);
344 err
= fcntl_getlk(filp
, (struct flock __user
*) arg
);
348 err
= fcntl_setlk(fd
, filp
, cmd
, (struct flock __user
*) arg
);
352 * XXX If f_owner is a process group, the
353 * negative return value will get converted
354 * into an error. Oops. If we keep the
355 * current syscall conventions, the only way
356 * to fix this will be in libc.
358 err
= f_getown(filp
);
359 force_successful_syscall_return();
362 err
= f_setown(filp
, arg
, 1);
365 err
= filp
->f_owner
.signum
;
368 /* arg == 0 restores default behaviour. */
369 if (!valid_signal(arg
)) {
373 filp
->f_owner
.signum
= arg
;
376 err
= fcntl_getlease(filp
);
379 err
= fcntl_setlease(fd
, filp
, arg
);
382 err
= fcntl_dirnotify(fd
, filp
, arg
);
390 asmlinkage
long sys_fcntl(unsigned int fd
, unsigned int cmd
, unsigned long arg
)
399 err
= security_file_fcntl(filp
, cmd
, arg
);
405 err
= do_fcntl(fd
, cmd
, arg
, filp
);
412 #if BITS_PER_LONG == 32
413 asmlinkage
long sys_fcntl64(unsigned int fd
, unsigned int cmd
, unsigned long arg
)
423 err
= security_file_fcntl(filp
, cmd
, arg
);
432 err
= fcntl_getlk64(filp
, (struct flock64 __user
*) arg
);
436 err
= fcntl_setlk64(fd
, filp
, cmd
,
437 (struct flock64 __user
*) arg
);
440 err
= do_fcntl(fd
, cmd
, arg
, filp
);
449 /* Table to convert sigio signal codes into poll band bitmaps */
451 static const long band_table
[NSIGPOLL
] = {
452 POLLIN
| POLLRDNORM
, /* POLL_IN */
453 POLLOUT
| POLLWRNORM
| POLLWRBAND
, /* POLL_OUT */
454 POLLIN
| POLLRDNORM
| POLLMSG
, /* POLL_MSG */
455 POLLERR
, /* POLL_ERR */
456 POLLPRI
| POLLRDBAND
, /* POLL_PRI */
457 POLLHUP
| POLLERR
/* POLL_HUP */
460 static inline int sigio_perm(struct task_struct
*p
,
461 struct fown_struct
*fown
, int sig
)
463 return (((fown
->euid
== 0) ||
464 (fown
->euid
== p
->suid
) || (fown
->euid
== p
->uid
) ||
465 (fown
->uid
== p
->suid
) || (fown
->uid
== p
->uid
)) &&
466 !security_file_send_sigiotask(p
, fown
, sig
));
469 static void send_sigio_to_task(struct task_struct
*p
,
470 struct fown_struct
*fown
,
474 if (!sigio_perm(p
, fown
, fown
->signum
))
477 switch (fown
->signum
) {
480 /* Queue a rt signal with the appropriate fd as its
481 value. We use SI_SIGIO as the source, not
482 SI_KERNEL, since kernel signals always get
483 delivered even if we can't queue. Failure to
484 queue in this case _should_ be reported; we fall
485 back to SIGIO in that case. --sct */
486 si
.si_signo
= fown
->signum
;
489 /* Make sure we are called with one of the POLL_*
490 reasons, otherwise we could leak kernel stack into
492 BUG_ON((reason
& __SI_MASK
) != __SI_POLL
);
493 if (reason
- POLL_IN
>= NSIGPOLL
)
496 si
.si_band
= band_table
[reason
- POLL_IN
];
498 if (!group_send_sig_info(fown
->signum
, &si
, p
))
500 /* fall-through: fall back on the old plain SIGIO signal */
502 group_send_sig_info(SIGIO
, SEND_SIG_PRIV
, p
);
506 void send_sigio(struct fown_struct
*fown
, int fd
, int band
)
508 struct task_struct
*p
;
512 read_lock(&fown
->lock
);
513 type
= fown
->pid_type
;
516 goto out_unlock_fown
;
518 read_lock(&tasklist_lock
);
519 do_each_pid_task(pid
, type
, p
) {
520 send_sigio_to_task(p
, fown
, fd
, band
);
521 } while_each_pid_task(pid
, type
, p
);
522 read_unlock(&tasklist_lock
);
524 read_unlock(&fown
->lock
);
527 static void send_sigurg_to_task(struct task_struct
*p
,
528 struct fown_struct
*fown
)
530 if (sigio_perm(p
, fown
, SIGURG
))
531 group_send_sig_info(SIGURG
, SEND_SIG_PRIV
, p
);
534 int send_sigurg(struct fown_struct
*fown
)
536 struct task_struct
*p
;
541 read_lock(&fown
->lock
);
542 type
= fown
->pid_type
;
545 goto out_unlock_fown
;
549 read_lock(&tasklist_lock
);
550 do_each_pid_task(pid
, type
, p
) {
551 send_sigurg_to_task(p
, fown
);
552 } while_each_pid_task(pid
, type
, p
);
553 read_unlock(&tasklist_lock
);
555 read_unlock(&fown
->lock
);
559 static DEFINE_RWLOCK(fasync_lock
);
560 static struct kmem_cache
*fasync_cache __read_mostly
;
563 * fasync_helper() is used by some character device drivers (mainly mice)
564 * to set up the fasync queue. It returns negative on error, 0 if it did
565 * no changes and positive if it added/deleted the entry.
567 int fasync_helper(int fd
, struct file
* filp
, int on
, struct fasync_struct
**fapp
)
569 struct fasync_struct
*fa
, **fp
;
570 struct fasync_struct
*new = NULL
;
574 new = kmem_cache_alloc(fasync_cache
, GFP_KERNEL
);
578 write_lock_irq(&fasync_lock
);
579 for (fp
= fapp
; (fa
= *fp
) != NULL
; fp
= &fa
->fa_next
) {
580 if (fa
->fa_file
== filp
) {
583 kmem_cache_free(fasync_cache
, new);
586 kmem_cache_free(fasync_cache
, fa
);
594 new->magic
= FASYNC_MAGIC
;
597 new->fa_next
= *fapp
;
602 write_unlock_irq(&fasync_lock
);
606 EXPORT_SYMBOL(fasync_helper
);
608 void __kill_fasync(struct fasync_struct
*fa
, int sig
, int band
)
611 struct fown_struct
* fown
;
612 if (fa
->magic
!= FASYNC_MAGIC
) {
613 printk(KERN_ERR
"kill_fasync: bad magic number in "
617 fown
= &fa
->fa_file
->f_owner
;
618 /* Don't send SIGURG to processes which have not set a
619 queued signum: SIGURG has its own default signalling
621 if (!(sig
== SIGURG
&& fown
->signum
== 0))
622 send_sigio(fown
, fa
->fa_fd
, band
);
627 EXPORT_SYMBOL(__kill_fasync
);
629 void kill_fasync(struct fasync_struct
**fp
, int sig
, int band
)
631 /* First a quick test without locking: usually
635 read_lock(&fasync_lock
);
636 /* reread *fp after obtaining the lock */
637 __kill_fasync(*fp
, sig
, band
);
638 read_unlock(&fasync_lock
);
641 EXPORT_SYMBOL(kill_fasync
);
643 static int __init
fasync_init(void)
645 fasync_cache
= kmem_cache_create("fasync_cache",
646 sizeof(struct fasync_struct
), 0, SLAB_PANIC
, NULL
);
650 module_init(fasync_init
)