Skip to main content

canic_backup/artifacts/
mod.rs

1//! Module: artifacts
2//!
3//! Responsibility: derive artifact path identities and compute or validate checksums.
4//! Does not own: snapshot capture, artifact storage, or restore planning.
5//! Boundary: provides deterministic checksum primitives to backup workflows.
6
7mod secure;
8#[cfg(test)]
9mod tests;
10
11use crate::hash::{hex_bytes, sha256_hex};
12
13use std::{
14    io::{self, Read, Write},
15    path::{Path, PathBuf},
16};
17
18use serde::{Deserialize, Serialize};
19use sha2::{Digest, Sha256};
20use thiserror::Error as ThisError;
21
22const SHA256_ALGORITHM: &str = "sha256";
23
24pub(crate) fn artifact_path_segment(value: &str) -> String {
25    value
26        .chars()
27        .map(|ch| match ch {
28            'a'..='z' | 'A'..='Z' | '0'..='9' | '-' | '_' => ch,
29            _ => '_',
30        })
31        .collect()
32}
33
34///
35/// ArtifactChecksum
36///
37/// SHA-256 checksum metadata for a backup artifact file or directory.
38/// Owned by backup artifact support and serialized into manifests.
39///
40
41#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
42pub struct ArtifactChecksum {
43    pub algorithm: String,
44    pub hash: String,
45}
46
47impl ArtifactChecksum {
48    /// Compute a SHA-256 checksum from in-memory bytes.
49    #[must_use]
50    pub fn from_bytes(bytes: &[u8]) -> Self {
51        Self {
52            algorithm: SHA256_ALGORITHM.to_string(),
53            hash: sha256_hex(bytes),
54        }
55    }
56
57    /// Compute a SHA-256 checksum from one filesystem file.
58    pub fn from_file(path: &Path) -> Result<Self, ArtifactChecksumError> {
59        secure::checksum_path(path, secure::ExpectedArtifactType::File)
60    }
61
62    /// Compute a file checksum from an already-open artifact descriptor.
63    pub(crate) fn from_reader(reader: &mut impl Read) -> Result<Self, ArtifactChecksumError> {
64        let mut hasher = Sha256::new();
65        let mut buffer = vec![0u8; 64 * 1024];
66
67        loop {
68            let read = reader.read(&mut buffer)?;
69            if read == 0 {
70                break;
71            }
72            hasher.update(&buffer[..read]);
73        }
74
75        Ok(Self {
76            algorithm: SHA256_ALGORITHM.to_string(),
77            hash: hex_bytes(hasher.finalize()),
78        })
79    }
80
81    pub(crate) fn copy_from_reader(
82        reader: &mut impl Read,
83        writer: &mut impl Write,
84    ) -> Result<Self, ArtifactChecksumError> {
85        let mut hasher = Sha256::new();
86        let mut buffer = vec![0u8; 64 * 1024];
87
88        loop {
89            let read = reader.read(&mut buffer)?;
90            if read == 0 {
91                break;
92            }
93            writer.write_all(&buffer[..read])?;
94            hasher.update(&buffer[..read]);
95        }
96
97        Ok(Self {
98            algorithm: SHA256_ALGORITHM.to_string(),
99            hash: hex_bytes(hasher.finalize()),
100        })
101    }
102
103    /// Compute a SHA-256 checksum from a file or deterministic directory listing.
104    pub fn from_path(path: &Path) -> Result<Self, ArtifactChecksumError> {
105        secure::checksum_path(path, secure::ExpectedArtifactType::Any)
106    }
107
108    /// Compute a deterministic SHA-256 checksum over all files in a directory.
109    pub fn from_directory(path: &Path) -> Result<Self, ArtifactChecksumError> {
110        secure::checksum_path(path, secure::ExpectedArtifactType::Directory)
111    }
112
113    /// Compose the maintained directory checksum from relative file checksums.
114    pub(crate) fn from_relative_file_checksums(mut files: Vec<(PathBuf, Self)>) -> Self {
115        files.sort_by(|left, right| left.0.cmp(&right.0));
116        let mut hasher = Sha256::new();
117        for (relative_path, file_checksum) in files {
118            hasher.update(relative_path.to_string_lossy().as_bytes());
119            hasher.update([0]);
120            hasher.update(file_checksum.hash.as_bytes());
121            hasher.update(*b"\n");
122        }
123
124        Self {
125            algorithm: SHA256_ALGORITHM.to_string(),
126            hash: hex_bytes(hasher.finalize()),
127        }
128    }
129
130    /// Verify that the checksum matches an expected SHA-256 hash.
131    pub fn verify(&self, expected_hash: &str) -> Result<(), ArtifactChecksumError> {
132        self.validate()?;
133
134        if self.hash == expected_hash {
135            Ok(())
136        } else {
137            Err(ArtifactChecksumError::ChecksumMismatch {
138                expected: expected_hash.to_string(),
139                actual: self.hash.clone(),
140            })
141        }
142    }
143
144    /// Validate checksum metadata without comparing artifact bytes.
145    pub fn validate(&self) -> Result<(), ArtifactChecksumError> {
146        if self.algorithm != SHA256_ALGORITHM {
147            return Err(ArtifactChecksumError::UnsupportedAlgorithm(
148                self.algorithm.clone(),
149            ));
150        }
151        if self.hash.len() != 64 || !self.hash.bytes().all(|byte| byte.is_ascii_hexdigit()) {
152            return Err(ArtifactChecksumError::InvalidHash(self.hash.clone()));
153        }
154        Ok(())
155    }
156
157    pub(crate) fn from_relative_path_no_follow(
158        root: &Path,
159        relative: &Path,
160    ) -> Result<Self, ArtifactChecksumError> {
161        secure::checksum_relative_path(root, relative)
162    }
163
164    pub(crate) fn stage_relative_path_no_follow(
165        root: &Path,
166        relative: &Path,
167        destination: &Path,
168    ) -> Result<Self, ArtifactChecksumError> {
169        secure::stage_relative_path(root, relative, destination)
170    }
171}
172
173///
174/// ArtifactChecksumError
175///
176/// Typed checksum failure returned by backup artifact hashing and validation.
177/// Owned by backup artifact support and surfaced to snapshot/runner callers.
178///
179
180#[derive(Debug, ThisError)]
181pub enum ArtifactChecksumError {
182    #[error("checksum mismatch: expected {expected}, actual {actual}")]
183    ChecksumMismatch { expected: String, actual: String },
184
185    #[error("invalid SHA-256 checksum: {0}")]
186    InvalidHash(String),
187
188    #[error(transparent)]
189    Io(#[from] io::Error),
190
191    #[error("unsupported checksum algorithm {0}")]
192    UnsupportedAlgorithm(String),
193
194    #[error("unsupported artifact filesystem entry at {path}: {kind}")]
195    UnsupportedEntry { path: String, kind: String },
196
197    #[error("secure artifact traversal is unsupported on platform {0}")]
198    UnsupportedPlatform(&'static str),
199}