1 // SPDX-License-Identifier: GPL-2.0-only
3 * sha1-ce-glue.c - SHA-1 secure hash using ARMv8 Crypto Extensions
10 #include <asm/unaligned.h>
11 #include <crypto/internal/hash.h>
12 #include <crypto/internal/simd.h>
13 #include <crypto/sha.h>
14 #include <crypto/sha1_base.h>
15 #include <linux/cpufeature.h>
16 #include <linux/crypto.h>
17 #include <linux/module.h>
19 MODULE_DESCRIPTION("SHA1 secure hash using ARMv8 Crypto Extensions");
21 MODULE_LICENSE("GPL v2");
23 struct sha1_ce_state {
24 struct sha1_state sst;
28 asmlinkage void sha1_ce_transform(struct sha1_ce_state *sst, u8 const *src,
31 static void __sha1_ce_transform(struct sha1_state *sst, u8 const *src,
34 sha1_ce_transform(container_of(sst, struct sha1_ce_state, sst), src,
38 const u32 sha1_ce_offsetof_count = offsetof(struct sha1_ce_state, sst.count);
39 const u32 sha1_ce_offsetof_finalize = offsetof(struct sha1_ce_state, finalize);
41 static int sha1_ce_update(struct shash_desc *desc, const u8 *data,
44 struct sha1_ce_state *sctx = shash_desc_ctx(desc);
46 if (!crypto_simd_usable())
47 return crypto_sha1_update(desc, data, len);
51 sha1_base_do_update(desc, data, len, __sha1_ce_transform);
57 static int sha1_ce_finup(struct shash_desc *desc, const u8 *data,
58 unsigned int len, u8 *out)
60 struct sha1_ce_state *sctx = shash_desc_ctx(desc);
61 bool finalize = !sctx->sst.count && !(len % SHA1_BLOCK_SIZE) && len;
63 if (!crypto_simd_usable())
64 return crypto_sha1_finup(desc, data, len, out);
67 * Allow the asm code to perform the finalization if there is no
68 * partial data and the input is a round multiple of the block size.
70 sctx->finalize = finalize;
73 sha1_base_do_update(desc, data, len, __sha1_ce_transform);
75 sha1_base_do_finalize(desc, __sha1_ce_transform);
77 return sha1_base_finish(desc, out);
80 static int sha1_ce_final(struct shash_desc *desc, u8 *out)
82 struct sha1_ce_state *sctx = shash_desc_ctx(desc);
84 if (!crypto_simd_usable())
85 return crypto_sha1_finup(desc, NULL, 0, out);
89 sha1_base_do_finalize(desc, __sha1_ce_transform);
91 return sha1_base_finish(desc, out);
94 static int sha1_ce_export(struct shash_desc *desc, void *out)
96 struct sha1_ce_state *sctx = shash_desc_ctx(desc);
98 memcpy(out, &sctx->sst, sizeof(struct sha1_state));
102 static int sha1_ce_import(struct shash_desc *desc, const void *in)
104 struct sha1_ce_state *sctx = shash_desc_ctx(desc);
106 memcpy(&sctx->sst, in, sizeof(struct sha1_state));
111 static struct shash_alg alg = {
112 .init = sha1_base_init,
113 .update = sha1_ce_update,
114 .final = sha1_ce_final,
115 .finup = sha1_ce_finup,
116 .import = sha1_ce_import,
117 .export = sha1_ce_export,
118 .descsize = sizeof(struct sha1_ce_state),
119 .statesize = sizeof(struct sha1_state),
120 .digestsize = SHA1_DIGEST_SIZE,
123 .cra_driver_name = "sha1-ce",
125 .cra_blocksize = SHA1_BLOCK_SIZE,
126 .cra_module = THIS_MODULE,
130 static int __init sha1_ce_mod_init(void)
132 return crypto_register_shash(&alg);
135 static void __exit sha1_ce_mod_fini(void)
137 crypto_unregister_shash(&alg);
140 module_cpu_feature_match(SHA1, sha1_ce_mod_init);
141 module_exit(sha1_ce_mod_fini);