fix(tunnel): recover an expired leaf over plain HTTPS, not mTLS
Correction to the previous commit. Its recovery vhost could not work: nginx
will not forward an expired client certificate in ANY `ssl_verify_client` mode.
`optional` answers a bare `400 The SSL certificate error` before any location
runs, and `optional_no_ca` only tolerates CHAIN failures — see nginx's
`ngx_ssl_verify_error_optional()`, which covers self-signed / unknown-issuer /
unverifiable-leaf and NOT `X509_V_ERR_CERT_HAS_EXPIRED`. Verified live against
the deployed :8472 server, which rejected the real expired leaf.
So recovery drops mTLS instead of trying to bend it:
- agent: `buildTlsOptions` and the mTLS renew transport go back to being
strictly fail-closed on expiry — the relaxation is gone from the TLS layer
entirely. The rotator now decides per attempt: valid → mTLS `/renew`,
expired-inside-grace → plain `/recover`, expired-beyond-grace → terminal
`onExhausted` with no request issued at all.
- new `recoverCert` POSTs `{cert, csr}` with no client certificate. Possession
of the private key is still proven: the CSR is self-signed by it and the host
signer already enforces CSR PoP plus `CSR key == registered key`, so a
replayed (public) cert without the key yields at most a certificate the
attacker cannot authenticate with.
- control-plane: `/renew` is strict again (grace 0, matching the terminator).
The grace lives on the new `POST /recover`, which reads the cert from the BODY
and ignores the `x-client-cert` header, then runs the identical trust
pipeline: X.509 path validation to the frp-client-CA anchors, SPIFFE parse,
`notBefore` (never graced), registry `active` + account match. Revocation
still bites.
- deploy: no new vhost, no new SNI, no DNS. One `location = /recover` merged
into the existing enroll vhost, documented in
`deploy/nginx/enroll-recover-location.md` with the nginx source citation.
The load-bearing new test is "a self-signed cert with a FORGED SPIFFE SAN is
refused → 401": nginx no longer validates the chain on this path, so that
assertion is what keeps `/recover` from being a cert vending machine.
Verified: agent 289/289, control-plane 290/290, tsc clean on both.
This commit is contained in:
@@ -14,12 +14,35 @@ import type { AgentIdentity } from '../keys/identity.js'
|
||||
import type { Keystore } from '../keys/keystore.js'
|
||||
import type { TimerLike } from '../transport/seams.js'
|
||||
import { createBackoff, type BackoffPolicy } from '../transport/backoff.js'
|
||||
import { CertExpiredBeyondGraceError } from '../transport/dial.js'
|
||||
import { buildCsr } from '../enroll/csr.js'
|
||||
import { certResponseToPem } from './pem.js'
|
||||
|
||||
export const DEFAULT_RENEW_BEFORE_MS = 5 * 60_000 // renew 5 min before expiry
|
||||
|
||||
/**
|
||||
* How long after `notAfter` a lapsed leaf may still be swapped for a fresh one (30 days).
|
||||
*
|
||||
* `/renew` is mTLS-authenticated by the very leaf it renews, so a lapsed leaf cannot renew itself —
|
||||
* a deadlock that bricked a host for 8 days in production (the laptop slept through its renewal
|
||||
* window, then the agent logged `client certificate has expired` 6380 times and never recovered).
|
||||
* Inside this window the agent switches to the `/recover` endpoint instead; past it, only a re-pair
|
||||
* can help and the rotator says so once and stops.
|
||||
*/
|
||||
export const DEFAULT_EXPIRED_RENEW_GRACE_MS = 30 * 24 * 60 * 60 * 1000
|
||||
|
||||
/** The leaf lapsed longer ago than the recovery grace allows ⇒ operator must re-pair this host. */
|
||||
export class CertExpiredBeyondGraceError extends Error {
|
||||
constructor(
|
||||
/** How long ago the leaf expired (ms) — non-secret, safe to log. */
|
||||
readonly expiredForMs: number,
|
||||
/** The grace window that was exceeded (ms). */
|
||||
readonly graceMs: number,
|
||||
) {
|
||||
super('client certificate expired beyond the recovery grace window; re-pair required')
|
||||
this.name = 'CertExpiredBeyondGraceError'
|
||||
}
|
||||
}
|
||||
|
||||
export interface CertRotator {
|
||||
start(): void
|
||||
stop(): void
|
||||
@@ -41,34 +64,21 @@ export function renewalUrlFor(cfg: AgentConfig): string {
|
||||
return cfg.enrollUrl.replace(/\/enroll$/, '/renew')
|
||||
}
|
||||
|
||||
/** The `enroll.<zone>` label the recovery vhost mirrors as `recover.<zone>`. */
|
||||
const ENROLL_LABEL = 'enroll.'
|
||||
const RECOVER_LABEL = 'recover.'
|
||||
|
||||
/**
|
||||
* Renewal route for an ALREADY-EXPIRED leaf, or null when this deployment has none.
|
||||
* Recovery route for a leaf that has ALREADY EXPIRED — a sibling PATH on the same enroll host.
|
||||
*
|
||||
* The normal `/renew` vhost runs `ssl_verify_client optional`, which makes nginx answer a bare
|
||||
* `400 Bad Request` as soon as a presented client cert fails verification — an expired leaf never
|
||||
* reaches the location, so it can never be forwarded to the control-plane. Recovery therefore lives
|
||||
* on a sibling `recover.` vhost running `optional_no_ca`, where nginx forwards the cert unverified
|
||||
* and the control-plane is the sole (and full) verifier: chain → SPIFFE → registry status → bounded
|
||||
* expiry grace. Explicit `cfg.recoverUrl` wins; otherwise it is derived by swapping the `enroll.`
|
||||
* label. A deployment whose enroll host has no `enroll.` label gets null (no recovery configured)
|
||||
* rather than a guessed hostname.
|
||||
* It cannot be `/renew`, because nginx will not forward an expired client certificate at all: under
|
||||
* `ssl_verify_client optional` it answers a bare `400 Bad Request`, and `optional_no_ca` does not
|
||||
* help either — nginx only tolerates CHAIN errors there (`ngx_ssl_verify_error_optional` covers
|
||||
* self-signed / unknown-issuer / unverifiable-leaf, NOT `X509_V_ERR_CERT_HAS_EXPIRED`). So recovery
|
||||
* drops mTLS entirely: it is a plain HTTPS POST carrying the expired cert in the BODY. Nothing is
|
||||
* lost by that — the accompanying CSR is self-signed by the same private key, and the control-plane
|
||||
* signer already enforces CSR proof-of-possession plus `CSR key == registered key`, so possession is
|
||||
* proven exactly as the TLS handshake used to prove it.
|
||||
*/
|
||||
export function recoveryRenewalUrlFor(cfg: AgentConfig): string | null {
|
||||
export function recoveryUrlFor(cfg: AgentConfig): string {
|
||||
if (cfg.recoverUrl != null && cfg.recoverUrl.length > 0) return cfg.recoverUrl
|
||||
let url: URL
|
||||
try {
|
||||
url = new URL(cfg.enrollUrl)
|
||||
} catch {
|
||||
return null
|
||||
}
|
||||
if (!url.hostname.startsWith(ENROLL_LABEL)) return null
|
||||
url.hostname = RECOVER_LABEL + url.hostname.slice(ENROLL_LABEL.length)
|
||||
url.pathname = url.pathname.replace(/\/enroll$/, '/renew')
|
||||
return url.toString()
|
||||
return cfg.enrollUrl.replace(/\/enroll$/, '/recover')
|
||||
}
|
||||
|
||||
/** Ms until (validTo − renewBeforeMs), clamped to ≥ 0. */
|
||||
@@ -110,6 +120,34 @@ export async function renewCert(
|
||||
return 'rotated'
|
||||
}
|
||||
|
||||
/**
|
||||
* One recovery round-trip for an EXPIRED leaf: plain HTTPS (no client cert — see `recoveryUrlFor`)
|
||||
* POSTing the expired cert alongside a fresh CSR over the SAME key. Same outcome contract as
|
||||
* `renewCert`: 'rotated' installs the new leaf, 403 ⇒ 'revoked', anything else throws to the retry.
|
||||
*/
|
||||
export async function recoverCert(
|
||||
cfg: AgentConfig,
|
||||
id: AgentIdentity,
|
||||
ks: Keystore,
|
||||
fetchImpl: typeof fetch,
|
||||
url: string = recoveryUrlFor(cfg),
|
||||
): Promise<RenewOutcome> {
|
||||
const certs = ks.loadCert()
|
||||
if (certs === null) throw new Error('cannot recover without the expired leaf on disk')
|
||||
const csr = buildCsr(id, cfg.subdomain ?? 'web-terminal-agent')
|
||||
const res = await fetchImpl(url, {
|
||||
method: 'POST',
|
||||
headers: { 'content-type': 'application/json' },
|
||||
body: JSON.stringify({ cert: certs.certPem, csr }),
|
||||
})
|
||||
if (res.status === 403) return 'revoked'
|
||||
if (!res.ok) throw new Error(`cert recovery failed: HTTP ${res.status}`)
|
||||
const json = (await res.json()) as { cert?: unknown; caChain?: unknown }
|
||||
const { certPem, caChainPem } = certResponseToPem(json.cert, json.caChain)
|
||||
ks.saveCert(certPem, caChainPem)
|
||||
return 'rotated'
|
||||
}
|
||||
|
||||
export function createCertRotator(
|
||||
cfg: AgentConfig,
|
||||
id: AgentIdentity,
|
||||
@@ -122,6 +160,10 @@ export function createCertRotator(
|
||||
parseCert?: (pem: string) => Date
|
||||
/** Backoff policy for retrying a FAILED renewal (default 1s→30s). Reset after a success. */
|
||||
retryBackoff?: BackoffPolicy
|
||||
/** Plain (NON-mTLS) fetch used only for the expired-leaf `/recover` call. */
|
||||
recoverFetchImpl?: typeof fetch
|
||||
/** Window in which an expired leaf may still be recovered. 0 ⇒ no recovery at all. */
|
||||
expiredGraceMs?: number
|
||||
} = {},
|
||||
): CertRotator {
|
||||
const renewBeforeMs = opts.renewBeforeMs ?? DEFAULT_RENEW_BEFORE_MS
|
||||
@@ -133,6 +175,8 @@ export function createCertRotator(
|
||||
clearInterval: (h) => clearInterval(h as ReturnType<typeof setInterval>),
|
||||
}
|
||||
const doFetch = opts.fetchImpl ?? fetch
|
||||
const recoverFetch = opts.recoverFetchImpl ?? fetch
|
||||
const expiredGraceMs = opts.expiredGraceMs ?? DEFAULT_EXPIRED_RENEW_GRACE_MS
|
||||
const now = opts.now ?? (() => new Date())
|
||||
const retryBackoff = opts.retryBackoff ?? createBackoff({ jitter: true })
|
||||
let handle: unknown = null
|
||||
@@ -149,20 +193,33 @@ export function createCertRotator(
|
||||
}
|
||||
|
||||
/**
|
||||
* Pick the endpoint for THIS attempt. A leaf that has already lapsed cannot be forwarded by the
|
||||
* strict vhost, so it must go to the recovery vhost; a still-valid leaf always uses the normal one.
|
||||
* With no recovery endpoint configured we fall back to the normal URL and let it fail honestly.
|
||||
* How this attempt must be made, derived from how stale the leaf on disk is:
|
||||
* `normal` — still valid ⇒ ordinary mTLS `/renew`;
|
||||
* `recover` — expired but inside the grace window ⇒ plain `/recover` with the cert in the body;
|
||||
* `exhausted` — expired past the grace window ⇒ nothing can succeed; only an operator re-pair.
|
||||
*/
|
||||
function endpointForNow(): string {
|
||||
function attemptPlan(): { mode: 'normal' | 'recover' | 'exhausted'; expiredForMs: number } {
|
||||
const certs = ks.loadCert()
|
||||
if (certs === null) return renewalUrlFor(cfg)
|
||||
const expired = parseCert(certs.certPem).getTime() < now().getTime()
|
||||
if (!expired) return renewalUrlFor(cfg)
|
||||
return recoveryRenewalUrlFor(cfg) ?? renewalUrlFor(cfg)
|
||||
if (certs === null) return { mode: 'normal', expiredForMs: 0 }
|
||||
const expiredForMs = now().getTime() - parseCert(certs.certPem).getTime()
|
||||
if (expiredForMs <= 0) return { mode: 'normal', expiredForMs: 0 }
|
||||
return { mode: expiredForMs > expiredGraceMs ? 'exhausted' : 'recover', expiredForMs }
|
||||
}
|
||||
|
||||
function runRenewal(): void {
|
||||
void renewCert(cfg, id, ks, doFetch, { url: endpointForNow() })
|
||||
const plan = attemptPlan()
|
||||
if (plan.mode === 'exhausted') {
|
||||
// Terminal: report ONCE and arm nothing. The old code retried forever, which is how a single
|
||||
// real failure turned into 6380 identical warnings that buried the signal.
|
||||
handle = null
|
||||
exhaustedCb?.(new CertExpiredBeyondGraceError(plan.expiredForMs, expiredGraceMs))
|
||||
return
|
||||
}
|
||||
const attempt =
|
||||
plan.mode === 'recover'
|
||||
? recoverCert(cfg, id, ks, recoverFetch)
|
||||
: renewCert(cfg, id, ks, doFetch)
|
||||
void attempt
|
||||
.then((outcome) => {
|
||||
if (outcome === 'revoked') {
|
||||
revokedCb?.()
|
||||
@@ -173,14 +230,6 @@ export function createCertRotator(
|
||||
schedule()
|
||||
})
|
||||
.catch((err: unknown) => {
|
||||
// The grace window is spent: no amount of retrying can mint a new leaf, only an operator
|
||||
// re-pair can. Report it ONCE and stop — the old behaviour retried forever and buried the
|
||||
// real signal under thousands of identical warnings.
|
||||
if (err instanceof CertExpiredBeyondGraceError) {
|
||||
handle = null
|
||||
exhaustedCb?.(err)
|
||||
return
|
||||
}
|
||||
// Network/HTTP failure (never a 403 revoke): surface it (caller logs, no secret) and retry
|
||||
// with backoff. The cert is still valid until expiry, so the tunnel stays up meanwhile — a
|
||||
// failed renewal must NEVER tear the supervisor down.
|
||||
|
||||
Reference in New Issue
Block a user