Skip to content

Commit

Permalink
iovec: make sure the caller actually wants anything in memcpy_fromiov…
Browse files Browse the repository at this point in the history
…ecend

[ Upstream commit 06ebb06 ]

Check for cases when the caller requests 0 bytes instead of running off
and dereferencing potentially invalid iovecs.

Signed-off-by: Sasha Levin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
sashalevin authored and gregkh committed Aug 14, 2014
1 parent 80db167 commit 8fbbef0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions net/core/iovec.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ EXPORT_SYMBOL(memcpy_fromiovec);
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;
Expand Down

0 comments on commit 8fbbef0

Please sign in to comment.