2020-04-24 17:46:52 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use chrono::{DateTime, Duration, NaiveDateTime, Utc};
|
2022-01-17 09:55:31 +00:00
|
|
|
use hmac::Mac;
|
2020-04-24 17:46:52 +00:00
|
|
|
use hyper::{Body, Method, Request};
|
|
|
|
use sha2::{Digest, Sha256};
|
|
|
|
|
|
|
|
use garage_table::*;
|
2022-01-17 09:55:31 +00:00
|
|
|
use garage_util::data::Hash;
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2020-07-07 11:59:22 +00:00
|
|
|
use garage_model::garage::Garage;
|
|
|
|
use garage_model::key_table::*;
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2022-01-17 09:55:31 +00:00
|
|
|
use super::signing_hmac;
|
|
|
|
use super::{LONG_DATETIME, SHORT_DATE};
|
|
|
|
|
2020-04-28 10:18:14 +00:00
|
|
|
use crate::encoding::uri_encode;
|
2020-11-08 14:04:30 +00:00
|
|
|
use crate::error::*;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2022-01-17 09:55:31 +00:00
|
|
|
pub async fn check_payload_signature(
|
2020-07-15 13:31:13 +00:00
|
|
|
garage: &Garage,
|
|
|
|
request: &Request<Body>,
|
2022-01-18 11:22:31 +00:00
|
|
|
) -> Result<(Option<Key>, Option<Hash>), Error> {
|
2020-04-24 17:46:52 +00:00
|
|
|
let mut headers = HashMap::new();
|
|
|
|
for (key, val) in request.headers() {
|
|
|
|
headers.insert(key.to_string(), val.to_str()?.to_string());
|
|
|
|
}
|
|
|
|
if let Some(query) = request.uri().query() {
|
|
|
|
let query_pairs = url::form_urlencoded::parse(query.as_bytes());
|
|
|
|
for (key, val) in query_pairs {
|
|
|
|
headers.insert(key.to_lowercase(), val.to_string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let authorization = if let Some(authorization) = headers.get("authorization") {
|
|
|
|
parse_authorization(authorization, &headers)?
|
2022-01-18 11:22:31 +00:00
|
|
|
} else if let Some(algorithm) = headers.get("x-amz-algorithm") {
|
|
|
|
parse_query_authorization(algorithm, &headers)?
|
2020-04-24 17:46:52 +00:00
|
|
|
} else {
|
2022-01-18 11:22:31 +00:00
|
|
|
let content_sha256 = headers.get("x-amz-content-sha256");
|
|
|
|
if let Some(content_sha256) = content_sha256.filter(|c| "UNSIGNED-PAYLOAD" != c.as_str()) {
|
|
|
|
let sha256 = hex::decode(content_sha256)
|
|
|
|
.ok()
|
|
|
|
.and_then(|bytes| Hash::try_from(&bytes))
|
|
|
|
.ok_or_bad_request("Invalid content sha256 hash")?;
|
|
|
|
return Ok((None, Some(sha256)));
|
|
|
|
} else {
|
|
|
|
return Ok((None, None));
|
|
|
|
}
|
2020-04-24 17:46:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let canonical_request = canonical_request(
|
|
|
|
request.method(),
|
|
|
|
&request.uri().path().to_string(),
|
2021-10-26 08:20:05 +00:00
|
|
|
&canonical_query_string(request.uri()),
|
2020-04-24 17:46:52 +00:00
|
|
|
&headers,
|
|
|
|
&authorization.signed_headers,
|
|
|
|
&authorization.content_sha256,
|
|
|
|
);
|
2022-02-21 22:02:30 +00:00
|
|
|
let (_, scope) = parse_credential(&authorization.credential)?;
|
2022-01-18 11:22:31 +00:00
|
|
|
let string_to_sign = string_to_sign(&authorization.date, &scope, &canonical_request);
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2022-02-21 22:02:30 +00:00
|
|
|
let key = verify_v4(
|
|
|
|
garage,
|
|
|
|
&authorization.credential,
|
2022-01-18 11:22:31 +00:00
|
|
|
&authorization.date,
|
2022-02-21 22:02:30 +00:00
|
|
|
&authorization.signature,
|
|
|
|
string_to_sign.as_bytes(),
|
2020-04-24 17:46:52 +00:00
|
|
|
)
|
2022-02-21 22:02:30 +00:00
|
|
|
.await?;
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2021-05-03 15:30:40 +00:00
|
|
|
let content_sha256 = if authorization.content_sha256 == "UNSIGNED-PAYLOAD" {
|
2020-07-15 13:31:13 +00:00
|
|
|
None
|
2022-01-17 09:55:31 +00:00
|
|
|
} else if authorization.content_sha256 == "STREAMING-AWS4-HMAC-SHA256-PAYLOAD" {
|
|
|
|
let bytes = hex::decode(authorization.signature).ok_or_bad_request("Invalid signature")?;
|
|
|
|
Some(Hash::try_from(&bytes).ok_or_bad_request("Invalid signature")?)
|
2020-07-15 13:31:13 +00:00
|
|
|
} else {
|
2020-11-08 14:04:30 +00:00
|
|
|
let bytes = hex::decode(authorization.content_sha256)
|
|
|
|
.ok_or_bad_request("Invalid content sha256 hash")?;
|
2022-01-17 09:55:31 +00:00
|
|
|
Some(Hash::try_from(&bytes).ok_or_bad_request("Invalid content sha256 hash")?)
|
2020-07-15 13:31:13 +00:00
|
|
|
};
|
|
|
|
|
2022-01-18 11:22:31 +00:00
|
|
|
Ok((Some(key), content_sha256))
|
2020-04-24 17:46:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Authorization {
|
2022-02-21 22:02:30 +00:00
|
|
|
credential: String,
|
2020-04-24 17:46:52 +00:00
|
|
|
signed_headers: String,
|
|
|
|
signature: String,
|
|
|
|
content_sha256: String,
|
2022-01-18 11:22:31 +00:00
|
|
|
date: DateTime<Utc>,
|
2020-04-24 17:46:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_authorization(
|
|
|
|
authorization: &str,
|
|
|
|
headers: &HashMap<String, String>,
|
|
|
|
) -> Result<Authorization, Error> {
|
|
|
|
let first_space = authorization
|
|
|
|
.find(' ')
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("Authorization field to short")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
let (auth_kind, rest) = authorization.split_at(first_space);
|
|
|
|
|
|
|
|
if auth_kind != "AWS4-HMAC-SHA256" {
|
|
|
|
return Err(Error::BadRequest("Unsupported authorization method".into()));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut auth_params = HashMap::new();
|
|
|
|
for auth_part in rest.split(',') {
|
|
|
|
let auth_part = auth_part.trim();
|
2020-11-08 14:04:30 +00:00
|
|
|
let eq = auth_part
|
|
|
|
.find('=')
|
|
|
|
.ok_or_bad_request("Field without value in authorization header")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
let (key, value) = auth_part.split_at(eq);
|
|
|
|
auth_params.insert(key.to_string(), value.trim_start_matches('=').to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
let cred = auth_params
|
|
|
|
.get("Credential")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("Could not find Credential in Authorization field")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
|
|
|
|
let content_sha256 = headers
|
|
|
|
.get("x-amz-content-sha256")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("Missing X-Amz-Content-Sha256 field")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2022-01-18 11:22:31 +00:00
|
|
|
let date = headers
|
|
|
|
.get("x-amz-date")
|
2022-02-21 22:02:30 +00:00
|
|
|
.ok_or_bad_request("Missing X-Amz-Date field")
|
|
|
|
.and_then(|d| parse_date(d))?;
|
2022-01-18 11:22:31 +00:00
|
|
|
|
|
|
|
if Utc::now() - date > Duration::hours(24) {
|
|
|
|
return Err(Error::BadRequest("Date is too old".to_string()));
|
|
|
|
}
|
|
|
|
|
2020-04-24 17:46:52 +00:00
|
|
|
let auth = Authorization {
|
2022-02-21 22:02:30 +00:00
|
|
|
credential: cred.to_string(),
|
2020-04-24 17:46:52 +00:00
|
|
|
signed_headers: auth_params
|
|
|
|
.get("SignedHeaders")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("Could not find SignedHeaders in Authorization field")?
|
2020-04-24 17:46:52 +00:00
|
|
|
.to_string(),
|
|
|
|
signature: auth_params
|
|
|
|
.get("Signature")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("Could not find Signature in Authorization field")?
|
2020-04-24 17:46:52 +00:00
|
|
|
.to_string(),
|
|
|
|
content_sha256: content_sha256.to_string(),
|
2022-01-18 11:22:31 +00:00
|
|
|
date,
|
2020-04-24 17:46:52 +00:00
|
|
|
};
|
|
|
|
Ok(auth)
|
|
|
|
}
|
|
|
|
|
2022-01-18 11:22:31 +00:00
|
|
|
fn parse_query_authorization(
|
|
|
|
algorithm: &str,
|
|
|
|
headers: &HashMap<String, String>,
|
|
|
|
) -> Result<Authorization, Error> {
|
|
|
|
if algorithm != "AWS4-HMAC-SHA256" {
|
2021-04-23 20:18:00 +00:00
|
|
|
return Err(Error::BadRequest(
|
|
|
|
"Unsupported authorization method".to_string(),
|
|
|
|
));
|
2020-04-24 17:46:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let cred = headers
|
|
|
|
.get("x-amz-credential")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("X-Amz-Credential not found in query parameters")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
let signed_headers = headers
|
|
|
|
.get("x-amz-signedheaders")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("X-Amz-SignedHeaders not found in query parameters")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
let signature = headers
|
|
|
|
.get("x-amz-signature")
|
2020-11-08 14:04:30 +00:00
|
|
|
.ok_or_bad_request("X-Amz-Signature not found in query parameters")?;
|
2020-07-15 13:31:13 +00:00
|
|
|
let content_sha256 = headers
|
|
|
|
.get("x-amz-content-sha256")
|
|
|
|
.map(|x| x.as_str())
|
|
|
|
.unwrap_or("UNSIGNED-PAYLOAD");
|
2020-04-24 17:46:52 +00:00
|
|
|
|
2022-01-18 11:22:31 +00:00
|
|
|
let duration = headers
|
|
|
|
.get("x-amz-expires")
|
|
|
|
.ok_or_bad_request("X-Amz-Expires not found in query parameters")?
|
|
|
|
.parse()
|
|
|
|
.map_err(|_| Error::BadRequest("X-Amz-Expires is not a number".to_string()))?;
|
|
|
|
|
|
|
|
if duration > 7 * 24 * 3600 {
|
|
|
|
return Err(Error::BadRequest(
|
|
|
|
"X-Amz-Exprires may not exceed a week".to_string(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
let date = headers
|
|
|
|
.get("x-amz-date")
|
2022-02-21 22:02:30 +00:00
|
|
|
.ok_or_bad_request("Missing X-Amz-Date field")
|
|
|
|
.and_then(|d| parse_date(d))?;
|
2022-01-18 11:22:31 +00:00
|
|
|
|
|
|
|
if Utc::now() - date > Duration::seconds(duration) {
|
|
|
|
return Err(Error::BadRequest("Date is too old".to_string()));
|
|
|
|
}
|
|
|
|
|
2020-04-24 17:46:52 +00:00
|
|
|
Ok(Authorization {
|
2022-02-21 22:02:30 +00:00
|
|
|
credential: cred.to_string(),
|
2020-04-24 17:46:52 +00:00
|
|
|
signed_headers: signed_headers.to_string(),
|
|
|
|
signature: signature.to_string(),
|
2020-07-15 13:31:13 +00:00
|
|
|
content_sha256: content_sha256.to_string(),
|
2022-01-18 11:22:31 +00:00
|
|
|
date,
|
2020-04-24 17:46:52 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_credential(cred: &str) -> Result<(String, String), Error> {
|
2020-11-08 14:04:30 +00:00
|
|
|
let first_slash = cred
|
|
|
|
.find('/')
|
|
|
|
.ok_or_bad_request("Credentials does not contain / in authorization field")?;
|
2020-04-24 17:46:52 +00:00
|
|
|
let (key_id, scope) = cred.split_at(first_slash);
|
|
|
|
Ok((
|
|
|
|
key_id.to_string(),
|
|
|
|
scope.trim_start_matches('/').to_string(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn string_to_sign(datetime: &DateTime<Utc>, scope_string: &str, canonical_req: &str) -> String {
|
|
|
|
let mut hasher = Sha256::default();
|
2021-03-16 14:58:40 +00:00
|
|
|
hasher.update(canonical_req.as_bytes());
|
2020-04-24 17:46:52 +00:00
|
|
|
[
|
|
|
|
"AWS4-HMAC-SHA256",
|
|
|
|
&datetime.format(LONG_DATETIME).to_string(),
|
|
|
|
scope_string,
|
2021-03-16 14:58:40 +00:00
|
|
|
&hex::encode(hasher.finalize().as_slice()),
|
2020-04-24 17:46:52 +00:00
|
|
|
]
|
|
|
|
.join("\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn canonical_request(
|
|
|
|
method: &Method,
|
|
|
|
url_path: &str,
|
|
|
|
canonical_query_string: &str,
|
|
|
|
headers: &HashMap<String, String>,
|
|
|
|
signed_headers: &str,
|
|
|
|
content_sha256: &str,
|
|
|
|
) -> String {
|
|
|
|
[
|
|
|
|
method.as_str(),
|
|
|
|
url_path,
|
|
|
|
canonical_query_string,
|
2021-10-26 08:20:05 +00:00
|
|
|
&canonical_header_string(headers, signed_headers),
|
2020-04-24 17:46:52 +00:00
|
|
|
"",
|
|
|
|
signed_headers,
|
|
|
|
content_sha256,
|
|
|
|
]
|
|
|
|
.join("\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn canonical_header_string(headers: &HashMap<String, String>, signed_headers: &str) -> String {
|
|
|
|
let signed_headers_vec = signed_headers.split(';').collect::<Vec<_>>();
|
|
|
|
let mut items = headers
|
|
|
|
.iter()
|
|
|
|
.filter(|(key, _)| signed_headers_vec.contains(&key.as_str()))
|
|
|
|
.collect::<Vec<_>>();
|
2022-01-12 09:17:15 +00:00
|
|
|
items.sort_by(|(k1, _), (k2, _)| k1.cmp(k2));
|
|
|
|
items
|
|
|
|
.iter()
|
|
|
|
.map(|(key, value)| key.to_lowercase() + ":" + value.trim())
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join("\n")
|
2020-04-24 17:46:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn canonical_query_string(uri: &hyper::Uri) -> String {
|
|
|
|
if let Some(query) = uri.query() {
|
|
|
|
let query_pairs = url::form_urlencoded::parse(query.as_bytes());
|
|
|
|
let mut items = query_pairs
|
|
|
|
.filter(|(key, _)| key != "X-Amz-Signature")
|
|
|
|
.map(|(key, value)| uri_encode(&key, true) + "=" + &uri_encode(&value, true))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
items.sort();
|
|
|
|
items.join("&")
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
}
|
2022-02-21 22:02:30 +00:00
|
|
|
|
|
|
|
pub fn parse_date(date: &str) -> Result<DateTime<Utc>, Error> {
|
|
|
|
let date: NaiveDateTime =
|
|
|
|
NaiveDateTime::parse_from_str(date, LONG_DATETIME).ok_or_bad_request("Invalid date")?;
|
|
|
|
Ok(DateTime::from_utc(date, Utc))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn verify_v4(
|
|
|
|
garage: &Garage,
|
|
|
|
credential: &str,
|
|
|
|
date: &DateTime<Utc>,
|
|
|
|
signature: &str,
|
|
|
|
payload: &[u8],
|
|
|
|
) -> Result<Key, Error> {
|
|
|
|
let (key_id, scope) = parse_credential(credential)?;
|
|
|
|
|
|
|
|
let scope_expected = format!(
|
|
|
|
"{}/{}/s3/aws4_request",
|
|
|
|
date.format(SHORT_DATE),
|
|
|
|
garage.config.s3_api.s3_region
|
|
|
|
);
|
|
|
|
if scope != scope_expected {
|
|
|
|
return Err(Error::AuthorizationHeaderMalformed(scope.to_string()));
|
|
|
|
}
|
|
|
|
|
|
|
|
let key = garage
|
|
|
|
.key_table
|
|
|
|
.get(&EmptyKey, &key_id)
|
|
|
|
.await?
|
|
|
|
.filter(|k| !k.state.is_deleted())
|
|
|
|
.ok_or_else(|| Error::Forbidden(format!("No such key: {}", &key_id)))?;
|
|
|
|
let key_p = key.params().unwrap();
|
|
|
|
|
|
|
|
let mut hmac = signing_hmac(
|
|
|
|
date,
|
|
|
|
&key_p.secret_key,
|
|
|
|
&garage.config.s3_api.s3_region,
|
|
|
|
"s3",
|
|
|
|
)
|
|
|
|
.ok_or_internal_error("Unable to build signing HMAC")?;
|
|
|
|
hmac.update(payload);
|
|
|
|
let our_signature = hex::encode(hmac.finalize().into_bytes());
|
|
|
|
if signature != our_signature {
|
|
|
|
return Err(Error::Forbidden("Invalid signature".to_string()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(key)
|
|
|
|
}
|