From b994f692d3c02a858eacfece9e6a7d6990f46539 Mon Sep 17 00:00:00 2001 From: edef Date: Fri, 27 Oct 2023 12:02:29 +0000 Subject: feat(nix-compat/store_path): validate_name over borrowed data Change-Id: Ifeb6231f48d4ad267a7acd398b4b3b687ee4d560 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9857 Reviewed-by: flokli Tested-by: BuildkiteCI --- tvix/nix-compat/src/store_path/mod.rs | 14 +++++++++----- tvix/nix-compat/src/store_path/utils.rs | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/tvix/nix-compat/src/store_path/mod.rs b/tvix/nix-compat/src/store_path/mod.rs index 93b1d80bbf..56bf639f21 100644 --- a/tvix/nix-compat/src/store_path/mod.rs +++ b/tvix/nix-compat/src/store_path/mod.rs @@ -1,6 +1,10 @@ use crate::nixbase32::{self, Nixbase32DecodeError}; use data_encoding::BASE64; -use std::{fmt, path::PathBuf, str::FromStr}; +use std::{ + fmt, + path::PathBuf, + str::{self, FromStr}, +}; use thiserror; #[cfg(target_family = "unix")] @@ -111,7 +115,7 @@ impl StorePath { } Ok(StorePath { - name: validate_name(&s[ENCODED_DIGEST_SIZE + 1..])?, + name: validate_name(&s[ENCODED_DIGEST_SIZE + 1..])?.to_owned(), digest: digest.try_into().expect("size is known"), }) } @@ -129,7 +133,7 @@ impl StorePath { /// Construct a [StorePath] from a name and digest. pub fn from_name_and_digest(name: String, digest: &[u8]) -> Result { Ok(Self { - name: validate_name(name.as_bytes())?, + name: validate_name(name.as_bytes())?.to_owned(), digest: digest.try_into().map_err(|_| Error::InvalidLength())?, }) } @@ -173,7 +177,7 @@ impl StorePath { /// Checks a given &[u8] to match the restrictions for [StorePath::name], and /// returns the name as string if successful. -pub(crate) fn validate_name(s: &[u8]) -> Result { +pub(crate) fn validate_name(s: &[u8]) -> Result<&str, Error> { // Empty or excessively long names are not allowed. if s.is_empty() || s.len() > 211 { return Err(Error::InvalidLength()); @@ -194,7 +198,7 @@ pub(crate) fn validate_name(s: &[u8]) -> Result { return Err(Error::InvalidName(s.to_vec(), i)); } - Ok(String::from_utf8(s.to_vec()).unwrap()) + Ok(str::from_utf8(s).unwrap()) } impl fmt::Display for StorePath { diff --git a/tvix/nix-compat/src/store_path/utils.rs b/tvix/nix-compat/src/store_path/utils.rs index 31964bc6b1..94e9f106d9 100644 --- a/tvix/nix-compat/src/store_path/utils.rs +++ b/tvix/nix-compat/src/store_path/utils.rs @@ -167,7 +167,7 @@ fn build_store_path_from_fingerprint_parts>( name: B, ) -> Result { let name = name.as_ref(); - let name = super::validate_name(name.as_ref())?; + let name = super::validate_name(name.as_ref())?.to_owned(); let digest = compress_hash(&{ let mut h = Sha256::new(); -- cgit 1.4.1