diff options
author | David Howells <dhowells@redhat.com> | 2024-04-25 09:39:32 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-04-26 12:35:57 -0700 |
commit | 6a30653b604aaad1bf0f2e74b068ceb8b6fc7aea (patch) | |
tree | 5629b32d21fdcd223d084083e9fe4f02a0423878 /lib/scatterlist.c | |
parent | 42f853b42899d9b445763b55c3c8adc72be0f0e1 (diff) | |
download | linux-stable-6a30653b604aaad1bf0f2e74b068ceb8b6fc7aea.tar.gz linux-stable-6a30653b604aaad1bf0f2e74b068ceb8b6fc7aea.tar.bz2 linux-stable-6a30653b604aaad1bf0f2e74b068ceb8b6fc7aea.zip |
Fix a potential infinite loop in extract_user_to_sg()
Fix extract_user_to_sg() so that it will break out of the loop if
iov_iter_extract_pages() returns 0 rather than looping around forever.
[Note that I've included two fixes lines as the function got moved to a
different file and renamed]
Fixes: 85dd2c8ff368 ("netfs: Add a function to extract a UBUF or IOVEC into a BVEC iterator")
Fixes: f5f82cd18732 ("Move netfs_extract_iter_to_sg() to lib/scatterlist.c")
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Jeff Layton <jlayton@kernel.org>
cc: Steve French <sfrench@samba.org>
cc: Herbert Xu <herbert@gondor.apana.org.au>
cc: netfs@lists.linux.dev
Link: https://lore.kernel.org/r/1967121.1714034372@warthog.procyon.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'lib/scatterlist.c')
-rw-r--r-- | lib/scatterlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scatterlist.c b/lib/scatterlist.c index 68b45c82c37a..7bc2220fea80 100644 --- a/lib/scatterlist.c +++ b/lib/scatterlist.c @@ -1124,7 +1124,7 @@ static ssize_t extract_user_to_sg(struct iov_iter *iter, do { res = iov_iter_extract_pages(iter, &pages, maxsize, sg_max, extraction_flags, &off); - if (res < 0) + if (res <= 0) goto failed; len = res; |