mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
lib/crypto: sparc/sha512: Migrate optimized SHA-512 code to library
Instead of exposing the sparc-optimized SHA-512 code via sparc-specific crypto_shash algorithms, instead just implement the sha512_blocks() library function. This is much simpler, it makes the SHA-512 (and SHA-384) library functions be sparc-optimized, and it fixes the longstanding issue where the sparc-optimized SHA-512 code was disabled by default. SHA-512 still remains available through crypto_shash, but individual architectures no longer need to handle it. To match sha512_blocks(), change the type of the nblocks parameter of the assembly function from int to size_t. The assembly function actually already treated it as size_t. Note: to see the diff from arch/sparc/crypto/sha512_glue.c to lib/crypto/sparc/sha512.h, view this commit with 'git show -M10'. Acked-by: Ard Biesheuvel <ardb@kernel.org> Link: https://lore.kernel.org/r/20250630160320.2888-14-ebiggers@kernel.org Signed-off-by: Eric Biggers <ebiggers@kernel.org>
This commit is contained in:
parent
b7b366087e
commit
02b35bab7e
|
|
@ -36,16 +36,6 @@ config CRYPTO_SHA1_SPARC64
|
|||
|
||||
Architecture: sparc64
|
||||
|
||||
config CRYPTO_SHA512_SPARC64
|
||||
tristate "Hash functions: SHA-384 and SHA-512"
|
||||
depends on SPARC64
|
||||
select CRYPTO_SHA512
|
||||
select CRYPTO_HASH
|
||||
help
|
||||
SHA-384 and SHA-512 secure hash algorithms (FIPS 180)
|
||||
|
||||
Architecture: sparc64 using crypto instructions, when available
|
||||
|
||||
config CRYPTO_AES_SPARC64
|
||||
tristate "Ciphers: AES, modes: ECB, CBC, CTR"
|
||||
depends on SPARC64
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
#
|
||||
|
||||
obj-$(CONFIG_CRYPTO_SHA1_SPARC64) += sha1-sparc64.o
|
||||
obj-$(CONFIG_CRYPTO_SHA512_SPARC64) += sha512-sparc64.o
|
||||
obj-$(CONFIG_CRYPTO_MD5_SPARC64) += md5-sparc64.o
|
||||
|
||||
obj-$(CONFIG_CRYPTO_AES_SPARC64) += aes-sparc64.o
|
||||
|
|
@ -12,7 +11,6 @@ obj-$(CONFIG_CRYPTO_DES_SPARC64) += des-sparc64.o
|
|||
obj-$(CONFIG_CRYPTO_CAMELLIA_SPARC64) += camellia-sparc64.o
|
||||
|
||||
sha1-sparc64-y := sha1_asm.o sha1_glue.o
|
||||
sha512-sparc64-y := sha512_asm.o sha512_glue.o
|
||||
md5-sparc64-y := md5_asm.o md5_glue.o
|
||||
|
||||
aes-sparc64-y := aes_asm.o aes_glue.o
|
||||
|
|
|
|||
|
|
@ -1,122 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/* Glue code for SHA512 hashing optimized for sparc64 crypto opcodes.
|
||||
*
|
||||
* This is based largely upon crypto/sha512_generic.c
|
||||
*
|
||||
* Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com>
|
||||
* Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
|
||||
* Copyright (c) 2003 Kyle McMartin <kyle@debian.org>
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
#include <asm/elf.h>
|
||||
#include <asm/opcodes.h>
|
||||
#include <asm/pstate.h>
|
||||
#include <crypto/internal/hash.h>
|
||||
#include <crypto/sha2.h>
|
||||
#include <crypto/sha512_base.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
|
||||
asmlinkage void sha512_sparc64_transform(u64 *digest, const char *data,
|
||||
unsigned int rounds);
|
||||
|
||||
static void sha512_block(struct sha512_state *sctx, const u8 *src, int blocks)
|
||||
{
|
||||
sha512_sparc64_transform(sctx->state, src, blocks);
|
||||
}
|
||||
|
||||
static int sha512_sparc64_update(struct shash_desc *desc, const u8 *data,
|
||||
unsigned int len)
|
||||
{
|
||||
return sha512_base_do_update_blocks(desc, data, len, sha512_block);
|
||||
}
|
||||
|
||||
static int sha512_sparc64_finup(struct shash_desc *desc, const u8 *src,
|
||||
unsigned int len, u8 *out)
|
||||
{
|
||||
sha512_base_do_finup(desc, src, len, sha512_block);
|
||||
return sha512_base_finish(desc, out);
|
||||
}
|
||||
|
||||
static struct shash_alg sha512_alg = {
|
||||
.digestsize = SHA512_DIGEST_SIZE,
|
||||
.init = sha512_base_init,
|
||||
.update = sha512_sparc64_update,
|
||||
.finup = sha512_sparc64_finup,
|
||||
.descsize = SHA512_STATE_SIZE,
|
||||
.base = {
|
||||
.cra_name = "sha512",
|
||||
.cra_driver_name= "sha512-sparc64",
|
||||
.cra_priority = SPARC_CR_OPCODE_PRIORITY,
|
||||
.cra_blocksize = SHA512_BLOCK_SIZE,
|
||||
.cra_module = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
|
||||
static struct shash_alg sha384_alg = {
|
||||
.digestsize = SHA384_DIGEST_SIZE,
|
||||
.init = sha384_base_init,
|
||||
.update = sha512_sparc64_update,
|
||||
.finup = sha512_sparc64_finup,
|
||||
.descsize = SHA512_STATE_SIZE,
|
||||
.base = {
|
||||
.cra_name = "sha384",
|
||||
.cra_driver_name= "sha384-sparc64",
|
||||
.cra_priority = SPARC_CR_OPCODE_PRIORITY,
|
||||
.cra_blocksize = SHA384_BLOCK_SIZE,
|
||||
.cra_module = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
|
||||
static bool __init sparc64_has_sha512_opcode(void)
|
||||
{
|
||||
unsigned long cfr;
|
||||
|
||||
if (!(sparc64_elf_hwcap & HWCAP_SPARC_CRYPTO))
|
||||
return false;
|
||||
|
||||
__asm__ __volatile__("rd %%asr26, %0" : "=r" (cfr));
|
||||
if (!(cfr & CFR_SHA512))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static int __init sha512_sparc64_mod_init(void)
|
||||
{
|
||||
if (sparc64_has_sha512_opcode()) {
|
||||
int ret = crypto_register_shash(&sha384_alg);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = crypto_register_shash(&sha512_alg);
|
||||
if (ret < 0) {
|
||||
crypto_unregister_shash(&sha384_alg);
|
||||
return ret;
|
||||
}
|
||||
|
||||
pr_info("Using sparc64 sha512 opcode optimized SHA-512/SHA-384 implementation\n");
|
||||
return 0;
|
||||
}
|
||||
pr_info("sparc64 sha512 opcode not available.\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
static void __exit sha512_sparc64_mod_fini(void)
|
||||
{
|
||||
crypto_unregister_shash(&sha384_alg);
|
||||
crypto_unregister_shash(&sha512_alg);
|
||||
}
|
||||
|
||||
module_init(sha512_sparc64_mod_init);
|
||||
module_exit(sha512_sparc64_mod_fini);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("SHA-384 and SHA-512 Secure Hash Algorithm, sparc64 sha512 opcode accelerated");
|
||||
|
||||
MODULE_ALIAS_CRYPTO("sha384");
|
||||
MODULE_ALIAS_CRYPTO("sha512");
|
||||
|
||||
#include "crop_devid.c"
|
||||
|
|
@ -182,6 +182,7 @@ config CRYPTO_LIB_SHA512_ARCH
|
|||
default y if MIPS && CPU_CAVIUM_OCTEON
|
||||
default y if RISCV && 64BIT && RISCV_ISA_V && TOOLCHAIN_HAS_VECTOR_CRYPTO
|
||||
default y if S390
|
||||
default y if SPARC64
|
||||
|
||||
config CRYPTO_LIB_SM3
|
||||
tristate
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ libsha512-$(CONFIG_KERNEL_MODE_NEON) += arm64/sha512-ce-core.o
|
|||
endif
|
||||
|
||||
libsha512-$(CONFIG_RISCV) += riscv/sha512-riscv64-zvknhb-zvkb.o
|
||||
libsha512-$(CONFIG_SPARC) += sparc/sha512_asm.o
|
||||
endif # CONFIG_CRYPTO_LIB_SHA512_ARCH
|
||||
|
||||
obj-$(CONFIG_MPILIB) += mpi/
|
||||
|
|
|
|||
42
lib/crypto/sparc/sha512.h
Normal file
42
lib/crypto/sparc/sha512.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* SHA-512 accelerated using the sparc64 sha512 opcodes
|
||||
*
|
||||
* Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com>
|
||||
* Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
|
||||
* Copyright (c) 2003 Kyle McMartin <kyle@debian.org>
|
||||
*/
|
||||
|
||||
#include <asm/elf.h>
|
||||
#include <asm/opcodes.h>
|
||||
#include <asm/pstate.h>
|
||||
|
||||
static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_sha512_opcodes);
|
||||
|
||||
asmlinkage void sha512_sparc64_transform(struct sha512_block_state *state,
|
||||
const u8 *data, size_t nblocks);
|
||||
|
||||
static void sha512_blocks(struct sha512_block_state *state,
|
||||
const u8 *data, size_t nblocks)
|
||||
{
|
||||
if (static_branch_likely(&have_sha512_opcodes))
|
||||
sha512_sparc64_transform(state, data, nblocks);
|
||||
else
|
||||
sha512_blocks_generic(state, data, nblocks);
|
||||
}
|
||||
|
||||
#define sha512_mod_init_arch sha512_mod_init_arch
|
||||
static inline void sha512_mod_init_arch(void)
|
||||
{
|
||||
unsigned long cfr;
|
||||
|
||||
if (!(sparc64_elf_hwcap & HWCAP_SPARC_CRYPTO))
|
||||
return;
|
||||
|
||||
__asm__ __volatile__("rd %%asr26, %0" : "=r" (cfr));
|
||||
if (!(cfr & CFR_SHA512))
|
||||
return;
|
||||
|
||||
static_branch_enable(&have_sha512_opcodes);
|
||||
pr_info("Using sparc64 sha512 opcode optimized SHA-512/SHA-384 implementation\n");
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user