Skip to content

Commit

Permalink
feat: notifying incosistent fs version problem with exit code
Browse files Browse the repository at this point in the history
If acceld converts with different fs version cache, leading to an inconsistent fs version problem when merging into boostrap layer. So we need to notify acceld that an inconsistent version occured and handle this error.

Signed-off-by: YuQiang <[email protected]>
  • Loading branch information
PerseidMeteor committed Sep 22, 2023
1 parent d2fcfcd commit dc8da46
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 12 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rafs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ serde = { version = "1.0.110", features = ["serde_derive", "rc"] }
serde_json = "1.0.53"
vm-memory = "0.10"
fuse-backend-rs = "^0.10.3"
thiserror = "1"

nydus-api = { version = "0.3", path = "../api" }
nydus-storage = { version = "0.6", path = "../storage", features = ["backend-localfs"] }
Expand Down
27 changes: 19 additions & 8 deletions rafs/src/metadata/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ use std::path::{Component, Path, PathBuf};
use std::str::FromStr;
use std::sync::Arc;
use std::time::Duration;
use thiserror::Error;

use anyhow::bail;
use fuse_backend_rs::abi::fuse_abi::Attr;
Expand Down Expand Up @@ -397,34 +398,42 @@ pub struct RafsSuperConfig {
pub is_tarfs_mode: bool,
}

#[derive(Error, Debug)]
pub enum MergeError {
#[error("Inconsistent RAFS version:{0}")]
InconsisentFsVersion(String),
#[error(transparent)]
Other(#[from] anyhow::Error),
}

impl RafsSuperConfig {
/// Check compatibility for two RAFS filesystems.
pub fn check_compatibility(&self, meta: &RafsSuperMeta) -> Result<()> {
pub fn check_compatibility(&self, meta: &RafsSuperMeta) -> anyhow::Result<(), MergeError> {
if self.chunk_size != meta.chunk_size {
return Err(einval!(format!(
return Err(MergeError::InconsisentFsVersion(format!(
"Inconsistent configuration of chunk_size: {} vs {}",
self.chunk_size, meta.chunk_size
)));
}

if self.explicit_uidgid != meta.explicit_uidgid() {
return Err(einval!(format!(
return Err(MergeError::InconsisentFsVersion(format!(
"Using inconsistent explicit_uidgid setting {:?}, target explicit_uidgid setting {:?}",
self.explicit_uidgid,
meta.explicit_uidgid()
)));
}

if u32::from(self.version) != meta.version {
return Err(einval!(format!(
let meta_version = RafsVersion::try_from(meta.version);
return Err(MergeError::InconsisentFsVersion(format!(
"Using inconsistent RAFS version {:?}, target RAFS version {:?}",
self.version,
RafsVersion::try_from(meta.version)?
self.version, meta_version
)));
}

if self.version == RafsVersion::V5 && self.digester != meta.get_digester() {
return Err(einval!(format!(
return Err(MergeError::InconsisentFsVersion(format!(
"RAFS v5 can not support different digest algorithm due to inode digest, {} vs {}",
self.digester,
meta.get_digester()
Expand All @@ -433,7 +442,9 @@ impl RafsSuperConfig {

let is_tarfs_mode = meta.flags.contains(RafsSuperFlags::TARTFS_MODE);
if is_tarfs_mode != self.is_tarfs_mode {
return Err(einval!(format!("Using inconsistent RAFS TARFS mode")));
return Err(MergeError::InconsisentFsVersion(
"Using inconsistent RAFS TARFS mode".to_string(),
));
}

Ok(())
Expand Down
12 changes: 8 additions & 4 deletions src/bin/nydus-image/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use nydus_builder::{
BuildContext, BuildOutput, Builder, ConversionType, DirectoryBuilder, Feature, Features,
HashChunkDict, Merger, Prefetch, PrefetchPolicy, StargzBuilder, TarballBuilder, WhiteoutSpec,
};
use nydus_rafs::metadata::{RafsSuper, RafsSuperConfig, RafsVersion};
use nydus_rafs::metadata::{MergeError, RafsSuper, RafsSuperConfig, RafsVersion};
use nydus_storage::backend::localfs::LocalFs;
use nydus_storage::backend::BlobBackend;
use nydus_storage::device::{BlobFeatures, BlobInfo};
Expand Down Expand Up @@ -759,7 +759,11 @@ fn main() -> Result<()> {
}
}
} else if let Some(matches) = cmd.subcommand_matches("merge") {
Command::merge(matches, &build_info)
let result = Command::merge(matches, &build_info);
if let MergeError::InconsisentFsVersion(_) = result.unwrap_err() {
std::process::exit(2);
}
Ok(())
} else if let Some(matches) = cmd.subcommand_matches("check") {
Command::check(matches, &build_info)
} else if let Some(matches) = cmd.subcommand_matches("export") {
Expand Down Expand Up @@ -1180,7 +1184,7 @@ impl Command {
Ok(())
}

fn merge(matches: &ArgMatches, build_info: &BuildTimeInfo) -> Result<()> {
fn merge(matches: &ArgMatches, build_info: &BuildTimeInfo) -> Result<(), MergeError> {
let source_bootstrap_paths: Vec<PathBuf> = matches
.get_many::<String>("SOURCE")
.map(|paths| paths.map(PathBuf::from).collect())
Expand Down Expand Up @@ -1254,7 +1258,7 @@ impl Command {
chunk_dict_path,
config,
)?;
OutputSerializer::dump(matches, output, build_info)
OutputSerializer::dump(matches, output, build_info).map_err(MergeError::Other)
}

fn compact(matches: &ArgMatches, build_info: &BuildTimeInfo) -> Result<()> {
Expand Down

0 comments on commit dc8da46

Please sign in to comment.