mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
Crypto library fixes for v7.0-rc3
- Several test fixes:
- Fix flakiness in the interrupt context tests in certain VMs.
- Make the lib/crypto/ KUnit tests depend on the corresponding
library options rather than selecting them. This follows the
standard KUnit convention, and it fixes an issue where enabling
CONFIG_KUNIT_ALL_TESTS pulled in all the crypto library code.
- Add a kunitconfig file for lib/crypto/.
- Fix a couple stale references to "aes-generic" that made it in
concurrently with the rename to "aes-lib".
- Update the help text for several CRYPTO kconfig options to remove
outdated information about users that now use the library instead.
-----BEGIN PGP SIGNATURE-----
iIoEABYIADIWIQSacvsUNc7UX4ntmEPzXCl4vpKOKwUCaaj9YRQcZWJpZ2dlcnNA
a2VybmVsLm9yZwAKCRDzXCl4vpKOKyFZAP0b6KbEjGnQGE00nh6ChNrWs8RgyNx9
y+gtR2EMKnUf1wEA/q/VBPl5UgO3z4TrmJuSrpyMLzz+/XwUGJHKPEqTtwU=
=iJZE
-----END PGP SIGNATURE-----
Merge tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux
Pull crypto library fixes from Eric Biggers:
- Several test fixes:
- Fix flakiness in the interrupt context tests in certain VMs
- Make the lib/crypto/ KUnit tests depend on the corresponding
library options rather than selecting them. This follows the
standard KUnit convention, and it fixes an issue where enabling
CONFIG_KUNIT_ALL_TESTS pulled in all the crypto library code
- Add a kunitconfig file for lib/crypto/
- Fix a couple stale references to "aes-generic" that made it in
concurrently with the rename to "aes-lib"
- Update the help text for several CRYPTO kconfig options to remove
outdated information about users that now use the library instead
* tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux:
crypto: testmgr - Fix stale references to aes-generic
crypto: Clean up help text for CRYPTO_CRC32
crypto: Clean up help text for CRYPTO_CRC32C
crypto: Clean up help text for CRYPTO_XXHASH
crypto: Clean up help text for CRYPTO_SHA256
crypto: Clean up help text for CRYPTO_BLAKE2B
lib/crypto: tests: Add a .kunitconfig file
lib/crypto: tests: Depend on library options rather than selecting them
kunit: irq: Ensure timer doesn't fire too frequently
This commit is contained in:
commit
6a42ff33f3
5 changed files with 76 additions and 50 deletions
34
lib/crypto/.kunitconfig
Normal file
34
lib/crypto/.kunitconfig
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
CONFIG_KUNIT=y
|
||||
|
||||
# These kconfig options select all the CONFIG_CRYPTO_LIB_* symbols that have a
|
||||
# corresponding KUnit test. Those symbols cannot be directly enabled here,
|
||||
# since they are hidden symbols.
|
||||
CONFIG_CRYPTO=y
|
||||
CONFIG_CRYPTO_ADIANTUM=y
|
||||
CONFIG_CRYPTO_BLAKE2B=y
|
||||
CONFIG_CRYPTO_CHACHA20POLY1305=y
|
||||
CONFIG_CRYPTO_HCTR2=y
|
||||
CONFIG_CRYPTO_MD5=y
|
||||
CONFIG_CRYPTO_MLDSA=y
|
||||
CONFIG_CRYPTO_SHA1=y
|
||||
CONFIG_CRYPTO_SHA256=y
|
||||
CONFIG_CRYPTO_SHA512=y
|
||||
CONFIG_CRYPTO_SHA3=y
|
||||
CONFIG_INET=y
|
||||
CONFIG_IPV6=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_WIREGUARD=y
|
||||
|
||||
CONFIG_CRYPTO_LIB_BLAKE2B_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_BLAKE2S_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_CURVE25519_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_MD5_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_MLDSA_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_NH_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_POLY1305_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_POLYVAL_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_SHA1_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_SHA256_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_SHA512_KUNIT_TEST=y
|
||||
CONFIG_CRYPTO_LIB_SHA3_KUNIT_TEST=y
|
||||
|
|
@ -2,10 +2,9 @@
|
|||
|
||||
config CRYPTO_LIB_BLAKE2B_KUNIT_TEST
|
||||
tristate "KUnit tests for BLAKE2b" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_BLAKE2B
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_BLAKE2B
|
||||
help
|
||||
KUnit tests for the BLAKE2b cryptographic hash function.
|
||||
|
||||
|
|
@ -14,71 +13,64 @@ config CRYPTO_LIB_BLAKE2S_KUNIT_TEST
|
|||
depends on KUNIT
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
# No need to select CRYPTO_LIB_BLAKE2S here, as that option doesn't
|
||||
# No need to depend on CRYPTO_LIB_BLAKE2S here, as that option doesn't
|
||||
# exist; the BLAKE2s code is always built-in for the /dev/random driver.
|
||||
help
|
||||
KUnit tests for the BLAKE2s cryptographic hash function.
|
||||
|
||||
config CRYPTO_LIB_CURVE25519_KUNIT_TEST
|
||||
tristate "KUnit tests for Curve25519" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_CURVE25519
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_CURVE25519
|
||||
help
|
||||
KUnit tests for the Curve25519 Diffie-Hellman function.
|
||||
|
||||
config CRYPTO_LIB_MD5_KUNIT_TEST
|
||||
tristate "KUnit tests for MD5" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_MD5
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_MD5
|
||||
help
|
||||
KUnit tests for the MD5 cryptographic hash function and its
|
||||
corresponding HMAC.
|
||||
|
||||
config CRYPTO_LIB_MLDSA_KUNIT_TEST
|
||||
tristate "KUnit tests for ML-DSA" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_MLDSA
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_MLDSA
|
||||
help
|
||||
KUnit tests for the ML-DSA digital signature algorithm.
|
||||
|
||||
config CRYPTO_LIB_NH_KUNIT_TEST
|
||||
tristate "KUnit tests for NH" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_NH
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_NH
|
||||
help
|
||||
KUnit tests for the NH almost-universal hash function.
|
||||
|
||||
config CRYPTO_LIB_POLY1305_KUNIT_TEST
|
||||
tristate "KUnit tests for Poly1305" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_POLY1305
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_POLY1305
|
||||
help
|
||||
KUnit tests for the Poly1305 library functions.
|
||||
|
||||
config CRYPTO_LIB_POLYVAL_KUNIT_TEST
|
||||
tristate "KUnit tests for POLYVAL" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_POLYVAL
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_POLYVAL
|
||||
help
|
||||
KUnit tests for the POLYVAL library functions.
|
||||
|
||||
config CRYPTO_LIB_SHA1_KUNIT_TEST
|
||||
tristate "KUnit tests for SHA-1" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_SHA1
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_SHA1
|
||||
help
|
||||
KUnit tests for the SHA-1 cryptographic hash function and its
|
||||
corresponding HMAC.
|
||||
|
|
@ -87,10 +79,9 @@ config CRYPTO_LIB_SHA1_KUNIT_TEST
|
|||
# included, for consistency with the naming used elsewhere (e.g. CRYPTO_SHA256).
|
||||
config CRYPTO_LIB_SHA256_KUNIT_TEST
|
||||
tristate "KUnit tests for SHA-224 and SHA-256" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_SHA256
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_SHA256
|
||||
help
|
||||
KUnit tests for the SHA-224 and SHA-256 cryptographic hash functions
|
||||
and their corresponding HMACs.
|
||||
|
|
@ -99,20 +90,18 @@ config CRYPTO_LIB_SHA256_KUNIT_TEST
|
|||
# included, for consistency with the naming used elsewhere (e.g. CRYPTO_SHA512).
|
||||
config CRYPTO_LIB_SHA512_KUNIT_TEST
|
||||
tristate "KUnit tests for SHA-384 and SHA-512" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_SHA512
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_SHA512
|
||||
help
|
||||
KUnit tests for the SHA-384 and SHA-512 cryptographic hash functions
|
||||
and their corresponding HMACs.
|
||||
|
||||
config CRYPTO_LIB_SHA3_KUNIT_TEST
|
||||
tristate "KUnit tests for SHA-3" if !KUNIT_ALL_TESTS
|
||||
depends on KUNIT
|
||||
depends on KUNIT && CRYPTO_LIB_SHA3
|
||||
default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS
|
||||
select CRYPTO_LIB_BENCHMARK_VISIBLE
|
||||
select CRYPTO_LIB_SHA3
|
||||
help
|
||||
KUnit tests for the SHA3 cryptographic hash and XOF functions,
|
||||
including SHA3-224, SHA3-256, SHA3-384, SHA3-512, SHAKE128 and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue