fix(tunnel): break the expired-leaf renewal deadlock
`POST /renew` is authenticated by mTLS with the very leaf it renews, so once that leaf lapsed the host could never renew it and the tunnel stayed down until an operator re-paired by hand. Production hit exactly this: the Mac slept through its 8h renewal window, the 24h leaf expired, and the agent then logged `client certificate has expired; renew before dialling` 6380 times over 8 days without recovering. Three layers independently refused an expired leaf, so all three had to move: - agent `buildTlsOptions` gains an opt-in `expiredGraceMs`. Absent/0 keeps the historical fail-closed behaviour, and the TUNNEL dial never passes it — only the renew transport does. Past the window it throws the new `CertExpiredBeyondGraceError`. - agent rotator routes an already-expired leaf to a separate recovery endpoint and treats "beyond grace" as TERMINAL: report once via `onExhausted`, stop retrying, and name the fix (re-pair) instead of spamming warnings forever. - control-plane `assertPresentedCertTrusted` grants a bounded grace on `notAfter` only. Chain validation, SPIFFE identity, `notBefore`, and the registry `active`/account checks are all unchanged, so revocation still bites. - new `deploy/nginx/recover-mtls.conf` (:8472). The strict enroll vhost cannot host this: under `ssl_verify_client optional` nginx answers a bare 400 as soon as a presented cert fails verification, so an expired leaf never reaches the location — and the directive is server-level, not per-location. Grace defaults to 30 days on both ends and is configurable (`RECOVER_URL`, `expiredRenewGraceMs`). The honest trade is recorded in the code: a stale stolen leaf stays reusable for the window, which widens an existing exposure (an unexpired stolen leaf already renews indefinitely) rather than opening a new one. Verified: agent 296/296, control-plane 286/286, tsc clean on both.
This commit is contained in:
@@ -22,7 +22,12 @@ import type { Keystore } from '../keys/keystore.js'
|
||||
import type { Logger } from '../log/logger.js'
|
||||
import type { TimerLike } from '../transport/seams.js'
|
||||
import { createBackoff } from '../transport/backoff.js'
|
||||
import { buildTlsOptions, type CertParser, type TlsClientOptions } from '../transport/dial.js'
|
||||
import {
|
||||
buildTlsOptions,
|
||||
DEFAULT_EXPIRED_RENEW_GRACE_MS,
|
||||
type CertParser,
|
||||
type TlsClientOptions,
|
||||
} from '../transport/dial.js'
|
||||
import { DEFAULT_CERT_RENEW_WINDOW_MS } from '../health/probe.js'
|
||||
import { createCertRotator, type CertRotator } from './rotation.js'
|
||||
|
||||
@@ -126,7 +131,7 @@ function toHeaderRecord(headers: RequestInit['headers']): Record<string, string>
|
||||
*/
|
||||
export function createMtlsFetch(
|
||||
ks: Keystore,
|
||||
opts: { request?: MtlsRequest; certParser?: CertParser } = {},
|
||||
opts: { request?: MtlsRequest; certParser?: CertParser; expiredGraceMs?: number } = {},
|
||||
): typeof fetch {
|
||||
const request = opts.request ?? defaultMtlsRequest
|
||||
const shim = async (input: Parameters<typeof fetch>[0], init?: RequestInit): Promise<Response> => {
|
||||
@@ -135,7 +140,14 @@ export function createMtlsFetch(
|
||||
// SYSTEM roots — its host (the LE-fronted control-plane) is publicly trusted; pinning the private
|
||||
// enroll caChain here fails with "unable to get local issuer certificate". So drop `ca` (absent →
|
||||
// node uses the default roots); rejectUnauthorized stays true.
|
||||
const full = buildTlsOptions(ks, { ...(opts.certParser ? { certParser: opts.certParser } : {}) })
|
||||
// This transport exists ONLY to renew, so it opts into the expired-leaf grace: refusing here is
|
||||
// exactly the deadlock we are fixing (mTLS renew needs the very leaf that lapsed). Past the
|
||||
// window `buildTlsOptions` throws CertExpiredBeyondGraceError, which the rotator treats as
|
||||
// terminal rather than retrying forever.
|
||||
const full = buildTlsOptions(ks, {
|
||||
expiredGraceMs: opts.expiredGraceMs ?? DEFAULT_EXPIRED_RENEW_GRACE_MS,
|
||||
...(opts.certParser ? { certParser: opts.certParser } : {}),
|
||||
})
|
||||
const tls: TlsClientOptions = { cert: full.cert, key: full.key, rejectUnauthorized: full.rejectUnauthorized }
|
||||
const reqInit: MtlsRequestInit = {
|
||||
method: init?.method ?? 'GET',
|
||||
@@ -195,6 +207,16 @@ export function wireAutoRenew(
|
||||
error: errorMessage(err),
|
||||
})
|
||||
})
|
||||
// Terminal: the grace window is spent, so every further attempt is guaranteed to fail. Say so once,
|
||||
// at error level, naming the fix — and deliberately do NOT stop the supervisor: `pair` writes fresh
|
||||
// cert files that the restart-on-exit frpc child picks up without a manual service restart.
|
||||
rotator.onExhausted((err) => {
|
||||
logger.log('error', 'frp-client cert expired beyond renewal grace — run `web-terminal-agent pair <CODE>` to re-pair this host', {
|
||||
...meta,
|
||||
expiredForMs: err.expiredForMs,
|
||||
graceMs: err.graceMs,
|
||||
})
|
||||
})
|
||||
rotator.start()
|
||||
return { stop: () => rotator.stop() }
|
||||
}
|
||||
@@ -205,6 +227,8 @@ export function wireAutoRenew(
|
||||
export interface NativeAutoRenewOpts {
|
||||
readonly mtlsRequest?: MtlsRequest
|
||||
readonly certParser?: CertParser
|
||||
/** Window in which an already-expired leaf may still authenticate its own renewal. */
|
||||
readonly expiredGraceMs?: number
|
||||
readonly timer?: TimerLike
|
||||
readonly renewBeforeMs?: number
|
||||
readonly retryBaseMs?: number
|
||||
@@ -232,6 +256,7 @@ export function startNativeAutoRenew(
|
||||
const fetchImpl = createMtlsFetch(ks, {
|
||||
...(opts.mtlsRequest ? { request: opts.mtlsRequest } : {}),
|
||||
...(opts.certParser ? { certParser: opts.certParser } : {}),
|
||||
...(opts.expiredGraceMs !== undefined ? { expiredGraceMs: opts.expiredGraceMs } : {}),
|
||||
})
|
||||
const rotator = createCertRotator(cfg, id, ks, {
|
||||
fetchImpl,
|
||||
|
||||
@@ -14,6 +14,7 @@ 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'
|
||||
|
||||
@@ -26,6 +27,11 @@ export interface CertRotator {
|
||||
onRevoked(cb: () => void): void
|
||||
/** A renewal attempt failed (network/HTTP, NOT a 403 revoke). The rotator retries with backoff. */
|
||||
onError(cb: (err: unknown) => void): void
|
||||
/**
|
||||
* TERMINAL: the leaf expired past the renewal grace window, so no future attempt can succeed. The
|
||||
* rotator has stopped; recovery requires an operator re-pair.
|
||||
*/
|
||||
onExhausted(cb: (err: CertExpiredBeyondGraceError) => void): void
|
||||
}
|
||||
|
||||
export type RenewOutcome = 'rotated' | 'revoked'
|
||||
@@ -35,6 +41,36 @@ 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.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
export function recoveryRenewalUrlFor(cfg: AgentConfig): string | null {
|
||||
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()
|
||||
}
|
||||
|
||||
/** Ms until (validTo − renewBeforeMs), clamped to ≥ 0. */
|
||||
export function computeRenewDelayMs(
|
||||
certPem: string,
|
||||
@@ -56,9 +92,10 @@ export async function renewCert(
|
||||
id: AgentIdentity,
|
||||
ks: Keystore,
|
||||
fetchImpl: typeof fetch,
|
||||
opts: { url?: string } = {},
|
||||
): Promise<RenewOutcome> {
|
||||
const csr = buildCsr(id, cfg.subdomain ?? 'web-terminal-agent')
|
||||
const res = await fetchImpl(renewalUrlFor(cfg), {
|
||||
const res = await fetchImpl(opts.url ?? renewalUrlFor(cfg), {
|
||||
method: 'POST',
|
||||
headers: { 'content-type': 'application/json' },
|
||||
body: JSON.stringify({ csr }),
|
||||
@@ -102,6 +139,7 @@ export function createCertRotator(
|
||||
let rotatedCb: (() => void) | null = null
|
||||
let revokedCb: (() => void) | null = null
|
||||
let errorCb: ((err: unknown) => void) | null = null
|
||||
let exhaustedCb: ((err: CertExpiredBeyondGraceError) => void) | null = null
|
||||
|
||||
function schedule(): void {
|
||||
const certs = ks.loadCert()
|
||||
@@ -110,8 +148,21 @@ export function createCertRotator(
|
||||
handle = timer.setTimeout(runRenewal, delay)
|
||||
}
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
function endpointForNow(): string {
|
||||
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)
|
||||
}
|
||||
|
||||
function runRenewal(): void {
|
||||
void renewCert(cfg, id, ks, doFetch)
|
||||
void renewCert(cfg, id, ks, doFetch, { url: endpointForNow() })
|
||||
.then((outcome) => {
|
||||
if (outcome === 'revoked') {
|
||||
revokedCb?.()
|
||||
@@ -122,6 +173,14 @@ 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.
|
||||
@@ -147,5 +206,8 @@ export function createCertRotator(
|
||||
onError(cb): void {
|
||||
errorCb = cb
|
||||
},
|
||||
onExhausted(cb): void {
|
||||
exhaustedCb = cb
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,13 @@ export interface AgentConfig {
|
||||
readonly localTargetUrl: string
|
||||
readonly subdomain: string | null
|
||||
readonly hostId: string | null
|
||||
/**
|
||||
* Renewal endpoint used ONLY when the current leaf has already expired (the strict `/renew` vhost
|
||||
* rejects an expired client cert before it reaches the control-plane). Optional: when unset it is
|
||||
* derived from `enrollUrl` by swapping the `enroll.` label for `recover.` — see
|
||||
* `certs/rotation.ts` `recoveryRenewalUrlFor`.
|
||||
*/
|
||||
readonly recoverUrl?: string | null | undefined
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -59,6 +66,11 @@ export const AgentConfigSchema = z
|
||||
.refine(isLoopbackWsUrl, 'localTargetUrl must be a ws:// loopback URL (anti-SSRF)'),
|
||||
subdomain: z.string().min(1).nullable(),
|
||||
hostId: z.string().min(1).nullable(),
|
||||
recoverUrl: z
|
||||
.string()
|
||||
.refine((u) => hasScheme(u, 'https:'), 'recoverUrl must be an https:// URL')
|
||||
.nullable()
|
||||
.optional(),
|
||||
})
|
||||
.strict()
|
||||
.readonly()
|
||||
@@ -85,6 +97,7 @@ export function loadAgentConfig(
|
||||
localTargetUrl: argv.localTargetUrl ?? env.LOCAL_TARGET_URL ?? DEFAULT_LOCAL_TARGET,
|
||||
subdomain: argv.subdomain ?? env.SUBDOMAIN ?? null,
|
||||
hostId: argv.hostId ?? env.HOST_ID ?? null,
|
||||
recoverUrl: argv.recoverUrl ?? env.RECOVER_URL ?? null,
|
||||
}
|
||||
return AgentConfigSchema.parse(merged)
|
||||
}
|
||||
|
||||
@@ -21,6 +21,37 @@ export class CertExpiredError extends Error {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Default window during which an ALREADY-EXPIRED leaf may still authenticate a `/renew` (30 days).
|
||||
*
|
||||
* WHY THIS EXISTS: `/renew` is authenticated by mTLS with the current leaf, so once that leaf lapses
|
||||
* the agent can no longer renew it — a deadlock that bricks the host until a manual re-pair (observed
|
||||
* in production: the leaf expired while the laptop was asleep through its renewal window, then the
|
||||
* agent logged `client certificate has expired; renew before dialling` 6380 times and never
|
||||
* recovered). Accepting a recently-expired leaf ONLY for re-issuance breaks the cycle.
|
||||
*
|
||||
* WHY IT IS SAFE-ENOUGH: the leaf still proves possession of the private key, still has to chain to
|
||||
* the frp-client CA, and the control-plane still refuses a host whose registry status is `revoked` —
|
||||
* none of those checks are relaxed. The delta is that a STALE stolen credential stays reusable for
|
||||
* this window; an attacker holding an UNEXPIRED stolen leaf can already renew indefinitely, so this
|
||||
* widens an existing exposure rather than creating a new class of one. It is bounded, and it never
|
||||
* applies to the tunnel dial — only to re-issuance.
|
||||
*/
|
||||
export const DEFAULT_EXPIRED_RENEW_GRACE_MS = 30 * 24 * 60 * 60 * 1000
|
||||
|
||||
/** The leaf expired so long ago that even the renewal grace is exhausted ⇒ operator must re-pair. */
|
||||
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 renewal grace window; re-pair required')
|
||||
this.name = 'CertExpiredBeyondGraceError'
|
||||
}
|
||||
}
|
||||
|
||||
/** TLS material for the wss client. NOTE: `rejectUnauthorized` is ALWAYS true (anti-MITM). */
|
||||
export interface TlsClientOptions {
|
||||
readonly cert: string
|
||||
@@ -44,17 +75,27 @@ const defaultCertParser: CertParser = (pem) => ({ validTo: new Date(new X509Cert
|
||||
/**
|
||||
* Assemble the mTLS options from the keystore. Throws NotEnrolledError if key/cert are missing,
|
||||
* CertExpiredError if the cert is past `validTo`. There is NO token field by construction (INV4).
|
||||
*
|
||||
* `expiredGraceMs` is the ONLY way to get an expired leaf through, and exists solely for the `/renew`
|
||||
* recovery path (see `DEFAULT_EXPIRED_RENEW_GRACE_MS`). Omitted or 0 ⇒ the historical fail-closed
|
||||
* behaviour, unchanged; the tunnel dial deliberately never passes it. Past the window the distinct
|
||||
* `CertExpiredBeyondGraceError` tells the caller to stop retrying and surface "re-pair required".
|
||||
*/
|
||||
export function buildTlsOptions(
|
||||
ks: Keystore,
|
||||
opts: { now?: Date; certParser?: CertParser } = {},
|
||||
opts: { now?: Date; certParser?: CertParser; expiredGraceMs?: number } = {},
|
||||
): TlsClientOptions {
|
||||
const id = ks.loadIdentity()
|
||||
const certs = ks.loadCert()
|
||||
if (id === null || certs === null) throw new NotEnrolledError()
|
||||
const parse = opts.certParser ?? defaultCertParser
|
||||
const now = opts.now ?? new Date()
|
||||
if (parse(certs.certPem).validTo.getTime() < now.getTime()) throw new CertExpiredError()
|
||||
const expiredForMs = now.getTime() - parse(certs.certPem).validTo.getTime()
|
||||
if (expiredForMs > 0) {
|
||||
const graceMs = opts.expiredGraceMs ?? 0
|
||||
if (graceMs <= 0) throw new CertExpiredError()
|
||||
if (expiredForMs > graceMs) throw new CertExpiredBeyondGraceError(expiredForMs, graceMs)
|
||||
}
|
||||
return {
|
||||
cert: certs.certPem,
|
||||
key: id.exportPrivatePkcs8Pem(),
|
||||
|
||||
Reference in New Issue
Block a user