From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com
Subject: [PATCH proxmox v4 2/8] http: tls: use legacy behavior when PROXMOX_OLD_TLS_CHECK is set to "1"
Date: Wed, 1 Jul 2026 12:30:46 +0200 [thread overview]
Message-ID: <20260701103120.1593265-3-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260701103120.1593265-1-d.csapak@proxmox.com>
If that environment variable is set to "1", give the openssl result
priority, and potentially ignore a given fingerprint that is not
matching. If that's the case, print a warning.
Co-developed-by: Shannon Sterz <s.sterz@proxmox.com>
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
proxmox-http/src/tls.rs | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/proxmox-http/src/tls.rs b/proxmox-http/src/tls.rs
index 5c2b1743..abdf51e9 100644
--- a/proxmox-http/src/tls.rs
+++ b/proxmox-http/src/tls.rs
@@ -103,6 +103,8 @@ impl std::str::FromStr for Fingerprint {
}
}
+pub const PROXMOX_OLD_TLS_CHECK_VAR: &str = "PROXMOX_OLD_TLS_CHECK";
+
///
/// Error type returned by failed [`openssl_verify_callback`].
///
@@ -159,15 +161,24 @@ impl PartialEq for SslVerifyError {
/// Intended as an openssl verification callback.
///
-/// The following things are checked:
+/// If the 'PROXMOX_OLD_TLS_CHECK' environment variable is not set to "1",
+/// the following things are checked:
///
/// * If no fingerprint is given, return the openssl verification result
-/// * If a fingerprint is given get the leaf fp and check that against the given
+/// * If a fingerprint is given, check it against the leaf fp
+///
+/// Otherwise, we trust the openssl result if the whole chain was trusted
pub fn openssl_verify_callback(
openssl_valid: bool,
ctx: &mut X509StoreContextRef,
expected_fp: Option<Fingerprint>,
) -> Result<(), SslVerifyError> {
+ let old_check = matches!(std::env::var(PROXMOX_OLD_TLS_CHECK_VAR).as_deref(), Ok("1"));
+
+ if old_check && openssl_valid {
+ return Ok(());
+ }
+
match expected_fp {
Some(expected_fp) => {
let fingerprint = get_leaf_fp(ctx)?;
--
2.47.3
next prev parent reply other threads:[~2026-07-01 10:31 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-01 10:30 [PATCH proxmox{,-backup,-websocket-tunnel} v4 0/8] unify openssl callback logic Dominik Csapak
2026-07-01 10:30 ` [PATCH proxmox v4 1/8] http: factor out openssl verification callback Dominik Csapak
2026-07-01 10:30 ` Dominik Csapak [this message]
2026-07-01 13:36 ` [PATCH proxmox v4 2/8] http: tls: use legacy behavior when PROXMOX_OLD_TLS_CHECK is set to "1" Shannon Sterz
2026-07-01 10:30 ` [PATCH proxmox v4 3/8] http: tls: add warning if old check behavior is enabled and triggered Dominik Csapak
2026-07-01 10:30 ` [PATCH proxmox v4 4/8] http: tls: add integration tests for openssl verify callbacks Dominik Csapak
2026-07-01 10:30 ` [PATCH proxmox v4 5/8] client: use proxmox-http's openssl verification callback Dominik Csapak
2026-07-01 10:30 ` [PATCH proxmox-backup v4 6/8] pbs-client: use proxmox-https openssl callback Dominik Csapak
2026-07-01 13:36 ` Shannon Sterz
2026-07-01 10:30 ` [PATCH proxmox-backup v4 7/8] pbs-client: honor already verified fingerprint Dominik Csapak
2026-07-01 10:30 ` [PATCH proxmox-websocket-tunnel v4 8/8] use proxmox-http's openssl callback Dominik Csapak
2026-07-01 13:35 ` Shannon Sterz
2026-07-01 13:35 ` [PATCH proxmox{,-backup,-websocket-tunnel} v4 0/8] unify openssl callback logic Shannon Sterz
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=20260701103120.1593265-3-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/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