rustio_admin/auth/recovery.rs
1//! Self-service password recovery (R1).
2//!
3//! See `DESIGN_RECOVERY.md` for the canonical contract this module
4//! implements. R1 ships in 0.5.0; this commit lands the schema, the
5//! [`PasswordPolicy`] surface, and the [`RecoveryPolicy`] surface.
6//! The issue + consume flow, the mailer wiring, the routes, and the
7//! templates land in subsequent atomic commits per
8//! `DESIGN_RECOVERY.md` §16.
9//!
10//! ## What lives here today
11//!
12//! - [`init_recovery_tables`] — creates `rustio_password_reset_tokens`
13//! with the partial unique index that makes the consume path's
14//! atomic `UPDATE … RETURNING` an index seek
15//! (`DESIGN_RECOVERY.md` §9.1).
16//! - [`migrate_user_recovery_schema`] — adds the additive
17//! `must_change_password` and `password_changed_at` columns on
18//! `rustio_users` (§9.2). R1's `set_password` populates
19//! `password_changed_at`; R2 enforces `must_change_password`.
20//! - [`PasswordPolicy`] / [`DefaultPasswordPolicy`] /
21//! [`PasswordPolicyError`] / [`SharedPasswordPolicy`] — the
22//! password-policy surface (§13).
23//! - [`RecoveryPolicy`] / [`DefaultRecoveryPolicy`] /
24//! [`SharedRecoveryPolicy`] — the recovery-flow tunables (§10.2,
25//! §12.3). Reset-token TTL, rate-limit shape, strict-mailer boot
26//! guard, and the public-site-URL derivation rule.
27//!
28//! `Admin::password_policy(...)` and `Admin::recovery_policy(...)`
29//! live in `admin::types`; the traits and default impls live here so
30//! the recovery module owns its vocabulary.
31//!
32//! The migration functions are idempotent and safe to call on every
33//! boot. `auth::init_tables` invokes them after the existing user /
34//! session migrations. The policy surface is data-only at this
35//! commit; no handler reads either policy yet.
36
37use std::sync::Arc;
38use std::time::Duration as StdDuration;
39
40use chrono::Duration as ChronoDuration;
41
42use crate::admin::audit::{record as audit_record, ActionType, AuditEvent, LogEntry};
43use crate::admin::redact::redact_token;
44use crate::admin::Admin;
45use crate::auth::sessions::{hash_token_for_storage, random_token};
46use crate::auth::users::{find_user_by_email, Identity};
47use crate::auth::{invalidate_sessions, set_password, SessionInvalidationReason, SessionTarget};
48use crate::email::Mail;
49use crate::error::Result;
50use crate::http::Request;
51use crate::middleware::RateLimiter;
52use crate::orm::Db;
53
54/// Create the `rustio_password_reset_tokens` table and its indexes.
55///
56/// Schema (see `DESIGN_RECOVERY.md` §9.1 for the contract):
57///
58/// - `token_hash` is `sha256(token)` URL-safe-base64 — the plaintext
59/// token never lands in this row.
60/// - `mail_status` is one of `'pending' | 'sent' | 'failed'`; the state
61/// evolves in the issue handler (one row per request).
62/// - `correlation_id` mirrors the request's audit `correlation_id` so
63/// an operator can pivot from token row → audit chain.
64/// - The partial unique index `WHERE consumed_at IS NULL` is the index
65/// the atomic consume statement seeks on.
66///
67/// Idempotent. Safe to call on every boot. Depends on `rustio_users`
68/// existing first.
69pub(crate) async fn init_recovery_tables(db: &Db) -> Result<()> {
70 sqlx::query(
71 "CREATE TABLE IF NOT EXISTS rustio_password_reset_tokens (
72 id BIGSERIAL PRIMARY KEY,
73 user_id BIGINT NOT NULL REFERENCES rustio_users(id) ON DELETE CASCADE,
74 token_hash TEXT NOT NULL,
75 requested_ip TEXT,
76 requested_user_agent TEXT,
77 requested_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
78 expires_at TIMESTAMPTZ NOT NULL,
79 consumed_at TIMESTAMPTZ,
80 mail_status TEXT NOT NULL DEFAULT 'pending'
81 CHECK (mail_status IN ('pending', 'sent', 'failed')),
82 correlation_id TEXT
83 )",
84 )
85 .execute(db.pool())
86 .await?;
87
88 // Partial unique on the active-token lookup. Guarantees the
89 // consume statement (`UPDATE … WHERE token_hash = $1 AND
90 // consumed_at IS NULL RETURNING …`) is an index seek even after
91 // the table accumulates consumed/expired rows for forensic
92 // retention.
93 sqlx::query(
94 "CREATE UNIQUE INDEX IF NOT EXISTS rustio_password_reset_tokens_active_uq \
95 ON rustio_password_reset_tokens (token_hash) \
96 WHERE consumed_at IS NULL",
97 )
98 .execute(db.pool())
99 .await?;
100
101 sqlx::query(
102 "CREATE INDEX IF NOT EXISTS rustio_password_reset_tokens_user_idx \
103 ON rustio_password_reset_tokens (user_id)",
104 )
105 .execute(db.pool())
106 .await?;
107
108 sqlx::query(
109 "CREATE INDEX IF NOT EXISTS rustio_password_reset_tokens_expires_idx \
110 ON rustio_password_reset_tokens (expires_at) \
111 WHERE consumed_at IS NULL",
112 )
113 .execute(db.pool())
114 .await?;
115
116 Ok(())
117}
118
119/// Add the additive recovery columns on `rustio_users`.
120///
121/// - `must_change_password BOOLEAN NOT NULL DEFAULT FALSE` — R2 will
122/// read this on login to force a password reset on the next sign-in.
123/// R1 introduces the column because R2's commit set stays narrower
124/// when the column already exists.
125/// - `password_changed_at TIMESTAMPTZ` (nullable) — populated by
126/// `auth::set_password` from R1 onwards. NULL for users created
127/// before the upgrade; the active-sessions UI renders "(unknown)" or
128/// omits the row when NULL.
129///
130/// Idempotent. Safe to call on every boot. Depends on `rustio_users`
131/// existing first.
132pub(crate) async fn migrate_user_recovery_schema(db: &Db) -> Result<()> {
133 sqlx::query(
134 "ALTER TABLE rustio_users \
135 ADD COLUMN IF NOT EXISTS must_change_password BOOLEAN NOT NULL DEFAULT FALSE",
136 )
137 .execute(db.pool())
138 .await?;
139
140 sqlx::query(
141 "ALTER TABLE rustio_users ADD COLUMN IF NOT EXISTS password_changed_at TIMESTAMPTZ",
142 )
143 .execute(db.pool())
144 .await?;
145
146 Ok(())
147}
148
149// ---- Password policy -------------------------------------------------------
150
151// public:
152/// Validates a candidate password against project-defined rules.
153///
154/// The framework ships [`DefaultPasswordPolicy`] (length-only floor)
155/// as the secure-by-default baseline. Projects layer a stronger
156/// policy via [`crate::admin::Admin::password_policy`] when
157/// regulation or risk requires it. The trait is `Send + Sync` so the
158/// `Arc<dyn PasswordPolicy>` lives on `Admin` and is cheap to clone
159/// into async futures.
160///
161/// ## Implementing a custom policy
162///
163/// ```ignore
164/// use rustio_admin::auth::{PasswordPolicy, PasswordPolicyError};
165///
166/// struct OrgPolicy;
167/// impl PasswordPolicy for OrgPolicy {
168/// fn validate(&self, candidate: &str) -> Result<(), PasswordPolicyError> {
169/// let len = candidate.chars().count();
170/// if len < 16 {
171/// return Err(PasswordPolicyError::TooShort { min: 16, actual: len });
172/// }
173/// if !candidate.chars().any(|c| c.is_ascii_digit()) {
174/// return Err(PasswordPolicyError::Custom(
175/// "Password must contain at least one digit.".into(),
176/// ));
177/// }
178/// Ok(())
179/// }
180/// fn min_length(&self) -> usize { 16 }
181/// }
182/// ```
183///
184/// Implementations MUST treat the borrowed candidate as a secret:
185/// no logging, no panic-with-the-plaintext, no inclusion in the
186/// returned error. The framework's audit + log helpers redact
187/// passwords (`audit::redact_password()`); custom policies that
188/// want to surface a project-specific message use
189/// [`PasswordPolicyError::Custom`] with a user-safe string.
190pub trait PasswordPolicy: Send + Sync {
191 /// Approve or reject the candidate.
192 fn validate(&self, candidate: &str) -> std::result::Result<(), PasswordPolicyError>;
193
194 /// The minimum length the policy enforces, in Unicode `char`s.
195 /// Templates display this on the new-password form so users see
196 /// the floor before submitting.
197 fn min_length(&self) -> usize;
198}
199
200// public:
201/// Type-erased shared password-policy reference, mirroring
202/// [`crate::email::SharedMailer`]. The framework's `Admin` holds one
203/// of these; defaults to `Arc::new(DefaultPasswordPolicy::new())`
204/// until a project overrides via
205/// `Admin::password_policy(Arc::new(...))`.
206pub type SharedPasswordPolicy = Arc<dyn PasswordPolicy>;
207
208// public:
209/// Reasons a candidate password fails policy validation.
210///
211/// Variants intentionally omit the candidate plaintext — none of the
212/// fields carry the rejected password, so a `Display` / `Debug`
213/// rendering of any error value is safe to log, audit, or pass to a
214/// form-field renderer. Project-supplied policies that emit
215/// [`PasswordPolicyError::Custom`] are responsible for keeping their
216/// message free of the plaintext as well.
217#[derive(Debug, Clone, PartialEq, Eq)]
218#[non_exhaustive]
219pub enum PasswordPolicyError {
220 /// Length floor not met. Both fields are character counts (not
221 /// bytes), matching `min_length()`.
222 TooShort { min: usize, actual: usize },
223 /// Project-defined rejection. The string renders to the user
224 /// verbatim and lands in logs verbatim — keep it free of secrets.
225 Custom(String),
226}
227
228impl std::fmt::Display for PasswordPolicyError {
229 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
230 match self {
231 Self::TooShort { min, actual } => write!(
232 f,
233 "This password is too short. It must contain at least {min} characters \
234 (you entered {actual})."
235 ),
236 Self::Custom(msg) => f.write_str(msg),
237 }
238 }
239}
240
241impl std::error::Error for PasswordPolicyError {}
242
243// public:
244/// Length-only password policy. Default `min_len` is **10** — the
245/// secure-by-default baseline R1 ships with: long enough to defeat
246/// trivial guessing under Argon2id + per-IP rate-limiting (NIST SP
247/// 800-63B's recommended length floor is 8, with longer being
248/// preferable), short enough not to drive operators toward sticky-
249/// note workarounds. Production / regulated deployments are
250/// encouraged to override to 12+ via
251/// [`crate::admin::Admin::password_policy`]; high-sensitivity
252/// deployments may want 16+ paired with an organisational
253/// complexity rule or breach blocklist.
254///
255/// The framework deliberately ships **no complexity-class rules**
256/// ("must contain a symbol", "must include uppercase") in the
257/// default — they demonstrably push humans toward predictable
258/// patterns without improving entropy meaningfully (NIST SP
259/// 800-63B Appendix A). Projects that need them implement a
260/// custom `PasswordPolicy`.
261#[derive(Debug, Clone, Copy)]
262pub struct DefaultPasswordPolicy {
263 pub min_len: usize,
264}
265
266impl DefaultPasswordPolicy {
267 // public:
268 /// New policy with the framework's default floor (`min_len = 10`).
269 pub const fn new() -> Self {
270 Self { min_len: 10 }
271 }
272
273 // public:
274 /// New policy with an explicit floor. Useful for projects that
275 /// want a stronger length baseline without authoring a full
276 /// `PasswordPolicy` impl.
277 pub const fn with_min_len(min_len: usize) -> Self {
278 Self { min_len }
279 }
280}
281
282impl Default for DefaultPasswordPolicy {
283 fn default() -> Self {
284 Self::new()
285 }
286}
287
288impl PasswordPolicy for DefaultPasswordPolicy {
289 fn validate(&self, candidate: &str) -> std::result::Result<(), PasswordPolicyError> {
290 // Count Unicode `char`s, not bytes — a 10-char password is
291 // 10 user-visible characters regardless of UTF-8 byte width.
292 // Grapheme-cluster counting is left to project policies that
293 // need it.
294 let actual = candidate.chars().count();
295 if actual < self.min_len {
296 return Err(PasswordPolicyError::TooShort {
297 min: self.min_len,
298 actual,
299 });
300 }
301 Ok(())
302 }
303
304 fn min_length(&self) -> usize {
305 self.min_len
306 }
307}
308
309// ---- Login throttle (R2) ---------------------------------------------------
310
311// public:
312/// Auto-throttle parameters for the login flow
313/// (`DESIGN_R2_ORGANISATIONAL.md` §3.3 + §12 locked decisions).
314///
315/// All three knobs are exposed via [`RecoveryPolicy::login_throttle`]
316/// so projects override the threshold without authoring a full trait
317/// impl. The locked default matches `DESIGN_R2_ORGANISATIONAL.md` §12:
318/// 5 failed attempts within a 10-minute sliding window trigger a
319/// 15-minute soft lock. Soft locks do NOT revoke sessions
320/// (Doctrine 22 + §13 locked-decision: only manual lock revokes).
321///
322/// Field semantics:
323///
324/// - `max_attempts` — failure count that trips the soft lock when
325/// reached within `window_minutes`. The counter is anchored on
326/// `rustio_users.last_failed_login_at` (R2 commit #1 schema) and
327/// logically resets when the window elapses.
328/// - `window_minutes` — sliding window over which `max_attempts` is
329/// measured. Failures older than this are ignored when evaluating
330/// the threshold.
331/// - `lock_minutes` — duration of the soft lock written to
332/// `rustio_users.locked_until` when the threshold trips.
333///
334/// Setting `max_attempts = 0` is valid and disables the auto-throttle
335/// entirely (no failure ever trips a soft lock). Manual lock via
336/// `/admin/users/:id/lock` (R2 commit #16) is independent of this
337/// struct.
338#[derive(Debug, Clone, Copy, PartialEq, Eq)]
339pub struct LoginThrottle {
340 /// Failure threshold within `window_minutes` that trips a soft
341 /// lock. Default `5`.
342 pub max_attempts: u32,
343 /// Sliding-window length, in minutes. Default `10`.
344 pub window_minutes: i64,
345 /// Soft-lock duration, in minutes. Default `15`.
346 pub lock_minutes: i64,
347}
348
349impl LoginThrottle {
350 // public:
351 /// The framework's locked default
352 /// (`DESIGN_R2_ORGANISATIONAL.md` §12): **5 failures /
353 /// 10-minute window / 15-minute soft lock**. `const`-constructible
354 /// so projects use it in `static` recovery-policy builders.
355 pub const DEFAULT: Self = Self {
356 max_attempts: 5,
357 window_minutes: 10,
358 lock_minutes: 15,
359 };
360}
361
362impl Default for LoginThrottle {
363 fn default() -> Self {
364 Self::DEFAULT
365 }
366}
367
368// ---- Recovery policy -------------------------------------------------------
369
370// public:
371/// Tunables for the R1 recovery flow: token TTL, rate-limit shape,
372/// strict-mailer boot guard, and public-site-URL derivation.
373///
374/// `Admin::new()` seeds [`DefaultRecoveryPolicy`]; projects override
375/// via [`crate::admin::Admin::recovery_policy`]. The trait is `Send +
376/// Sync` so the `Arc<dyn RecoveryPolicy>` lives on `Admin` and is
377/// cheap to clone into async futures.
378///
379/// The trait method `public_site_url` has a provided default that
380/// derives the URL from request headers via [`derive_public_site_url`]
381/// per `DESIGN_RECOVERY.md` §12.3. Projects whose deployment can't
382/// rely on the standard Forwarded / X-Forwarded-* / Host headers
383/// override this method and return their own absolute URL (e.g.
384/// stamped at deployment time from a config secret).
385///
386/// ## Trust boundary for forwarded headers
387///
388/// The default `public_site_url` honours these client-supplied
389/// inputs in priority order:
390///
391/// 1. RFC 7239 `Forwarded` header (`for / proto / host` of the first
392/// hop)
393/// 2. `X-Forwarded-Proto` + `X-Forwarded-Host` (first CSV entry of
394/// each)
395/// 3. `Host` header (assumes `http://`)
396///
397/// **The operator's reverse proxy MUST strip incoming versions of
398/// these headers before adding its own.** The framework cannot know
399/// the deployment topology; if a hostile client can reach the
400/// process directly with a chosen `Forwarded: …` header set, the
401/// reset link in the dispatched email will point wherever they ask.
402/// `proto` is whitelisted to `{http, https}` (case-insensitive) and
403/// `host` is rejected when it contains whitespace, control bytes, or
404/// CRLF — so direct injection of `\r\n`-style header smuggling
405/// fails — but a malicious yet shape-conformant value still needs
406/// to be filtered upstream.
407///
408/// Projects that need a stricter trust posture: override
409/// `public_site_url` to return a fixed string (e.g. read from
410/// project config at startup) and the framework will use that
411/// regardless of headers.
412pub trait RecoveryPolicy: Send + Sync {
413 /// How long a freshly-issued reset token stays valid. Default
414 /// 1 hour. Locked-decision per `DESIGN_RECOVERY.md` §17.
415 fn reset_token_ttl(&self) -> ChronoDuration;
416
417 /// Per-IP rate-limit on `POST /admin/forgot-password`. Returned
418 /// as `(capacity, window)`: at most `capacity` requests within
419 /// `window`. Default `(5, 15min)`.
420 fn request_rate_limit(&self) -> (u32, StdDuration);
421
422 /// Per-IP rate-limit on `POST /admin/reset-password/<token>`.
423 /// Tighter than the request limit since the consume path is the
424 /// brute-force surface. Default `(10, 5min)`.
425 fn consume_rate_limit(&self) -> (u32, StdDuration);
426
427 /// When `true`, the framework refuses to start at boot if the
428 /// registered mailer is still the default [`crate::email::LogMailer`]
429 /// (production deployments must opt in to a real mailer).
430 /// Default `false`. Enforcement lands when the recovery handlers
431 /// ship (R1 commit #7+); this commit ships the declaration only.
432 fn strict_mailer_required(&self) -> bool;
433
434 /// Derive the absolute base URL the reset email's link should
435 /// point at. Default: see [`derive_public_site_url`] +
436 /// trust-boundary docs on this trait. Projects override this
437 /// method to return a fixed string (e.g. read from config) when
438 /// header derivation isn't appropriate for their topology.
439 ///
440 /// Returns `None` when nothing resolves; the caller (R1 issue
441 /// handler, commit #7) treats `None` as a hard failure and
442 /// records `metadata.email_send_status = "failed"` with a clear
443 /// log line.
444 fn public_site_url(&self, req: &Request) -> Option<String> {
445 derive_public_site_url(|name| req.header(name).map(|s| s.to_string()))
446 }
447
448 // ---- R2 organisational-recovery extensions -----------------------------
449 //
450 // All three methods below have provided defaults so existing R1
451 // impls keep compiling. See `DESIGN_R2_ORGANISATIONAL.md` §6.3
452 // and §8.1 for the contract.
453
454 /// Auto-throttle parameters for the login flow. Default
455 /// [`LoginThrottle::DEFAULT`] (5 / 10min / 15min).
456 /// Projects override to relax for development environments
457 /// (`max_attempts: 100`) or tighten for high-sensitivity
458 /// deployments (`max_attempts: 3, lock_minutes: 60`).
459 ///
460 /// Setting `max_attempts = 0` disables the auto-throttle
461 /// entirely; manual lock via `/admin/users/:id/lock` (R2
462 /// commit #16) remains available.
463 fn login_throttle(&self) -> LoginThrottle {
464 LoginThrottle::default()
465 }
466
467 /// Window during which a session that has cleared the re-auth
468 /// wall (`/admin/reauth`) is considered *elevated* and may
469 /// access destructive admin-recovery surfaces (admin-driven
470 /// password reset, lock, unlock, revoke-sessions). Default
471 /// 15 minutes (`DESIGN_R2_ORGANISATIONAL.md` §12 locked-decision).
472 ///
473 /// Re-auth state lives on the session row's `elevated_until`
474 /// column (R0 schema, runtime lands in R2 commit #10). Returning
475 /// a duration of zero or negative is a no-op promotion: every
476 /// admin-recovery action will require a fresh re-auth.
477 fn reauth_window(&self) -> ChronoDuration {
478 ChronoDuration::minutes(15)
479 }
480
481 /// TOTP step interval in seconds. Locked at 30 per
482 /// `DESIGN_R3_MFA.md` Appendix B — RFC 6238 industry
483 /// standard for interop with every common authenticator app
484 /// (Google Authenticator, Authy, 1Password, Bitwarden,
485 /// Aegis, Raivo, etc.). Returning a different value would
486 /// break the QR provisioning URL's implicit period; the
487 /// design treats this as a major-version concern.
488 ///
489 /// The runtime consults this via
490 /// `auth::mfa::verify_totp_for_user` and
491 /// `auth::mfa::confirm_enrolment` (R3 commits #6, #7).
492 fn mfa_step_seconds(&self) -> u64 {
493 30
494 }
495
496 /// TOTP step skew tolerance, in steps. Locked at 1 per
497 /// `DESIGN_R3_MFA.md` Appendix B — gives a 90-second total
498 /// acceptance window at the canonical 30-second step
499 /// (`current ± 1` ≡ `[current - 1, current + 1]`). The
500 /// design treats wider skew as a security regression:
501 /// 2-step skew would accept a code generated 60 seconds
502 /// ago, which extends the network-replay window without
503 /// improving UX for users with reasonable clock drift.
504 ///
505 /// The runtime consults this via
506 /// `auth::mfa::verify_totp_for_user` and
507 /// `auth::mfa::confirm_enrolment` (R3 commits #6, #7).
508 fn mfa_skew_steps(&self) -> u32 {
509 1
510 }
511
512 /// Multi-tenant readiness hook. Returns `Some(scoped_policy)` to
513 /// scope rate-limits / TTLs / lockout windows per tenant when an
514 /// authenticated identity is in scope; returns `None` to mean
515 /// "no scoping, the caller continues to use the
516 /// `Admin`-bound recovery policy unchanged".
517 ///
518 /// Default returns `None` — single-tenant deployments see no
519 /// change. Multi-tenant projects override to look up the
520 /// tenant from `identity.user_id` (or a project-specific
521 /// claim) and return a fresh `Arc<dyn RecoveryPolicy>`
522 /// with that tenant's tunables. Per
523 /// `DESIGN_R2_ORGANISATIONAL.md` §6.3 the framework call site
524 /// is:
525 ///
526 /// ```ignore
527 /// let policy = admin
528 /// .recovery_policy
529 /// .scope_for(&identity)
530 /// .unwrap_or_else(|| Arc::clone(&admin.recovery_policy));
531 /// ```
532 ///
533 /// Why `Option<SharedRecoveryPolicy>` and not
534 /// `SharedRecoveryPolicy` (as the design doc's first sketch
535 /// suggested): returning a fresh `Arc<Self>` from `&self`
536 /// requires the trait method to either receive the policy's own
537 /// `Arc` as a parameter (awkward at every call site) or rely on
538 /// `dyn-clone` (extra dependency). `Option::None` expresses
539 /// "no override" without either. Multi-tenant impls return
540 /// `Some(Arc::new(per_tenant_policy))`, which is cheap and
541 /// idiomatic.
542 fn scope_for(&self, _identity: &Identity) -> Option<SharedRecoveryPolicy> {
543 None
544 }
545}
546
547// public:
548/// Type-erased shared recovery-policy reference, mirroring
549/// [`SharedPasswordPolicy`] / [`crate::email::SharedMailer`].
550pub type SharedRecoveryPolicy = Arc<dyn RecoveryPolicy>;
551
552// public:
553/// Length-only / rate-limit-only baseline policy. Public fields plus
554/// chainable `with_*` setters so projects that want to tweak one knob
555/// don't need to author a full trait impl.
556#[derive(Debug, Clone)]
557pub struct DefaultRecoveryPolicy {
558 pub reset_token_ttl: ChronoDuration,
559 pub request_rate_limit: (u32, StdDuration),
560 pub consume_rate_limit: (u32, StdDuration),
561 pub strict_mailer_required: bool,
562}
563
564impl DefaultRecoveryPolicy {
565 // public:
566 /// New policy with the framework's locked defaults
567 /// (`DESIGN_RECOVERY.md` §17): TTL 1h, request 5/15min, consume
568 /// 10/5min, strict-mailer guard off.
569 pub fn new() -> Self {
570 Self {
571 reset_token_ttl: ChronoDuration::hours(1),
572 request_rate_limit: (5, StdDuration::from_secs(15 * 60)),
573 consume_rate_limit: (10, StdDuration::from_secs(5 * 60)),
574 strict_mailer_required: false,
575 }
576 }
577
578 // public:
579 /// Override the reset-token TTL. Projects that want shorter
580 /// blast-radius windows pass `Duration::minutes(30)`; projects
581 /// that need user-friendlier deadlines pass `Duration::hours(2)`.
582 pub fn with_reset_token_ttl(mut self, ttl: ChronoDuration) -> Self {
583 self.reset_token_ttl = ttl;
584 self
585 }
586
587 // public:
588 /// Override the request-endpoint rate-limit shape.
589 pub fn with_request_rate_limit(mut self, capacity: u32, window: StdDuration) -> Self {
590 self.request_rate_limit = (capacity, window);
591 self
592 }
593
594 // public:
595 /// Override the consume-endpoint rate-limit shape.
596 pub fn with_consume_rate_limit(mut self, capacity: u32, window: StdDuration) -> Self {
597 self.consume_rate_limit = (capacity, window);
598 self
599 }
600
601 // public:
602 /// Toggle the strict-mailer boot guard. When `true`, R1's boot
603 /// sequence (commits #7+) refuses to start with the default
604 /// `LogMailer`. Default `false`.
605 pub fn with_strict_mailer_required(mut self, required: bool) -> Self {
606 self.strict_mailer_required = required;
607 self
608 }
609}
610
611impl Default for DefaultRecoveryPolicy {
612 fn default() -> Self {
613 Self::new()
614 }
615}
616
617impl RecoveryPolicy for DefaultRecoveryPolicy {
618 fn reset_token_ttl(&self) -> ChronoDuration {
619 self.reset_token_ttl
620 }
621
622 fn request_rate_limit(&self) -> (u32, StdDuration) {
623 self.request_rate_limit
624 }
625
626 fn consume_rate_limit(&self) -> (u32, StdDuration) {
627 self.consume_rate_limit
628 }
629
630 fn strict_mailer_required(&self) -> bool {
631 self.strict_mailer_required
632 }
633
634 // public_site_url uses the trait's provided default.
635}
636
637/// Pure helper for the default `RecoveryPolicy::public_site_url`
638/// implementation, factored out so the parser can be unit-tested
639/// without constructing a full [`Request`].
640///
641/// `header` is a closure that returns the named header's value (case-
642/// insensitive name match, owned `String` because the default
643/// closure copies out of the request's borrowed buffer).
644///
645/// Priority order — first source that resolves to a safe
646/// `(proto, host)` pair wins:
647///
648/// 1. RFC 7239 `Forwarded` — first comma-separated entry's
649/// `proto=` + `host=` pairs.
650/// 2. `X-Forwarded-Proto` + `X-Forwarded-Host` — first CSV entry of
651/// each, both required to fall through if either's missing.
652/// 3. `Host` header alone — assumes `http://` (no HTTPS guesswork).
653///
654/// Returns `None` when nothing resolves. Never panics on malformed
655/// input — see the test suite's `malformed_forwarded_inputs_never_panic`
656/// for the property check.
657///
658/// **Trust:** see the `RecoveryPolicy` trait's "Trust boundary"
659/// section. The operator's reverse proxy is responsible for
660/// stripping incoming versions of these headers before its own
661/// hop appends them.
662pub(crate) fn derive_public_site_url<F>(header: F) -> Option<String>
663where
664 F: Fn(&str) -> Option<String>,
665{
666 // 1. RFC 7239 Forwarded — first hop
667 if let Some(value) = header("forwarded") {
668 if let Some(url) = parse_forwarded_first_hop(&value) {
669 return Some(url);
670 }
671 }
672
673 // 2. X-Forwarded-Proto + X-Forwarded-Host
674 let xfp = header("x-forwarded-proto").and_then(|s| first_csv(&s).map(|v| v.to_string()));
675 let xfh = header("x-forwarded-host").and_then(|s| first_csv(&s).map(|v| v.to_string()));
676 if let (Some(proto), Some(host)) = (xfp, xfh) {
677 if is_safe_proto(&proto) && is_safe_host(&host) {
678 return Some(format!("{}://{}", proto.to_ascii_lowercase(), host));
679 }
680 }
681
682 // 3. Host header — assume http
683 if let Some(host) = header("host") {
684 if is_safe_host(&host) {
685 return Some(format!("http://{host}"));
686 }
687 }
688
689 None
690}
691
692/// Take the first comma-separated, trimmed, non-empty token of `s`.
693fn first_csv(s: &str) -> Option<&str> {
694 let trimmed = s.split(',').next()?.trim();
695 if trimmed.is_empty() {
696 None
697 } else {
698 Some(trimmed)
699 }
700}
701
702/// Whitelist: only `http` and `https` are accepted. Case-insensitive.
703fn is_safe_proto(p: &str) -> bool {
704 p.eq_ignore_ascii_case("http") || p.eq_ignore_ascii_case("https")
705}
706
707/// Reject empty / over-long / control-char / whitespace hosts. Allows
708/// alphanumerics, the dot/dash/underscore separators, the colon for
709/// the `host:port` shape, and `[` / `]` for IPv6 literals.
710fn is_safe_host(h: &str) -> bool {
711 if h.is_empty() || h.len() > 253 {
712 return false;
713 }
714 h.chars()
715 .all(|c| c.is_ascii_alphanumeric() || matches!(c, '.' | ':' | '-' | '_' | '[' | ']'))
716}
717
718/// Parse `proto=` and `host=` from the FIRST comma-separated entry
719/// of an RFC 7239 `Forwarded` header value. Returns the canonical
720/// `proto://host` URL, or `None` if either is missing or fails the
721/// safety check.
722fn parse_forwarded_first_hop(value: &str) -> Option<String> {
723 let first = value.split(',').next()?;
724 let mut proto: Option<&str> = None;
725 let mut host: Option<&str> = None;
726
727 for pair in first.split(';') {
728 let pair = pair.trim();
729 if pair.is_empty() {
730 continue;
731 }
732 let (key, val) = match pair.split_once('=') {
733 Some(p) => p,
734 None => continue,
735 };
736 let key = key.trim();
737 // Strip surrounding quotes if present (RFC 7239 allows
738 // quoted-string syntax for values containing special chars).
739 let val = val.trim().trim_matches('"');
740 if val.is_empty() {
741 continue;
742 }
743 if key.eq_ignore_ascii_case("proto") {
744 proto = Some(val);
745 } else if key.eq_ignore_ascii_case("host") {
746 host = Some(val);
747 }
748 }
749
750 let proto = proto?;
751 let host = host?;
752 if !is_safe_proto(proto) || !is_safe_host(host) {
753 return None;
754 }
755 Some(format!("{}://{}", proto.to_ascii_lowercase(), host))
756}
757
758// ---- Runtime: token issuance + consumption -------------------------------
759
760/// Outcome of [`issue_reset_token`]. Variants exist for
761/// observability and testability — the user-facing handler renders
762/// the same uniform "if that email has an account, we just sent a
763/// link" page across every variant per the disclosure rule
764/// (`DESIGN_RECOVERY.md` §2.3).
765#[derive(Debug, Clone, PartialEq, Eq)]
766pub(crate) enum IssueOutcome {
767 /// A token row was inserted; the mailer dispatch attempt
768 /// finished (see `email_status` for whether the message
769 /// actually went out). One audit row written
770 /// (`AuditEvent::PasswordResetSelfRequest`).
771 Issued {
772 token_id: i64,
773 email_status: MailerEmailStatus,
774 },
775 /// Email didn't match an active user — either unknown OR
776 /// deactivated. The two sub-cases are deliberately
777 /// indistinguishable from outside (doctrine 9, §2.3 disclosure
778 /// rule). No DB row, no audit, no mail. A `log::info!` line is
779 /// written for operator-side visibility, but it never carries
780 /// a token, password, or anything that could be used for
781 /// enumeration analysis later.
782 UnknownOrInactive,
783 /// Per-IP rate-limit on the request endpoint exhausted. No DB
784 /// row. Renderer treats this identically to `Issued` /
785 /// `UnknownOrInactive` (uniform-response invariant).
786 RateLimited,
787}
788
789// internal:
790/// Whether the mailer's `send` call returned `Ok` or a typed
791/// `MailerError`. Persisted on the token row's `mail_status` column
792/// and into the audit row's `metadata.email_send_status`.
793#[derive(Debug, Clone, Copy, PartialEq, Eq)]
794pub enum MailerEmailStatus {
795 Sent,
796 Failed,
797}
798
799/// Outcome of [`consume_reset_token`]. The user-facing handler
800/// renders `Invalid` and `RateLimited` identically (the "this link
801/// is no longer valid" page) per disclosure rule §2.3 — the variant
802/// distinction exists for observability + tests, not for branching
803/// the UI.
804#[derive(Debug, Clone, PartialEq, Eq)]
805pub(crate) enum ConsumeOutcome {
806 /// Token consumed atomically; password updated; every session
807 /// for the affected user revoked through
808 /// `invalidate_sessions(SessionTarget::User { user_id },
809 /// SessionInvalidationReason::PasswordReset)`. One audit row
810 /// written (`AuditEvent::PasswordResetSelfConsume`).
811 Consumed {
812 user_id: i64,
813 revoked_session_count: usize,
814 },
815 /// Token unknown / expired / already consumed (the three are
816 /// deliberately indistinguishable per §2.3). No password
817 /// change, no session revocation, no audit row written. A
818 /// `log::info!` line carries the token's redacted fingerprint
819 /// for cross-row pivoting if the operator needs to investigate.
820 Invalid,
821 /// `PasswordPolicy::validate` rejected the candidate password.
822 /// No DB mutation: the token stays valid for retry; the form
823 /// re-renders with the policy error. The error itself is safe
824 /// to render — `PasswordPolicyError` variants do not carry the
825 /// candidate plaintext (see commit #4's leak-prevention test).
826 PolicyRejected(PasswordPolicyError),
827 /// Per-IP rate-limit on the consume endpoint exhausted. No DB
828 /// mutation. Renderer treats this identically to `Invalid`.
829 RateLimited,
830}
831
832/// Issue a password-reset token for `email` — or pretend to,
833/// preserving the uniform-response invariant.
834///
835/// See `DESIGN_RECOVERY.md` §4.2 for the canonical contract this
836/// implements. The function is `pub(crate)` because the framework
837/// owns the route shape (CSRF, rate-limit middleware, render
838/// pipeline). External projects compose recovery via the trait
839/// surfaces ([`PasswordPolicy`], [`RecoveryPolicy`],
840/// [`crate::email::Mailer`]) rather than calling this directly.
841///
842/// ## Security properties (LOCKED)
843///
844/// - The plaintext token leaves this function only as part of the
845/// email body dispatched through [`crate::email::Mailer`]. The DB
846/// row stores `token_hash = sha256(token)` only.
847/// - Outward result is uniform: `IssueOutcome::Issued`,
848/// `UnknownOrInactive`, and `RateLimited` all map to the same
849/// user-facing page in the handler (commit #8). The variant
850/// distinction is for audit + tests only.
851/// - No `log::info!` / `log::error!` / audit row contains the
852/// plaintext token. Logs use [`redact_token`] (8-char SHA-256
853/// fingerprint); audit metadata stores `token_fingerprint`.
854/// - On mailer failure (transient OR permanent OR `public_site_url`
855/// derivation returning None), the outward result is still
856/// `IssueOutcome::Issued { email_status: Failed }` — the row
857/// exists with `mail_status = 'failed'` and the audit row carries
858/// `email_send_status = "failed"`. The user sees the uniform
859/// response.
860pub(crate) async fn issue_reset_token(
861 db: &Db,
862 admin: &Admin,
863 request_limiter: &RateLimiter,
864 request: &Request,
865 email: &str,
866 correlation_id: Option<&str>,
867) -> Result<IssueOutcome> {
868 let ip = extract_request_ip(request);
869
870 // 1. Per-IP rate-limit — bucket exhaustion → uniform response.
871 if !request_limiter.allow(&ip) {
872 log::info!(
873 target: "rustio_admin::recovery::issue",
874 "rate-limit exhausted ip={} correlation_id={:?}",
875 ip,
876 correlation_id,
877 );
878 return Ok(IssueOutcome::RateLimited);
879 }
880
881 // 2. Normalise email input.
882 let email_input = email.trim().to_ascii_lowercase();
883 if email_input.is_empty() {
884 log::info!(
885 target: "rustio_admin::recovery::issue",
886 "empty-email submission ip={} correlation_id={:?}",
887 ip,
888 correlation_id,
889 );
890 return Ok(IssueOutcome::UnknownOrInactive);
891 }
892
893 // 3. User lookup. Both unknown-email and inactive-user collapse
894 // into UnknownOrInactive — leaking either creates an
895 // enumeration channel.
896 let user = match find_user_by_email(db, &email_input).await? {
897 Some(u) if u.is_active => u,
898 Some(u) => {
899 log::info!(
900 target: "rustio_admin::recovery::issue",
901 "inactive-user submission user_id={} ip={} correlation_id={:?}",
902 u.id,
903 ip,
904 correlation_id,
905 );
906 return Ok(IssueOutcome::UnknownOrInactive);
907 }
908 None => {
909 log::info!(
910 target: "rustio_admin::recovery::issue",
911 "unknown-email submission ip={} correlation_id={:?}",
912 ip,
913 correlation_id,
914 );
915 return Ok(IssueOutcome::UnknownOrInactive);
916 }
917 };
918
919 // 4. Generate token. 256-bit URL-safe-base64. Plaintext lives
920 // only here, in the email body, and in the user's mailbox —
921 // NEVER in the DB, NEVER in any log line.
922 let token = random_token();
923 let token_hash = hash_token_for_storage(&token);
924
925 // 5. Insert the token row with mail_status = 'pending'.
926 let policy = admin.active_recovery_policy();
927 let ttl = policy.reset_token_ttl();
928 let expires_at = chrono::Utc::now() + ttl;
929 let user_agent_owned = request.header("user-agent").map(|s| s.to_string());
930
931 let token_id: i64 = sqlx::query_scalar(
932 "INSERT INTO rustio_password_reset_tokens
933 (user_id, token_hash, requested_ip, requested_user_agent,
934 expires_at, mail_status, correlation_id)
935 VALUES ($1, $2, $3, $4, $5, 'pending', $6)
936 RETURNING id",
937 )
938 .bind(user.id)
939 .bind(&token_hash)
940 .bind(&ip)
941 .bind(user_agent_owned.as_deref())
942 .bind(expires_at)
943 .bind(correlation_id)
944 .fetch_one(db.pool())
945 .await?;
946
947 // 6. Compose + dispatch mail. If site-URL derivation fails or
948 // the mailer returns an error, mark mail_status = 'failed'
949 // and continue — the user-facing response stays uniform.
950 let mail_status = match policy.public_site_url(request) {
951 Some(public_site_url) => {
952 let reset_link = format!(
953 "{}/admin/reset-password/{}",
954 public_site_url.trim_end_matches('/'),
955 token,
956 );
957 let when = chrono::Utc::now();
958 let body = format!(
959 "We received a request to sign you back in to {site_header}.\n\n\
960 Click the link below to set a new password:\n\n\
961 {reset_link}\n\n\
962 The link expires {ttl_human}. If you didn't request this, you can \
963 safely ignore this email.\n",
964 site_header = admin.branding().site_header,
965 reset_link = reset_link,
966 ttl_human = humanize_ttl(ttl),
967 );
968 let mail = Mail::framework_envelope(
969 user.email.clone(),
970 format!("{} — sign-in link", admin.branding().site_header),
971 body,
972 &admin.branding().site_header,
973 Some(&ip),
974 user_agent_owned.as_deref(),
975 when,
976 );
977 match admin.active_mailer().send(mail).await {
978 Ok(()) => {
979 set_token_mail_status(db, token_id, "sent").await?;
980 MailerEmailStatus::Sent
981 }
982 Err(e) => {
983 log::error!(
984 target: "rustio_admin::recovery::issue",
985 "mailer send failed user_id={} fingerprint={} correlation_id={:?}: {}",
986 user.id,
987 redact_token(&token),
988 correlation_id,
989 e,
990 );
991 set_token_mail_status(db, token_id, "failed").await?;
992 MailerEmailStatus::Failed
993 }
994 }
995 }
996 None => {
997 log::error!(
998 target: "rustio_admin::recovery::issue",
999 "public_site_url derivation returned None — reset link cannot be built. \
1000 user_id={} fingerprint={} correlation_id={:?}",
1001 user.id,
1002 redact_token(&token),
1003 correlation_id,
1004 );
1005 set_token_mail_status(db, token_id, "failed").await?;
1006 MailerEmailStatus::Failed
1007 }
1008 };
1009
1010 // 7. Audit row. Token fingerprint, NEVER the plaintext.
1011 let metadata = serde_json::json!({
1012 "token_fingerprint": redact_token(&token),
1013 "email_send_status": match mail_status {
1014 MailerEmailStatus::Sent => "sent",
1015 MailerEmailStatus::Failed => "failed",
1016 },
1017 "requested_ip": ip,
1018 "requested_user_agent": user_agent_owned,
1019 "expires_at": expires_at.to_rfc3339(),
1020 });
1021 let mut entry = LogEntry::new(user.id, ActionType::Update, "users", user.id)
1022 .with_event(AuditEvent::PasswordResetSelfRequest);
1023 entry.correlation_id = correlation_id;
1024 entry.ip_address = Some(&ip);
1025 entry.metadata = Some(metadata);
1026 entry.summary = format!(
1027 "password reset requested; mail {}",
1028 match mail_status {
1029 MailerEmailStatus::Sent => "sent",
1030 MailerEmailStatus::Failed => "failed",
1031 }
1032 );
1033 audit_record(db, entry).await?;
1034
1035 Ok(IssueOutcome::Issued {
1036 token_id,
1037 email_status: mail_status,
1038 })
1039}
1040
1041/// Consume a reset token, set the new password, revoke every
1042/// session for the affected user.
1043///
1044/// See `DESIGN_RECOVERY.md` §4.3 for the canonical contract this
1045/// implements. The function is `pub(crate)` for the same reason
1046/// [`issue_reset_token`] is.
1047///
1048/// ## Security properties (LOCKED)
1049///
1050/// - **Atomic consume.** The single SQL statement
1051/// `UPDATE … SET consumed_at = NOW() WHERE token_hash = $1 AND
1052/// consumed_at IS NULL AND expires_at > NOW() RETURNING user_id`
1053/// is the only place a token's `consumed_at` flips. The partial
1054/// unique index `WHERE consumed_at IS NULL` (commit #1) makes
1055/// concurrent consumes resolve as one Consumed + one Invalid —
1056/// never two of either.
1057/// - **Policy first, consume second.** A bad password fails
1058/// validation BEFORE the atomic UPDATE, so the user can fix the
1059/// form and retry without burning a token.
1060/// - **Doctrine 22.** Session revocation goes through
1061/// `invalidate_sessions(SessionTarget::User, …PasswordReset)` —
1062/// the framework's only `revoked_at` writer.
1063/// - No log / audit row contains the plaintext token. Token
1064/// fingerprints (8-char SHA-256) are used for cross-row pivoting
1065/// when an operator needs to trace activity.
1066/// - The handler MUST NOT auto-log-in the user on success — they
1067/// go through `/admin/login` so MFA (R3+) gets exercised.
1068pub(crate) async fn consume_reset_token(
1069 db: &Db,
1070 admin: &Admin,
1071 consume_limiter: &RateLimiter,
1072 request: &Request,
1073 token: &str,
1074 new_password: &str,
1075 correlation_id: Option<&str>,
1076) -> Result<ConsumeOutcome> {
1077 let ip = extract_request_ip(request);
1078
1079 // 1. Per-IP rate-limit — bucket exhaustion → render Invalid.
1080 if !consume_limiter.allow(&ip) {
1081 log::info!(
1082 target: "rustio_admin::recovery::consume",
1083 "rate-limit exhausted ip={} correlation_id={:?}",
1084 ip,
1085 correlation_id,
1086 );
1087 return Ok(ConsumeOutcome::RateLimited);
1088 }
1089
1090 // 2. Validate password against policy. A bad password does NOT
1091 // burn the token; the user re-tries the form.
1092 if let Err(e) = admin.active_password_policy().validate(new_password) {
1093 return Ok(ConsumeOutcome::PolicyRejected(e));
1094 }
1095
1096 // 3. Atomic consume — see "Atomic consume" doctrine in the
1097 // function-level docs above.
1098 let token_hash = hash_token_for_storage(token);
1099 let user_id: Option<i64> = sqlx::query_scalar(
1100 "UPDATE rustio_password_reset_tokens
1101 SET consumed_at = NOW()
1102 WHERE token_hash = $1
1103 AND consumed_at IS NULL
1104 AND expires_at > NOW()
1105 RETURNING user_id",
1106 )
1107 .bind(&token_hash)
1108 .fetch_optional(db.pool())
1109 .await?;
1110
1111 let user_id = match user_id {
1112 Some(uid) => uid,
1113 None => {
1114 log::info!(
1115 target: "rustio_admin::recovery::consume",
1116 "consume on invalid/expired/consumed token ip={} fingerprint={} correlation_id={:?}",
1117 ip,
1118 redact_token(token),
1119 correlation_id,
1120 );
1121 return Ok(ConsumeOutcome::Invalid);
1122 }
1123 };
1124
1125 // 4. Set new password. `set_password` stamps
1126 // `password_changed_at` (commit #2). If this fails the
1127 // token is consumed but password unchanged — rare DB-error
1128 // mode, surfaces in logs; the user re-runs the request flow.
1129 set_password(db, user_id, new_password).await?;
1130
1131 // 5. Doctrine 22: every session for the user goes through
1132 // `invalidate_sessions`. Single writer of `revoked_at`.
1133 let outcome = invalidate_sessions(
1134 db,
1135 SessionTarget::User { user_id },
1136 SessionInvalidationReason::PasswordReset,
1137 )
1138 .await?;
1139 let revoked_session_count = outcome.revoked_session_ids.len();
1140
1141 // 6. Audit row. Token fingerprint only.
1142 let user_agent_owned = request.header("user-agent").map(|s| s.to_string());
1143 let metadata = serde_json::json!({
1144 "token_fingerprint": redact_token(token),
1145 "invalidated_session_count": revoked_session_count,
1146 "ip": ip,
1147 "user_agent": user_agent_owned,
1148 });
1149 let mut entry = LogEntry::new(user_id, ActionType::Update, "users", user_id)
1150 .with_event(AuditEvent::PasswordResetSelfConsume);
1151 entry.correlation_id = correlation_id;
1152 entry.ip_address = Some(&ip);
1153 entry.metadata = Some(metadata);
1154 entry.summary =
1155 format!("password reset self-consumed; {revoked_session_count} session(s) revoked");
1156 audit_record(db, entry).await?;
1157
1158 Ok(ConsumeOutcome::Consumed {
1159 user_id,
1160 revoked_session_count,
1161 })
1162}
1163
1164/// Non-mutating check used by the `GET /admin/reset-password/<token>`
1165/// handler (R1 commit #8) to decide whether to render the new-
1166/// password form or the "this link is no longer valid" card. The
1167/// `POST` path still performs the atomic consume regardless — the
1168/// GET-time check is purely a UX courtesy so a user clicking a
1169/// stale link doesn't fill in the form before being told it's
1170/// invalid.
1171///
1172/// Disclosure-equivalent to the consume path: returns `false` for
1173/// unknown / expired / already-consumed tokens. The three sub-cases
1174/// are deliberately indistinguishable to the caller so the renderer
1175/// can't accidentally branch on them (`DESIGN_RECOVERY.md` §2.3).
1176pub(crate) async fn check_reset_token_valid(db: &Db, token: &str) -> Result<bool> {
1177 // Postgres treats `SELECT 1` as INT4; binding the result to
1178 // `Option<i64>` produces a runtime decode mismatch that lands
1179 // as a 500 (downstream validation pass caught it before
1180 // 0.5.0 publish). We `SELECT id` instead — the `id` column is
1181 // BIGSERIAL → INT8, matching `Option<i64>` cleanly, and the
1182 // semantics of "does any row match" are identical. A mistaken
1183 // `Option<i32>` would also work but would drift from the
1184 // sibling `consume_reset_token` query that returns the same
1185 // column shape.
1186 let token_hash = hash_token_for_storage(token);
1187 let exists: Option<i64> = sqlx::query_scalar(
1188 "SELECT id FROM rustio_password_reset_tokens
1189 WHERE token_hash = $1
1190 AND consumed_at IS NULL
1191 AND expires_at > NOW()
1192 LIMIT 1",
1193 )
1194 .bind(&token_hash)
1195 .fetch_optional(db.pool())
1196 .await?;
1197 Ok(exists.is_some())
1198}
1199
1200/// Retention window after a reset-token row's `expires_at` before
1201/// the periodic sweeper purges it. Locked at 7 days
1202/// (`DESIGN_RECOVERY.md` §4.4): the recently-expired window keeps
1203/// the row available for audit correlation, operational debugging,
1204/// and abuse investigations; after 7 days the row's forensic value
1205/// is gone and it disappears.
1206///
1207/// Applies to BOTH consumed and unconsumed rows — once the
1208/// `expires_at` is more than 7 days in the past, neither
1209/// classification carries operational value worth retaining.
1210const RESET_TOKEN_RETENTION_DAYS: i64 = 7;
1211
1212/// Periodically-callable purge of stale reset-token rows. Wired
1213/// into `background::spawn_session_sweeper` (R1 commit #12) on a
1214/// 10-minute tick alongside the session sweeper.
1215///
1216/// **Deletion criterion:** `expires_at < NOW() - INTERVAL '7 days'`.
1217/// One single `DELETE` statement; no per-row loop. The framework's
1218/// partial expires-at index from commit #1 covers the unconsumed-
1219/// row hot path; consumed rows fall to a heap scan over a small
1220/// portion of the table (admin-tier scale, acceptable).
1221///
1222/// **Idempotency:** the predicate is purely time-based against
1223/// `NOW()`; running the function twice in quick succession
1224/// deletes the same rows the first time and returns 0 the second.
1225/// Safe to call from any number of concurrent ticks.
1226///
1227/// **What this function does NOT do:**
1228///
1229/// - Does NOT touch `rustio_users`, `rustio_sessions`, or
1230/// `rustio_admin_actions`. Cleanup is scoped to the recovery
1231/// table; no auth / session / audit behaviour is affected.
1232/// - Does NOT emit audit rows for the deletions — the cleaned-up
1233/// rows themselves carry the forensic record (token_fingerprint,
1234/// correlation_id), and the sweep is operational rather than
1235/// user-facing.
1236/// - Does NOT write to `revoked_at` (Doctrine 22 — the only
1237/// `revoked_at` writer remains `auth::sessions::invalidate_sessions`).
1238/// - Does NOT log any token identifier, user identifier, or
1239/// correlation id. The single info-level line on success records
1240/// only the deleted-row count.
1241pub(crate) async fn purge_expired_reset_tokens(db: &Db) -> Result<u64> {
1242 // The retention window is embedded as a literal in the SQL
1243 // (Postgres INTERVAL doesn't bind cleanly via sqlx). The
1244 // constant + the test below pin the value; a drift would
1245 // surface mechanically.
1246 let query = format!(
1247 "DELETE FROM rustio_password_reset_tokens \
1248 WHERE expires_at < NOW() - INTERVAL '{RESET_TOKEN_RETENTION_DAYS} days'"
1249 );
1250 let result = sqlx::query(&query).execute(db.pool()).await?;
1251 Ok(result.rows_affected())
1252}
1253
1254/// Update an issued token's `mail_status` column. Only the values
1255/// `'pending' | 'sent' | 'failed'` are valid (CHECK constraint
1256/// added in commit #1).
1257async fn set_token_mail_status(db: &Db, token_id: i64, status: &str) -> Result<()> {
1258 sqlx::query(
1259 "UPDATE rustio_password_reset_tokens
1260 SET mail_status = $1
1261 WHERE id = $2",
1262 )
1263 .bind(status)
1264 .bind(token_id)
1265 .execute(db.pool())
1266 .await?;
1267 Ok(())
1268}
1269
1270/// Best-effort client-IP extraction from the `X-Forwarded-For`
1271/// header — first comma-separated entry, trimmed. Falls back to
1272/// `"anon"` when no proxy header is present; rate-limit buckets
1273/// all anonymous requests under one key in that case (acceptable
1274/// for single-tenant deployments; multi-tenant deployments behind
1275/// an unconfigured proxy get noisy and should set the header
1276/// upstream).
1277fn extract_request_ip(request: &Request) -> String {
1278 request
1279 .header("x-forwarded-for")
1280 .and_then(|v| v.split(',').next())
1281 .map(|s| s.trim().to_string())
1282 .filter(|s| !s.is_empty())
1283 .unwrap_or_else(|| "anon".to_string())
1284}
1285
1286/// Render a `chrono::Duration` as a human-readable email-body
1287/// string (e.g. `"in 1 hour"`, `"in 30 minutes"`). Boundary cases
1288/// fall back gracefully — never returns an empty / grammatically
1289/// broken string.
1290fn humanize_ttl(ttl: ChronoDuration) -> String {
1291 let secs = ttl.num_seconds();
1292 if secs <= 0 {
1293 return "very soon".to_string();
1294 }
1295 if ttl.num_hours() >= 1 {
1296 let h = ttl.num_hours();
1297 return if h == 1 {
1298 "in 1 hour".to_string()
1299 } else {
1300 format!("in {h} hours")
1301 };
1302 }
1303 if ttl.num_minutes() >= 1 {
1304 let m = ttl.num_minutes();
1305 return if m == 1 {
1306 "in 1 minute".to_string()
1307 } else {
1308 format!("in {m} minutes")
1309 };
1310 }
1311 if secs == 1 {
1312 "in 1 second".to_string()
1313 } else {
1314 format!("in {secs} seconds")
1315 }
1316}
1317
1318#[cfg(test)]
1319mod tests {
1320 use super::*;
1321
1322 #[test]
1323 fn default_policy_floor_is_ten() {
1324 assert_eq!(DefaultPasswordPolicy::new().min_length(), 10);
1325 assert_eq!(DefaultPasswordPolicy::default().min_length(), 10);
1326 }
1327
1328 #[test]
1329 fn default_policy_accepts_password_at_floor() {
1330 let p = DefaultPasswordPolicy::new();
1331 // Exactly 10 chars — the doctrine-locked default floor.
1332 assert!(p.validate("aaaaaaaaaa").is_ok());
1333 // Comfortable margin.
1334 assert!(p.validate("correct horse battery staple").is_ok());
1335 }
1336
1337 #[test]
1338 fn default_policy_rejects_short_password() {
1339 let p = DefaultPasswordPolicy::new();
1340 let err = p.validate("nine_char").unwrap_err();
1341 assert_eq!(err, PasswordPolicyError::TooShort { min: 10, actual: 9 });
1342 }
1343
1344 #[test]
1345 fn default_policy_rejects_empty_password() {
1346 let p = DefaultPasswordPolicy::new();
1347 let err = p.validate("").unwrap_err();
1348 assert_eq!(err, PasswordPolicyError::TooShort { min: 10, actual: 0 });
1349 }
1350
1351 #[test]
1352 fn default_policy_with_min_len_overrides_floor() {
1353 let p = DefaultPasswordPolicy::with_min_len(16);
1354 assert_eq!(p.min_length(), 16);
1355 assert!(p.validate("fifteen_chars__").is_err()); // 15 chars
1356 assert!(p.validate("sixteen_chars___").is_ok()); // 16 chars
1357 }
1358
1359 #[test]
1360 fn default_policy_counts_chars_not_bytes() {
1361 let p = DefaultPasswordPolicy::new();
1362 // 10 Cyrillic chars = 20 bytes. Char count passes the floor.
1363 let pw = "пароль1234";
1364 assert_eq!(pw.chars().count(), 10);
1365 assert!(pw.len() > 10);
1366 assert!(p.validate(pw).is_ok());
1367
1368 // 9 Cyrillic chars must fail with the char count, not the
1369 // byte count.
1370 let pw = "пароль123";
1371 let err = p.validate(pw).unwrap_err();
1372 assert_eq!(err, PasswordPolicyError::TooShort { min: 10, actual: 9 });
1373 }
1374
1375 #[test]
1376 fn error_renderings_do_not_leak_plaintext() {
1377 // Property: neither Display nor Debug formatting of a
1378 // policy error rendered for a rejected candidate leaks the
1379 // candidate string. Picked plaintext is unlikely to collide
1380 // with English words in the default error message.
1381 let p = DefaultPasswordPolicy::new();
1382 let plaintext = "Pwn4Ge#xy"; // 9 chars — fails the 10-char floor
1383 let err = p.validate(plaintext).unwrap_err();
1384 let display = format!("{err}");
1385 let debug = format!("{err:?}");
1386 assert!(
1387 !display.contains(plaintext),
1388 "Display leaked plaintext: {display}"
1389 );
1390 assert!(
1391 !debug.contains(plaintext),
1392 "Debug leaked plaintext: {debug}"
1393 );
1394 }
1395
1396 #[test]
1397 fn custom_error_renders_message_verbatim() {
1398 let err = PasswordPolicyError::Custom("breached password rejected".into());
1399 assert_eq!(format!("{err}"), "breached password rejected");
1400 }
1401
1402 #[test]
1403 fn shared_password_policy_is_send_sync() {
1404 // Compile-time guarantee that the trait-object alias retains
1405 // the bounds the framework relies on.
1406 fn assert_send_sync<T: Send + Sync>() {}
1407 assert_send_sync::<SharedPasswordPolicy>();
1408 }
1409
1410 // ---- recovery policy ---------------------------------------------------
1411
1412 #[test]
1413 fn default_recovery_policy_ttl_is_one_hour() {
1414 let p = DefaultRecoveryPolicy::new();
1415 assert_eq!(p.reset_token_ttl(), ChronoDuration::hours(1));
1416 }
1417
1418 #[test]
1419 fn default_recovery_policy_request_rate_limit_is_five_per_fifteen_min() {
1420 let p = DefaultRecoveryPolicy::new();
1421 assert_eq!(p.request_rate_limit(), (5, StdDuration::from_secs(15 * 60)));
1422 }
1423
1424 #[test]
1425 fn default_recovery_policy_consume_rate_limit_is_ten_per_five_min() {
1426 let p = DefaultRecoveryPolicy::new();
1427 assert_eq!(p.consume_rate_limit(), (10, StdDuration::from_secs(5 * 60)));
1428 }
1429
1430 #[test]
1431 fn default_recovery_policy_strict_mailer_required_is_false() {
1432 // Locked-decision: project opts in via with_strict_mailer_required(true).
1433 // R1 commit #5 ships the field; enforcement is deferred to commit #7+.
1434 let p = DefaultRecoveryPolicy::new();
1435 assert!(!p.strict_mailer_required());
1436 }
1437
1438 #[test]
1439 fn default_recovery_policy_with_overrides_apply_field_by_field() {
1440 let p = DefaultRecoveryPolicy::new()
1441 .with_reset_token_ttl(ChronoDuration::hours(2))
1442 .with_request_rate_limit(3, StdDuration::from_secs(60))
1443 .with_consume_rate_limit(20, StdDuration::from_secs(30))
1444 .with_strict_mailer_required(true);
1445 assert_eq!(p.reset_token_ttl(), ChronoDuration::hours(2));
1446 assert_eq!(p.request_rate_limit(), (3, StdDuration::from_secs(60)));
1447 assert_eq!(p.consume_rate_limit(), (20, StdDuration::from_secs(30)));
1448 assert!(p.strict_mailer_required());
1449 }
1450
1451 #[test]
1452 fn shared_recovery_policy_is_send_sync() {
1453 fn assert_send_sync<T: Send + Sync>() {}
1454 assert_send_sync::<SharedRecoveryPolicy>();
1455 }
1456
1457 // ---- R2 trait extensions -----------------------------------------------
1458
1459 #[test]
1460 fn login_throttle_default_is_five_ten_fifteen() {
1461 // Locked-decision per DESIGN_R2_ORGANISATIONAL.md §12.
1462 let t = LoginThrottle::default();
1463 assert_eq!(t.max_attempts, 5);
1464 assert_eq!(t.window_minutes, 10);
1465 assert_eq!(t.lock_minutes, 15);
1466 // The const surface and the Default impl agree.
1467 assert_eq!(t, LoginThrottle::DEFAULT);
1468 }
1469
1470 #[test]
1471 fn default_recovery_policy_login_throttle_is_default() {
1472 let p = DefaultRecoveryPolicy::new();
1473 assert_eq!(p.login_throttle(), LoginThrottle::DEFAULT);
1474 }
1475
1476 #[test]
1477 fn default_recovery_policy_reauth_window_is_fifteen_minutes() {
1478 // Locked-decision per DESIGN_R2_ORGANISATIONAL.md §12.
1479 let p = DefaultRecoveryPolicy::new();
1480 assert_eq!(p.reauth_window(), ChronoDuration::minutes(15));
1481 }
1482
1483 // ---- R3 trait extensions -----------------------------------------------
1484
1485 #[test]
1486 fn default_recovery_policy_mfa_step_seconds_is_thirty() {
1487 // Locked per DESIGN_R3_MFA.md Appendix B — RFC 6238
1488 // industry standard for authenticator-app interop.
1489 let p = DefaultRecoveryPolicy::new();
1490 assert_eq!(p.mfa_step_seconds(), 30);
1491 }
1492
1493 #[test]
1494 fn default_recovery_policy_mfa_skew_steps_is_one() {
1495 // Locked per DESIGN_R3_MFA.md Appendix B — 90-second
1496 // total acceptance window at the canonical 30-second
1497 // step. Wider skew = network-replay regression.
1498 let p = DefaultRecoveryPolicy::new();
1499 assert_eq!(p.mfa_skew_steps(), 1);
1500 }
1501
1502 #[test]
1503 fn default_recovery_policy_scope_for_returns_none() {
1504 // Default impl signals "no per-tenant scoping". Multi-tenant
1505 // projects override to return Some(scoped_arc); the framework
1506 // call site (`admin.recovery_policy.scope_for(&identity)
1507 // .unwrap_or_else(|| Arc::clone(&admin.recovery_policy))`)
1508 // collapses None back to the original Arc.
1509 use crate::auth::Role;
1510 let identity = Identity {
1511 user_id: 42,
1512 email: "test@example.com".into(),
1513 role: Role::User,
1514 is_active: true,
1515 is_demo: false,
1516 demo_label: None,
1517 must_change_password: false,
1518 mfa_enabled: false,
1519 trust_level: crate::auth::SessionTrust::Authenticated,
1520 };
1521 let p = DefaultRecoveryPolicy::new();
1522 assert!(p.scope_for(&identity).is_none());
1523 }
1524
1525 #[test]
1526 fn login_throttle_is_send_sync_copy() {
1527 fn assert_send_sync_copy<T: Send + Sync + Copy>() {}
1528 assert_send_sync_copy::<LoginThrottle>();
1529 }
1530
1531 // ---- public_site_url derivation ----------------------------------------
1532
1533 fn header_lookup(
1534 pairs: &'static [(&'static str, &'static str)],
1535 ) -> impl Fn(&str) -> Option<String> + 'static {
1536 move |name| {
1537 pairs
1538 .iter()
1539 .find(|(k, _)| k.eq_ignore_ascii_case(name))
1540 .map(|(_, v)| (*v).to_string())
1541 }
1542 }
1543
1544 #[test]
1545 fn site_url_prefers_rfc7239_forwarded_first_hop() {
1546 let h = header_lookup(&[
1547 (
1548 "forwarded",
1549 "for=1.2.3.4;proto=https;host=admin.example.com",
1550 ),
1551 ("x-forwarded-proto", "http"),
1552 ("x-forwarded-host", "wrong.example.com"),
1553 ("host", "internal.local"),
1554 ]);
1555 assert_eq!(
1556 derive_public_site_url(&h),
1557 Some("https://admin.example.com".to_string())
1558 );
1559 }
1560
1561 #[test]
1562 fn site_url_falls_through_to_x_forwarded_pair() {
1563 let h = header_lookup(&[
1564 ("x-forwarded-proto", "https"),
1565 ("x-forwarded-host", "admin.example.com"),
1566 ("host", "internal.local"),
1567 ]);
1568 assert_eq!(
1569 derive_public_site_url(&h),
1570 Some("https://admin.example.com".to_string())
1571 );
1572 }
1573
1574 #[test]
1575 fn site_url_x_forwarded_takes_first_csv_entry() {
1576 // Multiple proxy hops — outermost (closest to client) is first.
1577 let h = header_lookup(&[
1578 ("x-forwarded-proto", "https, http"),
1579 ("x-forwarded-host", "admin.example.com, internal.local"),
1580 ]);
1581 assert_eq!(
1582 derive_public_site_url(&h),
1583 Some("https://admin.example.com".to_string())
1584 );
1585 }
1586
1587 #[test]
1588 fn site_url_falls_back_to_host_header_with_http() {
1589 let h = header_lookup(&[("host", "admin.example.com")]);
1590 assert_eq!(
1591 derive_public_site_url(&h),
1592 Some("http://admin.example.com".to_string())
1593 );
1594 }
1595
1596 #[test]
1597 fn site_url_returns_none_when_no_headers_resolve() {
1598 let h = header_lookup(&[]);
1599 assert_eq!(derive_public_site_url(&h), None);
1600 }
1601
1602 #[test]
1603 fn site_url_rejects_non_http_proto() {
1604 // A malicious client setting `Forwarded: proto=javascript`
1605 // must NOT poison the reset link. We refuse anything outside
1606 // {http, https} and fall through to the next source.
1607 let h = header_lookup(&[
1608 (
1609 "forwarded",
1610 "for=1.2.3.4;proto=javascript;host=evil.example.com",
1611 ),
1612 ("host", "fallback.example.com"),
1613 ]);
1614 assert_eq!(
1615 derive_public_site_url(&h),
1616 Some("http://fallback.example.com".to_string())
1617 );
1618 }
1619
1620 #[test]
1621 fn site_url_rejects_host_with_whitespace_or_control() {
1622 let h = header_lookup(&[("host", "example.com\r\nX-Injected: yes")]);
1623 assert_eq!(derive_public_site_url(&h), None);
1624 }
1625
1626 #[test]
1627 fn site_url_handles_quoted_forwarded_values() {
1628 let h = header_lookup(&[(
1629 "forwarded",
1630 "for=\"_obfuscated\";proto=\"https\";host=\"admin.example.com\"",
1631 )]);
1632 assert_eq!(
1633 derive_public_site_url(&h),
1634 Some("https://admin.example.com".to_string())
1635 );
1636 }
1637
1638 #[test]
1639 fn site_url_handles_ipv6_bracketed_host() {
1640 let h = header_lookup(&[
1641 ("x-forwarded-proto", "https"),
1642 ("x-forwarded-host", "[2001:db8::1]:8443"),
1643 ]);
1644 assert_eq!(
1645 derive_public_site_url(&h),
1646 Some("https://[2001:db8::1]:8443".to_string())
1647 );
1648 }
1649
1650 // ---- humanize_ttl ----
1651
1652 #[test]
1653 fn humanize_ttl_one_hour_default() {
1654 assert_eq!(humanize_ttl(ChronoDuration::hours(1)), "in 1 hour");
1655 }
1656
1657 #[test]
1658 fn humanize_ttl_two_hours_pluralises() {
1659 assert_eq!(humanize_ttl(ChronoDuration::hours(2)), "in 2 hours");
1660 }
1661
1662 #[test]
1663 fn humanize_ttl_minutes() {
1664 assert_eq!(humanize_ttl(ChronoDuration::minutes(30)), "in 30 minutes");
1665 assert_eq!(humanize_ttl(ChronoDuration::minutes(1)), "in 1 minute");
1666 }
1667
1668 #[test]
1669 fn humanize_ttl_seconds_for_short_windows() {
1670 assert_eq!(humanize_ttl(ChronoDuration::seconds(45)), "in 45 seconds");
1671 assert_eq!(humanize_ttl(ChronoDuration::seconds(1)), "in 1 second");
1672 }
1673
1674 // ---- purge_expired_reset_tokens ----------------------------------------
1675
1676 /// Locked retention doctrine — DESIGN_RECOVERY.md §4.4.
1677 /// Changing this constant is a behaviour change requiring a
1678 /// CHANGELOG entry under `Behaviour change`.
1679 #[test]
1680 fn reset_token_retention_window_is_seven_days() {
1681 assert_eq!(RESET_TOKEN_RETENTION_DAYS, 7);
1682 }
1683
1684 /// The DELETE statement targets the recovery table only,
1685 /// embeds the retention window as a literal `INTERVAL` (since
1686 /// sqlx can't bind interval params cleanly), and applies the
1687 /// same predicate to consumed AND unconsumed rows — no
1688 /// `consumed_at` filter on the WHERE clause. Pins the SQL
1689 /// shape so a future drift surfaces here.
1690 #[test]
1691 fn purge_query_includes_retention_window_and_table() {
1692 let query = format!(
1693 "DELETE FROM rustio_password_reset_tokens \
1694 WHERE expires_at < NOW() - INTERVAL '{RESET_TOKEN_RETENTION_DAYS} days'"
1695 );
1696 assert!(
1697 query.contains("rustio_password_reset_tokens"),
1698 "purge must target the recovery table"
1699 );
1700 assert!(
1701 query.contains("INTERVAL '7 days'"),
1702 "purge must use the locked 7-day retention window"
1703 );
1704 assert!(
1705 !query.contains("consumed_at"),
1706 "purge must apply to BOTH consumed and unconsumed expired rows; \
1707 a `consumed_at` filter would leak old consumed rows indefinitely"
1708 );
1709 // Defense-in-depth — the query is a DELETE, not a SELECT
1710 // / UPDATE. A copy-paste accident that turned this into an
1711 // UPDATE would silently leave rows in place; an accidental
1712 // SELECT would do nothing.
1713 assert!(
1714 query.starts_with("DELETE FROM"),
1715 "purge must be a DELETE statement"
1716 );
1717 }
1718
1719 #[test]
1720 fn humanize_ttl_zero_or_negative_returns_safe_string() {
1721 // Boundary: a TTL that's already in the past renders as a
1722 // grammatically safe placeholder. Never empty, never broken.
1723 assert_eq!(humanize_ttl(ChronoDuration::zero()), "very soon");
1724 assert_eq!(humanize_ttl(ChronoDuration::seconds(-30)), "very soon");
1725 }
1726
1727 // ---- IssueOutcome / ConsumeOutcome leak prevention ----
1728
1729 #[test]
1730 fn issue_outcome_debug_never_carries_plaintext_token() {
1731 // Variants are designed without a token field; this test
1732 // pins that property — a future change that adds one would
1733 // fail this. Synthetic plaintext is unlikely to collide
1734 // with the structural form-fields ("Issued", "token_id",
1735 // numbers, etc.).
1736 let synthetic = "Pwn4Ge_ZZ_token_plaintext_1234567890";
1737 for outcome in [
1738 IssueOutcome::Issued {
1739 token_id: 42,
1740 email_status: MailerEmailStatus::Sent,
1741 },
1742 IssueOutcome::Issued {
1743 token_id: 7,
1744 email_status: MailerEmailStatus::Failed,
1745 },
1746 IssueOutcome::UnknownOrInactive,
1747 IssueOutcome::RateLimited,
1748 ] {
1749 let debug = format!("{outcome:?}");
1750 assert!(
1751 !debug.contains(synthetic),
1752 "IssueOutcome Debug leaked plaintext: {debug}",
1753 );
1754 }
1755 }
1756
1757 #[test]
1758 fn consume_outcome_debug_never_carries_plaintext_token() {
1759 let synthetic = "Pwn4Ge_ZZ_token_plaintext_1234567890";
1760 for outcome in [
1761 ConsumeOutcome::Consumed {
1762 user_id: 1,
1763 revoked_session_count: 3,
1764 },
1765 ConsumeOutcome::Invalid,
1766 ConsumeOutcome::PolicyRejected(PasswordPolicyError::TooShort { min: 10, actual: 4 }),
1767 ConsumeOutcome::PolicyRejected(PasswordPolicyError::Custom("stub rejected".into())),
1768 ConsumeOutcome::RateLimited,
1769 ] {
1770 let debug = format!("{outcome:?}");
1771 assert!(
1772 !debug.contains(synthetic),
1773 "ConsumeOutcome Debug leaked plaintext: {debug}",
1774 );
1775 }
1776 }
1777
1778 #[test]
1779 fn mailer_email_status_round_trip_strings() {
1780 // Locked-in for the audit metadata field
1781 // `email_send_status` — values are 'sent' / 'failed'.
1782 assert_eq!(format!("{:?}", MailerEmailStatus::Sent), "Sent");
1783 assert_eq!(format!("{:?}", MailerEmailStatus::Failed), "Failed");
1784 }
1785
1786 #[test]
1787 fn malformed_forwarded_inputs_never_panic() {
1788 for input in &[
1789 "",
1790 "garbage",
1791 "for=",
1792 "proto=;host=",
1793 "proto=javascript:alert(1);host=evil",
1794 "host=example com",
1795 "proto=https;host=",
1796 ";;;",
1797 ",,,",
1798 "proto=https",
1799 "host=example.com",
1800 "for=\"unterminated",
1801 "=value",
1802 "key=",
1803 "key==value=",
1804 ] {
1805 let value = (*input).to_string();
1806 // The lookup returns the test input for "forwarded" and
1807 // a safe host fallback so we exercise the "fall through"
1808 // path too.
1809 let h = move |name: &str| match name {
1810 "forwarded" => Some(value.clone()),
1811 "host" => Some("fallback.example.com".to_string()),
1812 _ => None,
1813 };
1814 // Property: never panics. The result is acceptable as
1815 // long as the fall-through landed somewhere safe.
1816 let result = derive_public_site_url(h);
1817 assert!(
1818 result.is_none()
1819 || result.as_deref() == Some("http://fallback.example.com")
1820 || result.as_deref().map(|s| s.starts_with("https://")) == Some(true)
1821 || result.as_deref().map(|s| s.starts_with("http://")) == Some(true),
1822 "input {input:?} produced unexpected url {result:?}"
1823 );
1824 }
1825 }
1826}