From f5ff2803af0e03f57ab3093a9384d91abb9de083 Mon Sep 17 00:00:00 2001 From: Rutger Broekhoff Date: Mon, 22 Jan 2024 22:52:01 +0100 Subject: Finish basic implementation of Rust LFS server --- rs/common/src/lib.rs | 43 +++++++++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 10 deletions(-) (limited to 'rs/common') diff --git a/rs/common/src/lib.rs b/rs/common/src/lib.rs index aafe7f1..27205bd 100644 --- a/rs/common/src/lib.rs +++ b/rs/common/src/lib.rs @@ -37,8 +37,9 @@ impl FromStr for Operation { } #[repr(u8)] -pub enum AuthType { - GitLfsAuthenticate = 1, +enum AuthType { + BatchApi = 1, + Download = 2, } /// None means out of range. @@ -156,6 +157,12 @@ impl SafeByteArray { } } +impl Default for SafeByteArray { + fn default() -> Self { + Self::new() + } +} + impl AsRef<[u8]> for SafeByteArray { fn as_ref(&self) -> &[u8] { &self.inner @@ -184,10 +191,18 @@ impl FromStr for SafeByteArray { } } +pub type Oid = Digest<32>; + +#[derive(Debug, Copy, Clone)] +pub enum SpecificClaims { + BatchApi(Operation), + Download(Oid), +} + +#[derive(Debug, Copy, Clone)] pub struct Claims<'a> { - pub auth_type: AuthType, + pub specific_claims: SpecificClaims, pub repo_path: &'a str, - pub operation: Operation, pub expires_at: DateTime, } @@ -198,10 +213,18 @@ pub fn generate_tag(claims: Claims, key: impl AsRef<[u8]>) -> Option> } let mut hmac = hmac_sha256::HMAC::new(key); - hmac.update([claims.auth_type as u8]); + match claims.specific_claims { + SpecificClaims::BatchApi(operation) => { + hmac.update([AuthType::BatchApi as u8]); + hmac.update([operation as u8]); + } + SpecificClaims::Download(oid) => { + hmac.update([AuthType::Download as u8]); + hmac.update(oid.as_bytes()); + } + } hmac.update([claims.repo_path.len() as u8]); hmac.update(claims.repo_path.as_bytes()); - hmac.update([claims.operation as u8]); hmac.update(claims.expires_at.timestamp().to_be_bytes()); Some(hmac.finalize().into()) } @@ -280,9 +303,9 @@ impl From<[u8; N]> for Digest { } } -impl Into<[u8; N]> for Digest { - fn into(self) -> [u8; N] { - self.inner +impl From> for [u8; N] { + fn from(val: Digest) -> Self { + val.inner } } @@ -304,7 +327,7 @@ impl ConstantTimeEq for Digest { impl PartialEq for Digest { fn eq(&self, other: &Self) -> bool { - self.ct_eq(&other).into() + self.ct_eq(other).into() } } -- cgit v1.2.3