Remove ansi_cprng test as new kernels don't support it
Resolves: RHEL-242707 Signed-off-by: Zoltan Fridrich <zfridric@redhat.com>
This commit is contained in:
parent
a77c0b10e4
commit
8a3bf3733b
@ -1,74 +0,0 @@
|
||||
From 873842046678d109d8e382ce2e2870909876bbfe Mon Sep 17 00:00:00 2001
|
||||
From: Zoltan Fridrich <zfridric@redhat.com>
|
||||
Date: Fri, 11 Aug 2023 12:20:22 +0200
|
||||
Subject: [PATCH] Disable test of obsolete ansi_cprng in FIPS mode
|
||||
|
||||
Signed-off-by: Zoltan Fridrich <zfridric@redhat.com>
|
||||
Signed-off-by: Stephan Mueller <smueller@chronox.de>
|
||||
---
|
||||
test/kcapi-main.c | 45 ++++++++++++++++++++++-----------------------
|
||||
1 file changed, 22 insertions(+), 23 deletions(-)
|
||||
|
||||
diff --git a/test/kcapi-main.c b/test/kcapi-main.c
|
||||
index 67fb53f..23fc8ed 100644
|
||||
--- a/test/kcapi-main.c
|
||||
+++ b/test/kcapi-main.c
|
||||
@@ -652,8 +652,6 @@ static int is_fips_mode(void)
|
||||
static int auxiliary_tests(void)
|
||||
{
|
||||
struct kcapi_handle *handle = NULL;
|
||||
- const char *ansi_cprng_name = is_fips_mode() ? "fips(ansi_cprng)"
|
||||
- : "ansi_cprng";
|
||||
int ret = 0;
|
||||
|
||||
if (kcapi_aead_init(&handle, "ccm(aes)", 0)) {
|
||||
@@ -711,27 +709,28 @@ static int auxiliary_tests(void)
|
||||
if (aux_test_rng("drbg_nopr_ctr_aes256", NULL, 0))
|
||||
ret++;
|
||||
|
||||
- /* X9.31 RNG must require seed */
|
||||
- printf("X9.31 missing seeding: ");
|
||||
- if (!aux_test_rng(ansi_cprng_name, NULL, 0))
|
||||
- ret++;
|
||||
- /* X9.31 seed too short */
|
||||
- printf("X9.31 insufficient seeding: ");
|
||||
- if (!aux_test_rng(ansi_cprng_name,
|
||||
- (uint8_t *)
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 16))
|
||||
- ret++;
|
||||
- /* X9.31 seed right sized short */
|
||||
- if (aux_test_rng(ansi_cprng_name,
|
||||
- (uint8_t *)
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 32)) {
|
||||
- printf("Error for %s: kernel module ansi_cprng present?\n",
|
||||
- ansi_cprng_name);
|
||||
- ret++;
|
||||
+ if (!is_fips_mode()) {
|
||||
+ /* X9.31 RNG must require seed */
|
||||
+ printf("X9.31 missing seeding: ");
|
||||
+ if (!aux_test_rng("ansi_cprng", NULL, 0))
|
||||
+ ret++;
|
||||
+ /* X9.31 seed too short */
|
||||
+ printf("X9.31 insufficient seeding: ");
|
||||
+ if (!aux_test_rng("ansi_cprng",
|
||||
+ (uint8_t *)
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 16))
|
||||
+ ret++;
|
||||
+ /* X9.31 seed right sized short */
|
||||
+ if (aux_test_rng("ansi_cprng",
|
||||
+ (uint8_t *)
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
+ "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 32)) {
|
||||
+ printf("Error for ansi_cprng: kernel module ansi_cprng present?\n");
|
||||
+ ret++;
|
||||
+ }
|
||||
}
|
||||
|
||||
return ret;
|
||||
57
002-remove-ansi_cprng-test.patch
Normal file
57
002-remove-ansi_cprng-test.patch
Normal file
@ -0,0 +1,57 @@
|
||||
diff --git a/test/kcapi-main.c b/test/kcapi-main.c
|
||||
index 67fb53f..7556796 100644
|
||||
--- a/test/kcapi-main.c
|
||||
+++ b/test/kcapi-main.c
|
||||
@@ -637,23 +637,9 @@ static int aux_test_rng(const char *name, const uint8_t *seed, uint32_t seedlen)
|
||||
return 0;
|
||||
}
|
||||
|
||||
-static int is_fips_mode(void)
|
||||
-{
|
||||
- char c;
|
||||
- FILE *f = fopen("/proc/sys/crypto/fips_enabled", "r");
|
||||
- if (!f)
|
||||
- return 0;
|
||||
- if (fread(&c, 1, 1, f) < 1)
|
||||
- c = '0';
|
||||
- fclose(f);
|
||||
- return c == '1';
|
||||
-}
|
||||
-
|
||||
static int auxiliary_tests(void)
|
||||
{
|
||||
struct kcapi_handle *handle = NULL;
|
||||
- const char *ansi_cprng_name = is_fips_mode() ? "fips(ansi_cprng)"
|
||||
- : "ansi_cprng";
|
||||
int ret = 0;
|
||||
|
||||
if (kcapi_aead_init(&handle, "ccm(aes)", 0)) {
|
||||
@@ -711,28 +697,5 @@ static int auxiliary_tests(void)
|
||||
if (aux_test_rng("drbg_nopr_ctr_aes256", NULL, 0))
|
||||
ret++;
|
||||
|
||||
- /* X9.31 RNG must require seed */
|
||||
- printf("X9.31 missing seeding: ");
|
||||
- if (!aux_test_rng(ansi_cprng_name, NULL, 0))
|
||||
- ret++;
|
||||
- /* X9.31 seed too short */
|
||||
- printf("X9.31 insufficient seeding: ");
|
||||
- if (!aux_test_rng(ansi_cprng_name,
|
||||
- (uint8_t *)
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 16))
|
||||
- ret++;
|
||||
- /* X9.31 seed right sized short */
|
||||
- if (aux_test_rng(ansi_cprng_name,
|
||||
- (uint8_t *)
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||
- "\x00\x01\x02\x03\x04\x05\x06\x07\x08", 32)) {
|
||||
- printf("Error for %s: kernel module ansi_cprng present?\n",
|
||||
- ansi_cprng_name);
|
||||
- ret++;
|
||||
- }
|
||||
-
|
||||
return ret;
|
||||
}
|
||||
@ -123,7 +123,7 @@ done \
|
||||
|
||||
Name: libkcapi
|
||||
Version: %{vmajor}.%{vminor}.%{vpatch}
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Summary: User space interface to the Linux Kernel Crypto API
|
||||
|
||||
License: BSD-3-Clause OR GPL-2.0-only
|
||||
@ -134,7 +134,7 @@ Source2: sha512hmac-openssl.sh
|
||||
Source3: fipshmac-openssl.sh
|
||||
|
||||
Patch1: 001-tests-kernel-version.patch
|
||||
Patch2: 002-fips-disable-ansi_cprng.patch
|
||||
Patch2: 002-remove-ansi_cprng-test.patch
|
||||
Patch3: 003-zeroize-hasher.patch
|
||||
Patch4: 004-hasher-target-option.patch
|
||||
Patch5: 005-fips-mode-tests.patch
|
||||
@ -520,6 +520,10 @@ popd
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Aug 18 2026 Zoltan Fridrich <zfridric@redhat.com> - 1.4.0-3
|
||||
- Remove ansi_cprng test as new kernels don't support it
|
||||
Resolves: RHEL-242707
|
||||
|
||||
* Fri Dec 01 2023 Zoltan Fridrich <zfridric@redhat.com> - 1.4.0-2
|
||||
- Backport fixes for kcapi-hasher target option
|
||||
Related: RHEL-15298
|
||||
|
||||
Loading…
Reference in New Issue
Block a user