aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/crypto/morus1280-avx2-glue.c
diff options
context:
space:
mode:
authorOndrej Mosnacek <omosnace@redhat.com>2018-08-03 13:37:50 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2018-08-07 17:51:15 +0800
commit877ccce7cbe8409256616f5e6bdedb08ce2e82db (patch)
treef77516c63353b6e6c4ae7df3390ce30298b59e1e /arch/x86/crypto/morus1280-avx2-glue.c
parentcrypto: arm64 - revert NEON yield for fast AEAD implementations (diff)
downloadwireguard-linux-877ccce7cbe8409256616f5e6bdedb08ce2e82db.tar.xz
wireguard-linux-877ccce7cbe8409256616f5e6bdedb08ce2e82db.zip
crypto: x86/aegis,morus - Fix and simplify CPUID checks
It turns out I had misunderstood how the x86_match_cpu() function works. It evaluates a logical OR of the matching conditions, not logical AND. This caused the CPU feature checks for AEGIS to pass even if only SSE2 (but not AES-NI) was supported (or vice versa), leading to potential crashes if something tried to use the registered algs. This patch switches the checks to a simpler method that is used e.g. in the Camellia x86 code. The patch also removes the MODULE_DEVICE_TABLE declarations which actually seem to cause the modules to be auto-loaded at boot, which is not desired. The crypto API on-demand module loading is sufficient. Fixes: 1d373d4e8e15 ("crypto: x86 - Add optimized AEGIS implementations") Fixes: 6ecc9d9ff91f ("crypto: x86 - Add optimized MORUS implementations") Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com> Tested-by: Milan Broz <gmazyland@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/morus1280-avx2-glue.c')
-rw-r--r--arch/x86/crypto/morus1280-avx2-glue.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/arch/x86/crypto/morus1280-avx2-glue.c b/arch/x86/crypto/morus1280-avx2-glue.c
index f111f36d26dc..6634907d6ccd 100644
--- a/arch/x86/crypto/morus1280-avx2-glue.c
+++ b/arch/x86/crypto/morus1280-avx2-glue.c
@@ -37,15 +37,11 @@ asmlinkage void crypto_morus1280_avx2_final(void *state, void *tag_xor,
MORUS1280_DECLARE_ALGS(avx2, "morus1280-avx2", 400);
-static const struct x86_cpu_id avx2_cpu_id[] = {
- X86_FEATURE_MATCH(X86_FEATURE_AVX2),
- {}
-};
-MODULE_DEVICE_TABLE(x86cpu, avx2_cpu_id);
-
static int __init crypto_morus1280_avx2_module_init(void)
{
- if (!x86_match_cpu(avx2_cpu_id))
+ if (!boot_cpu_has(X86_FEATURE_AVX2) ||
+ !boot_cpu_has(X86_FEATURE_OSXSAVE) ||
+ !cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM, NULL))
return -ENODEV;
return crypto_register_aeads(crypto_morus1280_avx2_algs,