Files
rustfs/crates/iam/src/federation/transaction.rs
T

522 lines
20 KiB
Rust

// Copyright 2024 RustFS Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use super::{
FederatedIdentityRegistry, FederatedLoginSession, FederatedSession, FederatedSessionBinding, FederatedSessionTransaction,
FederationError, Result,
};
use crate::oidc::{OidcProviderConfig, OidcProviderSummary};
const DEFAULT_OIDC_PROVIDER_ID: &str = "default";
fn sorted_provider_summaries(mut providers: Vec<OidcProviderSummary>) -> Vec<OidcProviderSummary> {
providers.sort_by(|left, right| {
(left.provider_id != DEFAULT_OIDC_PROVIDER_ID)
.cmp(&(right.provider_id != DEFAULT_OIDC_PROVIDER_ID))
.then_with(|| left.provider_id.cmp(&right.provider_id))
});
providers
}
pub struct FederatedIdentityService {
registry: FederatedIdentityRegistry,
}
impl FederatedIdentityService {
pub fn new(registry: FederatedIdentityRegistry) -> Self {
Self { registry }
}
pub fn has_providers(&self) -> bool {
self.registry.standard_oidc().has_providers()
}
pub fn list_providers(&self) -> Vec<OidcProviderSummary> {
sorted_provider_summaries(self.registry.standard_oidc().list_providers())
}
pub fn list_visible_providers(&self) -> Vec<OidcProviderSummary> {
sorted_provider_summaries(self.registry.standard_oidc().list_visible_providers())
}
pub fn get_provider_config(&self, id: &str) -> Option<&OidcProviderConfig> {
self.registry.standard_oidc().provider_config(id)
}
pub async fn authorize_url(&self, provider_id: &str, redirect_uri: &str, redirect_after: Option<String>) -> Result<String> {
self.registry
.standard_oidc()
.authorize_url(provider_id, redirect_uri, redirect_after)
.await
}
pub async fn complete_authorization_code(
&self,
state: &str,
code: &str,
redirect_uri: &str,
duration_seconds: usize,
binding: &dyn FederatedSessionBinding,
) -> Result<FederatedLoginSession> {
let exchange = self.registry.standard_oidc().exchange_code(state, code, redirect_uri).await?;
let provider_id = exchange.authorization.provider_id.clone();
let transaction = FederatedSessionTransaction {
authorization: exchange.authorization,
duration_seconds,
session_policy: None,
};
let credentials = binding.bind(&transaction).await?;
let logout_token = self
.registry
.standard_oidc()
.create_logout_token(&provider_id, &exchange.id_token)
.await?;
Ok(FederatedLoginSession {
session: FederatedSession {
credentials,
authorization: transaction.authorization,
},
redirect_after: exchange.redirect_after,
logout_token,
})
}
pub async fn assume_role_with_web_identity(
&self,
jwt: &str,
duration_seconds: usize,
session_policy: Option<String>,
binding: &dyn FederatedSessionBinding,
) -> Result<FederatedSession> {
let authorization = self.registry.standard_oidc().verify_web_identity_token(jwt).await?;
if !authorization.has_authorization_context() {
tracing::warn!(
provider_id = %authorization.provider_id,
username = %authorization.claims.username,
sub = %authorization.claims.sub,
policy_count = authorization.policies.len(),
group_count = authorization.groups.len(),
"AssumeRoleWithWebIdentity has no mapped policies or groups"
);
return Err(FederationError::NoAuthorizationContext);
}
tracing::debug!(
provider_id = %authorization.provider_id,
username = %authorization.claims.username,
policy_count = authorization.policies.len(),
group_count = authorization.groups.len(),
policies = ?authorization.policies,
groups = ?authorization.groups,
"AssumeRoleWithWebIdentity mapped OIDC policies and groups"
);
let transaction = FederatedSessionTransaction {
authorization,
duration_seconds,
session_policy,
};
let credentials = binding.bind(&transaction).await?;
Ok(FederatedSession {
credentials,
authorization: transaction.authorization,
})
}
pub async fn build_logout_url(&self, logout_token: &str, post_logout_redirect_uri: &str) -> Result<Option<String>> {
self.registry
.standard_oidc()
.build_logout_url(logout_token, post_logout_redirect_uri)
.await
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::federation::{
FederatedAuthorization, FederatedClaims, FederatedCodeExchange, FederatedIdentityProvider, FederatedSessionBindingError,
};
use crate::oidc::{OidcProviderConfig, OidcProviderSummary};
use rustfs_credentials::Credentials;
use std::sync::{Arc, Mutex};
#[derive(Clone, Copy, PartialEq, Eq)]
enum ProviderFailure {
None,
Exchange,
Verification,
Logout,
}
struct TestProvider {
with_policy: bool,
with_group: bool,
browser_provider_id: &'static str,
web_provider_id: &'static str,
failure: ProviderFailure,
events: Arc<Mutex<Vec<&'static str>>>,
expected_logout: (&'static str, &'static str),
listed_provider_ids: Vec<&'static str>,
visible_provider_ids: Vec<&'static str>,
}
impl TestProvider {
fn new(events: Arc<Mutex<Vec<&'static str>>>) -> Self {
Self {
with_policy: true,
with_group: false,
browser_provider_id: DEFAULT_OIDC_PROVIDER_ID,
web_provider_id: DEFAULT_OIDC_PROVIDER_ID,
failure: ProviderFailure::None,
events,
expected_logout: (DEFAULT_OIDC_PROVIDER_ID, "id-token"),
listed_provider_ids: Vec::new(),
visible_provider_ids: Vec::new(),
}
}
fn record(&self, event: &'static str) {
self.events.lock().expect("event log should not be poisoned").push(event);
}
fn authorization(&self, provider_id: &str) -> FederatedAuthorization {
FederatedAuthorization {
provider_id: provider_id.to_string(),
claims: FederatedClaims {
sub: "subject".to_string(),
email: String::new(),
username: "user".to_string(),
groups: vec!["source-group".to_string()],
raw: Default::default(),
},
policies: if self.with_policy {
vec!["readwrite".to_string()]
} else {
Vec::new()
},
groups: if self.with_group {
vec!["developers".to_string()]
} else {
Vec::new()
},
roles_claim_key: None,
roles: Vec::new(),
}
}
}
fn provider_summaries(provider_ids: &[&str]) -> Vec<OidcProviderSummary> {
provider_ids
.iter()
.map(|provider_id| OidcProviderSummary {
provider_id: (*provider_id).to_string(),
display_name: (*provider_id).to_string(),
})
.collect()
}
#[async_trait::async_trait]
impl FederatedIdentityProvider for TestProvider {
fn has_providers(&self) -> bool {
true
}
fn list_providers(&self) -> Vec<OidcProviderSummary> {
provider_summaries(&self.listed_provider_ids)
}
fn list_visible_providers(&self) -> Vec<OidcProviderSummary> {
provider_summaries(&self.visible_provider_ids)
}
fn provider_config(&self, _id: &str) -> Option<&OidcProviderConfig> {
None
}
async fn authorize_url(
&self,
_provider_id: &str,
_redirect_uri: &str,
_redirect_after: Option<String>,
) -> Result<String> {
Ok("https://identity.example/authorize".to_string())
}
async fn exchange_code(&self, _state: &str, _code: &str, _redirect_uri: &str) -> Result<FederatedCodeExchange> {
self.record("exchange");
if self.failure == ProviderFailure::Exchange {
return Err(FederationError::CodeExchange("exchange failed".to_string()));
}
Ok(FederatedCodeExchange {
authorization: self.authorization(self.browser_provider_id),
redirect_after: Some("/browser".to_string()),
id_token: "id-token".to_string(),
})
}
async fn verify_web_identity_token(&self, _jwt: &str) -> Result<FederatedAuthorization> {
self.record("verify");
if self.failure == ProviderFailure::Verification {
return Err(FederationError::TokenVerification("verification failed".to_string()));
}
Ok(self.authorization(self.web_provider_id))
}
async fn create_logout_token(&self, provider_id: &str, id_token: &str) -> Result<String> {
self.record("logout");
assert_eq!((provider_id, id_token), self.expected_logout);
if self.failure == ProviderFailure::Logout {
return Err(FederationError::Logout("logout failed".to_string()));
}
Ok("logout-token".to_string())
}
async fn build_logout_url(&self, _logout_token: &str, _post_logout_redirect_uri: &str) -> Result<Option<String>> {
Ok(Some("https://identity.example/logout".to_string()))
}
}
struct RecordingBinding {
fail: bool,
events: Arc<Mutex<Vec<&'static str>>>,
transactions: Mutex<Vec<(String, usize, Option<String>)>>,
}
impl RecordingBinding {
fn new(events: Arc<Mutex<Vec<&'static str>>>) -> Self {
Self {
fail: false,
events,
transactions: Mutex::new(Vec::new()),
}
}
}
#[async_trait::async_trait]
impl FederatedSessionBinding for RecordingBinding {
async fn bind(
&self,
transaction: &FederatedSessionTransaction,
) -> core::result::Result<Credentials, FederatedSessionBindingError> {
self.events.lock().expect("event log should not be poisoned").push("bind");
self.transactions.lock().expect("transactions should not be poisoned").push((
transaction.authorization.provider_id.clone(),
transaction.duration_seconds,
transaction.session_policy.clone(),
));
if self.fail {
return Err(FederatedSessionBindingError::Internal("binding failed".to_string()));
}
Ok(Credentials {
access_key: transaction.authorization.claims.session_identity(),
..Default::default()
})
}
}
#[test]
fn provider_listing_puts_default_first_and_sorts_named_providers() {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events);
provider.listed_provider_ids = vec!["zeta", "hidden", DEFAULT_OIDC_PROVIDER_ID, "alpha"];
provider.visible_provider_ids = vec!["zeta", DEFAULT_OIDC_PROVIDER_ID, "alpha"];
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(Arc::new(provider)));
assert_eq!(
service
.list_providers()
.into_iter()
.map(|provider| provider.provider_id)
.collect::<Vec<_>>(),
[DEFAULT_OIDC_PROVIDER_ID, "alpha", "hidden", "zeta"]
);
assert_eq!(
service
.list_visible_providers()
.into_iter()
.map(|provider| provider.provider_id)
.collect::<Vec<_>>(),
[DEFAULT_OIDC_PROVIDER_ID, "alpha", "zeta"]
);
assert_eq!(
sorted_provider_summaries(provider_summaries(&["zeta", "alpha"]))
.into_iter()
.map(|provider| provider.provider_id)
.collect::<Vec<_>>(),
["alpha", "zeta"]
);
}
#[tokio::test]
async fn callback_and_web_identity_preserve_provider_and_transaction_boundaries() {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events.clone());
provider.browser_provider_id = "corp";
provider.web_provider_id = "partner";
provider.expected_logout = ("corp", "id-token");
let provider = Arc::new(provider);
let binding = Arc::new(RecordingBinding::new(events.clone()));
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(provider));
let login = service
.complete_authorization_code("state", "code", "https://console.example/callback", 3600, binding.as_ref())
.await
.expect("callback flow should complete");
assert_eq!(login.session.credentials.access_key, "user");
assert_eq!(login.session.authorization.provider_id, "corp");
assert_eq!(login.redirect_after.as_deref(), Some("/browser"));
assert_eq!(login.logout_token, "logout-token");
assert_eq!(
events.lock().expect("event log should not be poisoned").as_slice(),
["exchange", "bind", "logout"]
);
events.lock().expect("event log should not be poisoned").clear();
let web_identity = service
.assume_role_with_web_identity("jwt", 7200, Some("session-policy".to_string()), binding.as_ref())
.await
.expect("web identity flow should complete");
assert_eq!(web_identity.credentials.access_key, "user");
assert_eq!(web_identity.authorization.provider_id, "partner");
assert_eq!(events.lock().expect("event log should not be poisoned").as_slice(), ["verify", "bind"]);
assert_eq!(
binding
.transactions
.lock()
.expect("transactions should not be poisoned")
.as_slice(),
[
("corp".to_string(), 3600, None),
("partner".to_string(), 7200, Some("session-policy".to_string())),
]
);
}
#[tokio::test]
async fn web_identity_without_policy_or_group_is_not_bound() {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events.clone());
provider.with_policy = false;
let provider = Arc::new(provider);
let binding = Arc::new(RecordingBinding::new(events.clone()));
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(provider));
let error = service
.assume_role_with_web_identity("jwt", 3600, None, binding.as_ref())
.await
.expect_err("authorization context is required");
assert!(matches!(error, FederationError::NoAuthorizationContext));
assert_eq!(events.lock().expect("event log should not be poisoned").as_slice(), ["verify"]);
}
#[tokio::test]
async fn web_identity_group_only_authorization_is_bound_once() {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events.clone());
provider.with_policy = false;
provider.with_group = true;
let provider = Arc::new(provider);
let binding = Arc::new(RecordingBinding::new(events.clone()));
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(provider));
let session = service
.assume_role_with_web_identity("jwt", 3600, None, binding.as_ref())
.await
.expect("a mapped group is an authorization context");
assert!(session.authorization.policies.is_empty());
assert_eq!(session.authorization.groups, ["developers"]);
assert_eq!(events.lock().expect("event log should not be poisoned").as_slice(), ["verify", "bind"]);
}
#[tokio::test]
async fn callback_failures_preserve_existing_side_effect_order() {
for (provider_failure, binding_failure, expected_events) in [
(ProviderFailure::Exchange, false, vec!["exchange"]),
(ProviderFailure::None, true, vec!["exchange", "bind"]),
(ProviderFailure::Logout, false, vec!["exchange", "bind", "logout"]),
] {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events.clone());
provider.failure = provider_failure;
let mut binding = RecordingBinding::new(events.clone());
binding.fail = binding_failure;
let binding = Arc::new(binding);
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(Arc::new(provider)));
let error = service
.complete_authorization_code("state", "code", "https://console.example/callback", 3600, binding.as_ref())
.await
.expect_err("the configured failure should be returned");
if provider_failure == ProviderFailure::Exchange {
assert!(matches!(error, FederationError::CodeExchange(ref message) if message == "exchange failed"));
} else if binding_failure {
assert!(matches!(
error,
FederationError::Binding(FederatedSessionBindingError::Internal(ref message))
if message == "binding failed"
));
} else {
assert!(matches!(error, FederationError::Logout(ref message) if message == "logout failed"));
}
assert_eq!(
events.lock().expect("event log should not be poisoned").as_slice(),
expected_events,
"later callback steps must not run after a failure"
);
}
}
#[tokio::test]
async fn web_identity_failures_preserve_existing_side_effect_order() {
for (provider_failure, binding_failure, expected_events) in [
(ProviderFailure::Verification, false, vec!["verify"]),
(ProviderFailure::None, true, vec!["verify", "bind"]),
] {
let events = Arc::new(Mutex::new(Vec::new()));
let mut provider = TestProvider::new(events.clone());
provider.failure = provider_failure;
let mut binding = RecordingBinding::new(events.clone());
binding.fail = binding_failure;
let binding = Arc::new(binding);
let service = FederatedIdentityService::new(FederatedIdentityRegistry::new(Arc::new(provider)));
let error = service
.assume_role_with_web_identity("jwt", 3600, None, binding.as_ref())
.await
.expect_err("the configured failure should be returned");
if provider_failure == ProviderFailure::Verification {
assert!(matches!(error, FederationError::TokenVerification(_)));
} else {
assert!(matches!(
error,
FederationError::Binding(FederatedSessionBindingError::Internal(ref message))
if message == "binding failed"
));
}
assert_eq!(
events.lock().expect("event log should not be poisoned").as_slice(),
expected_events,
"later web identity steps must not run after a failure"
);
}
}
}