lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE
authorChristophe Leroy <christophe.leroy@c-s.fr>
Mon, 24 Jun 2019 07:20:14 +0000 (07:20 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 31 Oct 2019 22:15:01 +0000 (22:15 +0000)
commit95030117c3ff3a5e7b394ff7e1d27b1d97510c0f
tree679acbaf67e8bf3d35dfbb7859fbe52cf642c4cc
parentbc31cd94c64f7e8cfadac6ba654c4a7f358c9d8b
lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE

commit aeb87246537a83c2aff482f3f34a2e0991e02cbc upstream.

All mapping iterator logic is based on the assumption that sg->offset
is always lower than PAGE_SIZE.

But there are situations where sg->offset is such that the SG item
is on the second page. In that case sg_copy_to_buffer() fails
properly copying the data into the buffer. One of the reason is
that the data will be outside the kmapped area used to access that
data.

This patch fixes the issue by adjusting the mapping iterator
offset and pgoffset fields such that offset is always lower than
PAGE_SIZE.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Fixes: 4225fc8555a9 ("lib/scatterlist: use page iterator in the mapping iterator")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
lib/scatterlist.c