From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id CC1851FF13A for ; Wed, 01 Apr 2026 09:56:09 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7D80011374; Wed, 1 Apr 2026 09:56:36 +0200 (CEST) From: Christian Ebner To: pbs-devel@lists.proxmox.com Subject: [PATCH proxmox-backup 18/20] sync: pull: decrypt blob files on pull if encryption key is configured Date: Wed, 1 Apr 2026 09:55:19 +0200 Message-ID: <20260401075521.176354-19-c.ebner@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260401075521.176354-1-c.ebner@proxmox.com> References: <20260401075521.176354-1-c.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1775030091217 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.064 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: ZE7J7JXNCFPHQ63JQI7TD6CHS7PXV55B X-Message-ID-Hash: ZE7J7JXNCFPHQ63JQI7TD6CHS7PXV55B X-MailFrom: c.ebner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: During pull, blob files are stored in a temporary file before being renamed to the actual blob filename as stored in the manifest. If a decryption key is configured in the pull parameters, use the decrypted temporary blob file after downloading it from the remote to decrypt it and re-encode as new compressed but unencrypted blob file. Rename the decrypted tempfile to be the new tmpfile to be finally moved in place. Signed-off-by: Christian Ebner --- src/server/pull.rs | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/src/server/pull.rs b/src/server/pull.rs index bc2a89f88..ccf349c92 100644 --- a/src/server/pull.rs +++ b/src/server/pull.rs @@ -2,7 +2,7 @@ use std::collections::hash_map::Entry; use std::collections::{HashMap, HashSet}; -use std::io::Seek; +use std::io::{BufReader, Read, Seek, Write}; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::{Arc, Mutex}; use std::time::SystemTime; @@ -26,7 +26,9 @@ use pbs_datastore::fixed_index::{FixedIndexReader, FixedIndexWriter}; use pbs_datastore::index::IndexFile; use pbs_datastore::manifest::{BackupManifest, FileInfo}; use pbs_datastore::read_chunk::AsyncReadChunk; -use pbs_datastore::{check_backup_owner, DataStore, DatastoreBackend, StoreProgress}; +use pbs_datastore::{ + check_backup_owner, DataBlobReader, DataStore, DatastoreBackend, StoreProgress, +}; use pbs_tools::sha::sha256; use super::sync::{ @@ -398,6 +400,42 @@ async fn pull_single_archive<'a>( tmpfile.rewind()?; let (csum, size) = sha256(&mut tmpfile)?; verify_archive(archive_info, &csum, size)?; + + if crypt_config.is_some() { + let crypt_config = crypt_config.clone(); + let tmp_path = tmp_path.clone(); + let archive_name = archive_name.clone(); + + tokio::task::spawn_blocking(move || { + // must rewind again since after verifying cursor is at the end of the file + tmpfile.rewind()?; + let reader = DataBlobReader::new(tmpfile, crypt_config)?; + let mut reader = BufReader::new(reader); + let mut raw_data = Vec::new(); + reader.read_to_end(&mut raw_data)?; + + let blob = DataBlob::encode(&raw_data, None, true)?; + let raw_blob = blob.into_inner(); + + let mut decrypted_tmp_path = tmp_path.clone(); + decrypted_tmp_path.set_extension("dectmp"); + let mut decrypted_tmpfile = std::fs::OpenOptions::new() + .read(true) + .write(true) + .create_new(true) + .open(&decrypted_tmp_path)?; + decrypted_tmpfile.write_all(&raw_blob)?; + decrypted_tmpfile.flush()?; + decrypted_tmpfile.rewind()?; + let (csum, size) = sha256(&mut decrypted_tmpfile)?; + + std::fs::rename(&decrypted_tmp_path, &tmp_path)?; + + Ok::<(), Error>(()) + }) + .await? + .map_err(|err| format_err!("Failed when decrypting blob {path:?}: {err}"))?; + } } } if let Err(err) = std::fs::rename(&tmp_path, &path) { -- 2.47.3