mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
io_uring: validate the full range of provided buffers for access
Account for the number of provided buffers when validating the address range. Signed-off-by: Bijan Mottahedeh <bijan.mottahedeh@oracle.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
dddb3e26f6
commit
efe68c1ca8
@ -3183,7 +3183,7 @@ static int io_provide_buffers_prep(struct io_kiocb *req,
|
||||
p->addr = READ_ONCE(sqe->addr);
|
||||
p->len = READ_ONCE(sqe->len);
|
||||
|
||||
if (!access_ok(u64_to_user_ptr(p->addr), p->len))
|
||||
if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
|
||||
return -EFAULT;
|
||||
|
||||
p->bgid = READ_ONCE(sqe->buf_group);
|
||||
|
Loading…
Reference in New Issue
Block a user