From: Sasha Levin Date: Fri, 1 Aug 2014 03:00:35 +0000 (-0400) Subject: iovec: make sure the caller actually wants anything in memcpy_fromiovecend X-Git-Tag: v3.10.60~488 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d868b94a6f52a17a2a94b34e544800d741b7852;p=platform%2Fkernel%2Flinux-3.10.git iovec: make sure the caller actually wants anything in memcpy_fromiovecend [ Upstream commit 06ebb06d49486676272a3c030bfeef4bd969a8e6 ] Check for cases when the caller requests 0 bytes instead of running off and dereferencing potentially invalid iovecs. Signed-off-by: Sasha Levin Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/core/iovec.c b/net/core/iovec.c index 2145b71..1117a26 100644 --- a/net/core/iovec.c +++ b/net/core/iovec.c @@ -107,6 +107,10 @@ EXPORT_SYMBOL(memcpy_toiovecend); int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov, int offset, int len) { + /* No data? Done! */ + if (len == 0) + return 0; + /* Skip over the finished iovecs */ while (offset >= iov->iov_len) { offset -= iov->iov_len;