Commit dbe0ee46 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'pull-18-rc1-work.fd' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull file descriptor updates from Al Viro.

 - Descriptor handling cleanups

* tag 'pull-18-rc1-work.fd' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  Unify the primitives for file descriptor closing
  fs: remove fget_many and fput_many interface
  io_uring_enter(): don't leave f.flags uninitialized
parents d66016c5 6319194e
...@@ -1884,7 +1884,7 @@ static void binder_deferred_fd_close(int fd) ...@@ -1884,7 +1884,7 @@ static void binder_deferred_fd_close(int fd)
if (!twcb) if (!twcb)
return; return;
init_task_work(&twcb->twork, binder_do_fd_close); init_task_work(&twcb->twork, binder_do_fd_close);
close_fd_get_file(fd, &twcb->file); twcb->file = close_fd_get_file(fd);
if (twcb->file) { if (twcb->file) {
filp_close(twcb->file, current->files); filp_close(twcb->file, current->files);
task_work_add(current, &twcb->twork, TWA_RESUME); task_work_add(current, &twcb->twork, TWA_RESUME);
......
...@@ -630,32 +630,23 @@ EXPORT_SYMBOL(fd_install); ...@@ -630,32 +630,23 @@ EXPORT_SYMBOL(fd_install);
* @files: file struct to retrieve file from * @files: file struct to retrieve file from
* @fd: file descriptor to retrieve file for * @fd: file descriptor to retrieve file for
* *
* If this functions returns an EINVAL error pointer the fd was beyond the * Context: files_lock must be held.
* current maximum number of file descriptors for that fdtable.
* *
* Returns: The file associated with @fd, on error returns an error pointer. * Returns: The file associated with @fd (NULL if @fd is not open)
*/ */
static struct file *pick_file(struct files_struct *files, unsigned fd) static struct file *pick_file(struct files_struct *files, unsigned fd)
{ {
struct fdtable *fdt = files_fdtable(files);
struct file *file; struct file *file;
struct fdtable *fdt;
spin_lock(&files->file_lock); if (fd >= fdt->max_fds)
fdt = files_fdtable(files); return NULL;
if (fd >= fdt->max_fds) {
file = ERR_PTR(-EINVAL);
goto out_unlock;
}
file = fdt->fd[fd]; file = fdt->fd[fd];
if (!file) { if (file) {
file = ERR_PTR(-EBADF); rcu_assign_pointer(fdt->fd[fd], NULL);
goto out_unlock; __put_unused_fd(files, fd);
} }
rcu_assign_pointer(fdt->fd[fd], NULL);
__put_unused_fd(files, fd);
out_unlock:
spin_unlock(&files->file_lock);
return file; return file;
} }
...@@ -664,8 +655,10 @@ int close_fd(unsigned fd) ...@@ -664,8 +655,10 @@ int close_fd(unsigned fd)
struct files_struct *files = current->files; struct files_struct *files = current->files;
struct file *file; struct file *file;
spin_lock(&files->file_lock);
file = pick_file(files, fd); file = pick_file(files, fd);
if (IS_ERR(file)) spin_unlock(&files->file_lock);
if (!file)
return -EBADF; return -EBADF;
return filp_close(file, files); return filp_close(file, files);
...@@ -702,20 +695,25 @@ static inline void __range_cloexec(struct files_struct *cur_fds, ...@@ -702,20 +695,25 @@ static inline void __range_cloexec(struct files_struct *cur_fds,
static inline void __range_close(struct files_struct *cur_fds, unsigned int fd, static inline void __range_close(struct files_struct *cur_fds, unsigned int fd,
unsigned int max_fd) unsigned int max_fd)
{ {
unsigned n;
rcu_read_lock();
n = last_fd(files_fdtable(cur_fds));
rcu_read_unlock();
max_fd = min(max_fd, n);
while (fd <= max_fd) { while (fd <= max_fd) {
struct file *file; struct file *file;
spin_lock(&cur_fds->file_lock);
file = pick_file(cur_fds, fd++); file = pick_file(cur_fds, fd++);
if (!IS_ERR(file)) { spin_unlock(&cur_fds->file_lock);
if (file) {
/* found a valid file to close */ /* found a valid file to close */
filp_close(file, cur_fds); filp_close(file, cur_fds);
cond_resched(); cond_resched();
continue;
} }
/* beyond the last fd in that table */
if (PTR_ERR(file) == -EINVAL)
return;
} }
} }
...@@ -795,26 +793,9 @@ int __close_range(unsigned fd, unsigned max_fd, unsigned int flags) ...@@ -795,26 +793,9 @@ int __close_range(unsigned fd, unsigned max_fd, unsigned int flags)
* See close_fd_get_file() below, this variant assumes current->files->file_lock * See close_fd_get_file() below, this variant assumes current->files->file_lock
* is held. * is held.
*/ */
int __close_fd_get_file(unsigned int fd, struct file **res) struct file *__close_fd_get_file(unsigned int fd)
{ {
struct files_struct *files = current->files; return pick_file(current->files, fd);
struct file *file;
struct fdtable *fdt;
fdt = files_fdtable(files);
if (fd >= fdt->max_fds)
goto out_err;
file = fdt->fd[fd];
if (!file)
goto out_err;
rcu_assign_pointer(fdt->fd[fd], NULL);
__put_unused_fd(files, fd);
get_file(file);
*res = file;
return 0;
out_err:
*res = NULL;
return -ENOENT;
} }
/* /*
...@@ -822,16 +803,16 @@ int __close_fd_get_file(unsigned int fd, struct file **res) ...@@ -822,16 +803,16 @@ int __close_fd_get_file(unsigned int fd, struct file **res)
* The caller must ensure that filp_close() called on the file, and then * The caller must ensure that filp_close() called on the file, and then
* an fput(). * an fput().
*/ */
int close_fd_get_file(unsigned int fd, struct file **res) struct file *close_fd_get_file(unsigned int fd)
{ {
struct files_struct *files = current->files; struct files_struct *files = current->files;
int ret; struct file *file;
spin_lock(&files->file_lock); spin_lock(&files->file_lock);
ret = __close_fd_get_file(fd, res); file = pick_file(files, fd);
spin_unlock(&files->file_lock); spin_unlock(&files->file_lock);
return ret; return file;
} }
void do_close_on_exec(struct files_struct *files) void do_close_on_exec(struct files_struct *files)
...@@ -871,7 +852,7 @@ void do_close_on_exec(struct files_struct *files) ...@@ -871,7 +852,7 @@ void do_close_on_exec(struct files_struct *files)
} }
static inline struct file *__fget_files_rcu(struct files_struct *files, static inline struct file *__fget_files_rcu(struct files_struct *files,
unsigned int fd, fmode_t mask, unsigned int refs) unsigned int fd, fmode_t mask)
{ {
for (;;) { for (;;) {
struct file *file; struct file *file;
...@@ -897,10 +878,9 @@ static inline struct file *__fget_files_rcu(struct files_struct *files, ...@@ -897,10 +878,9 @@ static inline struct file *__fget_files_rcu(struct files_struct *files,
* Such a race can take two forms: * Such a race can take two forms:
* *
* (a) the file ref already went down to zero, * (a) the file ref already went down to zero,
* and get_file_rcu_many() fails. Just try * and get_file_rcu() fails. Just try again:
* again:
*/ */
if (unlikely(!get_file_rcu_many(file, refs))) if (unlikely(!get_file_rcu(file)))
continue; continue;
/* /*
...@@ -909,11 +889,11 @@ static inline struct file *__fget_files_rcu(struct files_struct *files, ...@@ -909,11 +889,11 @@ static inline struct file *__fget_files_rcu(struct files_struct *files,
* pointer having changed, because it always goes * pointer having changed, because it always goes
* hand-in-hand with 'fdt'. * hand-in-hand with 'fdt'.
* *
* If so, we need to put our refs and try again. * If so, we need to put our ref and try again.
*/ */
if (unlikely(rcu_dereference_raw(files->fdt) != fdt) || if (unlikely(rcu_dereference_raw(files->fdt) != fdt) ||
unlikely(rcu_dereference_raw(*fdentry) != file)) { unlikely(rcu_dereference_raw(*fdentry) != file)) {
fput_many(file, refs); fput(file);
continue; continue;
} }
...@@ -926,37 +906,31 @@ static inline struct file *__fget_files_rcu(struct files_struct *files, ...@@ -926,37 +906,31 @@ static inline struct file *__fget_files_rcu(struct files_struct *files,
} }
static struct file *__fget_files(struct files_struct *files, unsigned int fd, static struct file *__fget_files(struct files_struct *files, unsigned int fd,
fmode_t mask, unsigned int refs) fmode_t mask)
{ {
struct file *file; struct file *file;
rcu_read_lock(); rcu_read_lock();
file = __fget_files_rcu(files, fd, mask, refs); file = __fget_files_rcu(files, fd, mask);
rcu_read_unlock(); rcu_read_unlock();
return file; return file;
} }
static inline struct file *__fget(unsigned int fd, fmode_t mask, static inline struct file *__fget(unsigned int fd, fmode_t mask)
unsigned int refs)
{
return __fget_files(current->files, fd, mask, refs);
}
struct file *fget_many(unsigned int fd, unsigned int refs)
{ {
return __fget(fd, FMODE_PATH, refs); return __fget_files(current->files, fd, mask);
} }
struct file *fget(unsigned int fd) struct file *fget(unsigned int fd)
{ {
return __fget(fd, FMODE_PATH, 1); return __fget(fd, FMODE_PATH);
} }
EXPORT_SYMBOL(fget); EXPORT_SYMBOL(fget);
struct file *fget_raw(unsigned int fd) struct file *fget_raw(unsigned int fd)
{ {
return __fget(fd, 0, 1); return __fget(fd, 0);
} }
EXPORT_SYMBOL(fget_raw); EXPORT_SYMBOL(fget_raw);
...@@ -966,7 +940,7 @@ struct file *fget_task(struct task_struct *task, unsigned int fd) ...@@ -966,7 +940,7 @@ struct file *fget_task(struct task_struct *task, unsigned int fd)
task_lock(task); task_lock(task);
if (task->files) if (task->files)
file = __fget_files(task->files, fd, 0, 1); file = __fget_files(task->files, fd, 0);
task_unlock(task); task_unlock(task);
return file; return file;
...@@ -1035,7 +1009,7 @@ static unsigned long __fget_light(unsigned int fd, fmode_t mask) ...@@ -1035,7 +1009,7 @@ static unsigned long __fget_light(unsigned int fd, fmode_t mask)
return 0; return 0;
return (unsigned long)file; return (unsigned long)file;
} else { } else {
file = __fget(fd, mask, 1); file = __fget(fd, mask);
if (!file) if (!file)
return 0; return 0;
return FDPUT_FPUT | (unsigned long)file; return FDPUT_FPUT | (unsigned long)file;
......
...@@ -368,9 +368,9 @@ EXPORT_SYMBOL_GPL(flush_delayed_fput); ...@@ -368,9 +368,9 @@ EXPORT_SYMBOL_GPL(flush_delayed_fput);
static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput); static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput);
void fput_many(struct file *file, unsigned int refs) void fput(struct file *file)
{ {
if (atomic_long_sub_and_test(refs, &file->f_count)) { if (atomic_long_dec_and_test(&file->f_count)) {
struct task_struct *task = current; struct task_struct *task = current;
if (likely(!in_interrupt() && !(task->flags & PF_KTHREAD))) { if (likely(!in_interrupt() && !(task->flags & PF_KTHREAD))) {
...@@ -389,11 +389,6 @@ void fput_many(struct file *file, unsigned int refs) ...@@ -389,11 +389,6 @@ void fput_many(struct file *file, unsigned int refs)
} }
} }
void fput(struct file *file)
{
fput_many(file, 1);
}
/* /*
* synchronous analog of fput(); for kernel threads that might be needed * synchronous analog of fput(); for kernel threads that might be needed
* in some umount() (and thus can't use flush_delayed_fput() without * in some umount() (and thus can't use flush_delayed_fput() without
......
...@@ -125,7 +125,7 @@ extern struct file *do_file_open_root(const struct path *, ...@@ -125,7 +125,7 @@ extern struct file *do_file_open_root(const struct path *,
const char *, const struct open_flags *); const char *, const struct open_flags *);
extern struct open_how build_open_how(int flags, umode_t mode); extern struct open_how build_open_how(int flags, umode_t mode);
extern int build_open_flags(const struct open_how *how, struct open_flags *op); extern int build_open_flags(const struct open_how *how, struct open_flags *op);
extern int __close_fd_get_file(unsigned int fd, struct file **res); extern struct file *__close_fd_get_file(unsigned int fd);
long do_sys_ftruncate(unsigned int fd, loff_t length, int small); long do_sys_ftruncate(unsigned int fd, loff_t length, int small);
int chmod_common(const struct path *path, umode_t mode); int chmod_common(const struct path *path, umode_t mode);
......
...@@ -6039,13 +6039,10 @@ static int io_close(struct io_kiocb *req, unsigned int issue_flags) ...@@ -6039,13 +6039,10 @@ static int io_close(struct io_kiocb *req, unsigned int issue_flags)
return -EAGAIN; return -EAGAIN;
} }
ret = __close_fd_get_file(close->fd, &file); file = __close_fd_get_file(close->fd);
spin_unlock(&files->file_lock); spin_unlock(&files->file_lock);
if (ret < 0) { if (!file)
if (ret == -ENOENT)
ret = -EBADF;
goto err; goto err;
}
/* No ->flush() or already async, safely close from here */ /* No ->flush() or already async, safely close from here */
ret = filp_close(file, current->files); ret = filp_close(file, current->files);
...@@ -12053,14 +12050,14 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit, ...@@ -12053,14 +12050,14 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
return -EINVAL; return -EINVAL;
fd = array_index_nospec(fd, IO_RINGFD_REG_MAX); fd = array_index_nospec(fd, IO_RINGFD_REG_MAX);
f.file = tctx->registered_rings[fd]; f.file = tctx->registered_rings[fd];
if (unlikely(!f.file)) f.flags = 0;
return -EBADF;
} else { } else {
f = fdget(fd); f = fdget(fd);
if (unlikely(!f.file))
return -EBADF;
} }
if (unlikely(!f.file))
return -EBADF;
ret = -EOPNOTSUPP; ret = -EOPNOTSUPP;
if (unlikely(f.file->f_op != &io_uring_fops)) if (unlikely(f.file->f_op != &io_uring_fops))
goto out_fput; goto out_fput;
...@@ -12158,8 +12155,7 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit, ...@@ -12158,8 +12155,7 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
out: out:
percpu_ref_put(&ctx->refs); percpu_ref_put(&ctx->refs);
out_fput: out_fput:
if (!(flags & IORING_ENTER_REGISTERED_RING)) fdput(f);
fdput(f);
return ret; return ret;
} }
......
...@@ -125,7 +125,7 @@ int iterate_fd(struct files_struct *, unsigned, ...@@ -125,7 +125,7 @@ int iterate_fd(struct files_struct *, unsigned,
extern int close_fd(unsigned int fd); extern int close_fd(unsigned int fd);
extern int __close_range(unsigned int fd, unsigned int max_fd, unsigned int flags); extern int __close_range(unsigned int fd, unsigned int max_fd, unsigned int flags);
extern int close_fd_get_file(unsigned int fd, struct file **res); extern struct file *close_fd_get_file(unsigned int fd);
extern int unshare_fd(unsigned long unshare_flags, unsigned int max_fds, extern int unshare_fd(unsigned long unshare_flags, unsigned int max_fds,
struct files_struct **new_fdp); struct files_struct **new_fdp);
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
struct file; struct file;
extern void fput(struct file *); extern void fput(struct file *);
extern void fput_many(struct file *, unsigned int);
struct file_operations; struct file_operations;
struct task_struct; struct task_struct;
...@@ -47,7 +46,6 @@ static inline void fdput(struct fd fd) ...@@ -47,7 +46,6 @@ static inline void fdput(struct fd fd)
} }
extern struct file *fget(unsigned int fd); extern struct file *fget(unsigned int fd);
extern struct file *fget_many(unsigned int fd, unsigned int refs);
extern struct file *fget_raw(unsigned int fd); extern struct file *fget_raw(unsigned int fd);
extern struct file *fget_task(struct task_struct *task, unsigned int fd); extern struct file *fget_task(struct task_struct *task, unsigned int fd);
extern unsigned long __fdget(unsigned int fd); extern unsigned long __fdget(unsigned int fd);
......
...@@ -974,9 +974,7 @@ static inline struct file *get_file(struct file *f) ...@@ -974,9 +974,7 @@ static inline struct file *get_file(struct file *f)
atomic_long_inc(&f->f_count); atomic_long_inc(&f->f_count);
return f; return f;
} }
#define get_file_rcu_many(x, cnt) \ #define get_file_rcu(x) atomic_long_inc_not_zero(&(x)->f_count)
atomic_long_add_unless(&(x)->f_count, (cnt), 0)
#define get_file_rcu(x) get_file_rcu_many((x), 1)
#define file_count(x) atomic_long_read(&(x)->f_count) #define file_count(x) atomic_long_read(&(x)->f_count)
#define MAX_NON_LFS ((1UL<<31) - 1) #define MAX_NON_LFS ((1UL<<31) - 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment