Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:illuusio:python:3.11
openssl-3
openssl-Force-FIPS.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File openssl-Force-FIPS.patch of Package openssl-3
From 2c110cf5551a3869514e697d8dc06682b62ca57d Mon Sep 17 00:00:00 2001 From: Dmitry Belyavskiy <dbelyavs@redhat.com> Date: Mon, 21 Aug 2023 11:59:02 +0200 Subject: [PATCH 16/48] 0032-Force-fips.patch Patch-name: 0032-Force-fips.patch Patch-id: 32 Patch-status: | # We load FIPS provider and set FIPS properties implicitly --- crypto/provider_conf.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) Index: openssl-3.1.7/crypto/provider_conf.c =================================================================== --- openssl-3.1.7.orig/crypto/provider_conf.c +++ openssl-3.1.7/crypto/provider_conf.c @@ -10,6 +10,8 @@ #include <string.h> #include <openssl/trace.h> #include <openssl/err.h> +#include <openssl/evp.h> +#include <unistd.h> #include <openssl/conf.h> #include <openssl/safestack.h> #include <openssl/provider.h> @@ -237,7 +239,7 @@ static int provider_conf_activate(OSSL_L if (path != NULL) ossl_provider_set_module_path(prov, path); - ok = provider_conf_params(prov, NULL, NULL, value, cnf); + ok = cnf ? provider_conf_params(prov, NULL, NULL, value, cnf) : 1; if (ok == 1) { if (!ossl_provider_activate(prov, 1, 0)) { @@ -266,6 +268,8 @@ static int provider_conf_activate(OSSL_L if (ok <= 0) ossl_provider_free(prov); + } else { + ok = 1; } CRYPTO_THREAD_unlock(pcgbl->lock); @@ -383,6 +387,32 @@ static int provider_conf_init(CONF_IMODU return 0; } + if (ossl_get_kernel_fips_flag() != 0) { /* XXX from provider_conf_load */ + OSSL_LIB_CTX *libctx = NCONF_get0_libctx((CONF *)cnf); +# define FIPS_LOCAL_CONF OPENSSLDIR "/fips_local.cnf" + + if (access(FIPS_LOCAL_CONF, R_OK) == 0) { + CONF *fips_conf = NCONF_new_ex(libctx, NCONF_default()); + if (NCONF_load(fips_conf, FIPS_LOCAL_CONF, NULL) <= 0) + return 0; + if (provider_conf_load(libctx, "fips", "fips_sect", fips_conf) != 1) { + NCONF_free(fips_conf); + return 0; + } + NCONF_free(fips_conf); + } else { + if (provider_conf_activate(libctx, "fips", NULL, NULL, 0, NULL) != 1) + return 0; + } + /* provider_conf_load can return 1 even when the test is failed so check explicitly */ + if (OSSL_PROVIDER_available(libctx, "fips") != 1) + return 0; + if (provider_conf_activate(libctx, "base", NULL, NULL, 0, NULL) != 1) + return 0; + if (EVP_default_properties_enable_fips(libctx, 1) != 1) + return 0; + } + return 1; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor