mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
io_uring: don't check file ops of registered rings
Registered rings are per definitions io_uring files, so we don't need to additionally verify them. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/425cd64fd885b8e329a46c205ee811987691baaf.1656153286.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
ad8b261d83
commit
3273c4407a
@ -3036,22 +3036,22 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
|
|||||||
if (flags & IORING_ENTER_REGISTERED_RING) {
|
if (flags & IORING_ENTER_REGISTERED_RING) {
|
||||||
struct io_uring_task *tctx = current->io_uring;
|
struct io_uring_task *tctx = current->io_uring;
|
||||||
|
|
||||||
if (!tctx || fd >= IO_RINGFD_REG_MAX)
|
if (unlikely(!tctx || fd >= IO_RINGFD_REG_MAX))
|
||||||
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];
|
||||||
f.flags = 0;
|
f.flags = 0;
|
||||||
|
if (unlikely(!f.file))
|
||||||
|
return -EBADF;
|
||||||
} else {
|
} else {
|
||||||
f = fdget(fd);
|
f = fdget(fd);
|
||||||
|
if (unlikely(!f.file))
|
||||||
|
return -EBADF;
|
||||||
|
ret = -EOPNOTSUPP;
|
||||||
|
if (unlikely(!io_is_uring_fops(f.file)))
|
||||||
|
goto out_fput;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unlikely(!f.file))
|
|
||||||
return -EBADF;
|
|
||||||
|
|
||||||
ret = -EOPNOTSUPP;
|
|
||||||
if (unlikely(!io_is_uring_fops(f.file)))
|
|
||||||
goto out_fput;
|
|
||||||
|
|
||||||
ret = -ENXIO;
|
ret = -ENXIO;
|
||||||
ctx = f.file->private_data;
|
ctx = f.file->private_data;
|
||||||
if (unlikely(!percpu_ref_tryget(&ctx->refs)))
|
if (unlikely(!percpu_ref_tryget(&ctx->refs)))
|
||||||
|
Loading…
Reference in New Issue
Block a user