public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Alexander Sosedkin <asosedkin@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/openssl] rebase_40beta: Instrument with USDT probes related to SHA-1 deprecation
Date: Tue, 09 Jun 2026 12:45:19 GMT [thread overview]
Message-ID: <178100911997.1.6940943114052533187.rpms-openssl-52331659e91e@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/openssl
Branch : rebase_40beta
Commit : 52331659e91ec7a474c4b616fa0b4b7b2fa624aa
Author : Alexander Sosedkin <asosedkin@redhat.com>
Date : 2024-05-28T09:33:50+02:00
Stats : +250/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/openssl/c/52331659e91ec7a474c4b616fa0b4b7b2fa624aa?branch=rebase_40beta
Log:
Instrument with USDT probes related to SHA-1 deprecation
The current attempt is for
https://fedoraproject.org/wiki/Changes/OpenSSLDistrustSHA1SigVer
---
diff --git a/0120-Allow-disabling-of-SHA1-signatures.patch b/0120-Allow-disabling-of-SHA1-signatures.patch
new file mode 100644
index 0000000..01ad338
--- /dev/null
+++ b/0120-Allow-disabling-of-SHA1-signatures.patch
@@ -0,0 +1,244 @@
+From e30ce86ca436f042559c2228724b40cf43985314 Mon Sep 17 00:00:00 2001
+From: Clemens Lang <cllang@redhat.com>
+Date: Thu, 21 Mar 2024 19:10:57 +0100
+Subject: [PATCH] Instrument with USDT probes related to SHA-1 deprecation
+
+In order to discover remaining uses of SHA-1 in signatures without
+forcefully breaking the code paths, add USDT probes that can be queried
+with systemtap at runtime.
+
+This should allow identifying components that still use SHA-1 signatures
+in production so that they can be transitioned to more modern hash
+algorithms.
+
+Patch-name: 0120-Allow-disabling-of-SHA1-signatures.patch
+Patch-id: 120
+Patch-status: |
+ # https://fedoraproject.org/wiki/Changes/OpenSSLDistrustSHA1SigVer
+Submitted-by: Alexander Sosedkin <asosedkin@redhat.com>
+---
+ crypto/evp/m_sigver.c | 13 +++++++++----
+ crypto/evp/pmeth_lib.c | 13 +++++++++----
+ crypto/x509/x509_vfy.c | 6 +++++-
+ providers/common/securitycheck.c | 22 +++++++++++++++-------
+ providers/common/securitycheck_default.c | 13 +++++++++++--
+ ssl/t1_lib.c | 8 +++++++-
+ 7 files changed, 60 insertions(+), 20 deletions(-)
+
+diff --git a/crypto/evp/m_sigver.c b/crypto/evp/m_sigver.c
+index 3e9f33c26c..bebea9c5f6 100644
+--- a/crypto/evp/m_sigver.c
++++ b/crypto/evp/m_sigver.c
+@@ -17,6 +17,8 @@
+ #include "evp_local.h"
+ #include "crypto/context.h"
+
++#include <sys/sdt.h>
++
+ typedef struct ossl_legacy_digest_signatures_st {
+ int allowed;
+ } OSSL_LEGACY_DIGEST_SIGNATURES;
+@@ -335,10 +337,13 @@ static int do_sigver_init(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
+ && !EVP_PKEY_is_a(locpctx->pkey, SN_tls1_prf)
+ && !EVP_PKEY_is_a(locpctx->pkey, SN_hkdf)) {
+ int mdnid = EVP_MD_nid(ctx->reqdigest);
+- if (!ossl_ctx_legacy_digest_signatures_allowed(locpctx->libctx, 0)
+- && (mdnid == NID_sha1 || mdnid == NID_md5_sha1)) {
+- ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_DIGEST);
+- goto err;
++ if (mdnid == NID_sha1 || mdnid == NID_md5_sha1) {
++ if (!ossl_ctx_legacy_digest_signatures_allowed(locpctx->libctx, 0)) {
++ ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_DIGEST);
++ goto err;
++ } else {
++ DTRACE_PROBE1(libcrypto, fedora_do_sigver_init_1, mdnid);
++ }
+ }
+ }
+ #endif /* !defined(FIPS_MODULE) */
+diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c
+index 248f655d0f..92f98c4c21 100644
+--- a/crypto/evp/pmeth_lib.c
++++ b/crypto/evp/pmeth_lib.c
+@@ -36,6 +36,8 @@
+ #include "internal/sslconf.h"
+ #include "evp_local.h"
+
++#include <sys/sdt.h>
++
+ #ifndef FIPS_MODULE
+
+ static int evp_pkey_ctx_store_cached_data(EVP_PKEY_CTX *ctx,
+@@ -959,10 +961,13 @@ static int evp_pkey_ctx_set_md(EVP_PKEY_CTX *ctx, const EVP_MD *md,
+ && !EVP_PKEY_is_a(ctx->pkey, SN_tls1_prf)
+ && !EVP_PKEY_is_a(ctx->pkey, SN_hkdf)) {
+ int mdnid = EVP_MD_nid(md);
+- if ((mdnid == NID_sha1 || mdnid == NID_md5_sha1)
+- && !ossl_ctx_legacy_digest_signatures_allowed(ctx->libctx, 0)) {
+- ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_DIGEST);
+- return -1;
++ if (mdnid == NID_sha1 || mdnid == NID_md5_sha1) {
++ if (!ossl_ctx_legacy_digest_signatures_allowed(ctx->libctx, 0)) {
++ ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_DIGEST);
++ return -1;
++ } else {
++ DTRACE_PROBE1(libcrypto, fedora_evp_pkey_ctx_set_md_1, mdnid);
++ }
+ }
+ }
+
+diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c
+index 1dfbe58a4a..6ef83792f8 100644
+--- a/crypto/x509/x509_vfy.c
++++ b/crypto/x509/x509_vfy.c
+@@ -29,6 +29,8 @@
+ #include "crypto/x509.h"
+ #include "x509_local.h"
+
++#include <sys/sdt.h>
++
+ /* CRL score values */
+
+ #define CRL_SCORE_NOCRITICAL 0x100 /* No unhandled critical extensions */
+@@ -3689,11 +3691,13 @@ static int check_sig_level(X509_STORE_CTX *ctx, X509 *cert)
+
+ if ((nid == NID_sha1 || nid == NID_md5_sha1)
+ && ossl_ctx_legacy_digest_signatures_allowed(libctx, 0)
+- && ctx->param->auth_level < 2)
++ && ctx->param->auth_level < 2) {
++ DTRACE_PROBE1(libcrypto, fedora_check_sig_level_1, nid);
+ /* When rh-allow-sha1-signatures = yes and security level <= 1,
+ * explicitly allow SHA1 for backwards compatibility. Also allow
+ * MD5-SHA1 because TLS 1.0 is still supported, which uses it. */
+ return 1;
++ }
+
+ return secbits >= minbits_table[level - 1];
+ }
+diff --git a/providers/common/securitycheck.c b/providers/common/securitycheck.c
+index f635b5aec8..b061125291 100644
+--- a/providers/common/securitycheck.c
++++ b/providers/common/securitycheck.c
+@@ -21,6 +21,8 @@
+ #include "prov/securitycheck.h"
+ #include "internal/sslconf.h"
+
++#include <sys/sdt.h>
++
+ /*
+ * FIPS requires a minimum security strength of 112 bits (for encryption or
+ * signing), and for legacy purposes 80 bits (for decryption or verifying).
+@@ -247,11 +249,14 @@ int ossl_digest_get_approved_nid_with_sha1(OSSL_LIB_CTX *ctx, const EVP_MD *md,
+ # endif /* OPENSSL_NO_FIPS_SECURITYCHECKS */
+
+ #ifndef FIPS_MODULE
+- if (!ossl_ctx_legacy_digest_signatures_allowed(ctx, 0))
+- /* SHA1 is globally disabled, check whether we want to locally allow
+- * it. */
+- if (mdnid == NID_sha1 && !sha1_allowed)
++ if (mdnid == NID_sha1 && !sha1_allowed) {
++ if (!ossl_ctx_legacy_digest_signatures_allowed(ctx, 0))
++ /* SHA1 is globally disabled, check whether we want to locally allow
++ * it. */
+ mdnid = -1;
++ else
++ DTRACE_PROBE1(libcrypto, fedora_ossl_digest_get_approved_nid_with_sha1_1, mdnid);
++ }
+ #endif
+
+ return mdnid;
+@@ -267,9 +272,12 @@ int ossl_digest_is_allowed(OSSL_LIB_CTX *ctx, const EVP_MD *md)
+ #ifndef FIPS_MODULE
+ {
+ int mdnid = EVP_MD_nid(md);
+- if ((mdnid == NID_sha1 || mdnid == NID_md5_sha1)
+- && !ossl_ctx_legacy_digest_signatures_allowed(ctx, 0))
+- return 0;
++ if (mdnid == NID_sha1 || mdnid == NID_md5_sha1) {
++ if (!ossl_ctx_legacy_digest_signatures_allowed(ctx, 0))
++ return 0;
++ else
++ DTRACE_PROBE1(libcrypto, fedora_ossl_digest_is_allowed_1, mdnid);
++ }
+ }
+ #endif
+
+diff --git a/providers/common/securitycheck_default.c b/providers/common/securitycheck_default.c
+index 2ca7a59f39..13993b5eb1 100644
+--- a/providers/common/securitycheck_default.c
++++ b/providers/common/securitycheck_default.c
+@@ -17,6 +17,8 @@
+ #include "internal/nelem.h"
+ #include "internal/sslconf.h"
+
++#include <sys/sdt.h>
++
+ /* Disable the security checks in the default provider */
+ int ossl_securitycheck_enabled(OSSL_LIB_CTX *libctx)
+ {
+@@ -46,9 +48,16 @@ int ossl_digest_rsa_sign_get_md_nid(OSSL_LIB_CTX *ctx, const EVP_MD *md,
+
+ ldsigs_allowed = ossl_ctx_legacy_digest_signatures_allowed(ctx, 0);
+ mdnid = ossl_digest_get_approved_nid_with_sha1(ctx, md, sha1_allowed || ldsigs_allowed);
++ if (mdnid == NID_sha1)
++ /* This will only happen if SHA1 is allowed, otherwise mdnid is -1. */
++ DTRACE_PROBE1(libcrypto, fedora_ossl_digest_rsa_sign_get_md_nid_1, mdnid);
+ if (mdnid == NID_undef)
+ mdnid = ossl_digest_md_to_nid(md, name_to_nid, OSSL_NELEM(name_to_nid));
+- if (mdnid == NID_md5_sha1 && !ldsigs_allowed)
+- mdnid = -1;
++ if (mdnid == NID_md5_sha1) {
++ if (ldsigs_allowed)
++ DTRACE_PROBE1(libcrypto, fedora_ossl_digest_rsa_sign_get_md_nid_2, mdnid);
++ else
++ mdnid = -1;
++ }
+ return mdnid;
+ }
+diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
+index 87f2ae7000..19ed7b6265 100644
+--- a/ssl/t1_lib.c
++++ b/ssl/t1_lib.c
+@@ -29,6 +29,8 @@
+ #include "quic/quic_local.h"
+ #include <openssl/ct.h>
+
++#include <sys/sdt.h>
++
+ static const SIGALG_LOOKUP *find_sig_alg(SSL_CONNECTION *s, X509 *x, EVP_PKEY *pkey);
+ static int tls12_sigalg_allowed(const SSL_CONNECTION *s, int op, const SIGALG_LOOKUP *lu);
+
+@@ -1998,6 +2000,7 @@ int tls12_check_peer_sigalg(SSL_CONNECTION *s, uint16_t sig, EVP_PKEY *pkey)
+ /* When rh-allow-sha1-signatures = yes and security level <= 1,
+ * explicitly allow SHA1 for backwards compatibility. Also allow
+ * MD5-SHA1 because TLS 1.0 is still supported, which uses it. */
++ DTRACE_PROBE1(libssl, fedora_tls12_check_peer_sigalg_1, lu->hash);
+ } else {
+ /*
+ * Make sure security callback allows algorithm. For historical
+@@ -2592,6 +2595,7 @@ static int tls12_sigalg_allowed(const SSL_CONNECTION *s, int op,
+ /* When rh-allow-sha1-signatures = yes and security level <= 1,
+ * explicitly allow SHA1 for backwards compatibility. Also allow
+ * MD5-SHA1 because TLS 1.0 is still supported, which uses it. */
++ DTRACE_PROBE1(libssl, fedora_tls12_sigalg_allowed_1, lu->hash);
+ return 1;
+ }
+
+@@ -3564,11 +3568,13 @@ static int ssl_security_cert_sig(SSL_CONNECTION *s, SSL_CTX *ctx, X509 *x,
+ && ossl_ctx_legacy_digest_signatures_allowed(libctx, 0)
+ && ((s != NULL && SSL_get_security_level(SSL_CONNECTION_GET_SSL(s)) < 2)
+ || (ctx != NULL && SSL_CTX_get_security_level(ctx) < 2)
+- ))
++ )) {
+ /* When rh-allow-sha1-signatures = yes and security level <= 1,
+ * explicitly allow SHA1 for backwards compatibility. Also allow
+ * MD5-SHA1 because TLS 1.0 is still supported, which uses it. */
++ DTRACE_PROBE1(libssl, fedora_ssl_security_cert_sig_1, nid);
+ return 1;
++ }
+
+ if (s != NULL)
+ return ssl_security(s, op, secbits, nid, x);
+--
+GitLab
+
diff --git a/openssl.spec b/openssl.spec
index 913164b..b8f7ac7 100644
--- a/openssl.spec
+++ b/openssl.spec
@@ -29,7 +29,7 @@ print(string.sub(hash, 0, 16))
Summary: Utilities from the general purpose cryptography library with TLS implementation
Name: openssl
Version: 3.2.1
-Release: 7%{?dist}
+Release: 8%{?dist}
Epoch: 1
Source: openssl-%{version}.tar.gz
Source2: Makefile.certificate
@@ -147,6 +147,8 @@ Patch117: 0117-ignore-unknown-sigalgorithms-groups.patch
Patch118: 0118-no-crl-memleak.patch
# https://github.com/openssl/openssl/issues/22779
Patch119: 0119-provider-sigalgs-in-signaturealgorithms-conf.patch
+# https://fedoraproject.org/wiki/Changes/OpenSSLDistrustSHA1SigVer
+Patch120: 0120-Allow-disabling-of-SHA1-signatures.patch
# From CentOS 9
Patch121: 0121-FIPS-cms-defaults.patch
@@ -487,6 +489,9 @@ install -m644 %{SOURCE9} \
%ldconfig_scriptlets libs
%changelog
+* Tue May 28 2024 Alexander Sosedkin <asosedkin@redhat.com> - 1:3.2.1-8
+- Instrument with USDT probes related to SHA-1 deprecation
+
* Tue May 14 2024 David Abdurachmanov <davidlt@rivosinc.com> - 1:3.2.1-7
- Add --libdir=%{_lib} for riscv64 (uses linux-generic64)
next reply other threads:[~2026-06-09 12:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-09 12:45 Alexander Sosedkin [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-09 12:44 [rpms/openssl] rebase_40beta: Instrument with USDT probes related to SHA-1 deprecation Alexander Sosedkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178100911997.1.6940943114052533187.rpms-openssl-52331659e91e@fedoraproject.org \
--to=asosedkin@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox