all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Christian Ebner <c.ebner@proxmox.com>
To: pbs-devel@lists.proxmox.com
Subject: [pbs-devel] [PATCH v6 proxmox-backup 23/29] catalog: use format version 2 conditionally
Date: Thu, 25 Jan 2024 14:26:02 +0100	[thread overview]
Message-ID: <20240125132608.1172472-24-c.ebner@proxmox.com> (raw)
In-Reply-To: <20240125132608.1172472-1-c.ebner@proxmox.com>

Only use the catalog format version 2 when performing backups with the
change detection mode set to metadata.

This makes sure to remain compatible with older clients which do not
support the format version 2 at least for backups created using the
regular mode.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
---
Changes since v5:
- fix formatting using `cargo fmt`
- changed patch ordering for more logical flow

 pbs-datastore/src/catalog.rs      | 69 +++++++++++++++++++++++++------
 proxmox-backup-client/src/main.rs | 30 ++++++++++----
 2 files changed, 80 insertions(+), 19 deletions(-)

diff --git a/pbs-datastore/src/catalog.rs b/pbs-datastore/src/catalog.rs
index 220313c6..0ca2ce23 100644
--- a/pbs-datastore/src/catalog.rs
+++ b/pbs-datastore/src/catalog.rs
@@ -64,6 +64,12 @@ pub enum CatalogEntryType {
     Socket = b's',
 }
 
+#[derive(PartialEq)]
+pub enum CatalogFormatVersion {
+    V1,
+    V2,
+}
+
 impl TryFrom<u8> for CatalogEntryType {
     type Error = Error;
 
@@ -555,17 +561,22 @@ pub struct CatalogWriter<W> {
     writer: W,
     dirstack: Vec<DirInfo>,
     pos: u64,
+    version: CatalogFormatVersion,
 }
 
 impl<W: Write> CatalogWriter<W> {
     /// Create a new  CatalogWriter instance
-    pub fn new(writer: W) -> Result<Self, Error> {
+    pub fn new(writer: W, version: CatalogFormatVersion) -> Result<Self, Error> {
         let mut me = Self {
             writer,
             dirstack: vec![DirInfo::new_rootdir()],
             pos: 0,
+            version,
         };
-        me.write_all(&PROXMOX_CATALOG_FILE_MAGIC_2_0)?;
+        match me.version {
+            CatalogFormatVersion::V1 => me.write_all(&PROXMOX_CATALOG_FILE_MAGIC_1_0)?,
+            CatalogFormatVersion::V2 => me.write_all(&PROXMOX_CATALOG_FILE_MAGIC_2_0)?,
+        }
         Ok(me)
     }
 
@@ -599,6 +610,10 @@ impl<W: Write> CatalogWriter<W> {
 
 impl<W: Write> BackupCatalogWriter for CatalogWriter<W> {
     fn start_archive(&mut self, name: &CStr) -> Result<(), Error> {
+        if self.version == CatalogFormatVersion::V1 {
+            return self.start_directory(name);
+        }
+
         let new = DirInfo::new(name.to_owned());
         self.dirstack.push(new);
         Ok(())
@@ -608,6 +623,9 @@ impl<W: Write> BackupCatalogWriter for CatalogWriter<W> {
         &mut self,
         appendix: Option<pxar::encoder::AppendixStartOffset>,
     ) -> Result<(), Error> {
+        if self.version == CatalogFormatVersion::V1 {
+            return self.end_directory();
+        }
         let (start, name) = match self.dirstack.pop() {
             Some(dir) => {
                 let start = self.pos;
@@ -688,17 +706,30 @@ impl<W: Write> BackupCatalogWriter for CatalogWriter<W> {
             .last_mut()
             .ok_or_else(|| format_err!("outside root"))?;
         let name = name.to_bytes().to_vec();
-        let file_offset = FileOffset {
-            offset: file_offset.raw(),
-        };
-        dir.entries.push(DirEntry {
-            name,
-            attr: DirEntryAttribute::File {
-                size,
-                mtime,
-                extension: Some(CatalogV2Extension { ctime, file_offset }),
+        let entry = match self.version {
+            CatalogFormatVersion::V1 => DirEntry {
+                name,
+                attr: DirEntryAttribute::File {
+                    size,
+                    mtime,
+                    extension: None,
+                },
             },
-        });
+            CatalogFormatVersion::V2 => {
+                let file_offset = FileOffset {
+                    offset: file_offset.raw(),
+                };
+                DirEntry {
+                    name,
+                    attr: DirEntryAttribute::File {
+                        size,
+                        mtime,
+                        extension: Some(CatalogV2Extension { ctime, file_offset }),
+                    },
+                }
+            }
+        };
+        dir.entries.push(entry);
         Ok(())
     }
 
@@ -710,6 +741,9 @@ impl<W: Write> BackupCatalogWriter for CatalogWriter<W> {
         ctime: i64,
         appendix_ref_offset: pxar::encoder::AppendixRefOffset,
     ) -> Result<(), Error> {
+        if self.version == CatalogFormatVersion::V1 {
+            bail!("unsupported by catalog format version 1");
+        }
         let dir = self
             .dirstack
             .last_mut()
@@ -856,6 +890,17 @@ impl<R: Read + Seek> CatalogReader<R> {
         })
     }
 
+    pub fn format_version(&mut self) -> Result<CatalogFormatVersion, Error> {
+        self.reader.seek(SeekFrom::Start(0))?;
+        let mut magic = [0u8; 8];
+        self.reader.read_exact(&mut magic)?;
+        match magic {
+            PROXMOX_CATALOG_FILE_MAGIC_1_0 => Ok(CatalogFormatVersion::V1),
+            PROXMOX_CATALOG_FILE_MAGIC_2_0 => Ok(CatalogFormatVersion::V2),
+            _ => bail!("got unexpected magic number for catalog"),
+        }
+    }
+
     pub fn appendix_offset(
         &mut self,
         archive_name: &[u8],
diff --git a/proxmox-backup-client/src/main.rs b/proxmox-backup-client/src/main.rs
index 470399e8..0a3f24c0 100644
--- a/proxmox-backup-client/src/main.rs
+++ b/proxmox-backup-client/src/main.rs
@@ -49,7 +49,7 @@ use pbs_client::{
     BackupStats, BackupWriter, ChunkStream, FixedChunkStream, HttpClient, PxarBackupStream,
     RemoteChunkReader, UploadOptions, BACKUP_DETECTION_MODE_SPEC, BACKUP_SOURCE_SCHEMA,
 };
-use pbs_datastore::catalog::{CatalogReader, CatalogWriter};
+use pbs_datastore::catalog::{CatalogFormatVersion, CatalogReader, CatalogWriter};
 use pbs_datastore::chunk_store::verify_chunk_size;
 use pbs_datastore::dynamic_index::{BufferedDynamicReader, DynamicIndexReader};
 use pbs_datastore::fixed_index::FixedIndexReader;
@@ -536,6 +536,7 @@ struct CatalogUploadResult {
 fn spawn_catalog_upload(
     client: Arc<BackupWriter>,
     encrypt: bool,
+    catalog_format_version: CatalogFormatVersion,
 ) -> Result<CatalogUploadResult, Error> {
     let (catalog_tx, catalog_rx) = std::sync::mpsc::sync_channel(10); // allow to buffer 10 writes
     let catalog_stream = proxmox_async::blocking::StdChannelStream(catalog_rx);
@@ -549,9 +550,10 @@ fn spawn_catalog_upload(
         injections.clone(),
     );
 
-    let catalog_writer = Arc::new(Mutex::new(CatalogWriter::new(TokioWriterAdapter::new(
-        StdChannelWriter::new(catalog_tx),
-    ))?));
+    let catalog_writer = Arc::new(Mutex::new(CatalogWriter::new(
+        TokioWriterAdapter::new(StdChannelWriter::new(catalog_tx)),
+        catalog_format_version,
+    )?));
 
     let (catalog_result_tx, catalog_result_rx) = tokio::sync::oneshot::channel();
 
@@ -1015,8 +1017,17 @@ async fn create_backup(
             (BackupSpecificationType::PXAR, false) => {
                 // start catalog upload on first use
                 if catalog.is_none() {
-                    let catalog_upload_res =
-                        spawn_catalog_upload(client.clone(), crypto.mode == CryptMode::Encrypt)?;
+                    let catalog_format_version =
+                        if let BackupDetectionMode::Metadata(_) = detection_mode {
+                            CatalogFormatVersion::V2
+                        } else {
+                            CatalogFormatVersion::V1
+                        };
+                    let catalog_upload_res = spawn_catalog_upload(
+                        client.clone(),
+                        crypto.mode == CryptMode::Encrypt,
+                        catalog_format_version,
+                    )?;
                     catalog = Some(catalog_upload_res.catalog_writer);
                     catalog_result_rx = Some(catalog_upload_res.result);
                 }
@@ -1215,8 +1226,13 @@ async fn download_reference_catalog(
         .map_err(|err| format_err!("failed to download reference catalog - {}", err))?;
 
     catalogfile.seek(SeekFrom::Start(0))?;
+    let mut reader = CatalogReader::new(catalogfile);
 
-    Ok(CatalogReader::new(catalogfile))
+    match reader.format_version() {
+        Ok(CatalogFormatVersion::V2) => Ok(reader),
+        Ok(CatalogFormatVersion::V1) => Err(format_err!("unsupported catalog format version")),
+        Err(err) => Err(err),
+    }
 }
 
 async fn dump_image<W: Write>(
-- 
2.39.2





  parent reply	other threads:[~2024-01-25 13:26 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-25 13:25 [pbs-devel] [PATCH-SERIES v6 pxar proxmox-backup proxmox-widget-toolkit 0/29] fix #3174: improve file-level backup Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 1/29] fix #3174: decoder: factor out skip_bytes from skip_entry Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 2/29] fix #3174: decoder: impl skip_bytes for sync dec Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 3/29] fix #3174: encoder: calc filename + metadata byte size Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 4/29] fix #3174: enc/dec: impl PXAR_APPENDIX_REF entrytype Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 5/29] fix #3174: enc/dec: impl PXAR_APPENDIX entrytype Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 6/29] fix #3174: encoder: helper to add to encoder position Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 7/29] fix #3174: enc/dec: impl PXAR_APPENDIX_TAIL entrytype Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 8/29] fix #3174: add pxar format version entry Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 pxar 9/29] fix #3174: enc: move from instance per dir to state stack Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 10/29] fix #3174: index: add fn index list from start/end-offsets Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 11/29] fix #3174: api: double catalog upload size Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 12/29] fix #3174: catalog: introduce extended format v2 Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 13/29] fix #3174: archiver/extractor: impl appendix ref Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 14/29] fix #3174: catalog: add specialized Archive entry Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 15/29] fix #3174: extractor: impl seq restore from appendix Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 16/29] fix #3174: archiver: store ref to previous backup Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 17/29] fix #3174: upload stream: impl reused chunk injector Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 18/29] fix #3174: chunker: add forced boundaries Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 19/29] fix #3174: backup writer: inject queued chunk in upload steam Christian Ebner
2024-01-25 13:25 ` [pbs-devel] [PATCH v6 proxmox-backup 20/29] fix #3174: archiver: reuse files with unchanged metadata Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 21/29] fix #3174: specs: add backup detection mode specification Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 22/29] fix #3174: client: Add detection mode to backup creation Christian Ebner
2024-01-25 13:26 ` Christian Ebner [this message]
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 24/29] tools: add optional path prefix to line based output Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 25/29] pxar-bin: implement listing for appendix entries Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 26/29] test-suite: add detection mode change benchmark Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 27/29] test-suite: Add bin to deb, add shell completions Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-backup 28/29] pxar: add lookahead caching to reduce chunk fragmentation Christian Ebner
2024-01-25 13:26 ` [pbs-devel] [PATCH v6 proxmox-widget-toolkit 29/29] file-browser: support pxar archive and fileref types Christian Ebner

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=20240125132608.1172472-24-c.ebner@proxmox.com \
    --to=c.ebner@proxmox.com \
    --cc=pbs-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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal