瀏覽代碼

crypto: hash - Fix handling of sg entry that crosses page boundary

A quirk that we've always supported is having an sg entry that's
bigger than a page, or more generally an sg entry that crosses
page boundaries.  Even though it would be better to explicitly have
to sg entries for this, we need to support it for the existing users,
in particular, IPsec.

The new ahash sg walking code did try to handle this, but there was
a bug where we didn't increment the page so kept on walking on the
first page over an dover again.

This patch fixes it.

Tested-by: Martin Willi <martin@strongswan.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xu 16 年之前
父節點
當前提交
d315a0e09f
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      crypto/ahash.c

+ 4 - 3
crypto/ahash.c

@@ -82,10 +82,11 @@ int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err)
 	if (err)
 	if (err)
 		return err;
 		return err;
 
 
-	walk->offset = 0;
-
-	if (nbytes)
+	if (nbytes) {
+		walk->offset = 0;
+		walk->pg++;
 		return hash_walk_next(walk);
 		return hash_walk_next(walk);
+	}
 
 
 	if (!walk->total)
 	if (!walk->total)
 		return 0;
 		return 0;