Skip to main content

fakecloud_core/
auth.rs

1//! Authentication and authorization primitives shared across services.
2//!
3//! This module defines the opt-in modes for SigV4 signature verification and
4//! IAM policy enforcement, plus the reserved "root bypass" identity that
5//! short-circuits both checks when enabled.
6//!
7//! Neither feature is enforced at this layer — the types are plumbed through
8//! [`crate::dispatch::DispatchConfig`] and consulted later by dispatch and
9//! service handlers once the corresponding batches land. See
10//! `/docs/reference/security` (added in a later batch) for the user-facing
11//! contract.
12
13use std::collections::{BTreeMap, HashMap};
14use std::fmt;
15use std::net::IpAddr;
16use std::str::FromStr;
17use std::sync::Arc;
18
19use chrono::{DateTime, Utc};
20
21/// Kind of principal a set of credentials resolves to.
22///
23/// Used to drive IAM policy evaluation (Phase 2) and the `GetCallerIdentity`
24/// response shape. Inferred from the credential's storage path in
25/// [`IamState`] and — for STS temporary credentials — from the ARN form
26/// `arn:aws:sts::<account>:assumed-role/...` or `federated-user/...`.
27#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
28pub enum PrincipalType {
29    /// An IAM user access key (AKID created via `CreateAccessKey`).
30    User,
31    /// An assumed role session issued by `AssumeRole` /
32    /// `AssumeRoleWithWebIdentity` / `AssumeRoleWithSAML`.
33    AssumedRole,
34    /// Credentials issued by `GetFederationToken` — i.e. a federated user.
35    FederatedUser,
36    /// The account root identity. Reserved for explicit `...:root` ARNs
37    /// only; do not return this from a generic fallback because root
38    /// principals bypass IAM enforcement (see `Principal::is_root`).
39    Root,
40    /// The ARN didn't match any known shape. Treated as a non-root,
41    /// non-bypassable principal so a malformed or unexpected ARN can never
42    /// silently grant elevated permissions during IAM evaluation.
43    Unknown,
44}
45
46impl PrincipalType {
47    pub fn as_str(self) -> &'static str {
48        match self {
49            PrincipalType::User => "user",
50            PrincipalType::AssumedRole => "assumed-role",
51            PrincipalType::FederatedUser => "federated-user",
52            PrincipalType::Root => "root",
53            PrincipalType::Unknown => "unknown",
54        }
55    }
56
57    /// Classify a principal from its ARN. Returns [`PrincipalType::Unknown`]
58    /// for ARNs that don't match any of the well-known principal shapes —
59    /// **never** [`PrincipalType::Root`] as a fallback, because root
60    /// bypasses IAM enforcement and silently treating malformed ARNs as
61    /// root would let unexpected inputs grant elevated permissions
62    /// (identified by cubic in PR #391 review).
63    pub fn from_arn(arn: &str) -> Self {
64        if arn.ends_with(":root") {
65            PrincipalType::Root
66        } else if arn.contains(":user/") {
67            PrincipalType::User
68        } else if arn.contains(":assumed-role/") {
69            PrincipalType::AssumedRole
70        } else if arn.contains(":federated-user/") {
71            PrincipalType::FederatedUser
72        } else {
73            PrincipalType::Unknown
74        }
75    }
76}
77
78/// Identity of the caller making a request, once its credentials have been
79/// resolved. Attached to [`crate::service::AwsRequest::principal`] so
80/// handlers can make identity-based decisions without re-parsing the
81/// Authorization header.
82///
83/// `account_id` is always sourced from the credential itself (via
84/// [`CredentialResolver`]), never from global config — #381 note.
85#[derive(Debug, Clone, PartialEq, Eq)]
86pub struct Principal {
87    pub arn: String,
88    pub user_id: String,
89    pub account_id: String,
90    pub principal_type: PrincipalType,
91    /// Optional source identity string, carried through from
92    /// `AssumeRole`'s `SourceIdentity` parameter. Reserved for later
93    /// batches that wire session policies and auditing.
94    pub source_identity: Option<String>,
95    /// Tags on the calling principal (IAM user or assumed role).
96    /// Populated at credential-resolution time from `IamState`.
97    /// Used for `aws:PrincipalTag/<key>` condition evaluation.
98    pub tags: Option<HashMap<String, String>>,
99}
100
101impl Principal {
102    /// Is this caller the account's root identity? Root bypasses IAM
103    /// evaluation, matching AWS.
104    pub fn is_root(&self) -> bool {
105        matches!(self.principal_type, PrincipalType::Root) || self.arn.ends_with(":root")
106    }
107}
108
109/// Credentials resolved from an access key ID.
110///
111/// Returned by [`CredentialResolver::resolve`]. Holds both the secret access
112/// key (needed for SigV4 verification) and the resolved [`Principal`]
113/// (needed for IAM enforcement and `GetCallerIdentity` consolidation).
114#[derive(Debug, Clone, PartialEq, Eq)]
115pub struct ResolvedCredential {
116    pub secret_access_key: String,
117    pub session_token: Option<String>,
118    pub principal: Principal,
119    /// Session policies passed to the STS call that minted this credential.
120    /// Empty for IAM user access keys.
121    pub session_policies: Vec<String>,
122    /// True iff the underlying STS credential was minted with MFA. Drives
123    /// `aws:MultiFactorAuthPresent` for downstream IAM evaluation. Always
124    /// false for raw IAM user access keys.
125    pub mfa_present: bool,
126    /// Wall-clock time at which the underlying STS credential was issued.
127    /// Drives `aws:TokenIssueTime` and `aws:MultiFactorAuthAge` (the latter
128    /// computed at evaluation time as `now - token_issued_at` when
129    /// [`Self::mfa_present`] is true). `None` for raw IAM user access keys
130    /// — AWS does not expose `aws:TokenIssueTime` for long-lived credentials.
131    pub token_issued_at: Option<DateTime<Utc>>,
132    /// `aws:FederatedProvider` — SAML provider ARN for AssumeRoleWithSAML,
133    /// OIDC provider ARN for AssumeRoleWithWebIdentity. `None` for raw IAM
134    /// user keys, plain AssumeRole, GetSessionToken, GetFederationToken.
135    pub federated_provider: Option<String>,
136}
137
138impl ResolvedCredential {
139    /// Convenience accessors for the flat fields batch 3 callers use. Kept
140    /// as methods rather than re-adding the fields to avoid making the
141    /// shape inconsistent with [`Principal`] itself.
142    pub fn principal_arn(&self) -> &str {
143        &self.principal.arn
144    }
145
146    pub fn user_id(&self) -> &str {
147        &self.principal.user_id
148    }
149
150    pub fn account_id(&self) -> &str {
151        &self.principal.account_id
152    }
153}
154
155/// Abstraction over "given an access key ID, return the secret and resolved
156/// principal." Implemented by the IAM crate against `IamState`; the core
157/// crate depends only on the trait so there's no circular dependency.
158///
159/// Implementations must be cheap to clone-share via `Arc` and must be
160/// thread-safe — dispatch calls them from an axum handler under a tokio
161/// worker.
162pub trait CredentialResolver: Send + Sync {
163    /// Resolve `access_key_id` to its secret access key and principal.
164    /// Returns `None` when the AKID is unknown or its underlying credential
165    /// has expired.
166    fn resolve(&self, access_key_id: &str) -> Option<ResolvedCredential>;
167}
168
169/// One IAM action that the dispatch layer should evaluate against the
170/// caller's effective policy set.
171///
172/// Produced by [`crate::service::AwsService::iam_action_for`] on services
173/// that opt into enforcement. The `resource` is a fully-qualified AWS ARN
174/// built from `request.principal.account_id` so multi-account isolation
175/// (#381) becomes a state-partitioning change rather than a cross-cutting
176/// rewrite.
177#[derive(Debug, Clone, PartialEq, Eq)]
178pub struct IamAction {
179    /// IAM service prefix, e.g. `"s3"`, `"sqs"`, `"iam"`.
180    pub service: &'static str,
181    /// AWS action name, e.g. `"GetObject"`, `"SendMessage"`.
182    pub action: &'static str,
183    /// Fully-qualified ARN of the target resource.
184    pub resource: String,
185}
186
187impl IamAction {
188    /// Compose the canonical `service:Action` string the evaluator
189    /// matches against.
190    pub fn action_string(&self) -> String {
191        format!("{}:{}", self.service, self.action)
192    }
193}
194
195/// Result of evaluating a request against an identity's effective policy
196/// set. Abstract over the concrete evaluator [`Decision`] in
197/// `fakecloud-iam::evaluator` so `fakecloud-core` can consume it without
198/// depending on `fakecloud-iam`.
199#[derive(Debug, Clone, Copy, PartialEq, Eq)]
200pub enum IamDecision {
201    Allow,
202    ImplicitDeny,
203    ExplicitDeny,
204}
205
206impl IamDecision {
207    pub fn is_allow(self) -> bool {
208        matches!(self, IamDecision::Allow)
209    }
210}
211
212/// Request-time values consulted when a policy statement carries a
213/// `Condition` block. Populated at dispatch time from the resolved
214/// [`Principal`] and the incoming HTTP request, then handed to
215/// [`IamPolicyEvaluator::evaluate`].
216///
217/// Lives in `fakecloud-core` (not `fakecloud-iam`) so the trait can
218/// reference it without creating a circular crate dependency. All
219/// fields are optional — a missing field means the key wasn't knowable
220/// at dispatch time, and any operator that references it safe-fails to
221/// `false` (unless the operator carries the `IfExists` suffix, in which
222/// case it evaluates to `true`, matching AWS).
223///
224/// The `service_keys` map is reserved for service-specific condition
225/// keys (`s3:prefix`, `sqs:MessageAttribute`, …) which Phase 2 ships
226/// empty; service-specific support lands in a follow-up batch without
227/// a signature change.
228#[derive(Debug, Clone, Default)]
229pub struct ConditionContext {
230    /// `aws:username` — username segment of an IAM user ARN, or `None`
231    /// for assumed roles / federated users where AWS does not set the key.
232    pub aws_username: Option<String>,
233    /// `aws:userid` — the unique `AIDA...`/`AROA...` identifier.
234    pub aws_userid: Option<String>,
235    /// `aws:PrincipalArn` — full principal ARN.
236    pub aws_principal_arn: Option<String>,
237    /// `aws:PrincipalAccount` — 12-digit account ID sourced from the
238    /// credential, not global config (#381 multi-account alignment).
239    pub aws_principal_account: Option<String>,
240    /// `aws:PrincipalType` — `"User"`, `"AssumedRole"`, etc.
241    pub aws_principal_type: Option<String>,
242    /// `aws:SourceIp` — remote address of the HTTP connection.
243    pub aws_source_ip: Option<IpAddr>,
244    /// `aws:CurrentTime` — evaluation timestamp (UTC).
245    pub aws_current_time: Option<DateTime<Utc>>,
246    /// `aws:EpochTime` — same moment as `aws_current_time` in seconds
247    /// since the Unix epoch.
248    pub aws_epoch_time: Option<i64>,
249    /// `aws:SecureTransport` — `true` iff the request came in over TLS.
250    pub aws_secure_transport: Option<bool>,
251    /// `aws:RequestedRegion` — region extracted from SigV4 / config.
252    pub aws_requested_region: Option<String>,
253    /// `aws:MultiFactorAuthPresent` — true iff the caller supplied an
254    /// MFA credential when minting the session (AssumeRole with
255    /// SerialNumber + TokenCode, or a long-lived user credential
256    /// re-asserted via STS GetSessionToken with MFA).
257    pub aws_mfa_present: Option<bool>,
258    /// `aws:MultiFactorAuthAge` — seconds since MFA was asserted on
259    /// the session.
260    pub aws_mfa_age_seconds: Option<i64>,
261    /// `aws:CalledVia` — the chain of service principals that have
262    /// re-invoked downstream services on the caller's behalf
263    /// (e.g. `["cloudformation.amazonaws.com"]`). Multi-value key.
264    pub aws_called_via: Vec<String>,
265    /// `aws:SourceVpce` — VPC endpoint id when the request transited
266    /// a VPC interface endpoint.
267    pub aws_source_vpce: Option<String>,
268    /// `aws:SourceVpc` — VPC id when the request originated inside a
269    /// VPC.
270    pub aws_source_vpc: Option<String>,
271    /// `aws:VpcSourceIp` — private source IP inside the VPC (distinct
272    /// from `aws:SourceIp` which is the public NAT/Edge IP).
273    pub aws_vpc_source_ip: Option<IpAddr>,
274    /// `aws:FederatedProvider` — `cognito-identity.amazonaws.com`,
275    /// `accounts.google.com`, or the SAML-provider ARN, depending on
276    /// how the credential was minted.
277    pub aws_federated_provider: Option<String>,
278    /// `aws:TokenIssueTime` — when the temporary credential
279    /// underlying this session was issued (UTC).
280    pub aws_token_issue_time: Option<DateTime<Utc>>,
281    /// Service-specific keys (`s3:prefix`, `sqs:MessageAttribute`, …).
282    pub service_keys: BTreeMap<String, Vec<String>>,
283    /// `aws:ResourceTag/<key>` — tags on the target resource.
284    /// Populated by [`crate::service::AwsService::resource_tags_for`].
285    /// `None` means the service doesn't expose resource tags for ABAC.
286    pub resource_tags: Option<HashMap<String, String>>,
287    /// `aws:RequestTag/<key>` — tags sent in the request body/headers.
288    /// Populated by [`crate::service::AwsService::request_tags_from`].
289    /// Also drives `aws:TagKeys` (the list of request tag keys).
290    pub request_tags: Option<HashMap<String, String>>,
291    /// `aws:PrincipalTag/<key>` — tags on the calling IAM user or role.
292    /// Populated from [`Principal::tags`] at dispatch time.
293    pub principal_tags: Option<HashMap<String, String>>,
294}
295
296/// Whether two condition key names are the same key: the `service:name`
297/// part compares case-insensitively, and anything after the first `/` (a tag
298/// key in `aws:RequestTag/<key>`) compares exactly.
299fn same_condition_key(a: &str, b: &str) -> bool {
300    fn split(k: &str) -> (&str, &str) {
301        match k.find('/') {
302            Some(i) => (&k[..i], &k[i..]),
303            None => (k, ""),
304        }
305    }
306    let ((a_name, a_tail), (b_name, b_tail)) = (split(a), split(b));
307    a_name.eq_ignore_ascii_case(b_name) && a_tail == b_tail
308}
309
310impl ConditionContext {
311    /// Resolve a condition key (e.g. `"aws:username"`) to the list of
312    /// context values. Returns `None` if the key is not populated.
313    /// Key names are matched case-insensitively — AWS treats
314    /// `aws:username` and `AWS:UserName` as the same key.
315    pub fn lookup(&self, key: &str) -> Option<Vec<String>> {
316        let lower = key.to_ascii_lowercase();
317        let one = |s: &str| Some(vec![s.to_string()]);
318
319        // ABAC tag-based keys: case-insensitive prefix, case-sensitive
320        // tag key (the part after the slash). AWS treats "Environment"
321        // and "environment" as distinct tag keys.
322        //
323        // Prefix lengths: "aws:resourcetag/" = 16, "aws:requesttag/" = 15,
324        //                 "aws:principaltag/" = 17
325        let tagged = if lower.starts_with("aws:resourcetag/") {
326            let tag_key = &key[16..]; // preserve original case
327            Some(
328                self.resource_tags
329                    .as_ref()
330                    .and_then(|tags| tags.get(tag_key))
331                    .map(|v| vec![v.clone()]),
332            )
333        } else if lower.starts_with("aws:requesttag/") {
334            let tag_key = &key[15..];
335            Some(
336                self.request_tags
337                    .as_ref()
338                    .and_then(|tags| tags.get(tag_key))
339                    .map(|v| vec![v.clone()]),
340            )
341        } else if lower.starts_with("aws:principaltag/") {
342            let tag_key = &key[17..];
343            Some(
344                self.principal_tags
345                    .as_ref()
346                    .and_then(|tags| tags.get(tag_key))
347                    .map(|v| vec![v.clone()]),
348            )
349        } else if lower == "aws:tagkeys" {
350            Some(
351                self.request_tags
352                    .as_ref()
353                    .map(|tags| tags.keys().cloned().collect()),
354            )
355        } else {
356            None
357        };
358        if let Some(tagged) = tagged {
359            // Tag keys are case-sensitive after the prefix, so a plain entry
360            // must match the key exactly.
361            return tagged.or_else(|| {
362                self.service_keys
363                    .iter()
364                    .find(|(entry, _)| same_condition_key(entry, key))
365                    .map(|(_, vs)| vs.clone())
366            });
367        }
368
369        let typed = match lower.as_str() {
370            "aws:username" => self.aws_username.as_deref().and_then(one),
371            "aws:userid" => self.aws_userid.as_deref().and_then(one),
372            "aws:principalarn" => self.aws_principal_arn.as_deref().and_then(one),
373            "aws:principalaccount" => self.aws_principal_account.as_deref().and_then(one),
374            "aws:principaltype" => self.aws_principal_type.as_deref().and_then(one),
375            "aws:sourceip" => self.aws_source_ip.map(|ip| vec![ip.to_string()]),
376            "aws:currenttime" => self
377                .aws_current_time
378                .map(|t| vec![t.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)]),
379            "aws:epochtime" => self.aws_epoch_time.map(|e| vec![e.to_string()]),
380            "aws:securetransport" => self.aws_secure_transport.map(|b| vec![b.to_string()]),
381            "aws:requestedregion" => self.aws_requested_region.as_deref().and_then(one),
382            "aws:multifactorauthpresent" => self.aws_mfa_present.map(|b| vec![b.to_string()]),
383            "aws:multifactorauthage" => self.aws_mfa_age_seconds.map(|s| vec![s.to_string()]),
384            "aws:calledvia" => {
385                if self.aws_called_via.is_empty() {
386                    None
387                } else {
388                    Some(self.aws_called_via.clone())
389                }
390            }
391            "aws:sourcevpce" => self.aws_source_vpce.as_deref().and_then(one),
392            "aws:sourcevpc" => self.aws_source_vpc.as_deref().and_then(one),
393            "aws:vpcsourceip" => self.aws_vpc_source_ip.map(|ip| vec![ip.to_string()]),
394            "aws:federatedprovider" => self.aws_federated_provider.as_deref().and_then(one),
395            "aws:tokenissuetime" => self
396                .aws_token_issue_time
397                .map(|t| vec![t.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)]),
398            _ => None,
399        };
400        // A key with no typed value -- a service-specific key, or a global key
401        // supplied as a plain entry (a policy simulator's ContextEntries) --
402        // comes from `service_keys`. An entry with an empty value list means
403        // the key applies to the request but carries no values, which set
404        // operators distinguish from a key that was never populated.
405        typed.or_else(|| {
406            self.service_keys.get(&lower).cloned().or_else(|| {
407                self.service_keys
408                    .iter()
409                    .find(|(k, _)| k.eq_ignore_ascii_case(key))
410                    .map(|(_, vs)| vs.clone())
411            })
412        })
413    }
414}
415
416/// Abstraction over "given a principal, an action, and request-time
417/// condition keys, say Allow / Deny". Implemented by `fakecloud-iam`
418/// against `IamState` + the evaluator. Dispatch calls this for every
419/// request when `FAKECLOUD_IAM != off` and the target service opts in.
420pub trait IamPolicyEvaluator: Send + Sync {
421    /// Evaluate `action` against the identity policies attached to
422    /// `principal`, using `context` for `Condition` block resolution.
423    /// `session_policies` are the raw JSON session-policy documents
424    /// from the STS call that minted the caller's credential (empty
425    /// for IAM user access keys). `scps` are the inherited SCP
426    /// documents (root-OU first, account-direct last) that form the
427    /// top-of-chain allow-list ceiling; `None` means no org exists
428    /// for this principal or the principal is exempt (management,
429    /// service-linked role) and the layer is a pass-through.
430    fn evaluate(
431        &self,
432        principal: &Principal,
433        action: &IamAction,
434        context: &ConditionContext,
435        session_policies: &[String],
436        scps: Option<&[String]>,
437    ) -> IamDecision;
438
439    /// Evaluate with resource-policy + session-policy intersection.
440    /// `scps` follows the same semantics as in [`Self::evaluate`].
441    #[allow(clippy::too_many_arguments)]
442    fn evaluate_with_resource_policy(
443        &self,
444        principal: &Principal,
445        action: &IamAction,
446        context: &ConditionContext,
447        resource_policy_json: Option<&str>,
448        resource_account_id: &str,
449        session_policies: &[String],
450        scps: Option<&[String]>,
451    ) -> IamDecision;
452
453    /// Evaluate `action` for an **anonymous** (unsigned) caller against a
454    /// resource-based policy in isolation. Anonymous requests carry no
455    /// identity, so the resource policy is the sole authorization source:
456    /// the request is allowed only if the policy explicitly grants the
457    /// action to a wildcard principal (`Principal:"*"` / `{"AWS":"*"}`).
458    ///
459    /// `resource_policy_json` is the raw policy document (S3 bucket policy
460    /// today); `None` or a non-public policy yields [`IamDecision::ImplicitDeny`].
461    /// ACL-based public grants are evaluated separately by the dispatcher
462    /// via [`ResourcePolicyProvider::public_acl_allows`].
463    ///
464    /// The default implementation returns [`IamDecision::ImplicitDeny`] so
465    /// evaluators that don't support anonymous access never silently grant.
466    fn evaluate_anonymous(
467        &self,
468        _action: &IamAction,
469        _context: &ConditionContext,
470        _resource_policy_json: Option<&str>,
471    ) -> IamDecision {
472        IamDecision::ImplicitDeny
473    }
474}
475
476/// Abstraction over "given a principal, return the inherited SCP
477/// documents that form the top-of-chain allow-list ceiling for the
478/// principal's account". Implemented by `fakecloud-organizations`.
479///
480/// Returning `None` means SCPs do not apply (no org exists for this
481/// fakecloud process, or the principal is the management account, or
482/// the principal is a service-linked role, or the account is not
483/// enrolled in the organization). Dispatch plumbs the returned slice
484/// straight into [`IamPolicyEvaluator`].
485///
486/// The ordered list puts root-OU-attached policies first, then each
487/// descendant OU down to the account's parent, and account-direct
488/// attachments last — the evaluator treats each entry as a separate
489/// gate that must allow (intersection), matching AWS SCP semantics.
490pub trait ScpResolver: Send + Sync {
491    fn scps_for(&self, principal: &Principal) -> Option<Vec<String>>;
492}
493
494/// Abstraction over "does the organization topology permit `caller_account` to
495/// mint centralized-root (`sts:AssumeRoot`) credentials for `target_account`".
496/// Implemented by `fakecloud-organizations`, which owns the membership graph
497/// the IAM/STS crate has no visibility into.
498///
499/// Returns `true` only when an organization exists, `target_account` is a
500/// member of it, and `caller_account` is that org's management account (or a
501/// registered delegated administrator for centralized root access). Any other
502/// case — no org, target not enrolled, caller not privileged — returns
503/// `false`, so a bare `sts:AssumeRoot` grant can no longer escalate to root
504/// over an arbitrary account. Same-account AssumeRoot is handled by the caller
505/// and never consults this resolver.
506pub trait OrgMembershipResolver: Send + Sync {
507    fn can_assume_root_into(&self, caller_account: &str, target_account: &str) -> bool;
508}
509
510/// Abstraction over "given a service + a fully-qualified resource ARN,
511/// return the resource-based policy attached to that resource, if any."
512///
513/// Implemented by resource-owning services (S3 for bucket policies in
514/// the initial rollout; SNS topic policies, KMS key policies, and
515/// Lambda resource policies are separate future wirings) and plumbed
516/// through [`crate::dispatch::DispatchConfig`] alongside
517/// [`IamPolicyEvaluator`]. Dispatch fetches the policy for the target
518/// resource and hands it to the evaluator so cross-account Allow/Deny
519/// semantics can be computed.
520///
521/// Implementations must be cheap to clone-share via `Arc` and must be
522/// thread-safe — dispatch calls them on every enforced request.
523///
524/// Returning `None` means "no resource policy attached / resource
525/// doesn't exist / this provider doesn't handle that service." Returning
526/// `Some(json)` yields the raw JSON document as stored by the
527/// resource's CRUD handlers; parsing happens inside the evaluator so a
528/// malformed document logs a debug audit event and falls through to
529/// "no resource policy" rather than silently allowing.
530pub trait ResourcePolicyProvider: Send + Sync {
531    /// Fetch the resource-based policy document attached to
532    /// `resource_arn` on `service`. Both arguments are lowercase-ish
533    /// (`"s3"`, `"arn:aws:s3:::my-bucket"`); implementations should
534    /// match the service prefix they own and return `None` for
535    /// anything else so providers can be composed safely.
536    fn resource_policy(&self, service: &str, resource_arn: &str) -> Option<String>;
537
538    /// Resolve the 12-digit account that owns `resource_arn` on `service`,
539    /// when the ARN itself does not carry it. S3 ARNs have an empty account
540    /// field (`arn:aws:s3:::bucket`), so without this the dispatcher would
541    /// fall back to the caller's account and treat every S3 request as
542    /// same-account — letting account A reach account B's bucket without B's
543    /// bucket policy granting it (bug-audit 2026-05-28, 5.3). Providers whose
544    /// ARNs already carry the account (SQS/SNS/Lambda/…) return `None` and let
545    /// the dispatcher parse it from the ARN. Default `None`.
546    fn resource_owner_account(&self, _service: &str, _resource_arn: &str) -> Option<String> {
547        None
548    }
549
550    /// Whether a **public-read ACL** on `resource_arn` grants `action` to
551    /// an anonymous (unsigned) caller. Distinct from a bucket policy: S3
552    /// ACLs are a separate grant surface, so an object/bucket with an
553    /// `AllUsers` group grant is publicly readable even without a bucket
554    /// policy. `action` is the bare AWS action name (`"GetObject"`,
555    /// `"ListBucket"`, …).
556    ///
557    /// Implementations must honor `PublicAccessBlock` (a bucket with
558    /// `IgnorePublicAcls` set is not public via ACL). Default `false` so
559    /// providers that don't model ACLs never grant anonymous access.
560    fn public_acl_allows(&self, _service: &str, _resource_arn: &str, _action: &str) -> bool {
561        false
562    }
563}
564
565/// Failure mode for IAM PassRole trust-policy validation.
566///
567/// Exists in `fakecloud-core` so service crates (Lambda, ECS, …) can
568/// surface a wire-shaped error without taking a dependency on
569/// `fakecloud-iam`. The server crate wires the concrete validator that
570/// reads the IAM state.
571#[derive(Debug, Clone, PartialEq, Eq)]
572pub enum PassRoleError {
573    /// No role with this ARN exists in the IAM state.
574    RoleNotFound(String),
575    /// Role exists but its `AssumeRolePolicyDocument` does not allow the
576    /// service principal to call `sts:AssumeRole`. Real AWS returns
577    /// `InvalidParameterValueException` in this shape.
578    TrustPolicyDenies {
579        role_arn: String,
580        service_principal: String,
581    },
582    /// Role's `AssumeRolePolicyDocument` could not be parsed as JSON.
583    InvalidTrustPolicy(String),
584}
585
586impl std::fmt::Display for PassRoleError {
587    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
588        match self {
589            Self::RoleNotFound(arn) => write!(f, "role not found: {arn}"),
590            Self::TrustPolicyDenies {
591                role_arn,
592                service_principal,
593            } => write!(
594                f,
595                "Role's trust policy does not allow {service_principal} to assume the role: {role_arn}"
596            ),
597            Self::InvalidTrustPolicy(arn) => {
598                write!(f, "invalid trust policy on role {arn}")
599            }
600        }
601    }
602}
603
604impl std::error::Error for PassRoleError {}
605
606/// Validator that checks whether a role can be passed to a given
607/// service. Used by Lambda / ECS / EC2 etc. to reject `CreateFunction`,
608/// `RegisterTaskDefinition`, etc. when the supplied role's trust policy
609/// doesn't allow the service principal — matching the `iam:PassRole`
610/// trust-side behavior real AWS enforces unconditionally (separate from
611/// identity-policy `iam:PassRole`, which sits behind the IAM evaluator).
612pub trait RoleTrustValidator: Send + Sync {
613    fn validate(
614        &self,
615        account_id: &str,
616        role_arn: &str,
617        service_principal: &str,
618    ) -> Result<(), PassRoleError>;
619}
620
621/// Composite [`ResourcePolicyProvider`] that delegates to a list of
622/// sub-providers in order, returning the first `Some` hit.
623///
624/// Each concrete provider (`S3ResourcePolicyProvider`,
625/// `SnsResourcePolicyProvider`, `LambdaResourcePolicyProvider`, …)
626/// already gates on its own service prefix and returns `None` for
627/// anything it doesn't own, so composition is short-circuit and
628/// order-independent. Server bootstrap builds one of these holding
629/// every resource-owning service and passes it to
630/// [`crate::dispatch::DispatchConfig::resource_policy_provider`].
631///
632/// This is the extension point for future resource-owning services:
633/// adding KMS key policies (or anything else) is a one-line push at
634/// bootstrap, never a core-crate refactor.
635pub struct MultiResourcePolicyProvider {
636    providers: Vec<Arc<dyn ResourcePolicyProvider>>,
637}
638
639impl MultiResourcePolicyProvider {
640    /// Build a composite from a list of providers.
641    pub fn new(providers: Vec<Arc<dyn ResourcePolicyProvider>>) -> Self {
642        Self { providers }
643    }
644
645    /// Shared constructor returning the composite as an
646    /// `Arc<dyn ResourcePolicyProvider>`, matching the signature of
647    /// `DispatchConfig::resource_policy_provider`.
648    pub fn shared(
649        providers: Vec<Arc<dyn ResourcePolicyProvider>>,
650    ) -> Arc<dyn ResourcePolicyProvider> {
651        Arc::new(Self::new(providers))
652    }
653
654    /// Number of sub-providers held by this composite. Used by tests.
655    pub fn len(&self) -> usize {
656        self.providers.len()
657    }
658
659    /// True when no sub-providers are registered.
660    pub fn is_empty(&self) -> bool {
661        self.providers.is_empty()
662    }
663}
664
665impl ResourcePolicyProvider for MultiResourcePolicyProvider {
666    fn resource_policy(&self, service: &str, resource_arn: &str) -> Option<String> {
667        self.providers
668            .iter()
669            .find_map(|p| p.resource_policy(service, resource_arn))
670    }
671
672    fn resource_owner_account(&self, service: &str, resource_arn: &str) -> Option<String> {
673        self.providers
674            .iter()
675            .find_map(|p| p.resource_owner_account(service, resource_arn))
676    }
677
678    fn public_acl_allows(&self, service: &str, resource_arn: &str, action: &str) -> bool {
679        self.providers
680            .iter()
681            .any(|p| p.public_acl_allows(service, resource_arn, action))
682    }
683}
684
685/// How IAM identity policies are evaluated for incoming requests.
686///
687/// Default is [`IamMode::Off`] — existing behavior, policies are stored but
688/// never consulted. [`IamMode::Soft`] evaluates and logs denied decisions via
689/// the `fakecloud::iam::audit` tracing target without failing the request, and
690/// [`IamMode::Strict`] returns an `AccessDeniedException` in the protocol-
691/// correct shape.
692#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
693pub enum IamMode {
694    /// Do not evaluate IAM policies.
695    #[default]
696    Off,
697    /// Evaluate policies and log audit events for denied requests, but allow
698    /// the request to proceed.
699    Soft,
700    /// Evaluate policies and reject denied requests with `AccessDeniedException`.
701    Strict,
702}
703
704impl IamMode {
705    /// Returns true when policy evaluation should occur at all.
706    pub fn is_enabled(self) -> bool {
707        !matches!(self, IamMode::Off)
708    }
709
710    /// Returns true when denied decisions should fail the request.
711    pub fn is_strict(self) -> bool {
712        matches!(self, IamMode::Strict)
713    }
714
715    pub fn as_str(self) -> &'static str {
716        match self {
717            IamMode::Off => "off",
718            IamMode::Soft => "soft",
719            IamMode::Strict => "strict",
720        }
721    }
722}
723
724impl fmt::Display for IamMode {
725    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
726        f.write_str(self.as_str())
727    }
728}
729
730/// Parse error for [`IamMode`] from string.
731#[derive(Debug)]
732pub struct ParseIamModeError(String);
733
734impl fmt::Display for ParseIamModeError {
735    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
736        write!(
737            f,
738            "invalid IAM mode `{}`; expected one of: off, soft, strict",
739            self.0
740        )
741    }
742}
743
744impl std::error::Error for ParseIamModeError {}
745
746impl FromStr for IamMode {
747    type Err = ParseIamModeError;
748
749    fn from_str(s: &str) -> Result<Self, Self::Err> {
750        match s.trim().to_ascii_lowercase().as_str() {
751            "off" | "none" | "disabled" => Ok(IamMode::Off),
752            "soft" | "audit" | "warn" => Ok(IamMode::Soft),
753            "strict" | "enforce" | "deny" => Ok(IamMode::Strict),
754            other => Err(ParseIamModeError(other.to_string())),
755        }
756    }
757}
758
759/// Reserved root-identity convention.
760///
761/// Any access key whose ID begins with `test` (case-insensitive) is treated as
762/// the de-facto root bypass. This matches the long-standing community
763/// convention used by LocalStack and Floci: `test`/`test` credentials should
764/// always "just work" for local development.
765///
766/// When SigV4 verification or IAM enforcement is enabled, callers using a
767/// bypass AKID skip both checks. We emit a one-time startup WARN whenever
768/// enforcement is turned on so users understand that unsigned `test` clients
769/// will silently receive positive results.
770pub fn is_root_bypass(access_key_id: &str) -> bool {
771    access_key_id
772        .trim()
773        .get(..4)
774        .is_some_and(|prefix| prefix.eq_ignore_ascii_case("test"))
775}
776
777#[cfg(test)]
778mod tests {
779    use super::*;
780
781    #[test]
782    fn iam_mode_default_is_off() {
783        assert_eq!(IamMode::default(), IamMode::Off);
784        assert!(!IamMode::default().is_enabled());
785    }
786
787    #[test]
788    fn iam_mode_from_str_accepts_primary_values() {
789        assert_eq!(IamMode::from_str("off").unwrap(), IamMode::Off);
790        assert_eq!(IamMode::from_str("soft").unwrap(), IamMode::Soft);
791        assert_eq!(IamMode::from_str("strict").unwrap(), IamMode::Strict);
792    }
793
794    #[test]
795    fn iam_mode_from_str_is_case_insensitive_and_trimmed() {
796        assert_eq!(IamMode::from_str(" OFF ").unwrap(), IamMode::Off);
797        assert_eq!(IamMode::from_str("Soft").unwrap(), IamMode::Soft);
798        assert_eq!(IamMode::from_str("STRICT").unwrap(), IamMode::Strict);
799    }
800
801    #[test]
802    fn iam_mode_from_str_accepts_aliases() {
803        assert_eq!(IamMode::from_str("disabled").unwrap(), IamMode::Off);
804        assert_eq!(IamMode::from_str("audit").unwrap(), IamMode::Soft);
805        assert_eq!(IamMode::from_str("enforce").unwrap(), IamMode::Strict);
806    }
807
808    #[test]
809    fn iam_mode_from_str_rejects_garbage() {
810        assert!(IamMode::from_str("").is_err());
811        assert!(IamMode::from_str("allow").is_err());
812        assert!(IamMode::from_str("yes").is_err());
813    }
814
815    #[test]
816    fn iam_mode_display_roundtrips() {
817        for mode in [IamMode::Off, IamMode::Soft, IamMode::Strict] {
818            assert_eq!(IamMode::from_str(&mode.to_string()).unwrap(), mode);
819        }
820    }
821
822    #[test]
823    fn iam_mode_flags() {
824        assert!(!IamMode::Off.is_enabled());
825        assert!(!IamMode::Off.is_strict());
826        assert!(IamMode::Soft.is_enabled());
827        assert!(!IamMode::Soft.is_strict());
828        assert!(IamMode::Strict.is_enabled());
829        assert!(IamMode::Strict.is_strict());
830    }
831
832    #[test]
833    fn root_bypass_matches_test_prefix() {
834        assert!(is_root_bypass("test"));
835        assert!(is_root_bypass("TEST"));
836        assert!(is_root_bypass("Test"));
837        assert!(is_root_bypass("testAccessKey"));
838        assert!(is_root_bypass("TESTAKIAIOSFODNN7EXAMPLE"));
839    }
840
841    #[test]
842    fn root_bypass_does_not_panic_on_multibyte_input() {
843        // Byte index 4 falls inside a multi-byte UTF-8 character; must not panic.
844        assert!(!is_root_bypass("té"));
845        assert!(!is_root_bypass("日本語キー"));
846        assert!(!is_root_bypass("🔑🔑"));
847    }
848
849    #[test]
850    fn principal_type_from_arn_classifies_known_shapes() {
851        assert_eq!(
852            PrincipalType::from_arn("arn:aws:iam::123456789012:user/alice"),
853            PrincipalType::User
854        );
855        assert_eq!(
856            PrincipalType::from_arn("arn:aws:sts::123456789012:assumed-role/R/s"),
857            PrincipalType::AssumedRole
858        );
859        assert_eq!(
860            PrincipalType::from_arn("arn:aws:sts::123456789012:federated-user/bob"),
861            PrincipalType::FederatedUser
862        );
863        assert_eq!(
864            PrincipalType::from_arn("arn:aws:iam::123456789012:root"),
865            PrincipalType::Root
866        );
867    }
868
869    #[test]
870    fn principal_type_unparseable_is_unknown_not_root() {
871        // Identified by cubic on PR #391: falling back to Root would let
872        // malformed or unexpected ARNs bypass IAM enforcement, since
873        // Principal::is_root short-circuits evaluation. The fallback must
874        // be the non-bypassable Unknown variant.
875        assert_eq!(
876            PrincipalType::from_arn("not-an-arn"),
877            PrincipalType::Unknown
878        );
879        assert_eq!(PrincipalType::from_arn(""), PrincipalType::Unknown);
880        assert_eq!(
881            PrincipalType::from_arn("arn:aws:iam::123456789012:something-weird"),
882            PrincipalType::Unknown
883        );
884
885        // And a Principal built from an Unknown ARN must not be treated
886        // as root for enforcement decisions.
887        let p = Principal {
888            arn: "garbage".to_string(),
889            user_id: "x".to_string(),
890            account_id: "123456789012".to_string(),
891            principal_type: PrincipalType::Unknown,
892            source_identity: None,
893            tags: None,
894        };
895        assert!(!p.is_root());
896    }
897
898    #[test]
899    fn principal_is_root_covers_root_type_and_arn_suffix() {
900        let p = Principal {
901            arn: "arn:aws:iam::123456789012:root".to_string(),
902            user_id: "AIDAROOT".to_string(),
903            account_id: "123456789012".to_string(),
904            principal_type: PrincipalType::Root,
905            source_identity: None,
906            tags: None,
907        };
908        assert!(p.is_root());
909
910        let user = Principal {
911            arn: "arn:aws:iam::123456789012:user/alice".to_string(),
912            user_id: "AIDAALICE".to_string(),
913            account_id: "123456789012".to_string(),
914            principal_type: PrincipalType::User,
915            source_identity: None,
916            tags: None,
917        };
918        assert!(!user.is_root());
919    }
920
921    #[test]
922    fn resolved_credential_accessors_forward_to_principal() {
923        let rc = ResolvedCredential {
924            secret_access_key: "s".into(),
925            session_token: None,
926            principal: Principal {
927                arn: "arn:aws:iam::123456789012:user/alice".into(),
928                user_id: "AIDAALICE".into(),
929                account_id: "123456789012".into(),
930                principal_type: PrincipalType::User,
931                source_identity: None,
932                tags: None,
933            },
934            session_policies: Vec::new(),
935            mfa_present: false,
936            token_issued_at: None,
937            federated_provider: None,
938        };
939        assert_eq!(rc.principal_arn(), "arn:aws:iam::123456789012:user/alice");
940        assert_eq!(rc.user_id(), "AIDAALICE");
941        assert_eq!(rc.account_id(), "123456789012");
942    }
943
944    #[test]
945    fn root_bypass_rejects_non_test_keys() {
946        assert!(!is_root_bypass(""));
947        assert!(!is_root_bypass("   "));
948        assert!(!is_root_bypass("AKIAIOSFODNN7EXAMPLE"));
949        assert!(!is_root_bypass("FKIA123456"));
950        assert!(!is_root_bypass("tes"));
951        assert!(!is_root_bypass("tst"));
952    }
953
954    // --- MultiResourcePolicyProvider composite -------------------------
955
956    /// Test provider that returns a canned document for one
957    /// (service, arn) pair and `None` for everything else.
958    struct FakeProvider {
959        service: &'static str,
960        arn: &'static str,
961        policy: &'static str,
962    }
963
964    impl ResourcePolicyProvider for FakeProvider {
965        fn resource_policy(&self, service: &str, resource_arn: &str) -> Option<String> {
966            if service.eq_ignore_ascii_case(self.service) && resource_arn == self.arn {
967                Some(self.policy.to_string())
968            } else {
969                None
970            }
971        }
972    }
973
974    fn fake(
975        service: &'static str,
976        arn: &'static str,
977        policy: &'static str,
978    ) -> Arc<dyn ResourcePolicyProvider> {
979        Arc::new(FakeProvider {
980            service,
981            arn,
982            policy,
983        })
984    }
985
986    #[test]
987    fn multi_provider_empty_always_returns_none() {
988        let m = MultiResourcePolicyProvider::new(vec![]);
989        assert!(m.is_empty());
990        assert_eq!(m.len(), 0);
991        assert_eq!(m.resource_policy("s3", "arn:aws:s3:::x"), None);
992    }
993
994    #[test]
995    fn multi_provider_delegates_to_single_child() {
996        let m = MultiResourcePolicyProvider::new(vec![fake("s3", "arn:aws:s3:::b", r#"{"v":1}"#)]);
997        assert_eq!(m.len(), 1);
998        assert_eq!(
999            m.resource_policy("s3", "arn:aws:s3:::b").as_deref(),
1000            Some(r#"{"v":1}"#)
1001        );
1002        assert_eq!(m.resource_policy("s3", "arn:aws:s3:::missing"), None);
1003        assert_eq!(m.resource_policy("sns", "arn:aws:s3:::b"), None);
1004    }
1005
1006    #[test]
1007    fn multi_provider_hits_first_matching_child() {
1008        let m = MultiResourcePolicyProvider::new(vec![
1009            fake("s3", "arn:aws:s3:::b", r#"{"v":"s3"}"#),
1010            fake("sns", "arn:aws:sns:us-east-1:123:t", r#"{"v":"sns"}"#),
1011        ]);
1012        assert_eq!(
1013            m.resource_policy("s3", "arn:aws:s3:::b").as_deref(),
1014            Some(r#"{"v":"s3"}"#)
1015        );
1016        assert_eq!(
1017            m.resource_policy("sns", "arn:aws:sns:us-east-1:123:t")
1018                .as_deref(),
1019            Some(r#"{"v":"sns"}"#)
1020        );
1021    }
1022
1023    #[test]
1024    fn multi_provider_is_order_independent_when_services_differ() {
1025        // Because each concrete provider gates on its own service
1026        // prefix, swapping the order must never change the result.
1027        let children: Vec<Arc<dyn ResourcePolicyProvider>> = vec![
1028            fake("s3", "arn:aws:s3:::b", "s3-doc"),
1029            fake("sns", "arn:aws:sns:us-east-1:123:t", "sns-doc"),
1030            fake(
1031                "lambda",
1032                "arn:aws:lambda:us-east-1:123:function:f",
1033                "lam-doc",
1034            ),
1035        ];
1036        let forward = MultiResourcePolicyProvider::new(children.clone());
1037        let reversed = MultiResourcePolicyProvider::new({
1038            let mut v = children.clone();
1039            v.reverse();
1040            v
1041        });
1042        for (svc, arn) in [
1043            ("s3", "arn:aws:s3:::b"),
1044            ("sns", "arn:aws:sns:us-east-1:123:t"),
1045            ("lambda", "arn:aws:lambda:us-east-1:123:function:f"),
1046        ] {
1047            assert_eq!(
1048                forward.resource_policy(svc, arn),
1049                reversed.resource_policy(svc, arn),
1050                "service {svc}"
1051            );
1052        }
1053    }
1054
1055    #[test]
1056    fn multi_provider_returns_none_for_unhandled_service() {
1057        let m = MultiResourcePolicyProvider::new(vec![fake("s3", "arn:aws:s3:::b", "doc")]);
1058        assert_eq!(
1059            m.resource_policy("kms", "arn:aws:kms:us-east-1:123:key/k"),
1060            None
1061        );
1062        assert_eq!(m.resource_policy("iam", "arn:aws:iam::123:role/r"), None);
1063    }
1064
1065    #[test]
1066    fn multi_provider_shared_wraps_in_arc() {
1067        let arc = MultiResourcePolicyProvider::shared(vec![fake("s3", "arn:aws:s3:::b", "doc")]);
1068        assert_eq!(
1069            arc.resource_policy("s3", "arn:aws:s3:::b").as_deref(),
1070            Some("doc")
1071        );
1072    }
1073
1074    // --- ABAC tag condition key lookup ------------------------------------
1075
1076    #[test]
1077    fn lookup_mfa_present_emits_bool_string() {
1078        let ctx = ConditionContext {
1079            aws_mfa_present: Some(true),
1080            ..Default::default()
1081        };
1082        assert_eq!(
1083            ctx.lookup("aws:MultiFactorAuthPresent"),
1084            Some(vec!["true".to_string()])
1085        );
1086        let ctx = ConditionContext {
1087            aws_mfa_present: Some(false),
1088            ..Default::default()
1089        };
1090        assert_eq!(
1091            ctx.lookup("aws:multifactorauthpresent"),
1092            Some(vec!["false".to_string()])
1093        );
1094    }
1095
1096    #[test]
1097    fn lookup_mfa_age_emits_seconds() {
1098        let ctx = ConditionContext {
1099            aws_mfa_age_seconds: Some(900),
1100            ..Default::default()
1101        };
1102        assert_eq!(
1103            ctx.lookup("aws:MultiFactorAuthAge"),
1104            Some(vec!["900".to_string()])
1105        );
1106    }
1107
1108    #[test]
1109    fn lookup_called_via_returns_full_chain() {
1110        let ctx = ConditionContext {
1111            aws_called_via: vec![
1112                "cloudformation.amazonaws.com".to_string(),
1113                "lambda.amazonaws.com".to_string(),
1114            ],
1115            ..Default::default()
1116        };
1117        assert_eq!(
1118            ctx.lookup("aws:CalledVia"),
1119            Some(vec![
1120                "cloudformation.amazonaws.com".to_string(),
1121                "lambda.amazonaws.com".to_string(),
1122            ])
1123        );
1124    }
1125
1126    #[test]
1127    fn lookup_called_via_empty_returns_none() {
1128        let ctx = ConditionContext::default();
1129        assert_eq!(ctx.lookup("aws:CalledVia"), None);
1130    }
1131
1132    #[test]
1133    fn lookup_source_vpc_keys() {
1134        let ctx = ConditionContext {
1135            aws_source_vpc: Some("vpc-123".to_string()),
1136            aws_source_vpce: Some("vpce-456".to_string()),
1137            aws_vpc_source_ip: Some("10.0.1.5".parse::<IpAddr>().unwrap()),
1138            ..Default::default()
1139        };
1140        assert_eq!(
1141            ctx.lookup("aws:SourceVpc"),
1142            Some(vec!["vpc-123".to_string()])
1143        );
1144        assert_eq!(
1145            ctx.lookup("aws:SourceVpce"),
1146            Some(vec!["vpce-456".to_string()])
1147        );
1148        assert_eq!(
1149            ctx.lookup("aws:VpcSourceIp"),
1150            Some(vec!["10.0.1.5".to_string()])
1151        );
1152    }
1153
1154    #[test]
1155    fn lookup_federated_provider_and_token_issue_time() {
1156        use chrono::TimeZone;
1157        let ctx = ConditionContext {
1158            aws_federated_provider: Some("cognito-identity.amazonaws.com".to_string()),
1159            aws_token_issue_time: Some(
1160                chrono::Utc.with_ymd_and_hms(2026, 4, 30, 12, 0, 0).unwrap(),
1161            ),
1162            ..Default::default()
1163        };
1164        assert_eq!(
1165            ctx.lookup("aws:FederatedProvider"),
1166            Some(vec!["cognito-identity.amazonaws.com".to_string()])
1167        );
1168        assert_eq!(
1169            ctx.lookup("aws:TokenIssueTime"),
1170            Some(vec!["2026-04-30T12:00:00Z".to_string()])
1171        );
1172    }
1173
1174    fn abac_context() -> ConditionContext {
1175        ConditionContext {
1176            resource_tags: Some(
1177                [("Environment", "prod"), ("CostCenter", "42")]
1178                    .iter()
1179                    .map(|(k, v)| (k.to_string(), v.to_string()))
1180                    .collect(),
1181            ),
1182            request_tags: Some(
1183                [("Project", "web"), ("Team", "platform")]
1184                    .iter()
1185                    .map(|(k, v)| (k.to_string(), v.to_string()))
1186                    .collect(),
1187            ),
1188            principal_tags: Some(
1189                [("Department", "eng"), ("Role", "developer")]
1190                    .iter()
1191                    .map(|(k, v)| (k.to_string(), v.to_string()))
1192                    .collect(),
1193            ),
1194            ..Default::default()
1195        }
1196    }
1197
1198    #[test]
1199    fn lookup_resource_tag_case_sensitive_key() {
1200        let ctx = abac_context();
1201        assert_eq!(
1202            ctx.lookup("aws:ResourceTag/Environment"),
1203            Some(vec!["prod".to_string()])
1204        );
1205        // Different case -> different tag key -> None
1206        assert_eq!(ctx.lookup("aws:ResourceTag/environment"), None);
1207    }
1208
1209    #[test]
1210    fn lookup_resource_tag_prefix_case_insensitive() {
1211        let ctx = abac_context();
1212        // Prefix is case-insensitive per AWS
1213        assert_eq!(
1214            ctx.lookup("AWS:resourcetag/Environment"),
1215            Some(vec!["prod".to_string()])
1216        );
1217        assert_eq!(
1218            ctx.lookup("Aws:RESOURCETAG/CostCenter"),
1219            Some(vec!["42".to_string()])
1220        );
1221    }
1222
1223    #[test]
1224    fn lookup_request_tag() {
1225        let ctx = abac_context();
1226        assert_eq!(
1227            ctx.lookup("aws:RequestTag/Project"),
1228            Some(vec!["web".to_string()])
1229        );
1230        assert_eq!(ctx.lookup("aws:RequestTag/project"), None);
1231    }
1232
1233    #[test]
1234    fn lookup_principal_tag() {
1235        let ctx = abac_context();
1236        assert_eq!(
1237            ctx.lookup("aws:PrincipalTag/Department"),
1238            Some(vec!["eng".to_string()])
1239        );
1240        assert_eq!(ctx.lookup("aws:PrincipalTag/department"), None);
1241    }
1242
1243    #[test]
1244    fn lookup_tag_keys_returns_all_request_tag_keys() {
1245        let ctx = abac_context();
1246        let mut keys = ctx.lookup("aws:TagKeys").unwrap();
1247        keys.sort();
1248        assert_eq!(keys, vec!["Project", "Team"]);
1249    }
1250
1251    #[test]
1252    fn lookup_tag_keys_case_insensitive() {
1253        let ctx = abac_context();
1254        assert!(ctx.lookup("AWS:TAGKEYS").is_some());
1255        assert!(ctx.lookup("aws:tagkeys").is_some());
1256    }
1257
1258    #[test]
1259    fn lookup_tag_none_when_field_not_set() {
1260        let ctx = ConditionContext::default();
1261        assert_eq!(ctx.lookup("aws:ResourceTag/Foo"), None);
1262        assert_eq!(ctx.lookup("aws:RequestTag/Foo"), None);
1263        assert_eq!(ctx.lookup("aws:PrincipalTag/Foo"), None);
1264        assert_eq!(ctx.lookup("aws:TagKeys"), None);
1265    }
1266
1267    #[test]
1268    fn lookup_tag_missing_key_returns_none() {
1269        let ctx = abac_context();
1270        assert_eq!(ctx.lookup("aws:ResourceTag/NonExistent"), None);
1271        assert_eq!(ctx.lookup("aws:RequestTag/NonExistent"), None);
1272        assert_eq!(ctx.lookup("aws:PrincipalTag/NonExistent"), None);
1273    }
1274}