2022-01-17 09:55:31 +00:00
|
|
|
use chrono::{DateTime, Utc};
|
|
|
|
use hmac::{Hmac, Mac, NewMac};
|
|
|
|
use sha2::Sha256;
|
|
|
|
|
|
|
|
use garage_util::data::{sha256sum, Hash};
|
|
|
|
|
2022-05-24 10:16:39 +00:00
|
|
|
pub mod error;
|
2022-01-17 09:55:31 +00:00
|
|
|
pub mod payload;
|
|
|
|
pub mod streaming;
|
|
|
|
|
2022-05-24 10:16:39 +00:00
|
|
|
use error::*;
|
|
|
|
|
2022-01-17 09:55:31 +00:00
|
|
|
pub const SHORT_DATE: &str = "%Y%m%d";
|
|
|
|
pub const LONG_DATETIME: &str = "%Y%m%dT%H%M%SZ";
|
|
|
|
|
|
|
|
type HmacSha256 = Hmac<Sha256>;
|
|
|
|
|
|
|
|
pub fn verify_signed_content(expected_sha256: Hash, body: &[u8]) -> Result<(), Error> {
|
|
|
|
if expected_sha256 != sha256sum(body) {
|
2022-05-24 10:16:39 +00:00
|
|
|
return Err(Error::bad_request(
|
2022-01-17 09:55:31 +00:00
|
|
|
"Request content hash does not match signed hash".to_string(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn signing_hmac(
|
|
|
|
datetime: &DateTime<Utc>,
|
|
|
|
secret_key: &str,
|
|
|
|
region: &str,
|
|
|
|
service: &str,
|
|
|
|
) -> Result<HmacSha256, crypto_mac::InvalidKeyLength> {
|
|
|
|
let secret = String::from("AWS4") + secret_key;
|
|
|
|
let mut date_hmac = HmacSha256::new_varkey(secret.as_bytes())?;
|
|
|
|
date_hmac.update(datetime.format(SHORT_DATE).to_string().as_bytes());
|
|
|
|
let mut region_hmac = HmacSha256::new_varkey(&date_hmac.finalize().into_bytes())?;
|
|
|
|
region_hmac.update(region.as_bytes());
|
|
|
|
let mut service_hmac = HmacSha256::new_varkey(®ion_hmac.finalize().into_bytes())?;
|
|
|
|
service_hmac.update(service.as_bytes());
|
|
|
|
let mut signing_hmac = HmacSha256::new_varkey(&service_hmac.finalize().into_bytes())?;
|
|
|
|
signing_hmac.update(b"aws4_request");
|
|
|
|
let hmac = HmacSha256::new_varkey(&signing_hmac.finalize().into_bytes())?;
|
|
|
|
Ok(hmac)
|
|
|
|
}
|
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
pub fn compute_scope(datetime: &DateTime<Utc>, region: &str, service: &str) -> String {
|
|
|
|
format!(
|
|
|
|
"{}/{}/{}/aws4_request",
|
|
|
|
datetime.format(SHORT_DATE),
|
|
|
|
region,
|
|
|
|
service
|
|
|
|
)
|
2022-01-17 09:55:31 +00:00
|
|
|
}
|