]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - releases/5.0.18/crypto-x86-crct10dif-pcl-fix-use-via-crypto_shash_digest.patch
Linux 5.0.18
[thirdparty/kernel/stable-queue.git] / releases / 5.0.18 / crypto-x86-crct10dif-pcl-fix-use-via-crypto_shash_digest.patch
CommitLineData
580be4aa
GKH
1From dec3d0b1071a0f3194e66a83d26ecf4aa8c5910e Mon Sep 17 00:00:00 2001
2From: Eric Biggers <ebiggers@google.com>
3Date: Sun, 31 Mar 2019 13:04:13 -0700
4Subject: crypto: x86/crct10dif-pcl - fix use via crypto_shash_digest()
5
6From: Eric Biggers <ebiggers@google.com>
7
8commit dec3d0b1071a0f3194e66a83d26ecf4aa8c5910e upstream.
9
10The ->digest() method of crct10dif-pclmul reads the current CRC value
11from the shash_desc context. But this value is uninitialized, causing
12crypto_shash_digest() to compute the wrong result. Fix it.
13
14Probably this wasn't noticed before because lib/crc-t10dif.c only uses
15crypto_shash_update(), not crypto_shash_digest(). Likewise,
16crypto_shash_digest() is not yet tested by the crypto self-tests because
17those only test the ahash API which only uses shash init/update/final.
18
19Fixes: 0b95a7f85718 ("crypto: crct10dif - Glue code to cast accelerated CRCT10DIF assembly as a crypto transform")
20Cc: <stable@vger.kernel.org> # v3.11+
21Cc: Tim Chen <tim.c.chen@linux.intel.com>
22Signed-off-by: Eric Biggers <ebiggers@google.com>
23Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
24Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25
26---
27 arch/x86/crypto/crct10dif-pclmul_glue.c | 13 +++++--------
28 1 file changed, 5 insertions(+), 8 deletions(-)
29
30--- a/arch/x86/crypto/crct10dif-pclmul_glue.c
31+++ b/arch/x86/crypto/crct10dif-pclmul_glue.c
32@@ -76,15 +76,14 @@ static int chksum_final(struct shash_des
33 return 0;
34 }
35
36-static int __chksum_finup(__u16 *crcp, const u8 *data, unsigned int len,
37- u8 *out)
38+static int __chksum_finup(__u16 crc, const u8 *data, unsigned int len, u8 *out)
39 {
40 if (irq_fpu_usable()) {
41 kernel_fpu_begin();
42- *(__u16 *)out = crc_t10dif_pcl(*crcp, data, len);
43+ *(__u16 *)out = crc_t10dif_pcl(crc, data, len);
44 kernel_fpu_end();
45 } else
46- *(__u16 *)out = crc_t10dif_generic(*crcp, data, len);
47+ *(__u16 *)out = crc_t10dif_generic(crc, data, len);
48 return 0;
49 }
50
51@@ -93,15 +92,13 @@ static int chksum_finup(struct shash_des
52 {
53 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
54
55- return __chksum_finup(&ctx->crc, data, len, out);
56+ return __chksum_finup(ctx->crc, data, len, out);
57 }
58
59 static int chksum_digest(struct shash_desc *desc, const u8 *data,
60 unsigned int length, u8 *out)
61 {
62- struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
63-
64- return __chksum_finup(&ctx->crc, data, length, out);
65+ return __chksum_finup(0, data, length, out);
66 }
67
68 static struct shash_alg alg = {