diff options
author | Pavel Begunkov <[email protected]> | 2020-12-19 03:15:43 +0000 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2020-12-19 06:26:56 -0700 |
commit | dd20166236953c8cd14f4c668bf972af32f0c6be (patch) | |
tree | 2a3bb69cd6643ca9ec0b92681ae1512c85cd5d7e | |
parent | dfea9fce29fda6f2f91161677e0e0d9b671bc099 (diff) |
io_uring: fix 0-iov read buffer select
Doing vectored buf-select read with 0 iovec passed is meaningless and
utterly broken, forbid it.
Cc: <[email protected]> # 5.7+
Signed-off-by: Pavel Begunkov <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | fs/io_uring.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c index b74957856e68..f3690dfdd564 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -3125,9 +3125,7 @@ static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov, iov[0].iov_len = kbuf->len; return 0; } - if (!req->rw.len) - return 0; - else if (req->rw.len > 1) + if (req->rw.len != 1) return -EINVAL; #ifdef CONFIG_COMPAT |