mirror of
https://github.com/torvalds/linux.git
synced 2025-11-03 18:20:25 +02:00
io_uring/kbuf: reject zero sized provided buffers
This isn't fixing a real issue, but there's also zero point in going through group and buffer setup, when the buffers are going to be rejected once attempted to get used. Cc: stable@vger.kernel.org Reported-by: syzbot+58928048fd1416f1457c@syzkaller.appspotmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
5a17131a5d
commit
cf960726eb
1 changed files with 2 additions and 0 deletions
|
|
@ -504,6 +504,8 @@ int io_provide_buffers_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe
|
||||||
p->nbufs = tmp;
|
p->nbufs = tmp;
|
||||||
p->addr = READ_ONCE(sqe->addr);
|
p->addr = READ_ONCE(sqe->addr);
|
||||||
p->len = READ_ONCE(sqe->len);
|
p->len = READ_ONCE(sqe->len);
|
||||||
|
if (!p->len)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
|
if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
|
||||||
&size))
|
&size))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue